managed_rule_sets
Creates, updates, deletes, gets or lists a managed_rule_sets resource.
Overview
| Name | managed_rule_sets |
| Type | Resource |
| Id | azure.front_door.managed_rule_sets |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
location | string | Resource location. |
provisioningState | string | Provisioning state of the managed rule set. |
ruleGroups | array | Rule groups of the managed rule set. |
ruleSetId | string | Id of the managed rule set. |
ruleSetType | string | Type of the managed rule set. |
ruleSetVersion | string | Version of the managed rule set type. |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | Lists 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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string |
SELECT examples
- list
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
;