Show / Hide Table of Contents

Class VirtualDiskState

Inheritance
System.Object
InputArgs
ResourceArgs
VirtualDiskState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.VSphere
Assembly: Pulumi.VSphere.dll
Syntax
public sealed class VirtualDiskState : ResourceArgs

Constructors

View Source

VirtualDiskState()

Declaration
public VirtualDiskState()

Properties

View Source

AdapterType

The adapter type for this virtual disk. Can be one of ide, lsiLogic, or busLogic. Default: lsiLogic.

Declaration
public Input<string> AdapterType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CreateDirectories

Tells the resource to create any directories that are a part of the vmdk_path parameter if they are missing. Default: false.

Declaration
public Input<bool> CreateDirectories { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Datacenter

The name of the datacenter in which to create the disk. Can be omitted when when ESXi or if there is only one datacenter in your infrastructure.

Declaration
public Input<string> Datacenter { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Datastore

The name of the datastore in which to create the disk.

Declaration
public Input<string> Datastore { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Size

Size of the disk (in GB).

Declaration
public Input<int> Size { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Type

The type of disk to create. Can be one of eagerZeroedThick, lazy, or thin. Default: eagerZeroedThick. For information on what each kind of disk provisioning policy means, click [here][docs-vmware-vm-disk-provisioning].

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VmdkPath

The path, including filename, of the virtual disk to be created. This needs to end in .vmdk.

Declaration
public Input<string> VmdkPath { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.