Skip to main content

application_gateways_available_waf_rule_sets

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

Overview

Nameapplication_gateways_available_waf_rule_sets
TypeResource
Idazure.network.application_gateways_available_waf_rule_sets

Fields

The following fields are returned by SELECT queries:

Success. The operation returns a list of all available web application firewall rule sets.

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectProperties of the application gateway firewall rule set.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdLists all available web application firewall rule sets.

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
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Lists all available web application firewall rule sets.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.network.application_gateways_available_waf_rule_sets
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;