Skip to main content

firewalls_log_profiles

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

Overview

Namefirewalls_log_profiles
TypeResource
Idazure_isv.paloalto.firewalls_log_profiles

Fields

The following fields are returned by SELECT queries:

The request has succeeded.

NameDatatypeDescription
applicationInsightsobjectApplication Insight details
commonDestinationobjectCommon destination configurations
decryptLogDestinationobjectDecrypt destination configurations
logOptionstringLog option SAME/INDIVIDUAL
logTypestringOne of possible log type
threatLogDestinationobjectThreat destination configurations
trafficLogDestinationobjectTraffic destination configurations

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, firewallNameLog Profile for Firewall

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
firewallNamestringFirewall resource name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Log Profile for Firewall

SELECT
applicationInsights,
commonDestination,
decryptLogDestination,
logOption,
logType,
threatLogDestination,
trafficLogDestination
FROM azure_isv.paloalto.firewalls_log_profiles
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND firewallName = '{{ firewallName }}' -- required
;