nutanix.VolumeGroupDiskV2
Explore with Pulumi AI
Provides a resource to Creates a new Volume Disk.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
// create new volume group disk and attached it to the previous volume group
const example = new nutanix.VolumeGroupDiskV2("example", {
volumeGroupExtId: "cf7de8b9-88ed-477d-a602-c34ab7174c01",
index: 1,
description: "create volume disk example",
diskSizeBytes: 5368709120,
diskDataSourceReferences: [{
name: "disk1",
extId: "1d92110d-26b5-46c0-8c93-20b8171373e0",
entityType: "STORAGE_CONTAINER",
uris: [
"uri1",
"uri2",
],
}],
diskStorageFeatures: [{
flashModes: [{
isEnabled: false,
}],
}],
});
import pulumi
import pulumi_nutanix as nutanix
# create new volume group disk and attached it to the previous volume group
example = nutanix.VolumeGroupDiskV2("example",
volume_group_ext_id="cf7de8b9-88ed-477d-a602-c34ab7174c01",
index=1,
description="create volume disk example",
disk_size_bytes=5368709120,
disk_data_source_references=[{
"name": "disk1",
"ext_id": "1d92110d-26b5-46c0-8c93-20b8171373e0",
"entity_type": "STORAGE_CONTAINER",
"uris": [
"uri1",
"uri2",
],
}],
disk_storage_features=[{
"flash_modes": [{
"is_enabled": False,
}],
}])
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 {
// create new volume group disk and attached it to the previous volume group
_, err := nutanix.NewVolumeGroupDiskV2(ctx, "example", &nutanix.VolumeGroupDiskV2Args{
VolumeGroupExtId: pulumi.String("cf7de8b9-88ed-477d-a602-c34ab7174c01"),
Index: pulumi.Int(1),
Description: pulumi.String("create volume disk example"),
DiskSizeBytes: pulumi.Int(5368709120),
DiskDataSourceReferences: nutanix.VolumeGroupDiskV2DiskDataSourceReferenceArray{
&nutanix.VolumeGroupDiskV2DiskDataSourceReferenceArgs{
Name: pulumi.String("disk1"),
ExtId: pulumi.String("1d92110d-26b5-46c0-8c93-20b8171373e0"),
EntityType: pulumi.String("STORAGE_CONTAINER"),
Uris: pulumi.StringArray{
pulumi.String("uri1"),
pulumi.String("uri2"),
},
},
},
DiskStorageFeatures: nutanix.VolumeGroupDiskV2DiskStorageFeatureArray{
&nutanix.VolumeGroupDiskV2DiskStorageFeatureArgs{
FlashModes: nutanix.VolumeGroupDiskV2DiskStorageFeatureFlashModeArray{
&nutanix.VolumeGroupDiskV2DiskStorageFeatureFlashModeArgs{
IsEnabled: pulumi.Bool(false),
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() =>
{
// create new volume group disk and attached it to the previous volume group
var example = new Nutanix.VolumeGroupDiskV2("example", new()
{
VolumeGroupExtId = "cf7de8b9-88ed-477d-a602-c34ab7174c01",
Index = 1,
Description = "create volume disk example",
DiskSizeBytes = 5368709120,
DiskDataSourceReferences = new[]
{
new Nutanix.Inputs.VolumeGroupDiskV2DiskDataSourceReferenceArgs
{
Name = "disk1",
ExtId = "1d92110d-26b5-46c0-8c93-20b8171373e0",
EntityType = "STORAGE_CONTAINER",
Uris = new[]
{
"uri1",
"uri2",
},
},
},
DiskStorageFeatures = new[]
{
new Nutanix.Inputs.VolumeGroupDiskV2DiskStorageFeatureArgs
{
FlashModes = new[]
{
new Nutanix.Inputs.VolumeGroupDiskV2DiskStorageFeatureFlashModeArgs
{
IsEnabled = false,
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.VolumeGroupDiskV2;
import com.pulumi.nutanix.VolumeGroupDiskV2Args;
import com.pulumi.nutanix.inputs.VolumeGroupDiskV2DiskDataSourceReferenceArgs;
import com.pulumi.nutanix.inputs.VolumeGroupDiskV2DiskStorageFeatureArgs;
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) {
// create new volume group disk and attached it to the previous volume group
var example = new VolumeGroupDiskV2("example", VolumeGroupDiskV2Args.builder()
.volumeGroupExtId("cf7de8b9-88ed-477d-a602-c34ab7174c01")
.index(1)
.description("create volume disk example")
.diskSizeBytes(5368709120)
.diskDataSourceReferences(VolumeGroupDiskV2DiskDataSourceReferenceArgs.builder()
.name("disk1")
.extId("1d92110d-26b5-46c0-8c93-20b8171373e0")
.entityType("STORAGE_CONTAINER")
.uris(
"uri1",
"uri2")
.build())
.diskStorageFeatures(VolumeGroupDiskV2DiskStorageFeatureArgs.builder()
.flashModes(VolumeGroupDiskV2DiskStorageFeatureFlashModeArgs.builder()
.isEnabled(false)
.build())
.build())
.build());
}
}
resources:
# create new volume group disk and attached it to the previous volume group
example:
type: nutanix:VolumeGroupDiskV2
properties:
volumeGroupExtId: cf7de8b9-88ed-477d-a602-c34ab7174c01
index: 1
description: create volume disk example
diskSizeBytes: 5.36870912e+09
diskDataSourceReferences:
- name: disk1
extId: 1d92110d-26b5-46c0-8c93-20b8171373e0
entityType: STORAGE_CONTAINER
uris:
- uri1
- uri2
diskStorageFeatures:
- flashModes:
- isEnabled: false
Create VolumeGroupDiskV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VolumeGroupDiskV2(name: string, args: VolumeGroupDiskV2Args, opts?: CustomResourceOptions);
@overload
def VolumeGroupDiskV2(resource_name: str,
args: VolumeGroupDiskV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def VolumeGroupDiskV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
disk_data_source_references: Optional[Sequence[VolumeGroupDiskV2DiskDataSourceReferenceArgs]] = None,
disk_size_bytes: Optional[int] = None,
volume_group_ext_id: Optional[str] = None,
description: Optional[str] = None,
disk_storage_features: Optional[Sequence[VolumeGroupDiskV2DiskStorageFeatureArgs]] = None,
index: Optional[int] = None)
func NewVolumeGroupDiskV2(ctx *Context, name string, args VolumeGroupDiskV2Args, opts ...ResourceOption) (*VolumeGroupDiskV2, error)
public VolumeGroupDiskV2(string name, VolumeGroupDiskV2Args args, CustomResourceOptions? opts = null)
public VolumeGroupDiskV2(String name, VolumeGroupDiskV2Args args)
public VolumeGroupDiskV2(String name, VolumeGroupDiskV2Args args, CustomResourceOptions options)
type: nutanix:VolumeGroupDiskV2
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 VolumeGroupDiskV2Args
- 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 VolumeGroupDiskV2Args
- 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 VolumeGroupDiskV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeGroupDiskV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeGroupDiskV2Args
- 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 volumeGroupDiskV2Resource = new Nutanix.VolumeGroupDiskV2("volumeGroupDiskV2Resource", new()
{
DiskDataSourceReferences = new[]
{
new Nutanix.Inputs.VolumeGroupDiskV2DiskDataSourceReferenceArgs
{
ExtId = "string",
EntityType = "string",
Name = "string",
Uris = new[]
{
"string",
},
},
},
DiskSizeBytes = 0,
VolumeGroupExtId = "string",
Description = "string",
DiskStorageFeatures = new[]
{
new Nutanix.Inputs.VolumeGroupDiskV2DiskStorageFeatureArgs
{
FlashModes = new[]
{
new Nutanix.Inputs.VolumeGroupDiskV2DiskStorageFeatureFlashModeArgs
{
IsEnabled = false,
},
},
},
},
Index = 0,
});
example, err := nutanix.NewVolumeGroupDiskV2(ctx, "volumeGroupDiskV2Resource", &nutanix.VolumeGroupDiskV2Args{
DiskDataSourceReferences: nutanix.VolumeGroupDiskV2DiskDataSourceReferenceArray{
&nutanix.VolumeGroupDiskV2DiskDataSourceReferenceArgs{
ExtId: pulumi.String("string"),
EntityType: pulumi.String("string"),
Name: pulumi.String("string"),
Uris: pulumi.StringArray{
pulumi.String("string"),
},
},
},
DiskSizeBytes: pulumi.Int(0),
VolumeGroupExtId: pulumi.String("string"),
Description: pulumi.String("string"),
DiskStorageFeatures: nutanix.VolumeGroupDiskV2DiskStorageFeatureArray{
&nutanix.VolumeGroupDiskV2DiskStorageFeatureArgs{
FlashModes: nutanix.VolumeGroupDiskV2DiskStorageFeatureFlashModeArray{
&nutanix.VolumeGroupDiskV2DiskStorageFeatureFlashModeArgs{
IsEnabled: pulumi.Bool(false),
},
},
},
},
Index: pulumi.Int(0),
})
var volumeGroupDiskV2Resource = new VolumeGroupDiskV2("volumeGroupDiskV2Resource", VolumeGroupDiskV2Args.builder()
.diskDataSourceReferences(VolumeGroupDiskV2DiskDataSourceReferenceArgs.builder()
.extId("string")
.entityType("string")
.name("string")
.uris("string")
.build())
.diskSizeBytes(0)
.volumeGroupExtId("string")
.description("string")
.diskStorageFeatures(VolumeGroupDiskV2DiskStorageFeatureArgs.builder()
.flashModes(VolumeGroupDiskV2DiskStorageFeatureFlashModeArgs.builder()
.isEnabled(false)
.build())
.build())
.index(0)
.build());
volume_group_disk_v2_resource = nutanix.VolumeGroupDiskV2("volumeGroupDiskV2Resource",
disk_data_source_references=[{
"ext_id": "string",
"entity_type": "string",
"name": "string",
"uris": ["string"],
}],
disk_size_bytes=0,
volume_group_ext_id="string",
description="string",
disk_storage_features=[{
"flash_modes": [{
"is_enabled": False,
}],
}],
index=0)
const volumeGroupDiskV2Resource = new nutanix.VolumeGroupDiskV2("volumeGroupDiskV2Resource", {
diskDataSourceReferences: [{
extId: "string",
entityType: "string",
name: "string",
uris: ["string"],
}],
diskSizeBytes: 0,
volumeGroupExtId: "string",
description: "string",
diskStorageFeatures: [{
flashModes: [{
isEnabled: false,
}],
}],
index: 0,
});
type: nutanix:VolumeGroupDiskV2
properties:
description: string
diskDataSourceReferences:
- entityType: string
extId: string
name: string
uris:
- string
diskSizeBytes: 0
diskStorageFeatures:
- flashModes:
- isEnabled: false
index: 0
volumeGroupExtId: string
VolumeGroupDiskV2 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 VolumeGroupDiskV2 resource accepts the following input properties:
- Disk
Data List<PiersSource References Karsenbarg. Nutanix. Inputs. Volume Group Disk V2Disk Data Source Reference> - -(Required) Disk Data Source Reference.
- Disk
Size intBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- Volume
Group stringExt Id - The external identifier of the volume group.
- Description string
- Volume Disk description.
- Disk
Storage List<PiersFeatures Karsenbarg. Nutanix. Inputs. Volume Group Disk V2Disk Storage Feature> - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- Index int
- Index of the disk in a Volume Group. This field is optional and immutable.
- Disk
Data []VolumeSource References Group Disk V2Disk Data Source Reference Args - -(Required) Disk Data Source Reference.
- Disk
Size intBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- Volume
Group stringExt Id - The external identifier of the volume group.
- Description string
- Volume Disk description.
- Disk
Storage []VolumeFeatures Group Disk V2Disk Storage Feature Args - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- Index int
- Index of the disk in a Volume Group. This field is optional and immutable.
- disk
Data List<VolumeSource References Group Disk V2Disk Data Source Reference> - -(Required) Disk Data Source Reference.
- disk
Size IntegerBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- volume
Group StringExt Id - The external identifier of the volume group.
- description String
- Volume Disk description.
- disk
Storage List<VolumeFeatures Group Disk V2Disk Storage Feature> - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- index Integer
- Index of the disk in a Volume Group. This field is optional and immutable.
- disk
Data VolumeSource References Group Disk V2Disk Data Source Reference[] - -(Required) Disk Data Source Reference.
- disk
Size numberBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- volume
Group stringExt Id - The external identifier of the volume group.
- description string
- Volume Disk description.
- disk
Storage VolumeFeatures Group Disk V2Disk Storage Feature[] - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- index number
- Index of the disk in a Volume Group. This field is optional and immutable.
- disk_
data_ Sequence[Volumesource_ references Group Disk V2Disk Data Source Reference Args] - -(Required) Disk Data Source Reference.
- disk_
size_ intbytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- volume_
group_ strext_ id - The external identifier of the volume group.
- description str
- Volume Disk description.
- disk_
storage_ Sequence[Volumefeatures Group Disk V2Disk Storage Feature Args] - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- index int
- Index of the disk in a Volume Group. This field is optional and immutable.
- disk
Data List<Property Map>Source References - -(Required) Disk Data Source Reference.
- disk
Size NumberBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- volume
Group StringExt Id - The external identifier of the volume group.
- description String
- Volume Disk description.
- disk
Storage List<Property Map>Features - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- index Number
- Index of the disk in a Volume Group. This field is optional and immutable.
Outputs
All input properties are implicitly available as output properties. Additionally, the VolumeGroupDiskV2 resource produces the following output properties:
Look up Existing VolumeGroupDiskV2 Resource
Get an existing VolumeGroupDiskV2 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?: VolumeGroupDiskV2State, opts?: CustomResourceOptions): VolumeGroupDiskV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
disk_data_source_references: Optional[Sequence[VolumeGroupDiskV2DiskDataSourceReferenceArgs]] = None,
disk_size_bytes: Optional[int] = None,
disk_storage_features: Optional[Sequence[VolumeGroupDiskV2DiskStorageFeatureArgs]] = None,
ext_id: Optional[str] = None,
index: Optional[int] = None,
volume_group_ext_id: Optional[str] = None) -> VolumeGroupDiskV2
func GetVolumeGroupDiskV2(ctx *Context, name string, id IDInput, state *VolumeGroupDiskV2State, opts ...ResourceOption) (*VolumeGroupDiskV2, error)
public static VolumeGroupDiskV2 Get(string name, Input<string> id, VolumeGroupDiskV2State? state, CustomResourceOptions? opts = null)
public static VolumeGroupDiskV2 get(String name, Output<String> id, VolumeGroupDiskV2State state, CustomResourceOptions options)
resources: _: type: nutanix:VolumeGroupDiskV2 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.
- Description string
- Volume Disk description.
- Disk
Data List<PiersSource References Karsenbarg. Nutanix. Inputs. Volume Group Disk V2Disk Data Source Reference> - -(Required) Disk Data Source Reference.
- Disk
Size intBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- Disk
Storage List<PiersFeatures Karsenbarg. Nutanix. Inputs. Volume Group Disk V2Disk Storage Feature> - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Index int
- Index of the disk in a Volume Group. This field is optional and immutable.
- Volume
Group stringExt Id - The external identifier of the volume group.
- Description string
- Volume Disk description.
- Disk
Data []VolumeSource References Group Disk V2Disk Data Source Reference Args - -(Required) Disk Data Source Reference.
- Disk
Size intBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- Disk
Storage []VolumeFeatures Group Disk V2Disk Storage Feature Args - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Index int
- Index of the disk in a Volume Group. This field is optional and immutable.
- Volume
Group stringExt Id - The external identifier of the volume group.
- description String
- Volume Disk description.
- disk
Data List<VolumeSource References Group Disk V2Disk Data Source Reference> - -(Required) Disk Data Source Reference.
- disk
Size IntegerBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- disk
Storage List<VolumeFeatures Group Disk V2Disk Storage Feature> - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- index Integer
- Index of the disk in a Volume Group. This field is optional and immutable.
- volume
Group StringExt Id - The external identifier of the volume group.
- description string
- Volume Disk description.
- disk
Data VolumeSource References Group Disk V2Disk Data Source Reference[] - -(Required) Disk Data Source Reference.
- disk
Size numberBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- disk
Storage VolumeFeatures Group Disk V2Disk Storage Feature[] - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- index number
- Index of the disk in a Volume Group. This field is optional and immutable.
- volume
Group stringExt Id - The external identifier of the volume group.
- description str
- Volume Disk description.
- disk_
data_ Sequence[Volumesource_ references Group Disk V2Disk Data Source Reference Args] - -(Required) Disk Data Source Reference.
- disk_
size_ intbytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- disk_
storage_ Sequence[Volumefeatures Group Disk V2Disk Storage Feature Args] - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- index int
- Index of the disk in a Volume Group. This field is optional and immutable.
- volume_
group_ strext_ id - The external identifier of the volume group.
- description String
- Volume Disk description.
- disk
Data List<Property Map>Source References - -(Required) Disk Data Source Reference.
- disk
Size NumberBytes - ize of the disk in bytes. This field is mandatory during Volume Group creation if a new disk is being created on the storage container.
- disk
Storage List<Property Map>Features - Storage optimization features which must be enabled on the Volume Disks. This is an optional field. If omitted, the disks will honor the Volume Group specific storage features setting.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- index Number
- Index of the disk in a Volume Group. This field is optional and immutable.
- volume
Group StringExt Id - The external identifier of the volume group.
Supporting Types
VolumeGroupDiskV2DiskDataSourceReference, VolumeGroupDiskV2DiskDataSourceReferenceArgs
- Ext
Id string - The external identifier of the Data Source Reference.
- Entity
Type string - The Entity Type of the Data Source Reference. valid values are:
- STORAGE_CONTAINER
- VM_DISK
- VOLUME_DISK
- DISK_RECOVERY_POINT
- Name string
- The name of the Data Source Reference.bled for the Volume Group.
- Uris List<string>
- The uri list of the Data Source Reference.
- Ext
Id string - The external identifier of the Data Source Reference.
- Entity
Type string - The Entity Type of the Data Source Reference. valid values are:
- STORAGE_CONTAINER
- VM_DISK
- VOLUME_DISK
- DISK_RECOVERY_POINT
- Name string
- The name of the Data Source Reference.bled for the Volume Group.
- Uris []string
- The uri list of the Data Source Reference.
- ext
Id String - The external identifier of the Data Source Reference.
- entity
Type String - The Entity Type of the Data Source Reference. valid values are:
- STORAGE_CONTAINER
- VM_DISK
- VOLUME_DISK
- DISK_RECOVERY_POINT
- name String
- The name of the Data Source Reference.bled for the Volume Group.
- uris List<String>
- The uri list of the Data Source Reference.
- ext
Id string - The external identifier of the Data Source Reference.
- entity
Type string - The Entity Type of the Data Source Reference. valid values are:
- STORAGE_CONTAINER
- VM_DISK
- VOLUME_DISK
- DISK_RECOVERY_POINT
- name string
- The name of the Data Source Reference.bled for the Volume Group.
- uris string[]
- The uri list of the Data Source Reference.
- ext_
id str - The external identifier of the Data Source Reference.
- entity_
type str - The Entity Type of the Data Source Reference. valid values are:
- STORAGE_CONTAINER
- VM_DISK
- VOLUME_DISK
- DISK_RECOVERY_POINT
- name str
- The name of the Data Source Reference.bled for the Volume Group.
- uris Sequence[str]
- The uri list of the Data Source Reference.
- ext
Id String - The external identifier of the Data Source Reference.
- entity
Type String - The Entity Type of the Data Source Reference. valid values are:
- STORAGE_CONTAINER
- VM_DISK
- VOLUME_DISK
- DISK_RECOVERY_POINT
- name String
- The name of the Data Source Reference.bled for the Volume Group.
- uris List<String>
- The uri list of the Data Source Reference.
VolumeGroupDiskV2DiskStorageFeature, VolumeGroupDiskV2DiskStorageFeatureArgs
- Flash
Modes List<PiersKarsenbarg. Nutanix. Inputs. Volume Group Disk V2Disk Storage Feature Flash Mode> - this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
- Flash
Modes []VolumeGroup Disk V2Disk Storage Feature Flash Mode - this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
- flash
Modes List<VolumeGroup Disk V2Disk Storage Feature Flash Mode> - this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
- flash
Modes VolumeGroup Disk V2Disk Storage Feature Flash Mode[] - this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
- flash_
modes Sequence[VolumeGroup Disk V2Disk Storage Feature Flash Mode] - this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
- flash
Modes List<Property Map> - this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
VolumeGroupDiskV2DiskStorageFeatureFlashMode, VolumeGroupDiskV2DiskStorageFeatureFlashModeArgs
- Is
Enabled bool - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Create Volume Disk V4.
- Is
Enabled bool - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Create Volume Disk V4.
- is
Enabled Boolean - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Create Volume Disk V4.
- is
Enabled boolean - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Create Volume Disk V4.
- is_
enabled bool - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Create Volume Disk V4.
- is
Enabled Boolean - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Create Volume Disk V4.
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.