import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Palo Alto Next Generation Firewall VHub Local Rulestack. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const examplePublicIp = new azure.network.PublicIp("example", { * name: "acceptanceTestPublicIp1", * resourceGroupName: example.name, * location: example.location, * allocationMethod: "Static", * tags: { * environment: "Production", * }, * }); * const exampleVirtualWan = new azure.network.VirtualWan("example", { * name: "example-virtualwan", * resourceGroupName: example.name, * location: example.location, * }); * const exampleVirtualHub = new azure.network.VirtualHub("example", { * name: "example-virtualhub", * resourceGroupName: example.name, * location: example.location, * virtualWanId: exampleVirtualWan.id, * addressPrefix: "10.0.0.0/23", * tags: { * hubSaaSPreview: "true", * }, * }); * const exampleVirtualNetworkAppliance = new azure.paloalto.VirtualNetworkAppliance("example", { * name: "example-appliance", * virtualHubId: exampleVirtualHub.id, * }); * const exampleNextGenerationFirewallVirtualHubLocalRulestack = new azure.paloalto.NextGenerationFirewallVirtualHubLocalRulestack("example", { * name: "example-ngfwvn", * resourceGroupName: example.name, * rulestackId: exampleAzurermPaloAltoLocalRulestack.id, * networkProfile: { * publicIpAddressIds: [examplePublicIp.id], * virtualHubId: exampleVirtualHub.id, * networkVirtualApplianceId: exampleVirtualNetworkAppliance.id, * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `PaloAltoNetworks.Cloudngfw` - 2025-10-08 * * ## Import * * Palo Alto Next Generation Firewall VHub Local Rulestacks can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:paloalto/nextGenerationFirewallVirtualHubLocalRulestack:NextGenerationFirewallVirtualHubLocalRulestack example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/PaloAltoNetworks.Cloudngfw/firewalls/myVhubRulestackFW * ``` */ export declare class NextGenerationFirewallVirtualHubLocalRulestack extends pulumi.CustomResource { /** * Get an existing NextGenerationFirewallVirtualHubLocalRulestack 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NextGenerationFirewallVirtualHubLocalRulestackState, opts?: pulumi.CustomResourceOptions): NextGenerationFirewallVirtualHubLocalRulestack; /** * Returns true if the given object is an instance of NextGenerationFirewallVirtualHubLocalRulestack. 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 NextGenerationFirewallVirtualHubLocalRulestack; /** * One or more `destinationNat` blocks as defined below. */ readonly destinationNats: pulumi.Output; /** * A `dnsSettings` block as defined below. */ readonly dnsSettings: pulumi.Output; /** * The marketplace offer ID. Defaults to `panSwfwCloudNgfw`. Changing this forces a new resource to be created. */ readonly marketplaceOfferId: pulumi.Output; /** * The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created. */ readonly name: pulumi.Output; /** * A `networkProfile` block as defined below. */ readonly networkProfile: pulumi.Output; /** * The billing plan ID as published by Liftr.PAN. Defaults to `panw-cloud-ngfw-payg`. * * > **Note:** The former `planId` `panw-cloud-ngfw-payg` is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly set `planId` to `panw-cngfw-payg` when creating new resources. */ readonly planId: pulumi.Output; /** * The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created. */ readonly resourceGroupName: pulumi.Output; /** * The ID of the Local Rulestack to be used for this Next Generation Firewall. */ readonly rulestackId: pulumi.Output; /** * A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a NextGenerationFirewallVirtualHubLocalRulestack 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: NextGenerationFirewallVirtualHubLocalRulestackArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NextGenerationFirewallVirtualHubLocalRulestack resources. */ export interface NextGenerationFirewallVirtualHubLocalRulestackState { /** * One or more `destinationNat` blocks as defined below. */ destinationNats?: pulumi.Input[]>; /** * A `dnsSettings` block as defined below. */ dnsSettings?: pulumi.Input; /** * The marketplace offer ID. Defaults to `panSwfwCloudNgfw`. Changing this forces a new resource to be created. */ marketplaceOfferId?: pulumi.Input; /** * The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created. */ name?: pulumi.Input; /** * A `networkProfile` block as defined below. */ networkProfile?: pulumi.Input; /** * The billing plan ID as published by Liftr.PAN. Defaults to `panw-cloud-ngfw-payg`. * * > **Note:** The former `planId` `panw-cloud-ngfw-payg` is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly set `planId` to `panw-cngfw-payg` when creating new resources. */ planId?: pulumi.Input; /** * The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created. */ resourceGroupName?: pulumi.Input; /** * The ID of the Local Rulestack to be used for this Next Generation Firewall. */ rulestackId?: pulumi.Input; /** * A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a NextGenerationFirewallVirtualHubLocalRulestack resource. */ export interface NextGenerationFirewallVirtualHubLocalRulestackArgs { /** * One or more `destinationNat` blocks as defined below. */ destinationNats?: pulumi.Input[]>; /** * A `dnsSettings` block as defined below. */ dnsSettings?: pulumi.Input; /** * The marketplace offer ID. Defaults to `panSwfwCloudNgfw`. Changing this forces a new resource to be created. */ marketplaceOfferId?: pulumi.Input; /** * The name which should be used for this Palo Alto Next Generation Firewall VHub Local Rulestack. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created. */ name?: pulumi.Input; /** * A `networkProfile` block as defined below. */ networkProfile: pulumi.Input; /** * The billing plan ID as published by Liftr.PAN. Defaults to `panw-cloud-ngfw-payg`. * * > **Note:** The former `planId` `panw-cloud-ngfw-payg` is defined as stop sell, but has been set as the default to not break any existing resources that were originally provisioned with it. Users need to explicitly set `planId` to `panw-cngfw-payg` when creating new resources. */ planId?: pulumi.Input; /** * The name of the Resource Group where the Palo Alto Next Generation Firewall VHub Local Rulestack should exist. Changing this forces a new Palo Alto Next Generation Firewall VHub Local Rulestack to be created. */ resourceGroupName: pulumi.Input; /** * The ID of the Local Rulestack to be used for this Next Generation Firewall. */ rulestackId: pulumi.Input; /** * A mapping of tags which should be assigned to the Palo Alto Next Generation Firewall VHub Local Rulestack. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }