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

nutanix.VolumeGroupV2

Explore with Pulumi AI

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

    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:

    ClusterReference string
    -(Required) The UUID of the cluster that will host the Volume Group.
    AttachmentType 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.
    CreatedBy string
    -(Optional) Service/user who created this Volume Group.
    Description string
    -(Optional) Volume Group description. This is an optional field.
    Disks List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2Disk>
    -(Optional) A list of Volume Disks to be attached to the Volume Group.
    EnabledAuthentications string
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    IsHidden bool
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    IscsiFeatures List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2IscsiFeature>
    -(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.
    SharingStatus 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
    ShouldLoadBalanceVmAttachments bool
    -(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.
    StorageFeatures List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2StorageFeature>
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    TargetName string
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    TargetPrefix string
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    UsageType 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
    ClusterReference string
    -(Required) The UUID of the cluster that will host the Volume Group.
    AttachmentType 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.
    CreatedBy string
    -(Optional) Service/user who created this Volume Group.
    Description string
    -(Optional) Volume Group description. This is an optional field.
    Disks []VolumeGroupV2DiskArgs
    -(Optional) A list of Volume Disks to be attached to the Volume Group.
    EnabledAuthentications string
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    IsHidden bool
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    IscsiFeatures []VolumeGroupV2IscsiFeatureArgs
    -(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.
    SharingStatus 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
    ShouldLoadBalanceVmAttachments bool
    -(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.
    StorageFeatures []VolumeGroupV2StorageFeatureArgs
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    TargetName string
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    TargetPrefix string
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    UsageType 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
    clusterReference String
    -(Required) The UUID of the cluster that will host the Volume Group.
    attachmentType 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.
    createdBy String
    -(Optional) Service/user who created this Volume Group.
    description String
    -(Optional) Volume Group description. This is an optional field.
    disks List<VolumeGroupV2Disk>
    -(Optional) A list of Volume Disks to be attached to the Volume Group.
    enabledAuthentications String
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    isHidden Boolean
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    iscsiFeatures List<VolumeGroupV2IscsiFeature>
    -(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.
    sharingStatus 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
    shouldLoadBalanceVmAttachments Boolean
    -(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.
    storageFeatures List<VolumeGroupV2StorageFeature>
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    targetName String
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    targetPrefix String
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    usageType 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
    clusterReference string
    -(Required) The UUID of the cluster that will host the Volume Group.
    attachmentType 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.
    createdBy string
    -(Optional) Service/user who created this Volume Group.
    description string
    -(Optional) Volume Group description. This is an optional field.
    disks VolumeGroupV2Disk[]
    -(Optional) A list of Volume Disks to be attached to the Volume Group.
    enabledAuthentications string
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    isHidden boolean
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    iscsiFeatures VolumeGroupV2IscsiFeature[]
    -(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.
    sharingStatus 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
    shouldLoadBalanceVmAttachments boolean
    -(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.
    storageFeatures VolumeGroupV2StorageFeature[]
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    targetName string
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    targetPrefix string
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    usageType 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[VolumeGroupV2DiskArgs]
    -(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
    is_hidden bool
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    iscsi_features Sequence[VolumeGroupV2IscsiFeatureArgs]
    -(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_balance_vm_attachments bool
    -(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[VolumeGroupV2StorageFeatureArgs]
    -(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
    clusterReference String
    -(Required) The UUID of the cluster that will host the Volume Group.
    attachmentType 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.
    createdBy 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.
    enabledAuthentications String
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    isHidden Boolean
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    iscsiFeatures 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.
    sharingStatus 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
    shouldLoadBalanceVmAttachments Boolean
    -(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.
    storageFeatures List<Property Map>
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    targetName String
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    targetPrefix String
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    usageType 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:

    ExtId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    Id string
    The provider-assigned unique ID for this managed resource.
    ExtId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    Id string
    The provider-assigned unique ID for this managed resource.
    extId String
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    id String
    The provider-assigned unique ID for this managed resource.
    extId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    id string
    The provider-assigned unique ID for this managed resource.
    ext_id str
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    id str
    The provider-assigned unique ID for this managed resource.
    extId String
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    id String
    The provider-assigned unique ID for this managed resource.

    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.
    The following state arguments are supported:
    AttachmentType 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.
    ClusterReference string
    -(Required) The UUID of the cluster that will host the Volume Group.
    CreatedBy string
    -(Optional) Service/user who created this Volume Group.
    Description string
    -(Optional) Volume Group description. This is an optional field.
    Disks List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2Disk>
    -(Optional) A list of Volume Disks to be attached to the Volume Group.
    EnabledAuthentications string
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    ExtId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    IsHidden bool
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    IscsiFeatures List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2IscsiFeature>
    -(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.
    SharingStatus 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
    ShouldLoadBalanceVmAttachments bool
    -(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.
    StorageFeatures List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2StorageFeature>
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    TargetName string
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    TargetPrefix string
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    UsageType 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
    AttachmentType 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.
    ClusterReference string
    -(Required) The UUID of the cluster that will host the Volume Group.
    CreatedBy string
    -(Optional) Service/user who created this Volume Group.
    Description string
    -(Optional) Volume Group description. This is an optional field.
    Disks []VolumeGroupV2DiskArgs
    -(Optional) A list of Volume Disks to be attached to the Volume Group.
    EnabledAuthentications string
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    ExtId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    IsHidden bool
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    IscsiFeatures []VolumeGroupV2IscsiFeatureArgs
    -(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.
    SharingStatus 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
    ShouldLoadBalanceVmAttachments bool
    -(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.
    StorageFeatures []VolumeGroupV2StorageFeatureArgs
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    TargetName string
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    TargetPrefix string
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    UsageType 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
    attachmentType 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.
    clusterReference String
    -(Required) The UUID of the cluster that will host the Volume Group.
    createdBy String
    -(Optional) Service/user who created this Volume Group.
    description String
    -(Optional) Volume Group description. This is an optional field.
    disks List<VolumeGroupV2Disk>
    -(Optional) A list of Volume Disks to be attached to the Volume Group.
    enabledAuthentications String
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    extId String
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    isHidden Boolean
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    iscsiFeatures List<VolumeGroupV2IscsiFeature>
    -(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.
    sharingStatus 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
    shouldLoadBalanceVmAttachments Boolean
    -(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.
    storageFeatures List<VolumeGroupV2StorageFeature>
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    targetName String
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    targetPrefix String
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    usageType 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
    attachmentType 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.
    clusterReference string
    -(Required) The UUID of the cluster that will host the Volume Group.
    createdBy string
    -(Optional) Service/user who created this Volume Group.
    description string
    -(Optional) Volume Group description. This is an optional field.
    disks VolumeGroupV2Disk[]
    -(Optional) A list of Volume Disks to be attached to the Volume Group.
    enabledAuthentications string
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    extId string
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    isHidden boolean
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    iscsiFeatures VolumeGroupV2IscsiFeature[]
    -(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.
    sharingStatus 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
    shouldLoadBalanceVmAttachments boolean
    -(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.
    storageFeatures VolumeGroupV2StorageFeature[]
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    targetName string
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    targetPrefix string
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    usageType 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[VolumeGroupV2DiskArgs]
    -(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.
    is_hidden bool
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    iscsi_features Sequence[VolumeGroupV2IscsiFeatureArgs]
    -(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_balance_vm_attachments bool
    -(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[VolumeGroupV2StorageFeatureArgs]
    -(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
    attachmentType 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.
    clusterReference String
    -(Required) The UUID of the cluster that will host the Volume Group.
    createdBy 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.
    enabledAuthentications String
    -(Optional) The authentication type enabled for the Volume Group. Valid values are CHAP, NONE
    extId String
    -(Optional) A globally unique identifier of an instance that is suitable for external consumption.
    isHidden Boolean
    -(Optional) Indicates whether the Volume Group is meant to be hidden or not.
    iscsiFeatures 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.
    sharingStatus 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
    shouldLoadBalanceVmAttachments Boolean
    -(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.
    storageFeatures List<Property Map>
    -(Optional) Storage optimization features which must be enabled on the Volume Group.
    targetName String
    -(Optional) Name of the external client target that will be visible and accessible to the client.
    targetPrefix String
    The specifications contain the target prefix for external clients as the value. This is an optional field.
    usageType 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

    DiskDataSourceReferences List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2DiskDiskDataSourceReference>
    -(Required) Disk Data Source Reference.
    DiskSizeBytes int
    • 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.
    DiskStorageFeatures List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2DiskDiskStorageFeature>
    • 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.
    DiskDataSourceReferences []VolumeGroupV2DiskDiskDataSourceReference
    -(Required) Disk Data Source Reference.
    DiskSizeBytes int
    • 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.
    DiskStorageFeatures []VolumeGroupV2DiskDiskStorageFeature
    • 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.
    diskDataSourceReferences List<VolumeGroupV2DiskDiskDataSourceReference>
    -(Required) Disk Data Source Reference.
    diskSizeBytes Integer
    • 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.
    diskStorageFeatures List<VolumeGroupV2DiskDiskStorageFeature>
    • 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.
    diskDataSourceReferences VolumeGroupV2DiskDiskDataSourceReference[]
    -(Required) Disk Data Source Reference.
    diskSizeBytes number
    • 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.
    diskStorageFeatures VolumeGroupV2DiskDiskStorageFeature[]
    • 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_source_references Sequence[VolumeGroupV2DiskDiskDataSourceReference]
    -(Required) Disk Data Source Reference.
    disk_size_bytes int
    • 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_features Sequence[VolumeGroupV2DiskDiskStorageFeature]
    • 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.
    diskDataSourceReferences List<Property Map>
    -(Required) Disk Data Source Reference.
    diskSizeBytes Number
    • 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.
    diskStorageFeatures List<Property Map>
    • 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

    ExtId string
    • The external identifier of the Data Source Reference.
    EntityType 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.
    ExtId string
    • The external identifier of the Data Source Reference.
    EntityType 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.
    extId String
    • The external identifier of the Data Source Reference.
    entityType 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.
    extId string
    • The external identifier of the Data Source Reference.
    entityType 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.
    extId String
    • The external identifier of the Data Source Reference.
    entityType 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

    FlashModes List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2DiskDiskStorageFeatureFlashMode>
    • this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    FlashModes []VolumeGroupV2DiskDiskStorageFeatureFlashMode
    • this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    flashModes List<VolumeGroupV2DiskDiskStorageFeatureFlashMode>
    • this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    flashModes VolumeGroupV2DiskDiskStorageFeatureFlashMode[]
    • 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[VolumeGroupV2DiskDiskStorageFeatureFlashMode]
    • this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    flashModes 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

    IsEnabled bool
    • Indicates whether the flash mode is enabled for the Volume Group Disk.

    See detailed information in Nutanix Volumes V4.

    IsEnabled bool
    • Indicates whether the flash mode is enabled for the Volume Group Disk.

    See detailed information in Nutanix Volumes V4.

    isEnabled Boolean
    • Indicates whether the flash mode is enabled for the Volume Group Disk.

    See detailed information in Nutanix Volumes V4.

    isEnabled 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.

    isEnabled Boolean
    • Indicates whether the flash mode is enabled for the Volume Group Disk.

    See detailed information in Nutanix Volumes V4.

    VolumeGroupV2IscsiFeature, VolumeGroupV2IscsiFeatureArgs

    EnabledAuthentications string
    • The authentication type enabled for the Volume Group.
    TargetSecret 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.
    EnabledAuthentications string
    • The authentication type enabled for the Volume Group.
    TargetSecret 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.
    enabledAuthentications String
    • The authentication type enabled for the Volume Group.
    targetSecret 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.
    enabledAuthentications string
    • The authentication type enabled for the Volume Group.
    targetSecret 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.
    enabledAuthentications String
    • The authentication type enabled for the Volume Group.
    targetSecret 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

    FlashModes List<PiersKarsenbarg.Nutanix.Inputs.VolumeGroupV2StorageFeatureFlashMode>
    • this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    FlashModes []VolumeGroupV2StorageFeatureFlashMode
    • this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    flashModes List<VolumeGroupV2StorageFeatureFlashMode>
    • this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    flashModes VolumeGroupV2StorageFeatureFlashMode[]
    • 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[VolumeGroupV2StorageFeatureFlashMode]
    • this field will avoid down migration of data from the hot tier unless the overrides field is specified for the virtual disks.
    flashModes 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

    IsEnabled bool
    • Indicates whether the flash mode is enabled for the Volume Group Disk.

    See detailed information in Nutanix Volumes V4.

    IsEnabled bool
    • Indicates whether the flash mode is enabled for the Volume Group Disk.

    See detailed information in Nutanix Volumes V4.

    isEnabled Boolean
    • Indicates whether the flash mode is enabled for the Volume Group Disk.

    See detailed information in Nutanix Volumes V4.

    isEnabled 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.

    isEnabled 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.
    nutanix logo
    Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg