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:

Success. The operation returns an IDPS Query Response

NameDatatypeDescription
matchingRecordsCountinteger (int64)Number 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
listselectresourceGroupName, firewallPolicyName, subscriptionIdRetrieves 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
firewallPolicyNamestringThe name of the Firewall Policy.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

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