import * as pulumi from "@pulumi/pulumi"; /** * Manages a Palo Alto Networks Rulestack Outbound Untrust Certificate Association. * * ## 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 exampleLocalRulestackCertificate = new azure.paloalto.LocalRulestackCertificate("example", { * name: "example", * rulestackId: exampleLocalRulestack.id, * selfSigned: true, * }); * const exampleLocalRulestackOutboundUntrustCertificateAssociation = new azure.paloalto.LocalRulestackOutboundUntrustCertificateAssociation("example", {certificateId: exampleLocalRulestackCertificate.id}); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `PaloAltoNetworks.Cloudngfw` - 2025-10-08 */ export declare class LocalRulestackOutboundUntrustCertificateAssociation extends pulumi.CustomResource { /** * Get an existing LocalRulestackOutboundUntrustCertificateAssociation 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?: LocalRulestackOutboundUntrustCertificateAssociationState, opts?: pulumi.CustomResourceOptions): LocalRulestackOutboundUntrustCertificateAssociation; /** * Returns true if the given object is an instance of LocalRulestackOutboundUntrustCertificateAssociation. 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 LocalRulestackOutboundUntrustCertificateAssociation; /** * The ID of the Certificate to use as the Outbound Untrust Certificate. Changing this forces a new Palo Alto Networks Rulestack Outbound Untrust Certificate Association to be created. */ readonly certificateId: pulumi.Output; /** * Create a LocalRulestackOutboundUntrustCertificateAssociation 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: LocalRulestackOutboundUntrustCertificateAssociationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LocalRulestackOutboundUntrustCertificateAssociation resources. */ export interface LocalRulestackOutboundUntrustCertificateAssociationState { /** * The ID of the Certificate to use as the Outbound Untrust Certificate. Changing this forces a new Palo Alto Networks Rulestack Outbound Untrust Certificate Association to be created. */ certificateId?: pulumi.Input; } /** * The set of arguments for constructing a LocalRulestackOutboundUntrustCertificateAssociation resource. */ export interface LocalRulestackOutboundUntrustCertificateAssociationArgs { /** * The ID of the Certificate to use as the Outbound Untrust Certificate. Changing this forces a new Palo Alto Networks Rulestack Outbound Untrust Certificate Association to be created. */ certificateId: pulumi.Input; }