
com.pulumi.azure.avs.kotlin.outputs.PrivateCloudManagementCluster.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.avs.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property hosts A list of hosts in the management cluster.
* @property id The ID of the management cluster.
* @property size The size of the management cluster. This field can not updated with `internet_connection_enabled` together.
*/
public data class PrivateCloudManagementCluster(
public val hosts: List? = null,
public val id: Int? = null,
public val size: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.avs.outputs.PrivateCloudManagementCluster):
PrivateCloudManagementCluster = PrivateCloudManagementCluster(
hosts = javaType.hosts().map({ args0 -> args0 }),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
size = javaType.size(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy