Skip to main content

firewall_policy_idps_signatures_overrides

Creates, updates, deletes, gets or lists a firewall_policy_idps_signatures_overrides resource.

Overview

Namefirewall_policy_idps_signatures_overrides
TypeResource
Idazure.network.firewall_policy_idps_signatures_overrides

Fields

The following fields are returned by SELECT queries:

Will return the policy current signature overrides object

NameDatatypeDescription
idstringWill contain the resource id of the signature override resource
namestringContains the name of the resource (default)
propertiesobjectWill contain the properties of the resource (the actual signature overrides)
typestringWill contain the type of the resource: Microsoft.Network/firewallPolicies/intrusionDetectionSignaturesOverrides

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, firewallPolicyName, subscriptionIdReturns all signatures overrides for a specific policy.
listselectresourceGroupName, firewallPolicyName, subscriptionIdReturns all signatures overrides objects for a specific policy as a list containing a single value.
patchupdateresourceGroupName, firewallPolicyName, subscriptionIdWill update the status of policy's signature overrides for IDPS
putreplaceresourceGroupName, firewallPolicyName, subscriptionIdWill override/create a new signature overrides for the policy's IDPS

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

Returns all signatures overrides for a specific policy.

SELECT
id,
name,
properties,
type
FROM azure.network.firewall_policy_idps_signatures_overrides
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND firewallPolicyName = '{{ firewallPolicyName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;

UPDATE examples

Will update the status of policy's signature overrides for IDPS

UPDATE azure.network.firewall_policy_idps_signatures_overrides
SET
data__name = '{{ name }}',
data__id = '{{ id }}',
data__type = '{{ type }}',
data__properties = '{{ properties }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}' --required
AND firewallPolicyName = '{{ firewallPolicyName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
RETURNING
id,
name,
properties,
type;

REPLACE examples

Will override/create a new signature overrides for the policy's IDPS

REPLACE azure.network.firewall_policy_idps_signatures_overrides
SET
data__name = '{{ name }}',
data__id = '{{ id }}',
data__type = '{{ type }}',
data__properties = '{{ properties }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}' --required
AND firewallPolicyName = '{{ firewallPolicyName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
RETURNING
id,
name,
properties,
type;