nutanix.VolumeGroupV2
Explore with Pulumi AI
Provides a resource to Create a new Volume Group.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const volumeGroupExample = new nutanix.VolumeGroupV2("volumeGroupExample", {
description: "Test Create Volume group with spec",
shouldLoadBalanceVmAttachments: false,
sharingStatus: "SHARED",
targetName: "volumegroup-test-001234",
createdBy: "example",
clusterReference: "<Cluster uuid>",
iscsiFeatures: [{
enabledAuthentications: "CHAP",
targetSecret: "123456789abc",
}],
storageFeatures: [{
flashModes: [{
isEnabled: true,
}],
}],
usageType: "USER",
isHidden: false,
});
import pulumi
import pulumi_nutanix as nutanix
volume_group_example = nutanix.VolumeGroupV2("volumeGroupExample",
description="Test Create Volume group with spec",
should_load_balance_vm_attachments=False,
sharing_status="SHARED",
target_name="volumegroup-test-001234",
created_by="example",
cluster_reference="<Cluster uuid>",
iscsi_features=[{
"enabled_authentications": "CHAP",
"target_secret": "123456789abc",
}],
storage_features=[{
"flash_modes": [{
"is_enabled": True,
}],
}],
usage_type="USER",
is_hidden=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 {
_, err := nutanix.NewVolumeGroupV2(ctx, "volumeGroupExample", &nutanix.VolumeGroupV2Args{
Description: pulumi.String("Test Create Volume group with spec"),
ShouldLoadBalanceVmAttachments: pulumi.Bool(false),
SharingStatus: pulumi.String("SHARED"),
TargetName: pulumi.String("volumegroup-test-001234"),
CreatedBy: pulumi.String("example"),
ClusterReference: pulumi.String("<Cluster uuid>"),
IscsiFeatures: nutanix.VolumeGroupV2IscsiFeatureArray{
&nutanix.VolumeGroupV2IscsiFeatureArgs{
EnabledAuthentications: pulumi.String("CHAP"),
TargetSecret: pulumi.String("123456789abc"),
},
},
StorageFeatures: nutanix.VolumeGroupV2StorageFeatureArray{
&nutanix.VolumeGroupV2StorageFeatureArgs{
FlashModes: nutanix.VolumeGroupV2StorageFeatureFlashModeArray{
&nutanix.VolumeGroupV2StorageFeatureFlashModeArgs{
IsEnabled: pulumi.Bool(true),
},
},
},
},
UsageType: pulumi.String("USER"),
IsHidden: 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(() =>
{
var volumeGroupExample = new Nutanix.VolumeGroupV2("volumeGroupExample", new()
{
Description = "Test Create Volume group with spec",
ShouldLoadBalanceVmAttachments = false,
SharingStatus = "SHARED",
TargetName = "volumegroup-test-001234",
CreatedBy = "example",
ClusterReference = "<Cluster uuid>",
IscsiFeatures = new[]
{
new Nutanix.Inputs.VolumeGroupV2IscsiFeatureArgs
{
EnabledAuthentications = "CHAP",
TargetSecret = "123456789abc",
},
},
StorageFeatures = new[]
{
new Nutanix.Inputs.VolumeGroupV2StorageFeatureArgs
{
FlashModes = new[]
{
new Nutanix.Inputs.VolumeGroupV2StorageFeatureFlashModeArgs
{
IsEnabled = true,
},
},
},
},
UsageType = "USER",
IsHidden = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.VolumeGroupV2;
import com.pulumi.nutanix.VolumeGroupV2Args;
import com.pulumi.nutanix.inputs.VolumeGroupV2IscsiFeatureArgs;
import com.pulumi.nutanix.inputs.VolumeGroupV2StorageFeatureArgs;
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) {
var volumeGroupExample = new VolumeGroupV2("volumeGroupExample", VolumeGroupV2Args.builder()
.description("Test Create Volume group with spec")
.shouldLoadBalanceVmAttachments(false)
.sharingStatus("SHARED")
.targetName("volumegroup-test-001234")
.createdBy("example")
.clusterReference("<Cluster uuid>")
.iscsiFeatures(VolumeGroupV2IscsiFeatureArgs.builder()
.enabledAuthentications("CHAP")
.targetSecret("123456789abc")
.build())
.storageFeatures(VolumeGroupV2StorageFeatureArgs.builder()
.flashModes(VolumeGroupV2StorageFeatureFlashModeArgs.builder()
.isEnabled(true)
.build())
.build())
.usageType("USER")
.isHidden(false)
.build());
}
}
resources:
volumeGroupExample:
type: nutanix:VolumeGroupV2
properties:
description: Test Create Volume group with spec
shouldLoadBalanceVmAttachments: false
sharingStatus: SHARED
targetName: volumegroup-test-001234
createdBy: example
clusterReference: <Cluster uuid>
iscsiFeatures:
- enabledAuthentications: CHAP
targetSecret: 123456789abc
storageFeatures:
- flashModes:
- isEnabled: true
usageType: USER
isHidden: false
Create VolumeGroupV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VolumeGroupV2(name: string, args: VolumeGroupV2Args, opts?: CustomResourceOptions);
@overload
def VolumeGroupV2(resource_name: str,
args: VolumeGroupV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def VolumeGroupV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_reference: Optional[str] = None,
name: Optional[str] = None,
protocol: Optional[str] = None,
description: Optional[str] = None,
disks: Optional[Sequence[VolumeGroupV2DiskArgs]] = None,
enabled_authentications: Optional[str] = None,
is_hidden: Optional[bool] = None,
created_by: Optional[str] = None,
attachment_type: Optional[str] = None,
iscsi_features: Optional[Sequence[VolumeGroupV2IscsiFeatureArgs]] = None,
sharing_status: Optional[str] = None,
should_load_balance_vm_attachments: Optional[bool] = None,
storage_features: Optional[Sequence[VolumeGroupV2StorageFeatureArgs]] = None,
target_name: Optional[str] = None,
target_prefix: Optional[str] = None,
usage_type: Optional[str] = None)
func NewVolumeGroupV2(ctx *Context, name string, args VolumeGroupV2Args, opts ...ResourceOption) (*VolumeGroupV2, error)
public VolumeGroupV2(string name, VolumeGroupV2Args args, CustomResourceOptions? opts = null)
public VolumeGroupV2(String name, VolumeGroupV2Args args)
public VolumeGroupV2(String name, VolumeGroupV2Args args, CustomResourceOptions options)
type: nutanix:VolumeGroupV2
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 VolumeGroupV2Args
- 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 VolumeGroupV2Args
- 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 VolumeGroupV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeGroupV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeGroupV2Args
- 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 volumeGroupV2Resource = new Nutanix.VolumeGroupV2("volumeGroupV2Resource", new()
{
ClusterReference = "string",
Name = "string",
Protocol = "string",
Description = "string",
Disks = new[]
{
new Nutanix.Inputs.VolumeGroupV2DiskArgs
{
DiskDataSourceReferences = new[]
{
new Nutanix.Inputs.VolumeGroupV2DiskDiskDataSourceReferenceArgs
{
ExtId = "string",
EntityType = "string",
Name = "string",
Uris = new[]
{
"string",
},
},
},
DiskSizeBytes = 0,
Description = "string",
DiskStorageFeatures = new[]
{
new Nutanix.Inputs.VolumeGroupV2DiskDiskStorageFeatureArgs
{
FlashModes = new[]
{
new Nutanix.Inputs.VolumeGroupV2DiskDiskStorageFeatureFlashModeArgs
{
IsEnabled = false,
},
},
},
},
Index = 0,
},
},
EnabledAuthentications = "string",
IsHidden = false,
CreatedBy = "string",
AttachmentType = "string",
IscsiFeatures = new[]
{
new Nutanix.Inputs.VolumeGroupV2IscsiFeatureArgs
{
EnabledAuthentications = "string",
TargetSecret = "string",
},
},
SharingStatus = "string",
ShouldLoadBalanceVmAttachments = false,
StorageFeatures = new[]
{
new Nutanix.Inputs.VolumeGroupV2StorageFeatureArgs
{
FlashModes = new[]
{
new Nutanix.Inputs.VolumeGroupV2StorageFeatureFlashModeArgs
{
IsEnabled = false,
},
},
},
},
TargetName = "string",
TargetPrefix = "string",
UsageType = "string",
});
example, err := nutanix.NewVolumeGroupV2(ctx, "volumeGroupV2Resource", &nutanix.VolumeGroupV2Args{
ClusterReference: pulumi.String("string"),
Name: pulumi.String("string"),
Protocol: pulumi.String("string"),
Description: pulumi.String("string"),
Disks: nutanix.VolumeGroupV2DiskArray{
&nutanix.VolumeGroupV2DiskArgs{
DiskDataSourceReferences: nutanix.VolumeGroupV2DiskDiskDataSourceReferenceArray{
&nutanix.VolumeGroupV2DiskDiskDataSourceReferenceArgs{
ExtId: pulumi.String("string"),
EntityType: pulumi.String("string"),
Name: pulumi.String("string"),
Uris: pulumi.StringArray{
pulumi.String("string"),
},
},
},
DiskSizeBytes: pulumi.Int(0),
Description: pulumi.String("string"),
DiskStorageFeatures: nutanix.VolumeGroupV2DiskDiskStorageFeatureArray{
&nutanix.VolumeGroupV2DiskDiskStorageFeatureArgs{
FlashModes: nutanix.VolumeGroupV2DiskDiskStorageFeatureFlashModeArray{
&nutanix.VolumeGroupV2DiskDiskStorageFeatureFlashModeArgs{
IsEnabled: pulumi.Bool(false),
},
},
},
},
Index: pulumi.Int(0),
},
},
EnabledAuthentications: pulumi.String("string"),
IsHidden: pulumi.Bool(false),
CreatedBy: pulumi.String("string"),
AttachmentType: pulumi.String("string"),
IscsiFeatures: nutanix.VolumeGroupV2IscsiFeatureArray{
&nutanix.VolumeGroupV2IscsiFeatureArgs{
EnabledAuthentications: pulumi.String("string"),
TargetSecret: pulumi.String("string"),
},
},
SharingStatus: pulumi.String("string"),
ShouldLoadBalanceVmAttachments: pulumi.Bool(false),
StorageFeatures: nutanix.VolumeGroupV2StorageFeatureArray{
&nutanix.VolumeGroupV2StorageFeatureArgs{
FlashModes: nutanix.VolumeGroupV2StorageFeatureFlashModeArray{
&nutanix.VolumeGroupV2StorageFeatureFlashModeArgs{
IsEnabled: pulumi.Bool(false),
},
},
},
},
TargetName: pulumi.String("string"),
TargetPrefix: pulumi.String("string"),
UsageType: pulumi.String("string"),
})
var volumeGroupV2Resource = new VolumeGroupV2("volumeGroupV2Resource", VolumeGroupV2Args.builder()
.clusterReference("string")
.name("string")
.protocol("string")
.description("string")
.disks(VolumeGroupV2DiskArgs.builder()
.diskDataSourceReferences(VolumeGroupV2DiskDiskDataSourceReferenceArgs.builder()
.extId("string")
.entityType("string")
.name("string")
.uris("string")
.build())
.diskSizeBytes(0)
.description("string")
.diskStorageFeatures(VolumeGroupV2DiskDiskStorageFeatureArgs.builder()
.flashModes(VolumeGroupV2DiskDiskStorageFeatureFlashModeArgs.builder()
.isEnabled(false)
.build())
.build())
.index(0)
.build())
.enabledAuthentications("string")
.isHidden(false)
.createdBy("string")
.attachmentType("string")
.iscsiFeatures(VolumeGroupV2IscsiFeatureArgs.builder()
.enabledAuthentications("string")
.targetSecret("string")
.build())
.sharingStatus("string")
.shouldLoadBalanceVmAttachments(false)
.storageFeatures(VolumeGroupV2StorageFeatureArgs.builder()
.flashModes(VolumeGroupV2StorageFeatureFlashModeArgs.builder()
.isEnabled(false)
.build())
.build())
.targetName("string")
.targetPrefix("string")
.usageType("string")
.build());
volume_group_v2_resource = nutanix.VolumeGroupV2("volumeGroupV2Resource",
cluster_reference="string",
name="string",
protocol="string",
description="string",
disks=[{
"disk_data_source_references": [{
"ext_id": "string",
"entity_type": "string",
"name": "string",
"uris": ["string"],
}],
"disk_size_bytes": 0,
"description": "string",
"disk_storage_features": [{
"flash_modes": [{
"is_enabled": False,
}],
}],
"index": 0,
}],
enabled_authentications="string",
is_hidden=False,
created_by="string",
attachment_type="string",
iscsi_features=[{
"enabled_authentications": "string",
"target_secret": "string",
}],
sharing_status="string",
should_load_balance_vm_attachments=False,
storage_features=[{
"flash_modes": [{
"is_enabled": False,
}],
}],
target_name="string",
target_prefix="string",
usage_type="string")
const volumeGroupV2Resource = new nutanix.VolumeGroupV2("volumeGroupV2Resource", {
clusterReference: "string",
name: "string",
protocol: "string",
description: "string",
disks: [{
diskDataSourceReferences: [{
extId: "string",
entityType: "string",
name: "string",
uris: ["string"],
}],
diskSizeBytes: 0,
description: "string",
diskStorageFeatures: [{
flashModes: [{
isEnabled: false,
}],
}],
index: 0,
}],
enabledAuthentications: "string",
isHidden: false,
createdBy: "string",
attachmentType: "string",
iscsiFeatures: [{
enabledAuthentications: "string",
targetSecret: "string",
}],
sharingStatus: "string",
shouldLoadBalanceVmAttachments: false,
storageFeatures: [{
flashModes: [{
isEnabled: false,
}],
}],
targetName: "string",
targetPrefix: "string",
usageType: "string",
});
type: nutanix:VolumeGroupV2
properties:
attachmentType: string
clusterReference: string
createdBy: string
description: string
disks:
- description: string
diskDataSourceReferences:
- entityType: string
extId: string
name: string
uris:
- string
diskSizeBytes: 0
diskStorageFeatures:
- flashModes:
- isEnabled: false
index: 0
enabledAuthentications: string
isHidden: false
iscsiFeatures:
- enabledAuthentications: string
targetSecret: string
name: string
protocol: string
sharingStatus: string
shouldLoadBalanceVmAttachments: false
storageFeatures:
- flashModes:
- isEnabled: false
targetName: string
targetPrefix: string
usageType: string
VolumeGroupV2 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 VolumeGroupV2 resource accepts the following input properties:
- Cluster
Reference string - -(Required) The UUID of the cluster that will host the Volume Group.
- Attachment
Type string - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- Created
By string - -(Optional) Service/user who created this Volume Group.
- Description string
- -(Optional) Volume Group description. This is an optional field.
- Disks
List<Piers
Karsenbarg. Nutanix. Inputs. Volume Group V2Disk> - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- Enabled
Authentications string - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- bool
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- Iscsi
Features List<PiersKarsenbarg. Nutanix. Inputs. Volume Group V2Iscsi Feature> - -(Optional) iSCSI specific settings for the Volume Group.
- Name string
- -(Required) Volume Group name. This is an optional field.
- Protocol string
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- string
- -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- Should
Load boolBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- Storage
Features List<PiersKarsenbarg. Nutanix. Inputs. Volume Group V2Storage Feature> - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- Target
Name string - -(Optional) Name of the external client target that will be visible and accessible to the client.
- Target
Prefix string - The specifications contain the target prefix for external clients as the value. This is an optional field.
- Usage
Type string - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- Cluster
Reference string - -(Required) The UUID of the cluster that will host the Volume Group.
- Attachment
Type string - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- Created
By string - -(Optional) Service/user who created this Volume Group.
- Description string
- -(Optional) Volume Group description. This is an optional field.
- Disks
[]Volume
Group V2Disk Args - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- Enabled
Authentications string - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- bool
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- Iscsi
Features []VolumeGroup V2Iscsi Feature Args - -(Optional) iSCSI specific settings for the Volume Group.
- Name string
- -(Required) Volume Group name. This is an optional field.
- Protocol string
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- string
- -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- Should
Load boolBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- Storage
Features []VolumeGroup V2Storage Feature Args - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- Target
Name string - -(Optional) Name of the external client target that will be visible and accessible to the client.
- Target
Prefix string - The specifications contain the target prefix for external clients as the value. This is an optional field.
- Usage
Type string - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- cluster
Reference String - -(Required) The UUID of the cluster that will host the Volume Group.
- attachment
Type String - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- created
By String - -(Optional) Service/user who created this Volume Group.
- description String
- -(Optional) Volume Group description. This is an optional field.
- disks
List<Volume
Group V2Disk> - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- enabled
Authentications String - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- Boolean
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- iscsi
Features List<VolumeGroup V2Iscsi Feature> - -(Optional) iSCSI specific settings for the Volume Group.
- name String
- -(Required) Volume Group name. This is an optional field.
- protocol String
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- String
- -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- should
Load BooleanBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- storage
Features List<VolumeGroup V2Storage Feature> - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- target
Name String - -(Optional) Name of the external client target that will be visible and accessible to the client.
- target
Prefix String - The specifications contain the target prefix for external clients as the value. This is an optional field.
- usage
Type String - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- cluster
Reference string - -(Required) The UUID of the cluster that will host the Volume Group.
- attachment
Type string - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- created
By string - -(Optional) Service/user who created this Volume Group.
- description string
- -(Optional) Volume Group description. This is an optional field.
- disks
Volume
Group V2Disk[] - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- enabled
Authentications string - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- boolean
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- iscsi
Features VolumeGroup V2Iscsi Feature[] - -(Optional) iSCSI specific settings for the Volume Group.
- name string
- -(Required) Volume Group name. This is an optional field.
- protocol string
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- string
- -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- should
Load booleanBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- storage
Features VolumeGroup V2Storage Feature[] - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- target
Name string - -(Optional) Name of the external client target that will be visible and accessible to the client.
- target
Prefix string - The specifications contain the target prefix for external clients as the value. This is an optional field.
- usage
Type string - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- cluster_
reference str - -(Required) The UUID of the cluster that will host the Volume Group.
- attachment_
type str - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- created_
by str - -(Optional) Service/user who created this Volume Group.
- description str
- -(Optional) Volume Group description. This is an optional field.
- disks
Sequence[Volume
Group V2Disk Args] - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- enabled_
authentications str - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- bool
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- iscsi_
features Sequence[VolumeGroup V2Iscsi Feature Args] - -(Optional) iSCSI specific settings for the Volume Group.
- name str
- -(Required) Volume Group name. This is an optional field.
- protocol str
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- str
- -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- should_
load_ boolbalance_ vm_ attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- storage_
features Sequence[VolumeGroup V2Storage Feature Args] - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- target_
name str - -(Optional) Name of the external client target that will be visible and accessible to the client.
- target_
prefix str - The specifications contain the target prefix for external clients as the value. This is an optional field.
- usage_
type str - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- cluster
Reference String - -(Required) The UUID of the cluster that will host the Volume Group.
- attachment
Type String - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- created
By String - -(Optional) Service/user who created this Volume Group.
- description String
- -(Optional) Volume Group description. This is an optional field.
- disks List<Property Map>
- -(Optional) A list of Volume Disks to be attached to the Volume Group.
- enabled
Authentications String - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- Boolean
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- iscsi
Features List<Property Map> - -(Optional) iSCSI specific settings for the Volume Group.
- name String
- -(Required) Volume Group name. This is an optional field.
- protocol String
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- String
- -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- should
Load BooleanBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- storage
Features List<Property Map> - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- target
Name String - -(Optional) Name of the external client target that will be visible and accessible to the client.
- target
Prefix String - The specifications contain the target prefix for external clients as the value. This is an optional field.
- usage
Type String - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
Outputs
All input properties are implicitly available as output properties. Additionally, the VolumeGroupV2 resource produces the following output properties:
Look up Existing VolumeGroupV2 Resource
Get an existing VolumeGroupV2 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?: VolumeGroupV2State, opts?: CustomResourceOptions): VolumeGroupV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attachment_type: Optional[str] = None,
cluster_reference: Optional[str] = None,
created_by: Optional[str] = None,
description: Optional[str] = None,
disks: Optional[Sequence[VolumeGroupV2DiskArgs]] = None,
enabled_authentications: Optional[str] = None,
ext_id: Optional[str] = None,
is_hidden: Optional[bool] = None,
iscsi_features: Optional[Sequence[VolumeGroupV2IscsiFeatureArgs]] = None,
name: Optional[str] = None,
protocol: Optional[str] = None,
sharing_status: Optional[str] = None,
should_load_balance_vm_attachments: Optional[bool] = None,
storage_features: Optional[Sequence[VolumeGroupV2StorageFeatureArgs]] = None,
target_name: Optional[str] = None,
target_prefix: Optional[str] = None,
usage_type: Optional[str] = None) -> VolumeGroupV2
func GetVolumeGroupV2(ctx *Context, name string, id IDInput, state *VolumeGroupV2State, opts ...ResourceOption) (*VolumeGroupV2, error)
public static VolumeGroupV2 Get(string name, Input<string> id, VolumeGroupV2State? state, CustomResourceOptions? opts = null)
public static VolumeGroupV2 get(String name, Output<String> id, VolumeGroupV2State state, CustomResourceOptions options)
resources: _: type: nutanix:VolumeGroupV2 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.
- Attachment
Type string - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- Cluster
Reference string - -(Required) The UUID of the cluster that will host the Volume Group.
- Created
By string - -(Optional) Service/user who created this Volume Group.
- Description string
- -(Optional) Volume Group description. This is an optional field.
- Disks
List<Piers
Karsenbarg. Nutanix. Inputs. Volume Group V2Disk> - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- Enabled
Authentications string - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- Ext
Id string - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- bool
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- Iscsi
Features List<PiersKarsenbarg. Nutanix. Inputs. Volume Group V2Iscsi Feature> - -(Optional) iSCSI specific settings for the Volume Group.
- Name string
- -(Required) Volume Group name. This is an optional field.
- Protocol string
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- Sharing
Status string - -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- Should
Load boolBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- Storage
Features List<PiersKarsenbarg. Nutanix. Inputs. Volume Group V2Storage Feature> - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- Target
Name string - -(Optional) Name of the external client target that will be visible and accessible to the client.
- Target
Prefix string - The specifications contain the target prefix for external clients as the value. This is an optional field.
- Usage
Type string - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- Attachment
Type string - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- Cluster
Reference string - -(Required) The UUID of the cluster that will host the Volume Group.
- Created
By string - -(Optional) Service/user who created this Volume Group.
- Description string
- -(Optional) Volume Group description. This is an optional field.
- Disks
[]Volume
Group V2Disk Args - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- Enabled
Authentications string - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- Ext
Id string - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- bool
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- Iscsi
Features []VolumeGroup V2Iscsi Feature Args - -(Optional) iSCSI specific settings for the Volume Group.
- Name string
- -(Required) Volume Group name. This is an optional field.
- Protocol string
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- Sharing
Status string - -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- Should
Load boolBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- Storage
Features []VolumeGroup V2Storage Feature Args - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- Target
Name string - -(Optional) Name of the external client target that will be visible and accessible to the client.
- Target
Prefix string - The specifications contain the target prefix for external clients as the value. This is an optional field.
- Usage
Type string - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- attachment
Type String - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- cluster
Reference String - -(Required) The UUID of the cluster that will host the Volume Group.
- created
By String - -(Optional) Service/user who created this Volume Group.
- description String
- -(Optional) Volume Group description. This is an optional field.
- disks
List<Volume
Group V2Disk> - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- enabled
Authentications String - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- ext
Id String - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- Boolean
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- iscsi
Features List<VolumeGroup V2Iscsi Feature> - -(Optional) iSCSI specific settings for the Volume Group.
- name String
- -(Required) Volume Group name. This is an optional field.
- protocol String
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- sharing
Status String - -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- should
Load BooleanBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- storage
Features List<VolumeGroup V2Storage Feature> - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- target
Name String - -(Optional) Name of the external client target that will be visible and accessible to the client.
- target
Prefix String - The specifications contain the target prefix for external clients as the value. This is an optional field.
- usage
Type String - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- attachment
Type string - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- cluster
Reference string - -(Required) The UUID of the cluster that will host the Volume Group.
- created
By string - -(Optional) Service/user who created this Volume Group.
- description string
- -(Optional) Volume Group description. This is an optional field.
- disks
Volume
Group V2Disk[] - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- enabled
Authentications string - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- ext
Id string - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- boolean
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- iscsi
Features VolumeGroup V2Iscsi Feature[] - -(Optional) iSCSI specific settings for the Volume Group.
- name string
- -(Required) Volume Group name. This is an optional field.
- protocol string
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- sharing
Status string - -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- should
Load booleanBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- storage
Features VolumeGroup V2Storage Feature[] - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- target
Name string - -(Optional) Name of the external client target that will be visible and accessible to the client.
- target
Prefix string - The specifications contain the target prefix for external clients as the value. This is an optional field.
- usage
Type string - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- attachment_
type str - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- cluster_
reference str - -(Required) The UUID of the cluster that will host the Volume Group.
- created_
by str - -(Optional) Service/user who created this Volume Group.
- description str
- -(Optional) Volume Group description. This is an optional field.
- disks
Sequence[Volume
Group V2Disk Args] - -(Optional) A list of Volume Disks to be attached to the Volume Group.
- enabled_
authentications str - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- ext_
id str - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- bool
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- iscsi_
features Sequence[VolumeGroup V2Iscsi Feature Args] - -(Optional) iSCSI specific settings for the Volume Group.
- name str
- -(Required) Volume Group name. This is an optional field.
- protocol str
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- sharing_
status str - -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- should_
load_ boolbalance_ vm_ attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- storage_
features Sequence[VolumeGroup V2Storage Feature Args] - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- target_
name str - -(Optional) Name of the external client target that will be visible and accessible to the client.
- target_
prefix str - The specifications contain the target prefix for external clients as the value. This is an optional field.
- usage_
type str - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
- attachment
Type String - -(Optional) The field indicates whether a VG has a VM or an external attachment associated with it. Valid values are :
- EXTERNAL : Volume Group has an external iSCSI or NVMf attachment.
- NONE : Volume Group has no attachment.
- DIRECT : Volume Group has a VM attachment.
- cluster
Reference String - -(Required) The UUID of the cluster that will host the Volume Group.
- created
By String - -(Optional) Service/user who created this Volume Group.
- description String
- -(Optional) Volume Group description. This is an optional field.
- disks List<Property Map>
- -(Optional) A list of Volume Disks to be attached to the Volume Group.
- enabled
Authentications String - -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
- ext
Id String - -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
- Boolean
- -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
- iscsi
Features List<Property Map> - -(Optional) iSCSI specific settings for the Volume Group.
- name String
- -(Required) Volume Group name. This is an optional field.
- protocol String
- -(Optional) Type of protocol to be used for Volume Group. Valid values are :
- NOT_ASSIGNED : Volume Group does not use any protocol.
- ISCSI : Volume Group uses iSCSI protocol.
- NVMF : Volume Group uses NVMf protocol.
- sharing
Status String - -(Optional) Indicates whether the Volume Group can be shared across multiple iSCSI initiators. The mode cannot be changed from SHARED to NOT_SHARED on a Volume Group with multiple attachments. Similarly, a Volume Group cannot be associated with more than one attachment as long as it is in exclusive mode. This is an optional field. Valid values are SHARED, NOT_SHARED
- should
Load BooleanBalance Vm Attachments - -(Optional) Indicates whether to enable Volume Group load balancing for VM attachments. This cannot be enabled if there are iSCSI client attachments already associated with the Volume Group, and vice-versa. This is an optional field.
- storage
Features List<Property Map> - -(Optional) Storage optimization features which must be enabled on the Volume Group.
- target
Name String - -(Optional) Name of the external client target that will be visible and accessible to the client.
- target
Prefix String - The specifications contain the target prefix for external clients as the value. This is an optional field.
- usage
Type String - -(Optional) Expected usage type for the Volume Group. This is an indicative hint on how the caller will consume the Volume Group. Valid values are BACKUP_TARGET, INTERNAL, TEMPORARY, USER
Supporting Types
VolumeGroupV2Disk, VolumeGroupV2DiskArgs
- Disk
Data List<PiersSource References Karsenbarg. Nutanix. Inputs. Volume Group V2Disk Disk 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.
- Description string
- Volume Disk description.
- Disk
Storage List<PiersFeatures Karsenbarg. Nutanix. Inputs. Volume Group V2Disk Disk 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 V2Disk Disk 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.
- Description string
- Volume Disk description.
- Disk
Storage []VolumeFeatures Group V2Disk Disk 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 List<VolumeSource References Group V2Disk Disk 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.
- description String
- Volume Disk description.
- disk
Storage List<VolumeFeatures Group V2Disk Disk 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 V2Disk Disk 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.
- description string
- Volume Disk description.
- disk
Storage VolumeFeatures Group V2Disk Disk 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 V2Disk Disk 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.
- description str
- Volume Disk description.
- disk_
storage_ Sequence[Volumefeatures Group V2Disk Disk 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 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.
- 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.
VolumeGroupV2DiskDiskDataSourceReference, VolumeGroupV2DiskDiskDataSourceReferenceArgs
- Ext
Id string - The external identifier of the Data Source Reference.
- Entity
Type string - The Entity Type of the Data Source Reference.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
VolumeGroupV2DiskDiskStorageFeature, VolumeGroupV2DiskDiskStorageFeatureArgs
- Flash
Modes List<PiersKarsenbarg. Nutanix. Inputs. Volume Group V2Disk Disk 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 V2Disk Disk 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 V2Disk Disk 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 V2Disk Disk 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 V2Disk Disk 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.
VolumeGroupV2DiskDiskStorageFeatureFlashMode, VolumeGroupV2DiskDiskStorageFeatureFlashModeArgs
- Is
Enabled bool - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- Is
Enabled bool - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- is
Enabled Boolean - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- is
Enabled boolean - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- is_
enabled bool - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- is
Enabled Boolean - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
VolumeGroupV2IscsiFeature, VolumeGroupV2IscsiFeatureArgs
- Enabled
Authentications string - The authentication type enabled for the Volume Group.
- Target
Secret string - Target secret in case of a CHAP authentication. This field must only be provided in case the authentication type is not set to CHAP. This is an optional field and it cannot be retrieved once configured.
- Enabled
Authentications string - The authentication type enabled for the Volume Group.
- Target
Secret string - Target secret in case of a CHAP authentication. This field must only be provided in case the authentication type is not set to CHAP. This is an optional field and it cannot be retrieved once configured.
- enabled
Authentications String - The authentication type enabled for the Volume Group.
- target
Secret String - Target secret in case of a CHAP authentication. This field must only be provided in case the authentication type is not set to CHAP. This is an optional field and it cannot be retrieved once configured.
- enabled
Authentications string - The authentication type enabled for the Volume Group.
- target
Secret string - Target secret in case of a CHAP authentication. This field must only be provided in case the authentication type is not set to CHAP. This is an optional field and it cannot be retrieved once configured.
- enabled_
authentications str - The authentication type enabled for the Volume Group.
- target_
secret str - Target secret in case of a CHAP authentication. This field must only be provided in case the authentication type is not set to CHAP. This is an optional field and it cannot be retrieved once configured.
- enabled
Authentications String - The authentication type enabled for the Volume Group.
- target
Secret String - Target secret in case of a CHAP authentication. This field must only be provided in case the authentication type is not set to CHAP. This is an optional field and it cannot be retrieved once configured.
VolumeGroupV2StorageFeature, VolumeGroupV2StorageFeatureArgs
- Flash
Modes List<PiersKarsenbarg. Nutanix. Inputs. Volume Group V2Storage 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 V2Storage 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 V2Storage 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 V2Storage 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 V2Storage 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.
VolumeGroupV2StorageFeatureFlashMode, VolumeGroupV2StorageFeatureFlashModeArgs
- Is
Enabled bool - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- Is
Enabled bool - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- is
Enabled Boolean - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- is
Enabled boolean - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- is_
enabled bool - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
- is
Enabled Boolean - Indicates whether the flash mode is enabled for the Volume Group Disk.
See detailed information in Nutanix Volumes V4.
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.