@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 5.22 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* PaloAltoNetworks GlobalRulestack
*
* Uses Azure REST API version 2025-02-06-preview. In version 2.x of the Azure Native provider, it used API version 2023-09-01.
*
* Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. 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 class GlobalRulestack extends pulumi.CustomResource {
/**
* Get an existing GlobalRulestack resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): GlobalRulestack;
/**
* Returns true if the given object is an instance of GlobalRulestack. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is GlobalRulestack;
/**
* subscription scope of global rulestack
*/
readonly associatedSubscriptions: pulumi.Output<string[] | undefined>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* Mode for default rules creation
*/
readonly defaultMode: pulumi.Output<string | undefined>;
/**
* rulestack description
*/
readonly description: pulumi.Output<string | undefined>;
/**
* The managed service identities assigned to this resource.
*/
readonly identity: pulumi.Output<outputs.cloudngfw.AzureResourceManagerManagedIdentityPropertiesResponse | undefined>;
/**
* Global Location
*/
readonly location: pulumi.Output<string>;
/**
* minimum version
*/
readonly minAppIdVersion: pulumi.Output<string | undefined>;
/**
* The name of the resource
*/
readonly name: pulumi.Output<string>;
/**
* PanEtag info
*/
readonly panEtag: pulumi.Output<string | undefined>;
/**
* Rulestack Location, Required for GlobalRulestacks, Not for LocalRulestacks
*/
readonly panLocation: pulumi.Output<string | undefined>;
/**
* Provisioning state of the resource.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* Rulestack Type
*/
readonly scope: pulumi.Output<string | undefined>;
/**
* Security Profile
*/
readonly securityServices: pulumi.Output<outputs.cloudngfw.SecurityServicesResponse | undefined>;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: pulumi.Output<outputs.cloudngfw.SystemDataResponse>;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: pulumi.Output<string>;
/**
* Create a GlobalRulestack resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args?: GlobalRulestackArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a GlobalRulestack resource.
*/
export interface GlobalRulestackArgs {
/**
* subscription scope of global rulestack
*/
associatedSubscriptions?: pulumi.Input<pulumi.Input<string>[]>;
/**
* Mode for default rules creation
*/
defaultMode?: pulumi.Input<string | enums.cloudngfw.DefaultMode>;
/**
* rulestack description
*/
description?: pulumi.Input<string>;
/**
* GlobalRulestack resource name
*/
globalRulestackName?: pulumi.Input<string>;
/**
* The managed service identities assigned to this resource.
*/
identity?: pulumi.Input<inputs.cloudngfw.AzureResourceManagerManagedIdentityPropertiesArgs>;
/**
* Global Location
*/
location?: pulumi.Input<string>;
/**
* minimum version
*/
minAppIdVersion?: pulumi.Input<string>;
/**
* PanEtag info
*/
panEtag?: pulumi.Input<string>;
/**
* Rulestack Location, Required for GlobalRulestacks, Not for LocalRulestacks
*/
panLocation?: pulumi.Input<string>;
/**
* Rulestack Type
*/
scope?: pulumi.Input<string | enums.cloudngfw.ScopeType>;
/**
* Security Profile
*/
securityServices?: pulumi.Input<inputs.cloudngfw.SecurityServicesArgs>;
}