firewall_status
Creates, updates, deletes, gets or lists a firewall_status resource.
Overview
| Name | firewall_status |
| Type | Resource |
| Id | azure_isv.paloaltonetworksngfw.firewall_status |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
healthReason | string | Detail description of current health of the Firewall. |
healthStatus | string | Current status of the Firewall. Known values are: "GREEN", "YELLOW", "RED", and "INITIALIZING". |
isPanoramaManaged | string | Panorama Managed: Default is False. Default will be CloudSec managed. Known values are: "TRUE" and "FALSE". |
isStrataCloudManaged | string | Strata Cloud Manager. Known values are: "TRUE" and "FALSE". |
panoramaStatus | object | Panorama Status. |
provisioningState | string | Provisioning state of the resource. Known values are: "Succeeded", "Failed", and "Deleted". |
strataCloudManagerInfo | object | This field is only present if Strata Cloud Manager is managing the policy for this firewall. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, firewall_name, subscription_id | Get a FirewallStatusResource. | |
list_by_firewalls | exec | resource_group_name, firewall_name, subscription_id | List FirewallStatusResource resources by Firewalls. |
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_name | string | Firewall resource name. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
Get a FirewallStatusResource.
SELECT
id,
name,
healthReason,
healthStatus,
isPanoramaManaged,
isStrataCloudManaged,
panoramaStatus,
provisioningState,
strataCloudManagerInfo,
systemData,
type
FROM azure_isv.paloaltonetworksngfw.firewall_status
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND firewall_name = '{{ firewall_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Lifecycle Methods
- list_by_firewalls
List FirewallStatusResource resources by Firewalls.
EXEC azure_isv.paloaltonetworksngfw.firewall_status.list_by_firewalls
@resource_group_name='{{ resource_group_name }}' --required,
@firewall_name='{{ firewall_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;