Skip to main content

managed_rule_sets

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

Overview

Namemanaged_rule_sets
TypeResource
Idazure.front_door.managed_rule_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
locationstringResource location.
provisioningStatestringProvisioning state of the managed rule set.
ruleGroupsarrayRule groups of the managed rule set.
ruleSetIdstringId of the managed rule set.
ruleSetTypestringType of the managed rule set.
ruleSetVersionstringVersion of the managed rule set type.
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idLists 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
subscription_idstring

SELECT examples

Lists all available managed rule sets.

SELECT
id,
name,
location,
provisioningState,
ruleGroups,
ruleSetId,
ruleSetType,
ruleSetVersion,
tags,
type
FROM azure.front_door.managed_rule_sets
WHERE subscription_id = '{{ subscription_id }}' -- required
;