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
| Name | Datatype | Description |
|---|---|---|
matchingRecordsCount | integer | 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 | resource_group_name, firewall_policy_name, subscription_id | 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 |
|---|---|---|
firewall_policy_name | string | The name of the Firewall Policy. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
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 resource_group_name = '{{ resource_group_name }}' -- required
AND firewall_policy_name = '{{ firewall_policy_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;