firewall_policy_idps_signatures
Creates, updates, deletes, gets or lists a firewall_policy_idps_signatures
resource.
Overview
Name | firewall_policy_idps_signatures |
Type | Resource |
Id | azure.network.firewall_policy_idps_signatures |
Fields
Name | Datatype | Description |
---|---|---|
matchingRecordsCount | integer | Number of total records matching the query. |
signatures | array | Array containing the results of the query |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | firewallPolicyName, resourceGroupName, subscriptionId | Retrieves 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 }}';