import * as pulumi from "@pulumi/pulumi"; /** * This operation Revert VM identified by {extId}. This does an in-place VM restore from a specified VM Recovery Point. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * // revert Vm * const example = new nutanix.VmRevertV2("example", { * extId: "8a938cc5-282b-48c4-81be-de22de145d07", * vmRecoveryPointExtId: "c2c249b0-98a0-43fa-9ff6-dcde578d3936", * }); * ``` * */ export declare class VmRevertV2 extends pulumi.CustomResource { /** * Get an existing VmRevertV2 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?: VmRevertV2State, opts?: pulumi.CustomResourceOptions): VmRevertV2; /** * Returns true if the given object is an instance of VmRevertV2. 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 VmRevertV2; /** * -(Required) The globally unique identifier of a VM. It should be of type UUID. */ readonly extId: pulumi.Output; /** * - The status of the Revert operation. */ readonly status: pulumi.Output; /** * -(Required) The external identifier of the VM Recovery Point. */ readonly vmRecoveryPointExtId: pulumi.Output; /** * Create a VmRevertV2 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: VmRevertV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VmRevertV2 resources. */ export interface VmRevertV2State { /** * -(Required) The globally unique identifier of a VM. It should be of type UUID. */ extId?: pulumi.Input; /** * - The status of the Revert operation. */ status?: pulumi.Input; /** * -(Required) The external identifier of the VM Recovery Point. */ vmRecoveryPointExtId?: pulumi.Input; } /** * The set of arguments for constructing a VmRevertV2 resource. */ export interface VmRevertV2Args { /** * -(Required) The globally unique identifier of a VM. It should be of type UUID. */ extId: pulumi.Input; /** * -(Required) The external identifier of the VM Recovery Point. */ vmRecoveryPointExtId: pulumi.Input; } //# sourceMappingURL=vmRevertV2.d.ts.map