com.pulumi.azure.compute.kotlin.outputs.GetImagesImageOsDisk.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.compute.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property blobUri the URI in Azure storage of the blob used to create the image.
* @property caching the caching mode for the Data Disk.
* @property diskEncryptionSetId the ID of the Disk Encryption Set used to encrypt this image.
* @property managedDiskId the ID of the Managed Disk used as the Data Disk Image.
* @property osState the State of the OS used in the Image.
* @property osType the type of Operating System used on the OS Disk.
* @property sizeGb the size of this Data Disk in GB.
*/
public data class GetImagesImageOsDisk(
public val blobUri: String,
public val caching: String,
public val diskEncryptionSetId: String,
public val managedDiskId: String,
public val osState: String,
public val osType: String,
public val sizeGb: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.GetImagesImageOsDisk): GetImagesImageOsDisk = GetImagesImageOsDisk(
blobUri = javaType.blobUri(),
caching = javaType.caching(),
diskEncryptionSetId = javaType.diskEncryptionSetId(),
managedDiskId = javaType.managedDiskId(),
osState = javaType.osState(),
osType = javaType.osType(),
sizeGb = javaType.sizeGb(),
)
}
}