firewalls_support_info
Creates, updates, deletes, gets or lists a firewalls_support_info
resource.
Overview
Name | firewalls_support_info |
Type | Resource |
Id | azure_isv.paloalto.firewalls_support_info |
Fields
The following fields are returned by SELECT
queries:
- get
The request has succeeded.
Name | Datatype | Description |
---|---|---|
accountId | string | Support account associated with given resource |
accountRegistered | string | account registered in Customer Support Portal |
freeTrial | string | Product usage is in free trial period |
freeTrialCreditLeft | integer (int32) | Free trial credit remaining |
freeTrialDaysLeft | integer (int32) | Free trial days remaining |
helpURL | string | URL for paloaltonetworks live community |
productSerial | string | product Serial associated with given resource |
productSku | string | product SKU associated with given resource |
registerURL | string | URL for registering product in paloaltonetworks Customer Service Portal |
supportURL | string | URL for paloaltonetworks Customer Service Portal |
userDomainSupported | string | user domain is supported in Customer Support Portal |
userRegistered | string | user registered in Customer Support Portal |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , firewallName | email | support info 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. |
email | string | email address on behalf of which this API called |
SELECT
examples
- get
support info for firewall.
SELECT
accountId,
accountRegistered,
freeTrial,
freeTrialCreditLeft,
freeTrialDaysLeft,
helpURL,
productSerial,
productSku,
registerURL,
supportURL,
userDomainSupported,
userRegistered
FROM azure_isv.paloalto.firewalls_support_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND firewallName = '{{ firewallName }}' -- required
AND email = '{{ email }}'
;