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

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTfirewallPolicyName, resourceGroupName, subscriptionIdRetrieves the current status of IDPS signatures for the relevant policy. Maximal amount of returned signatures is 1000.

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 firewallPolicyName = '{{ firewallPolicyName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';