import * as pulumi from "@pulumi/pulumi"; /** * Manages a Palo Alto Local Rulestack Prefix List. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "rg-example", * location: "West Europe", * }); * const exampleLocalRulestack = new azure.paloalto.LocalRulestack("example", { * name: "example", * resourceGroupName: example.name, * location: example.location, * }); * const exampleLocalRulestackPrefixList = new azure.paloalto.LocalRulestackPrefixList("example", { * name: "example", * rulestackId: exampleLocalRulestack.id, * prefixLists: ["10.0.1.0/24"], * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `PaloAltoNetworks.Cloudngfw` - 2025-10-08 * * ## Import * * Palo Alto Local Rulestack Prefix Lists can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:paloalto/localRulestackPrefixList:LocalRulestackPrefixList example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/PaloAltoNetworks.Cloudngfw/localRulestacks/myLocalRulestack/prefixLists/myFQDNList1 * ``` */ export declare class LocalRulestackPrefixList extends pulumi.CustomResource { /** * Get an existing LocalRulestackPrefixList 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?: LocalRulestackPrefixListState, opts?: pulumi.CustomResourceOptions): LocalRulestackPrefixList; /** * Returns true if the given object is an instance of LocalRulestackPrefixList. 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 LocalRulestackPrefixList; /** * The comment for Audit purposes. */ readonly auditComment: pulumi.Output; /** * The description for the Prefix List. */ readonly description: pulumi.Output; /** * The name which should be used for this Palo Alto Local Rulestack Prefix List. */ readonly name: pulumi.Output; /** * Specifies a list of Prefixes. */ readonly prefixLists: pulumi.Output; /** * The ID of the Local Rulestack on which to create this Prefix List. Changing this forces a new Palo Alto Local Rulestack Prefix List to be created. */ readonly rulestackId: pulumi.Output; /** * Create a LocalRulestackPrefixList 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: LocalRulestackPrefixListArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LocalRulestackPrefixList resources. */ export interface LocalRulestackPrefixListState { /** * The comment for Audit purposes. */ auditComment?: pulumi.Input; /** * The description for the Prefix List. */ description?: pulumi.Input; /** * The name which should be used for this Palo Alto Local Rulestack Prefix List. */ name?: pulumi.Input; /** * Specifies a list of Prefixes. */ prefixLists?: pulumi.Input[]>; /** * The ID of the Local Rulestack on which to create this Prefix List. Changing this forces a new Palo Alto Local Rulestack Prefix List to be created. */ rulestackId?: pulumi.Input; } /** * The set of arguments for constructing a LocalRulestackPrefixList resource. */ export interface LocalRulestackPrefixListArgs { /** * The comment for Audit purposes. */ auditComment?: pulumi.Input; /** * The description for the Prefix List. */ description?: pulumi.Input; /** * The name which should be used for this Palo Alto Local Rulestack Prefix List. */ name?: pulumi.Input; /** * Specifies a list of Prefixes. */ prefixLists: pulumi.Input[]>; /** * The ID of the Local Rulestack on which to create this Prefix List. Changing this forces a new Palo Alto Local Rulestack Prefix List to be created. */ rulestackId: pulumi.Input; }