Pool Data Disk Args
data class PoolDataDiskArgs(val caching: Output<String>? = null, val diskSizeGb: Output<Int>, val lun: Output<Int>, val storageAccountType: Output<String>? = null) : ConvertibleToJava<PoolDataDiskArgs>
Constructors
Link copied to clipboard
fun PoolDataDiskArgs(caching: Output<String>? = null, diskSizeGb: Output<Int>, lun: Output<Int>, storageAccountType: Output<String>? = null)
Functions
Properties
Link copied to clipboard
Values are: "none" - The caching mode for the disk is not enabled. "readOnly" - The caching mode for the disk is read only. "readWrite" - The caching mode for the disk is read and write. The default value for caching is "none". For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/. Possible values are None
, ReadOnly
and ReadWrite
.
Link copied to clipboard