Skip to main content

local_rulestacks_support_info

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

Overview

Namelocal_rulestacks_support_info
TypeResource
Idazure_isv.paloalto.local_rulestacks_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, localRulestackNameemailsupport info for rulestack.

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
localRulestackNamestringLocalRulestack 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 rulestack.

SELECT
accountId,
accountRegistered,
freeTrial,
freeTrialCreditLeft,
freeTrialDaysLeft,
helpURL,
productSerial,
productSku,
registerURL,
supportURL,
userDomainSupported,
userRegistered
FROM azure_isv.paloalto.local_rulestacks_support_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND localRulestackName = '{{ localRulestackName }}' -- required
AND email = '{{ email }}'
;