Skip to main content

firewall_policy_idps_signatures

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

Overview

Namefirewall_policy_idps_signatures
TypeResource
Idazure.network.firewall_policy_idps_signatures

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
matchingRecordsCountintegerNumber of total records matching the query.
signaturesarrayArray containing the results of the query.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, firewall_policy_name, subscription_idRetrieves the current status of IDPS signatures for the relevant policy. Maximal amount of returned signatures is 1000.

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
firewall_policy_namestringThe name of the Firewall Policy. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Retrieves the current status of IDPS signatures for the relevant policy. Maximal amount of returned signatures is 1000.

SELECT
matchingRecordsCount,
signatures
FROM azure.network.firewall_policy_idps_signatures
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND firewall_policy_name = '{{ firewall_policy_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;