firewalls_log_profiles
Creates, updates, deletes, gets or lists a firewalls_log_profiles
resource.
Overview
Name | firewalls_log_profiles |
Type | Resource |
Id | azure_isv.paloalto.firewalls_log_profiles |
Fields
The following fields are returned by SELECT
queries:
- get
The request has succeeded.
Name | Datatype | Description |
---|---|---|
applicationInsights | object | Application Insight details |
commonDestination | object | Common destination configurations |
decryptLogDestination | object | Decrypt destination configurations |
logOption | string | Log option SAME/INDIVIDUAL |
logType | string | One of possible log type |
threatLogDestination | object | Threat destination configurations |
trafficLogDestination | object | Traffic destination configurations |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , firewallName | Log 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.
Name | Datatype | Description |
---|---|---|
firewallName | string | Firewall resource name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
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
;