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

nutanix.RecoveryPointRestoreV2

Explore with Pulumi AI

This operation Restore a recovery point identified by {extId}. A comma separated list of the created VM and volume group external identifiers can be found in the task completion details under the keys vm_ext_ids and volume_group_ext_ids respectively.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";

// restore RP 
const example = new nutanix.RecoveryPointRestoreV2("example", {
    clusterExtId: "<cluster_external_id>",
    extId: "<recovery_point_external_id>",
    vmRecoveryPointRestoreOverrides: [{
        vmRecoveryPointExtId: "<vm_recovery_point_uuid>",
    }],
    volumeGroupRecoveryPointRestoreOverrides: [{
        volumeGroupOverrideSpecs: [{
            name: "<volume_group_restored_name>",
        }],
        volumeGroupRecoveryPointExtId: "<volume_group_recovery_point_uuid>",
    }],
});
Copy
import pulumi
import pulumi_nutanix as nutanix

# restore RP 
example = nutanix.RecoveryPointRestoreV2("example",
    cluster_ext_id="<cluster_external_id>",
    ext_id="<recovery_point_external_id>",
    vm_recovery_point_restore_overrides=[{
        "vm_recovery_point_ext_id": "<vm_recovery_point_uuid>",
    }],
    volume_group_recovery_point_restore_overrides=[{
        "volume_group_override_specs": [{
            "name": "<volume_group_restored_name>",
        }],
        "volume_group_recovery_point_ext_id": "<volume_group_recovery_point_uuid>",
    }])
