Skip to main content

managed_rule_sets

Creates, updates, deletes, gets or lists a managed_rule_sets resource.

Overview

Namemanaged_rule_sets
TypeResource
Idazure.cdn.managed_rule_sets

Fields

The following fields are returned by SELECT queries:

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

NameDatatypeDescription
idstringResource ID.
namestringResource name.
propertiesobjectDescribes managed rule set definition properties.
skuobjectThe pricing tier (defines a CDN provider, feature list and rate) of the CdnWebApplicationFirewallPolicy.
systemDataobjectRead only system data
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdLists all available managed 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
subscriptionIdstringAzure Subscription ID.

SELECT examples

Lists all available managed rule sets.

SELECT
id,
name,
properties,
sku,
systemData,
type
FROM azure.cdn.managed_rule_sets
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;