com.pulumi.azure.batch.kotlin.outputs.GetPoolDataDisk.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.batch.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property caching The caching mode of data disks.
* @property diskSizeGb The initial disk size in GB when creating new data disk.
* @property lun The lun is used to uniquely identify each data disk.
* @property storageAccountType The storage account type to be used for the data disk.
*/
public data class GetPoolDataDisk(
public val caching: String,
public val diskSizeGb: Int,
public val lun: Int,
public val storageAccountType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolDataDisk): GetPoolDataDisk =
GetPoolDataDisk(
caching = javaType.caching(),
diskSizeGb = javaType.diskSizeGb(),
lun = javaType.lun(),
storageAccountType = javaType.storageAccountType(),
)
}
}