Copy
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 {
		// restore RP
		_, err := nutanix.NewRecoveryPointRestoreV2(ctx, "example", &nutanix.RecoveryPointRestoreV2Args{
			ClusterExtId: pulumi.String("<cluster_external_id>"),
			ExtId:        pulumi.String("<recovery_point_external_id>"),
			VmRecoveryPointRestoreOverrides: nutanix.RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArray{
				&nutanix.RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs{
					VmRecoveryPointExtId: pulumi.String("<vm_recovery_point_uuid>"),
				},
			},
			VolumeGroupRecoveryPointRestoreOverrides: nutanix.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArray{
				&nutanix.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs{
					VolumeGroupOverrideSpecs: nutanix.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpecArray{
						&nutanix.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpecArgs{
							Name: pulumi.String("<volume_group_restored_name>"),
						},
					},
					VolumeGroupRecoveryPointExtId: pulumi.String("<volume_group_recovery_point_uuid>"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;

return await Deployment.RunAsync(() => 
{
    // restore RP 
    var example = new Nutanix.RecoveryPointRestoreV2("example", new()
    {
        ClusterExtId = "<cluster_external_id>",
        ExtId = "<recovery_point_external_id>",
        VmRecoveryPointRestoreOverrides = new[]
        {
            new Nutanix.Inputs.RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs
            {
                VmRecoveryPointExtId = "<vm_recovery_point_uuid>",
            },
        },
        VolumeGroupRecoveryPointRestoreOverrides = new[]
        {
            new Nutanix.Inputs.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs
            {
                VolumeGroupOverrideSpecs = new[]
                {
                    new Nutanix.Inputs.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpecArgs
                    {
                        Name = "<volume_group_restored_name>",
                    },
                },
                VolumeGroupRecoveryPointExtId = "<volume_group_recovery_point_uuid>",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.RecoveryPointRestoreV2;
import com.pulumi.nutanix.RecoveryPointRestoreV2Args;
import com.pulumi.nutanix.inputs.RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs;
import com.pulumi.nutanix.inputs.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs;
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) {
        // restore RP 
        var example = new RecoveryPointRestoreV2("example", RecoveryPointRestoreV2Args.builder()
            .clusterExtId("<cluster_external_id>")
            .extId("<recovery_point_external_id>")
            .vmRecoveryPointRestoreOverrides(RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs.builder()
                .vmRecoveryPointExtId("<vm_recovery_point_uuid>")
                .build())
            .volumeGroupRecoveryPointRestoreOverrides(RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs.builder()
                .volumeGroupOverrideSpecs(RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpecArgs.builder()
                    .name("<volume_group_restored_name>")
                    .build())
                .volumeGroupRecoveryPointExtId("<volume_group_recovery_point_uuid>")
                .build())
            .build());

    }
}
Copy
resources:
  # restore RP
  example:
    type: nutanix:RecoveryPointRestoreV2
    properties:
      clusterExtId: <cluster_external_id>
      extId: <recovery_point_external_id>
      vmRecoveryPointRestoreOverrides:
        - vmRecoveryPointExtId: <vm_recovery_point_uuid>
      volumeGroupRecoveryPointRestoreOverrides:
        - volumeGroupOverrideSpecs:
            - name: <volume_group_restored_name>
          volumeGroupRecoveryPointExtId: <volume_group_recovery_point_uuid>
Copy

Create RecoveryPointRestoreV2 Resource

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

Constructor syntax

new RecoveryPointRestoreV2(name: string, args: RecoveryPointRestoreV2Args, opts?: CustomResourceOptions);
@overload
def RecoveryPointRestoreV2(resource_name: str,
                           args: RecoveryPointRestoreV2Args,
                           opts: Optional[ResourceOptions] = None)

@overload
def RecoveryPointRestoreV2(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           cluster_ext_id: Optional[str] = None,
                           ext_id: Optional[str] = None,
                           vm_recovery_point_restore_overrides: Optional[Sequence[RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs]] = None,
                           volume_group_recovery_point_restore_overrides: Optional[Sequence[RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs]] = None)
func NewRecoveryPointRestoreV2(ctx *Context, name string, args RecoveryPointRestoreV2Args, opts ...ResourceOption) (*RecoveryPointRestoreV2, error)
public RecoveryPointRestoreV2(string name, RecoveryPointRestoreV2Args args, CustomResourceOptions? opts = null)
public RecoveryPointRestoreV2(String name, RecoveryPointRestoreV2Args args)
public RecoveryPointRestoreV2(String name, RecoveryPointRestoreV2Args args, CustomResourceOptions options)
type: nutanix:RecoveryPointRestoreV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. RecoveryPointRestoreV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. RecoveryPointRestoreV2Args
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. RecoveryPointRestoreV2Args
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RecoveryPointRestoreV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. RecoveryPointRestoreV2Args
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 recoveryPointRestoreV2Resource = new Nutanix.RecoveryPointRestoreV2("recoveryPointRestoreV2Resource", new()
{
    ClusterExtId = "string",
    ExtId = "string",
    VmRecoveryPointRestoreOverrides = new[]
    {
        new Nutanix.Inputs.RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs
        {
            VmRecoveryPointExtId = "string",
        },
    },
    VolumeGroupRecoveryPointRestoreOverrides = new[]
    {
        new Nutanix.Inputs.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs
        {
            VolumeGroupRecoveryPointExtId = "string",
            VolumeGroupOverrideSpecs = new[]
            {
                new Nutanix.Inputs.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpecArgs
                {
                    Name = "string",
                },
            },
        },
    },
});
Copy
example, err := nutanix.NewRecoveryPointRestoreV2(ctx, "recoveryPointRestoreV2Resource", &nutanix.RecoveryPointRestoreV2Args{
	ClusterExtId: pulumi.String("string"),
	ExtId:        pulumi.String("string"),
	VmRecoveryPointRestoreOverrides: nutanix.RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArray{
		&nutanix.RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs{
			VmRecoveryPointExtId: pulumi.String("string"),
		},
	},
	VolumeGroupRecoveryPointRestoreOverrides: nutanix.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArray{
		&nutanix.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs{
			VolumeGroupRecoveryPointExtId: pulumi.String("string"),
			VolumeGroupOverrideSpecs: nutanix.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpecArray{
				&nutanix.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpecArgs{
					Name: pulumi.String("string"),
				},
			},
		},
	},
})
Copy
var recoveryPointRestoreV2Resource = new RecoveryPointRestoreV2("recoveryPointRestoreV2Resource", RecoveryPointRestoreV2Args.builder()
    .clusterExtId("string")
    .extId("string")
    .vmRecoveryPointRestoreOverrides(RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs.builder()
        .vmRecoveryPointExtId("string")
        .build())
    .volumeGroupRecoveryPointRestoreOverrides(RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs.builder()
        .volumeGroupRecoveryPointExtId("string")
        .volumeGroupOverrideSpecs(RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpecArgs.builder()
            .name("string")
            .build())
        .build())
    .build());
Copy
recovery_point_restore_v2_resource = nutanix.RecoveryPointRestoreV2("recoveryPointRestoreV2Resource",
    cluster_ext_id="string",
    ext_id="string",
    vm_recovery_point_restore_overrides=[{
        "vm_recovery_point_ext_id": "string",
    }],
    volume_group_recovery_point_restore_overrides=[{
        "volume_group_recovery_point_ext_id": "string",
        "volume_group_override_specs": [{
            "name": "string",
        }],
    }])
Copy
const recoveryPointRestoreV2Resource = new nutanix.RecoveryPointRestoreV2("recoveryPointRestoreV2Resource", {
    clusterExtId: "string",
    extId: "string",
    vmRecoveryPointRestoreOverrides: [{
        vmRecoveryPointExtId: "string",
    }],
    volumeGroupRecoveryPointRestoreOverrides: [{
        volumeGroupRecoveryPointExtId: "string",
        volumeGroupOverrideSpecs: [{
            name: "string",
        }],
    }],
});
Copy
type: nutanix:RecoveryPointRestoreV2
properties:
    clusterExtId: string
    extId: string
    vmRecoveryPointRestoreOverrides:
        - vmRecoveryPointExtId: string
    volumeGroupRecoveryPointRestoreOverrides:
        - volumeGroupOverrideSpecs:
            - name: string
          volumeGroupRecoveryPointExtId: string
Copy

RecoveryPointRestoreV2 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 RecoveryPointRestoreV2 resource accepts the following input properties:

ClusterExtId This property is required. string
-(Required) External identifier of the cluster.
ExtId This property is required. string
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
VmRecoveryPointRestoreOverrides List<PiersKarsenbarg.Nutanix.Inputs.RecoveryPointRestoreV2VmRecoveryPointRestoreOverride>
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
VolumeGroupRecoveryPointRestoreOverrides List<PiersKarsenbarg.Nutanix.Inputs.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverride>
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
ClusterExtId This property is required. string
-(Required) External identifier of the cluster.
ExtId This property is required. string
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
VmRecoveryPointRestoreOverrides []RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
VolumeGroupRecoveryPointRestoreOverrides []RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
clusterExtId This property is required. String
-(Required) External identifier of the cluster.
extId This property is required. String
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
vmRecoveryPointRestoreOverrides List<RecoveryPointRestoreV2VmRecoveryPointRestoreOverride>
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
volumeGroupRecoveryPointRestoreOverrides List<RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverride>
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
clusterExtId This property is required. string
-(Required) External identifier of the cluster.
extId This property is required. string
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
vmRecoveryPointRestoreOverrides RecoveryPointRestoreV2VmRecoveryPointRestoreOverride[]
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
volumeGroupRecoveryPointRestoreOverrides RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverride[]
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
cluster_ext_id This property is required. str
-(Required) External identifier of the cluster.
ext_id This property is required. str
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
vm_recovery_point_restore_overrides Sequence[RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs]
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
volume_group_recovery_point_restore_overrides Sequence[RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs]
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
clusterExtId This property is required. String
-(Required) External identifier of the cluster.
extId This property is required. String
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
vmRecoveryPointRestoreOverrides List<Property Map>
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
volumeGroupRecoveryPointRestoreOverrides List<Property Map>
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
VmExtIds List<string>
  • List of external identifiers of the created(restored) VMs.
VolumeGroupExtIds List<string>
  • List of external identifiers of the created(restored) volume groups.
Id string
The provider-assigned unique ID for this managed resource.
VmExtIds []string
  • List of external identifiers of the created(restored) VMs.
VolumeGroupExtIds []string
  • List of external identifiers of the created(restored) volume groups.
id String
The provider-assigned unique ID for this managed resource.
vmExtIds List<String>
  • List of external identifiers of the created(restored) VMs.
volumeGroupExtIds List<String>
  • List of external identifiers of the created(restored) volume groups.
id string
The provider-assigned unique ID for this managed resource.
vmExtIds string[]
  • List of external identifiers of the created(restored) VMs.
volumeGroupExtIds string[]
  • List of external identifiers of the created(restored) volume groups.
id str
The provider-assigned unique ID for this managed resource.
vm_ext_ids Sequence[str]
  • List of external identifiers of the created(restored) VMs.
volume_group_ext_ids Sequence[str]
  • List of external identifiers of the created(restored) volume groups.
id String
The provider-assigned unique ID for this managed resource.
vmExtIds List<String>
  • List of external identifiers of the created(restored) VMs.
volumeGroupExtIds List<String>
  • List of external identifiers of the created(restored) volume groups.

Look up Existing RecoveryPointRestoreV2 Resource

Get an existing RecoveryPointRestoreV2 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?: RecoveryPointRestoreV2State, opts?: CustomResourceOptions): RecoveryPointRestoreV2
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cluster_ext_id: Optional[str] = None,
        ext_id: Optional[str] = None,
        vm_ext_ids: Optional[Sequence[str]] = None,
        vm_recovery_point_restore_overrides: Optional[Sequence[RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs]] = None,
        volume_group_ext_ids: Optional[Sequence[str]] = None,
        volume_group_recovery_point_restore_overrides: Optional[Sequence[RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs]] = None) -> RecoveryPointRestoreV2
func GetRecoveryPointRestoreV2(ctx *Context, name string, id IDInput, state *RecoveryPointRestoreV2State, opts ...ResourceOption) (*RecoveryPointRestoreV2, error)
public static RecoveryPointRestoreV2 Get(string name, Input<string> id, RecoveryPointRestoreV2State? state, CustomResourceOptions? opts = null)
public static RecoveryPointRestoreV2 get(String name, Output<String> id, RecoveryPointRestoreV2State state, CustomResourceOptions options)
resources:  _:    type: nutanix:RecoveryPointRestoreV2    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ClusterExtId string
-(Required) External identifier of the cluster.
ExtId string
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
VmExtIds List<string>
  • List of external identifiers of the created(restored) VMs.
VmRecoveryPointRestoreOverrides List<PiersKarsenbarg.Nutanix.Inputs.RecoveryPointRestoreV2VmRecoveryPointRestoreOverride>
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
VolumeGroupExtIds List<string>
  • List of external identifiers of the created(restored) volume groups.
VolumeGroupRecoveryPointRestoreOverrides List<PiersKarsenbarg.Nutanix.Inputs.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverride>
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
ClusterExtId string
-(Required) External identifier of the cluster.
ExtId string
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
VmExtIds []string
  • List of external identifiers of the created(restored) VMs.
VmRecoveryPointRestoreOverrides []RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
VolumeGroupExtIds []string
  • List of external identifiers of the created(restored) volume groups.
VolumeGroupRecoveryPointRestoreOverrides []RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
clusterExtId String
-(Required) External identifier of the cluster.
extId String
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
vmExtIds List<String>
  • List of external identifiers of the created(restored) VMs.
vmRecoveryPointRestoreOverrides List<RecoveryPointRestoreV2VmRecoveryPointRestoreOverride>
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
volumeGroupExtIds List<String>
  • List of external identifiers of the created(restored) volume groups.
volumeGroupRecoveryPointRestoreOverrides List<RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverride>
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
clusterExtId string
-(Required) External identifier of the cluster.
extId string
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
vmExtIds string[]
  • List of external identifiers of the created(restored) VMs.
vmRecoveryPointRestoreOverrides RecoveryPointRestoreV2VmRecoveryPointRestoreOverride[]
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
volumeGroupExtIds string[]
  • List of external identifiers of the created(restored) volume groups.
volumeGroupRecoveryPointRestoreOverrides RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverride[]
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
cluster_ext_id str
-(Required) External identifier of the cluster.
ext_id str
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
vm_ext_ids Sequence[str]
  • List of external identifiers of the created(restored) VMs.
vm_recovery_point_restore_overrides Sequence[RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs]
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
volume_group_ext_ids Sequence[str]
  • List of external identifiers of the created(restored) volume groups.
volume_group_recovery_point_restore_overrides Sequence[RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs]
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
clusterExtId String
-(Required) External identifier of the cluster.
extId String
-(Required) The external identifier that can be used to retrieve the recovery point using its URL.
vmExtIds List<String>
  • List of external identifiers of the created(restored) VMs.
vmRecoveryPointRestoreOverrides List<Property Map>
-(Optional) List of specifications to restore a specific VM recovery point(s) that are a part of the top-level recovery point. A specific VM recovery point can be selected for restore by specifying its external identifier along with override specification (if any).
volumeGroupExtIds List<String>
  • List of external identifiers of the created(restored) volume groups.
volumeGroupRecoveryPointRestoreOverrides List<Property Map>
-(Optional) List of specifications to restore a specific volume group recovery point(s) that are a part of the top-level recovery point. A specific volume group recovery point can be selected for restore by specifying its external identifier along with override specification (if any).

Supporting Types

RecoveryPointRestoreV2VmRecoveryPointRestoreOverride
, RecoveryPointRestoreV2VmRecoveryPointRestoreOverrideArgs

VmRecoveryPointExtId This property is required. string
-(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
VmRecoveryPointExtId This property is required. string
-(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
vmRecoveryPointExtId This property is required. String
-(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
vmRecoveryPointExtId This property is required. string
-(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
vm_recovery_point_ext_id This property is required. str
-(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
vmRecoveryPointExtId This property is required. String
-(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.

RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverride
, RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs

VolumeGroupRecoveryPointExtId This property is required. string
-(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
VolumeGroupOverrideSpecs List<PiersKarsenbarg.Nutanix.Inputs.RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpec>
-(Optional) Protected resource/recovery point restore that overrides the volume group configuration. The specified properties will be overridden for the restored volume group.
VolumeGroupRecoveryPointExtId This property is required. string
-(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
VolumeGroupOverrideSpecs []RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpec
-(Optional) Protected resource/recovery point restore that overrides the volume group configuration. The specified properties will be overridden for the restored volume group.
volumeGroupRecoveryPointExtId This property is required. String
-(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
volumeGroupOverrideSpecs List<RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpec>
-(Optional) Protected resource/recovery point restore that overrides the volume group configuration. The specified properties will be overridden for the restored volume group.
volumeGroupRecoveryPointExtId This property is required. string
-(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
volumeGroupOverrideSpecs RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpec[]
-(Optional) Protected resource/recovery point restore that overrides the volume group configuration. The specified properties will be overridden for the restored volume group.
volume_group_recovery_point_ext_id This property is required. str
-(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
volume_group_override_specs Sequence[RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpec]
-(Optional) Protected resource/recovery point restore that overrides the volume group configuration. The specified properties will be overridden for the restored volume group.
volumeGroupRecoveryPointExtId This property is required. String
-(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
volumeGroupOverrideSpecs List<Property Map>
-(Optional) Protected resource/recovery point restore that overrides the volume group configuration. The specified properties will be overridden for the restored volume group.

RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpec
, RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideVolumeGroupOverrideSpecArgs

Name string
-(Optional) The name of the restored volume group.
Name string
-(Optional) The name of the restored volume group.
name String
-(Optional) The name of the restored volume group.
name string
-(Optional) The name of the restored volume group.
name str
-(Optional) The name of the restored volume group.
name String
-(Optional) The name of the restored volume group.

Package Details

Repository
nutanix pierskarsenbarg/pulumi-nutanix
License
Apache-2.0
Notes
This Pulumi package is based on the nutanix Terraform Provider.