All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.alicloud.ecs.kotlin.outputs.GetEcsDedicatedHostClustersClusterDedicatedHostClusterCapacityLocalStorageCapacity.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 3.62.0.0
Show newest version
@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(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy