application_gateway_waf_dynamic_manifests_defaults
Creates, updates, deletes, gets or lists an application_gateway_waf_dynamic_manifests_defaults resource.
Overview
| Name | application_gateway_waf_dynamic_manifests_defaults |
| Type | Resource |
| Id | azure.network.application_gateway_waf_dynamic_manifests_defaults |
Fields
The following fields are returned by SELECT queries:
- get
Request successful. Returns the regional application gateway waf manifest
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
properties | object | Properties of the ApplicationGatewayWafDynamicManifest . |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location, subscriptionId | Gets the regional application gateway waf manifest. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
location | string | The region where the nrp are located at. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
Gets the regional application gateway waf manifest.
SELECT
id,
name,
properties,
type
FROM azure.network.application_gateway_waf_dynamic_manifests_defaults
WHERE location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;