import * as pulumi from "@pulumi/pulumi"; /** * The zia.VzenNode resource manages Virtual ZEN (VZEN) node configurations in the Zscaler Internet Access (ZIA) cloud. * VZEN nodes are virtual appliances deployed on-premises to process traffic locally before forwarding to the ZIA cloud. * * ## Example Usage * ### Basic VZEN Node * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.VzenNode("example", { * name: "Example VZEN Node", * status: "ENABLED", * type: "VZEN", * ipAddress: "10.0.0.10", * subnetMask: "255.255.255.0", * defaultGateway: "10.0.0.1", * deploymentMode: "STANDALONE", * vzenSkuType: "MEDIUM", * }); * ``` * * ## Import * * An existing VZEN node can be imported using its ID, e.g. * * ```sh * $ pulumi import zia:index:VzenNode example 12345 * ``` */ export declare class VzenNode extends pulumi.CustomResource { /** * Get an existing VzenNode 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): VzenNode; /** * Returns true if the given object is an instance of VzenNode. 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 VzenNode; /** * The cluster name if deployment mode is CLUSTER. */ readonly clusterName: pulumi.Output; /** * The default gateway of the VZEN node. */ readonly defaultGateway: pulumi.Output; /** * The deployment mode. Accepted values: 'STANDALONE' or 'CLUSTER'. */ readonly deploymentMode: pulumi.Output; /** * Whether establish support tunnel is enabled. */ readonly establishSupportTunnelEnabled: pulumi.Output; /** * Whether the node is in production. */ readonly inProduction: pulumi.Output; /** * The IP address of the VZEN node. */ readonly ipAddress: pulumi.Output; /** * Whether IPSec is enabled on the node. */ readonly ipSecEnabled: pulumi.Output; /** * The load balancer IP address. */ readonly loadBalancerIpAddress: pulumi.Output; /** * Name of the VZEN node. */ readonly name: pulumi.Output; /** * The unique identifier for the VZEN node assigned by the ZIA cloud. */ readonly nodeId: pulumi.Output; /** * Whether on-demand support tunnel is enabled. */ readonly onDemandSupportTunnelEnabled: pulumi.Output; /** * The status of the node. Accepted values: 'ENABLED', 'DISABLED', 'DISABLED_BY_SERVICE_PROVIDER', 'NOT_PROVISIONED_IN_SERVICE_PROVIDER', 'IN_TRIAL'. */ readonly status: pulumi.Output; /** * The subnet mask of the VZEN node. */ readonly subnetMask: pulumi.Output; /** * The type of the VZEN node. */ readonly type: pulumi.Output; /** * The VZEN SKU type. Accepted values: 'SMALL', 'MEDIUM', 'LARGE'. */ readonly vzenSkuType: pulumi.Output; /** * Create a VzenNode 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?: VzenNodeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a VzenNode resource. */ export interface VzenNodeArgs { /** * The cluster name if deployment mode is CLUSTER. */ clusterName?: pulumi.Input; /** * The default gateway of the VZEN node. */ defaultGateway?: pulumi.Input; /** * The deployment mode. Accepted values: 'STANDALONE' or 'CLUSTER'. */ deploymentMode?: pulumi.Input; /** * Whether establish support tunnel is enabled. */ establishSupportTunnelEnabled?: pulumi.Input; /** * Whether the node is in production. */ inProduction?: pulumi.Input; /** * The IP address of the VZEN node. */ ipAddress?: pulumi.Input; /** * Whether IPSec is enabled on the node. */ ipSecEnabled?: pulumi.Input; /** * The load balancer IP address. */ loadBalancerIpAddress?: pulumi.Input; /** * Name of the VZEN node. */ name?: pulumi.Input; /** * Whether on-demand support tunnel is enabled. */ onDemandSupportTunnelEnabled?: pulumi.Input; /** * The status of the node. Accepted values: 'ENABLED', 'DISABLED', 'DISABLED_BY_SERVICE_PROVIDER', 'NOT_PROVISIONED_IN_SERVICE_PROVIDER', 'IN_TRIAL'. */ status?: pulumi.Input; /** * The subnet mask of the VZEN node. */ subnetMask?: pulumi.Input; /** * The type of the VZEN node. */ type?: pulumi.Input; /** * The VZEN SKU type. Accepted values: 'SMALL', 'MEDIUM', 'LARGE'. */ vzenSkuType?: pulumi.Input; } //# sourceMappingURL=vzenNode.d.ts.map