@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.58 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* support info for firewall.
*
* Uses Azure REST API version 2025-02-06-preview.
*
* Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getFirewallSupportInfo(args: GetFirewallSupportInfoArgs, opts?: pulumi.InvokeOptions): Promise<GetFirewallSupportInfoResult>;
export interface GetFirewallSupportInfoArgs {
/**
* email address on behalf of which this API called
*/
email?: string;
/**
* Firewall resource name
*/
firewallName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Support information for the resource
*/
export interface GetFirewallSupportInfoResult {
/**
* Support account associated with given resource when association type is tenant
*/
readonly accountId?: string;
/**
* Support account associated with given resource when association type is billing
*/
readonly accountIdForBilling?: string;
/**
* account registered in Customer Support Portal
*/
readonly accountRegistered?: string;
/**
* Association Type
*/
readonly associationType?: string;
/**
* Product usage is in free trial period
*/
readonly freeTrial?: string;
/**
* Free trial credit remaining
*/
readonly freeTrialCreditLeft?: number;
/**
* Free trial days remaining
*/
readonly freeTrialDaysLeft?: number;
/**
* URL for paloaltonetworks live community
*/
readonly helpURL?: string;
/**
* product Serial associated with given resource
*/
readonly productSerial?: string;
/**
* product SKU associated with given resource
*/
readonly productSku?: string;
/**
* URL for registering product in paloaltonetworks Customer Service Portal
*/
readonly registerURL?: string;
/**
* URL for paloaltonetworks Customer Service Portal
*/
readonly supportURL?: string;
/**
* user domain is supported in Customer Support Portal
*/
readonly userDomainSupported?: string;
/**
* user registered in Customer Support Portal
*/
readonly userRegistered?: string;
}
/**
* support info for firewall.
*
* Uses Azure REST API version 2025-02-06-preview.
*
* Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getFirewallSupportInfoOutput(args: GetFirewallSupportInfoOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFirewallSupportInfoResult>;
export interface GetFirewallSupportInfoOutputArgs {
/**
* email address on behalf of which this API called
*/
email?: pulumi.Input<string>;
/**
* Firewall resource name
*/
firewallName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}