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
The following fields are returned by SELECT queries:
- list
Success. The operation returns an IDPS Query Response
| Name | Datatype | Description |
|---|---|---|
matchingRecordsCount | integer (int64) | Number of total records matching the query. |
signatures | array | Array containing the results of the query |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resourceGroupName, firewallPolicyName, subscriptionId | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
firewallPolicyName | string | The name of the Firewall Policy. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- list
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
;