Skip to main content

firewalls_support_info

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

Overview

Namefirewalls_support_info
TypeResource
Idazure_isv.paloalto.firewalls_support_info

Fields

The following fields are returned by SELECT queries:

The request has succeeded.

NameDatatypeDescription
accountIdstringSupport account associated with given resource
accountRegisteredstringaccount registered in Customer Support Portal
freeTrialstringProduct usage is in free trial period
freeTrialCreditLeftinteger (int32)Free trial credit remaining
freeTrialDaysLeftinteger (int32)Free trial days remaining
helpURLstringURL for paloaltonetworks live community
productSerialstringproduct Serial associated with given resource
productSkustringproduct SKU associated with given resource
registerURLstringURL for registering product in paloaltonetworks Customer Service Portal
supportURLstringURL for paloaltonetworks Customer Service Portal
userDomainSupportedstringuser domain is supported in Customer Support Portal
userRegisteredstringuser registered in Customer Support Portal

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, firewallNameemailsupport 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.

NameDatatypeDescription
firewallNamestringFirewall resource name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
emailstringemail address on behalf of which this API called

SELECT examples

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 }}'
;