import * as pulumi from "@pulumi/pulumi"; /** * Manages a Palo Alto Networks Rulestack. * * ## 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, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `PaloAltoNetworks.Cloudngfw` - 2025-10-08 * * ## Import * * Palo Alto Networks Rulestacks can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:paloalto/localRulestack:LocalRulestack example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/PaloAltoNetworks.Cloudngfw/localRulestacks/myLocalRulestack * ``` */ export declare class LocalRulestack extends pulumi.CustomResource { /** * Get an existing LocalRulestack 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?: LocalRulestackState, opts?: pulumi.CustomResourceOptions): LocalRulestack; /** * Returns true if the given object is an instance of LocalRulestack. 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 LocalRulestack; /** * The setting to use for Anti-Spyware. Possible values include `BestPractice`, and `Custom`. */ readonly antiSpywareProfile: pulumi.Output; /** * The setting to use for Anti-Virus. Possible values include `BestPractice`, and `Custom`. */ readonly antiVirusProfile: pulumi.Output; /** * The description for this Local Rulestack. */ readonly description: pulumi.Output; /** * TThe setting to use for DNS Subscription. Possible values include `BestPractice`, and `Custom`. */ readonly dnsSubscription: pulumi.Output; /** * The setting to use for the File Blocking Profile. Possible values include `BestPractice`, and `Custom`. */ readonly fileBlockingProfile: pulumi.Output; /** * The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created. */ readonly location: pulumi.Output; /** * The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created. */ readonly name: pulumi.Output; /** * The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created. */ readonly resourceGroupName: pulumi.Output; /** * The setting to use for the URL Filtering Profile. Possible values include `BestPractice`, and `Custom`. */ readonly urlFilteringProfile: pulumi.Output; /** * The setting to use for the Vulnerability Profile. Possible values include `BestPractice`, and `Custom`. */ readonly vulnerabilityProfile: pulumi.Output; /** * Create a LocalRulestack 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: LocalRulestackArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LocalRulestack resources. */ export interface LocalRulestackState { /** * The setting to use for Anti-Spyware. Possible values include `BestPractice`, and `Custom`. */ antiSpywareProfile?: pulumi.Input; /** * The setting to use for Anti-Virus. Possible values include `BestPractice`, and `Custom`. */ antiVirusProfile?: pulumi.Input; /** * The description for this Local Rulestack. */ description?: pulumi.Input; /** * TThe setting to use for DNS Subscription. Possible values include `BestPractice`, and `Custom`. */ dnsSubscription?: pulumi.Input; /** * The setting to use for the File Blocking Profile. Possible values include `BestPractice`, and `Custom`. */ fileBlockingProfile?: pulumi.Input; /** * The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created. */ location?: pulumi.Input; /** * The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created. */ resourceGroupName?: pulumi.Input; /** * The setting to use for the URL Filtering Profile. Possible values include `BestPractice`, and `Custom`. */ urlFilteringProfile?: pulumi.Input; /** * The setting to use for the Vulnerability Profile. Possible values include `BestPractice`, and `Custom`. */ vulnerabilityProfile?: pulumi.Input; } /** * The set of arguments for constructing a LocalRulestack resource. */ export interface LocalRulestackArgs { /** * The setting to use for Anti-Spyware. Possible values include `BestPractice`, and `Custom`. */ antiSpywareProfile?: pulumi.Input; /** * The setting to use for Anti-Virus. Possible values include `BestPractice`, and `Custom`. */ antiVirusProfile?: pulumi.Input; /** * The description for this Local Rulestack. */ description?: pulumi.Input; /** * TThe setting to use for DNS Subscription. Possible values include `BestPractice`, and `Custom`. */ dnsSubscription?: pulumi.Input; /** * The setting to use for the File Blocking Profile. Possible values include `BestPractice`, and `Custom`. */ fileBlockingProfile?: pulumi.Input; /** * The Azure Region where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created. */ location?: pulumi.Input; /** * The name which should be used for this Palo Alto Networks Rulestack. Changing this forces a new Palo Alto Networks Rulestack to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Palo Alto Networks Rulestack should exist. Changing this forces a new Palo Alto Networks Rulestack to be created. */ resourceGroupName: pulumi.Input; /** * The setting to use for the URL Filtering Profile. Possible values include `BestPractice`, and `Custom`. */ urlFilteringProfile?: pulumi.Input; /** * The setting to use for the Vulnerability Profile. Possible values include `BestPractice`, and `Custom`. */ vulnerabilityProfile?: pulumi.Input; }