import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * > - The Pc Deploy V2 resource is an action-only resource that supports creating actions. The update and delete operations have no effect. To run it again, destroy and reapply the resource. * > - We need to increase the timeout for deploying the PC resource because the deployment takes longer than the default timeout allows for the operation to complete. * * Deploys a Prism Central using the provided details. Prism Central Size, Network Config are mandatory fields to deploy Prism Central. The response from this endpoint contains the URL in the task object location header that can be used to track the request status. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const example = new nutanix.PcDeployV2("example", { * config: { * buildInfo: { * version: "pc.2024.3", * }, * size: "STARTER", * name: "PC_EXAMPLE", * }, * network: { * externalNetworks: [{ * networkExtId: "ba416f8d-00f2-499d-bc4c-19da8d104af9", * defaultGateway: { * ipv4s: [{ * value: "10.97.64.1", * }], * }, * subnetMask: { * ipv4s: [{ * value: "255.255.252.0", * }], * }, * ipRanges: [{ * begin: { * ipv4s: [{ * value: "10.97.64.91", * }], * }, * end: { * ipv4s: [{ * value: "10.97.64.91", * }], * }, * }], * }], * nameServers: [ * { * ipv4s: [{ * value: "10.40.64.16", * }], * }, * { * ipv4s: [{ * value: "10.40.64.15", * }], * }, * ], * ntpServers: [ * { * fqdns: [{ * value: "2.centos.pool.ntp.org", * }], * }, * { * fqdns: [{ * value: "3.centos.pool.ntp.org", * }], * }, * ], * }, * }); * ``` * */ export declare class PcDeployV2 extends pulumi.CustomResource { /** * Get an existing PcDeployV2 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?: PcDeployV2State, opts?: pulumi.CustomResourceOptions): PcDeployV2; /** * Returns true if the given object is an instance of PcDeployV2. 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 PcDeployV2; /** * -(Required) Domain manager (Prism Central) cluster configuration details. */ readonly config: pulumi.Output; /** * -(Required) Domain manager (Prism Central) network configuration details. */ readonly network: pulumi.Output; /** * -(Optional) This configuration enables Prism Central to be deployed in scale-out mode. Default is `false`. */ readonly shouldEnableHighAvailability: pulumi.Output; /** * Create a PcDeployV2 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: PcDeployV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PcDeployV2 resources. */ export interface PcDeployV2State { /** * -(Required) Domain manager (Prism Central) cluster configuration details. */ config?: pulumi.Input; /** * -(Required) Domain manager (Prism Central) network configuration details. */ network?: pulumi.Input; /** * -(Optional) This configuration enables Prism Central to be deployed in scale-out mode. Default is `false`. */ shouldEnableHighAvailability?: pulumi.Input; } /** * The set of arguments for constructing a PcDeployV2 resource. */ export interface PcDeployV2Args { /** * -(Required) Domain manager (Prism Central) cluster configuration details. */ config: pulumi.Input; /** * -(Required) Domain manager (Prism Central) network configuration details. */ network: pulumi.Input; /** * -(Optional) This configuration enables Prism Central to be deployed in scale-out mode. Default is `false`. */ shouldEnableHighAvailability?: pulumi.Input; } //# sourceMappingURL=pcDeployV2.d.ts.map