Skip to main content

application_gateway_waf_dynamic_manifests_default

Creates, updates, deletes, gets or lists an application_gateway_waf_dynamic_manifests_default resource.

Overview

Nameapplication_gateway_waf_dynamic_manifests_default
TypeResource
Idazure.network.application_gateway_waf_dynamic_manifests_default

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
availableRuleSetsarrayThe available rulesets.
defaultRuleSetobjectThe default ruleset.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, subscription_idGets 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.

NameDatatypeDescription
locationstringThe location for which the WAF dynamic manifest is requested. Required.
subscription_idstring

SELECT examples

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
;