import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Perform LCM prechecks for the intended update operation. * * ## Example * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const pre_checks = new nutanix.LcmPrechecksV2("pre-checks", { * xClusterId: "0005a104-0b0b-4b0-8005-0b0b0b0b0b0b", * entityUpdateSpecs: [{ * entityUuid: "0c5c9e53-3551-4c5d-b13c-e41c04cbfaf7", * toVersion: "4.0.0", * }], * }); * ``` * */ export declare class LcmPrechecksV2 extends pulumi.CustomResource { /** * Get an existing LcmPrechecksV2 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?: LcmPrechecksV2State, opts?: pulumi.CustomResourceOptions): LcmPrechecksV2; /** * Returns true if the given object is an instance of LcmPrechecksV2. 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 LcmPrechecksV2; /** * List of entity update objects for getting recommendations. */ readonly entityUpdateSpecs: pulumi.Output; readonly extId: pulumi.Output; /** * Cluster management server configuration used while updating clusters with ESX or Hyper-V. */ readonly managementServer: pulumi.Output; /** * List of prechecks to skip. The allowed value is 'powerOffUvms' that skips the pinned VM prechecks. Items Enum: `POWER_OFF_UVMS` */ readonly skippedPrecheckFlags: pulumi.Output; /** * Cluster uuid on which the resource is present or operation is being performed. */ readonly xClusterId: pulumi.Output; /** * Create a LcmPrechecksV2 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: LcmPrechecksV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LcmPrechecksV2 resources. */ export interface LcmPrechecksV2State { /** * List of entity update objects for getting recommendations. */ entityUpdateSpecs?: pulumi.Input[] | undefined>; extId?: pulumi.Input; /** * Cluster management server configuration used while updating clusters with ESX or Hyper-V. */ managementServer?: pulumi.Input; /** * List of prechecks to skip. The allowed value is 'powerOffUvms' that skips the pinned VM prechecks. Items Enum: `POWER_OFF_UVMS` */ skippedPrecheckFlags?: pulumi.Input[] | undefined>; /** * Cluster uuid on which the resource is present or operation is being performed. */ xClusterId?: pulumi.Input; } /** * The set of arguments for constructing a LcmPrechecksV2 resource. */ export interface LcmPrechecksV2Args { /** * List of entity update objects for getting recommendations. */ entityUpdateSpecs: pulumi.Input[]>; /** * Cluster management server configuration used while updating clusters with ESX or Hyper-V. */ managementServer?: pulumi.Input; /** * List of prechecks to skip. The allowed value is 'powerOffUvms' that skips the pinned VM prechecks. Items Enum: `POWER_OFF_UVMS` */ skippedPrecheckFlags?: pulumi.Input[] | undefined>; /** * Cluster uuid on which the resource is present or operation is being performed. */ xClusterId?: pulumi.Input; } //# sourceMappingURL=lcmPrechecksV2.d.ts.map