import * as pulumi from "@pulumi/pulumi"; /** * The zia.VzenCluster resource manages Virtual ZEN (VZEN) cluster configurations in the * Zscaler Internet Access (ZIA) cloud. VZEN clusters group multiple VZEN nodes for high availability * and load balancing of traffic processing. * * ## Example Usage * ### Basic VZEN Cluster * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.VzenCluster("example", { * name: "Example VZEN Cluster", * status: "ENABLED", * type: "VZEN", * ipAddress: "10.0.0.20", * subnetMask: "255.255.255.0", * defaultGateway: "10.0.0.1", * ipSecEnabled: true, * virtualZenNodes: [12345, 67890], * }); * ``` * * ## Import * * An existing VZEN cluster can be imported using its ID, e.g. * * ```sh * $ pulumi import zia:index:VzenCluster example 12345 * ``` */ export declare class VzenCluster extends pulumi.CustomResource { /** * Get an existing VzenCluster 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): VzenCluster; /** * Returns true if the given object is an instance of VzenCluster. 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 VzenCluster; /** * The unique identifier for the VZEN cluster assigned by the ZIA cloud. */ readonly clusterId: pulumi.Output; /** * The default gateway of the VZEN cluster. */ readonly defaultGateway: pulumi.Output; /** * The IP address of the VZEN cluster. */ readonly ipAddress: pulumi.Output; /** * Whether IPSec is enabled on the cluster. */ readonly ipSecEnabled: pulumi.Output; /** * Name of the VZEN cluster. */ readonly name: pulumi.Output; /** * The status of the cluster (e.g., 'ENABLED', 'DISABLED'). */ readonly status: pulumi.Output; /** * The subnet mask of the VZEN cluster. */ readonly subnetMask: pulumi.Output; /** * The type of the VZEN cluster. */ readonly type: pulumi.Output; /** * List of VZEN node IDs that belong to this cluster. */ readonly virtualZenNodes: pulumi.Output; /** * Create a VzenCluster 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?: VzenClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a VzenCluster resource. */ export interface VzenClusterArgs { /** * The default gateway of the VZEN cluster. */ defaultGateway?: pulumi.Input; /** * The IP address of the VZEN cluster. */ ipAddress?: pulumi.Input; /** * Whether IPSec is enabled on the cluster. */ ipSecEnabled?: pulumi.Input; /** * Name of the VZEN cluster. */ name?: pulumi.Input; /** * The status of the cluster (e.g., 'ENABLED', 'DISABLED'). */ status?: pulumi.Input; /** * The subnet mask of the VZEN cluster. */ subnetMask?: pulumi.Input; /** * The type of the VZEN cluster. */ type?: pulumi.Input; /** * List of VZEN node IDs that belong to this cluster. */ virtualZenNodes?: pulumi.Input[] | undefined>; } //# sourceMappingURL=vzenCluster.d.ts.map