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>",
}],
});
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>",
}])
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
})
}
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>",
},
},
});
});
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());
}
}
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>
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 string
- The unique name of the resource.
- args RecoveryPointRestoreV2Args
- 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 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 string
- The unique name of the resource.
- args RecoveryPointRestoreV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RecoveryPointRestoreV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
},
},
},
});
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"),
},
},
},
},
})
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());
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",
}],
}])
const recoveryPointRestoreV2Resource = new nutanix.RecoveryPointRestoreV2("recoveryPointRestoreV2Resource", {
clusterExtId: "string",
extId: "string",
vmRecoveryPointRestoreOverrides: [{
vmRecoveryPointExtId: "string",
}],
volumeGroupRecoveryPointRestoreOverrides: [{
volumeGroupRecoveryPointExtId: "string",
volumeGroupOverrideSpecs: [{
name: "string",
}],
}],
});
type: nutanix:RecoveryPointRestoreV2
properties:
clusterExtId: string
extId: string
vmRecoveryPointRestoreOverrides:
- vmRecoveryPointExtId: string
volumeGroupRecoveryPointRestoreOverrides:
- volumeGroupOverrideSpecs:
- name: string
volumeGroupRecoveryPointExtId: string
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:
- Cluster
Ext stringId - -(Required) External identifier of the cluster.
- Ext
Id string - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- Vm
Recovery List<PiersPoint Restore Overrides Karsenbarg. Nutanix. Inputs. Recovery Point Restore V2Vm Recovery Point Restore Override> - -(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 List<PiersRecovery Point Restore Overrides Karsenbarg. Nutanix. Inputs. Recovery Point Restore V2Volume Group Recovery Point Restore Override> - -(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 stringId - -(Required) External identifier of the cluster.
- Ext
Id string - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- Vm
Recovery []RecoveryPoint Restore Overrides Point Restore V2Vm Recovery Point Restore Override Args - -(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 []RecoveryRecovery Point Restore Overrides Point Restore V2Volume Group Recovery Point Restore Override Args - -(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 StringId - -(Required) External identifier of the cluster.
- ext
Id String - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- vm
Recovery List<RecoveryPoint Restore Overrides Point Restore V2Vm Recovery Point Restore Override> - -(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 List<RecoveryRecovery Point Restore Overrides Point Restore V2Volume Group Recovery Point Restore Override> - -(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 stringId - -(Required) External identifier of the cluster.
- ext
Id string - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- vm
Recovery RecoveryPoint Restore Overrides Point Restore V2Vm Recovery Point Restore Override[] - -(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 RecoveryRecovery Point Restore Overrides Point Restore V2Volume Group Recovery Point Restore Override[] - -(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_ strid - -(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_
recovery_ Sequence[Recoverypoint_ restore_ overrides Point Restore V2Vm Recovery Point Restore Override Args] - -(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_ Sequence[Recoveryrecovery_ point_ restore_ overrides Point Restore V2Volume Group Recovery Point Restore Override Args] - -(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 StringId - -(Required) External identifier of the cluster.
- ext
Id String - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- vm
Recovery List<Property Map>Point Restore Overrides - -(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 List<Property Map>Recovery Point Restore Overrides - -(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.
- Vm
Ext List<string>Ids - List of external identifiers of the created(restored) VMs.
- Volume
Group List<string>Ext Ids - List of external identifiers of the created(restored) volume groups.
- Id string
- The provider-assigned unique ID for this managed resource.
- Vm
Ext []stringIds - List of external identifiers of the created(restored) VMs.
- Volume
Group []stringExt Ids - List of external identifiers of the created(restored) volume groups.
- id String
- The provider-assigned unique ID for this managed resource.
- vm
Ext List<String>Ids - List of external identifiers of the created(restored) VMs.
- volume
Group List<String>Ext Ids - List of external identifiers of the created(restored) volume groups.
- id string
- The provider-assigned unique ID for this managed resource.
- vm
Ext string[]Ids - List of external identifiers of the created(restored) VMs.
- volume
Group string[]Ext Ids - List of external identifiers of the created(restored) volume groups.
- id str
- The provider-assigned unique ID for this managed resource.
- vm_
ext_ Sequence[str]ids - List of external identifiers of the created(restored) VMs.
- volume_
group_ Sequence[str]ext_ ids - List of external identifiers of the created(restored) volume groups.
- id String
- The provider-assigned unique ID for this managed resource.
- vm
Ext List<String>Ids - List of external identifiers of the created(restored) VMs.
- volume
Group List<String>Ext Ids - 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
- 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.
- Cluster
Ext stringId - -(Required) External identifier of the cluster.
- Ext
Id string - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- Vm
Ext List<string>Ids - List of external identifiers of the created(restored) VMs.
- Vm
Recovery List<PiersPoint Restore Overrides Karsenbarg. Nutanix. Inputs. Recovery Point Restore V2Vm Recovery Point Restore Override> - -(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 List<string>Ext Ids - List of external identifiers of the created(restored) volume groups.
- Volume
Group List<PiersRecovery Point Restore Overrides Karsenbarg. Nutanix. Inputs. Recovery Point Restore V2Volume Group Recovery Point Restore Override> - -(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 stringId - -(Required) External identifier of the cluster.
- Ext
Id string - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- Vm
Ext []stringIds - List of external identifiers of the created(restored) VMs.
- Vm
Recovery []RecoveryPoint Restore Overrides Point Restore V2Vm Recovery Point Restore Override Args - -(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 []stringExt Ids - List of external identifiers of the created(restored) volume groups.
- Volume
Group []RecoveryRecovery Point Restore Overrides Point Restore V2Volume Group Recovery Point Restore Override Args - -(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 StringId - -(Required) External identifier of the cluster.
- ext
Id String - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- vm
Ext List<String>Ids - List of external identifiers of the created(restored) VMs.
- vm
Recovery List<RecoveryPoint Restore Overrides Point Restore V2Vm Recovery Point Restore Override> - -(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 List<String>Ext Ids - List of external identifiers of the created(restored) volume groups.
- volume
Group List<RecoveryRecovery Point Restore Overrides Point Restore V2Volume Group Recovery Point Restore Override> - -(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 stringId - -(Required) External identifier of the cluster.
- ext
Id string - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- vm
Ext string[]Ids - List of external identifiers of the created(restored) VMs.
- vm
Recovery RecoveryPoint Restore Overrides Point Restore V2Vm Recovery Point Restore Override[] - -(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 string[]Ext Ids - List of external identifiers of the created(restored) volume groups.
- volume
Group RecoveryRecovery Point Restore Overrides Point Restore V2Volume Group Recovery Point Restore Override[] - -(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_ strid - -(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_ Sequence[str]ids - List of external identifiers of the created(restored) VMs.
- vm_
recovery_ Sequence[Recoverypoint_ restore_ overrides Point Restore V2Vm Recovery Point Restore Override Args] - -(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_ Sequence[str]ext_ ids - List of external identifiers of the created(restored) volume groups.
- volume_
group_ Sequence[Recoveryrecovery_ point_ restore_ overrides Point Restore V2Volume Group Recovery Point Restore Override Args] - -(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 StringId - -(Required) External identifier of the cluster.
- ext
Id String - -(Required) The external identifier that can be used to retrieve the recovery point using its URL.
- vm
Ext List<String>Ids - List of external identifiers of the created(restored) VMs.
- vm
Recovery List<Property Map>Point Restore Overrides - -(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 List<String>Ext Ids - List of external identifiers of the created(restored) volume groups.
- volume
Group List<Property Map>Recovery Point Restore Overrides - -(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
- Vm
Recovery stringPoint Ext Id - -(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
- Vm
Recovery stringPoint Ext Id - -(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
- vm
Recovery StringPoint Ext Id - -(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
- vm
Recovery stringPoint Ext Id - -(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
- vm_
recovery_ strpoint_ ext_ id - -(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
- vm
Recovery StringPoint Ext Id - -(Required) External identifier of a VM recovery point, that is a part of the top-level recovery point.
RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverride, RecoveryPointRestoreV2VolumeGroupRecoveryPointRestoreOverrideArgs
- Volume
Group stringRecovery Point Ext Id - -(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
- Volume
Group List<PiersOverride Specs Karsenbarg. Nutanix. Inputs. Recovery Point Restore V2Volume Group Recovery Point Restore Override Volume Group Override Spec> - -(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 stringRecovery Point Ext Id - -(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
- Volume
Group []RecoveryOverride Specs Point Restore V2Volume Group Recovery Point Restore Override Volume Group Override Spec - -(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 StringRecovery Point Ext Id - -(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
- volume
Group List<RecoveryOverride Specs Point Restore V2Volume Group Recovery Point Restore Override Volume Group Override Spec> - -(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 stringRecovery Point Ext Id - -(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
- volume
Group RecoveryOverride Specs Point Restore V2Volume Group Recovery Point Restore Override Volume Group Override Spec[] - -(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_ strrecovery_ point_ ext_ id - -(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
- volume_
group_ Sequence[Recoveryoverride_ specs Point Restore V2Volume Group Recovery Point Restore Override Volume Group Override Spec] - -(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 StringRecovery Point Ext Id - -(Required) External identifier of a volume group recovery point, that is a part of the top-level recovery point.
- volume
Group List<Property Map>Override Specs - -(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.