LinuxVirtualMachineOsDisk

data class LinuxVirtualMachineOsDisk(val caching: String, val diffDiskSettings: LinuxVirtualMachineOsDiskDiffDiskSettings? = null, val diskEncryptionSetId: String? = null, val diskSizeGb: Int? = null, val id: String? = null, val name: String? = null, val secureVmDiskEncryptionSetId: String? = null, val securityEncryptionType: String? = null, val storageAccountType: String, val writeAcceleratorEnabled: Boolean? = null)

Constructors

Link copied to clipboard
constructor(caching: String, diffDiskSettings: LinuxVirtualMachineOsDiskDiffDiskSettings? = null, diskEncryptionSetId: String? = null, diskSizeGb: Int? = null, id: String? = null, name: String? = null, secureVmDiskEncryptionSetId: String? = null, securityEncryptionType: String? = null, storageAccountType: String, writeAcceleratorEnabled: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The Type of Caching which should be used for the Internal OS Disk. Possible values are None, ReadOnly and ReadWrite.

Link copied to clipboard

A diff_disk_settings block as defined above. Changing this forces a new resource to be created.

Link copied to clipboard

The ID of the Disk Encryption Set which should be used to Encrypt this OS Disk. Conflicts with secure_vm_disk_encryption_set_id.

Link copied to clipboard
val diskSizeGb: Int? = null

The Size of the Internal OS Disk in GB, if you wish to vary from the size used in the image this Virtual Machine is sourced from.

Link copied to clipboard
val id: String? = null

The ID of the OS disk.

Link copied to clipboard
val name: String? = null

The name which should be used for the Internal OS Disk. Changing this forces a new resource to be created.

Link copied to clipboard

The ID of the Disk Encryption Set which should be used to Encrypt this OS Disk when the Virtual Machine is a Confidential VM. Conflicts with disk_encryption_set_id. Changing this forces a new resource to be created.

Link copied to clipboard

Encryption Type when the Virtual Machine is a Confidential VM. Possible values are VMGuestStateOnly and DiskWithVMGuestState. Changing this forces a new resource to be created.

Link copied to clipboard

The Type of Storage Account which should back this the Internal OS Disk. Possible values are Standard_LRS, StandardSSD_LRS, Premium_LRS, StandardSSD_ZRS and Premium_ZRS. Changing this forces a new resource to be created.

Link copied to clipboard

Should Write Accelerator be Enabled for this OS Disk? Defaults to false.