import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * The zia.Extranet resource manages extranet configurations in the Zscaler Internet Access (ZIA) cloud. * Extranets define DNS and IP pool settings for traffic forwarding. * * ## Example Usage * ### Basic Extranet * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.Extranet("example", { * name: "Example Extranet", * description: "Managed by Pulumi", * extranetDnsList: [{ * name: "Primary DNS", * primaryDnsServer: "8.8.8.8", * secondaryDnsServer: "8.8.4.4", * }], * extranetIpPoolList: [{ * name: "IP Pool 1", * ipStart: "10.0.0.1", * ipEnd: "10.0.0.254", * }], * }); * ``` * * ## Import * * An existing extranet can be imported using its ID, e.g. * * ```sh * $ pulumi import zia:index:Extranet example 12345 * ``` */ export declare class Extranet extends pulumi.CustomResource { /** * Get an existing Extranet 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, opts?: pulumi.CustomResourceOptions): Extranet; /** * Returns true if the given object is an instance of Extranet. 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 Extranet; /** * Description of the extranet. */ readonly description: pulumi.Output; /** * List of DNS server entries for the extranet. */ readonly extranetDnsList: pulumi.Output; /** * The unique identifier for the extranet assigned by the ZIA cloud. */ readonly extranetId: pulumi.Output; /** * List of IP pool entries for the extranet. */ readonly extranetIpPoolList: pulumi.Output; /** * Name of the extranet. */ readonly name: pulumi.Output; /** * Create a Extranet 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?: ExtranetArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Extranet resource. */ export interface ExtranetArgs { /** * Description of the extranet. */ description?: pulumi.Input; /** * List of DNS server entries for the extranet. */ extranetDnsList?: pulumi.Input[] | undefined>; /** * List of IP pool entries for the extranet. */ extranetIpPoolList?: pulumi.Input[] | undefined>; /** * Name of the extranet. */ name?: pulumi.Input; } //# sourceMappingURL=extranet.d.ts.map