application_gateway_waf_dynamic_manifests_default
Creates, updates, deletes, gets or lists an application_gateway_waf_dynamic_manifests_default resource.
Overview
| Name | application_gateway_waf_dynamic_manifests_default |
| Type | Resource |
| Id | azure.network.application_gateway_waf_dynamic_manifests_default |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
availableRuleSets | array | The available rulesets. |
defaultRuleSet | object | The default ruleset. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location, subscription_id | 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 location for which the WAF dynamic manifest is requested. Required. |
subscription_id | string |
SELECT examples
- get
Gets the regional application gateway waf manifest.
SELECT
id,
name,
availableRuleSets,
defaultRuleSet,
type
FROM azure.network.application_gateway_waf_dynamic_manifests_default
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;