com.pulumi.alicloud.ecs.kotlin.outputs.GetEcsDedicatedHostClustersClusterDedicatedHostClusterCapacityLocalStorageCapacity.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-alicloud-kotlin Show documentation
Show all versions of pulumi-alicloud-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.alicloud.ecs.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property availableDisk The available capacity of the local disk. Unit: `GiB`.
* @property dataDiskCategory The category of the data disk. Valid values:`cloud`, `cloud_efficiency`, `cloud_ssd`, `ephemeral_ssd`, `cloud_essd`.
* @property totalDisk The total capacity of the local disk. Unit: `GiB`.
*/
public data class
GetEcsDedicatedHostClustersClusterDedicatedHostClusterCapacityLocalStorageCapacity(
public val availableDisk: Int,
public val dataDiskCategory: String,
public val totalDisk: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.alicloud.ecs.outputs.GetEcsDedicatedHostClustersClusterDedicatedHostClusterCapacityLocalStorageCapacity): GetEcsDedicatedHostClustersClusterDedicatedHostClusterCapacityLocalStorageCapacity =
GetEcsDedicatedHostClustersClusterDedicatedHostClusterCapacityLocalStorageCapacity(
availableDisk = javaType.availableDisk(),
dataDiskCategory = javaType.dataDiskCategory(),
totalDisk = javaType.totalDisk(),
)
}
}