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:

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

NameDatatypeDescription
idstringResource ID.
namestringResource name.
locationstringResource location.
propertiesobjectProperties for a managed rule set definition.
tagsobjectResource tags.
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
subscriptionIdstringThe subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Lists all available managed rule sets.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.front_door.managed_rule_sets
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;