@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.49 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a GlobalRulestackResource
*
* 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 getGlobalRulestack(args: GetGlobalRulestackArgs, opts?: pulumi.InvokeOptions): Promise<GetGlobalRulestackResult>;
export interface GetGlobalRulestackArgs {
/**
* GlobalRulestack resource name
*/
globalRulestackName: string;
}
/**
* PaloAltoNetworks GlobalRulestack
*/
export interface GetGlobalRulestackResult {
/**
* subscription scope of global rulestack
*/
readonly associatedSubscriptions?: string[];
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Mode for default rules creation
*/
readonly defaultMode?: string;
/**
* rulestack description
*/
readonly description?: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The managed service identities assigned to this resource.
*/
readonly identity?: outputs.cloudngfw.AzureResourceManagerManagedIdentityPropertiesResponse;
/**
* Global Location
*/
readonly location: string;
/**
* minimum version
*/
readonly minAppIdVersion?: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* PanEtag info
*/
readonly panEtag?: string;
/**
* Rulestack Location, Required for GlobalRulestacks, Not for LocalRulestacks
*/
readonly panLocation?: string;
/**
* Provisioning state of the resource.
*/
readonly provisioningState: string;
/**
* Rulestack Type
*/
readonly scope?: string;
/**
* Security Profile
*/
readonly securityServices?: outputs.cloudngfw.SecurityServicesResponse;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.cloudngfw.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get a GlobalRulestackResource
*
* 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 getGlobalRulestackOutput(args: GetGlobalRulestackOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGlobalRulestackResult>;
export interface GetGlobalRulestackOutputArgs {
/**
* GlobalRulestack resource name
*/
globalRulestackName: pulumi.Input<string>;
}