1. Packages
  2. Nutanix
  3. API Docs
  4. VmRevertV2
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

nutanix.VmRevertV2

Explore with Pulumi AI

nutanix logo
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

    This operation Revert VM identified by {extId}. This does an in-place VM restore from a specified VM Recovery Point.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nutanix from "@pierskarsenbarg/nutanix";
    
    // revert Vm  
    const example = new nutanix.VmRevertV2("example", {
        extId: "<VM_UUID>",
        vmRecoveryPointExtId: "<Vm_Recovery_Point_UUID>",
    });
    
    import pulumi
    import pulumi_nutanix as nutanix
    
    # revert Vm  
    example = nutanix.VmRevertV2("example",
        ext_id="<VM_UUID>",
        vm_recovery_point_ext_id="<Vm_Recovery_Point_UUID>")
    
    package main
    
    import (
    	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// revert Vm
    		_, err := nutanix.NewVmRevertV2(ctx, "example", &nutanix.VmRevertV2Args{
    			ExtId:                pulumi.String("<VM_UUID>"),
    			VmRecoveryPointExtId: pulumi.String("<Vm_Recovery_Point_UUID>"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nutanix = PiersKarsenbarg.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        // revert Vm  
        var example = new Nutanix.VmRevertV2("example", new()
        {
            ExtId = "<VM_UUID>",
            VmRecoveryPointExtId = "<Vm_Recovery_Point_UUID>",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.VmRevertV2;
    import com.pulumi.nutanix.VmRevertV2Args;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // revert Vm  
            var example = new VmRevertV2("example", VmRevertV2Args.builder()
                .extId("<VM_UUID>")
                .vmRecoveryPointExtId("<Vm_Recovery_Point_UUID>")
                .build());
    
        }
    }
    
    resources:
      # revert Vm
      example:
        type: nutanix:VmRevertV2
        properties:
          extId: <VM_UUID>
          vmRecoveryPointExtId: <Vm_Recovery_Point_UUID>
    

    Create VmRevertV2 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new VmRevertV2(name: string, args: VmRevertV2Args, opts?: CustomResourceOptions);
    @overload
    def VmRevertV2(resource_name: str,
                   args: VmRevertV2Args,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def VmRevertV2(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   ext_id: Optional[str] = None,
                   vm_recovery_point_ext_id: Optional[str] = None)
    func NewVmRevertV2(ctx *Context, name string, args VmRevertV2Args, opts ...ResourceOption) (*VmRevertV2, error)
    public VmRevertV2(string name, VmRevertV2Args args, CustomResourceOptions? opts = null)
    public VmRevertV2(String name, VmRevertV2Args args)
    public VmRevertV2(String name, VmRevertV2Args args, CustomResourceOptions options)
    
    type: nutanix:VmRevertV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args VmRevertV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args VmRevertV2Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args VmRevertV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VmRevertV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VmRevertV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var vmRevertV2Resource = new Nutanix.VmRevertV2("vmRevertV2Resource", new()
    {
        ExtId = "string",
        VmRecoveryPointExtId = "string",
    });
    
    example, err := nutanix.NewVmRevertV2(ctx, "vmRevertV2Resource", &nutanix.VmRevertV2Args{
    	ExtId:                pulumi.String("string"),
    	VmRecoveryPointExtId: pulumi.String("string"),
    })
    
    var vmRevertV2Resource = new VmRevertV2("vmRevertV2Resource", VmRevertV2Args.builder()
        .extId("string")
        .vmRecoveryPointExtId("string")
        .build());
    
    vm_revert_v2_resource = nutanix.VmRevertV2("vmRevertV2Resource",
        ext_id="string",
        vm_recovery_point_ext_id="string")
    
    const vmRevertV2Resource = new nutanix.VmRevertV2("vmRevertV2Resource", {
        extId: "string",
        vmRecoveryPointExtId: "string",
    });
    
    type: nutanix:VmRevertV2
    properties:
        extId: string
        vmRecoveryPointExtId: string
    

    VmRevertV2 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The VmRevertV2 resource accepts the following input properties:

    ExtId string
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    VmRecoveryPointExtId string
    -(Required) The external identifier of the VM Recovery Point.
    ExtId string
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    VmRecoveryPointExtId string
    -(Required) The external identifier of the VM Recovery Point.
    extId String
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    vmRecoveryPointExtId String
    -(Required) The external identifier of the VM Recovery Point.
    extId string
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    vmRecoveryPointExtId string
    -(Required) The external identifier of the VM Recovery Point.
    ext_id str
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    vm_recovery_point_ext_id str
    -(Required) The external identifier of the VM Recovery Point.
    extId String
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    vmRecoveryPointExtId String
    -(Required) The external identifier of the VM Recovery Point.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VmRevertV2 resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    • The status of the Revert operation.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    • The status of the Revert operation.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    • The status of the Revert operation.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    • The status of the Revert operation.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    • The status of the Revert operation.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    • The status of the Revert operation.

    Look up Existing VmRevertV2 Resource

    Get an existing VmRevertV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: VmRevertV2State, opts?: CustomResourceOptions): VmRevertV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ext_id: Optional[str] = None,
            status: Optional[str] = None,
            vm_recovery_point_ext_id: Optional[str] = None) -> VmRevertV2
    func GetVmRevertV2(ctx *Context, name string, id IDInput, state *VmRevertV2State, opts ...ResourceOption) (*VmRevertV2, error)
    public static VmRevertV2 Get(string name, Input<string> id, VmRevertV2State? state, CustomResourceOptions? opts = null)
    public static VmRevertV2 get(String name, Output<String> id, VmRevertV2State state, CustomResourceOptions options)
    resources:  _:    type: nutanix:VmRevertV2    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ExtId string
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    Status string
    • The status of the Revert operation.
    VmRecoveryPointExtId string
    -(Required) The external identifier of the VM Recovery Point.
    ExtId string
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    Status string
    • The status of the Revert operation.
    VmRecoveryPointExtId string
    -(Required) The external identifier of the VM Recovery Point.
    extId String
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    status String
    • The status of the Revert operation.
    vmRecoveryPointExtId String
    -(Required) The external identifier of the VM Recovery Point.
    extId string
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    status string
    • The status of the Revert operation.
    vmRecoveryPointExtId string
    -(Required) The external identifier of the VM Recovery Point.
    ext_id str
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    status str
    • The status of the Revert operation.
    vm_recovery_point_ext_id str
    -(Required) The external identifier of the VM Recovery Point.
    extId String
    -(Required) The globally unique identifier of a VM. It should be of type UUID.
    status String
    • The status of the Revert operation.
    vmRecoveryPointExtId String
    -(Required) The external identifier of the VM Recovery Point.

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg