vcenter ovf: storage disk group

The storage_disk_group structure contains the information about a storage disk group described in the OVF package.

See Import#tryDeploy, Import#deploy, deploy, and filter.

Representation:

{
    "target_profile""obj-103",
    "name""string",
    "description""string",
    "id""string",
    "target_provisioning_type""thin"
}

Attributes:

Name Type Description
Optional
id string Identifier of the disk group.

Optional. This field must be provided in the input parameters when deploying an OVF package. This field will always be present in the result when retrieving information about an OVF package.

name string Short description of the disk group.

Optional. This field is not used in the input parameters when deploying an OVF package. This field will always be present in the result when retrieving information about an OVF package.

description string Description of the disk group.

Optional. This field is not used in the input parameters when deploying an OVF package. This field will always be present in the result when retrieving information about an OVF package.

target_profile string The identifier of the storage profile on which to place this disk group.

Optional. This field is optional in the input parameters when deploying an OVF package. If unset the disk group will not be associated with a storage profile. This field is optional in the result when retrieving information about an OVF package. If unset the disk group is not associated with a storage profile.When clients pass a value of this structure as a parameter, the field must be an identifier for the resource type: StorageProfile. When operations return a value of this structure as a result, the field will be an identifier for the resource type: StorageProfile.

target_provisioning_type string The target provisioning type. It specifies which disk provisioning type the deployment should use for this disk group.

Defines the virtual disk provisioning types that can be set for a disk on the target platform. Value is one of:
thin: A thin provisioned virtual disk has space allocated and zeroed on demand as the space is used.
thick: A thick provisioned virtual disk has all space allocated at creation time and the space is zeroed on demand as the space is used.
eagerZeroedThick: An eager zeroed thick provisioned virtual disk has all space allocated and wiped clean of any previous contents on the physical media at creation time.

Disks specified as eager zeroed thick may take longer time to create than disks specified with the other disk provisioning types.

Optional. This field is optional in the input parameters when deploying an OVF package. If it is unset, vcenter.ovf.storage_mapping_params.target_provisioning_type will be used. This field is optional in the result when retrieving information about an OVF package. If it is unset, vcenter.ovf.storage_mapping_params.target_provisioning_type will be used.