com.pulumi.azure.avs.kotlin.inputs.PrivateCloudManagementClusterArgs.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.inputs
import com.pulumi.azure.avs.inputs.PrivateCloudManagementClusterArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @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 PrivateCloudManagementClusterArgs(
public val hosts: Output>? = null,
public val id: Output? = null,
public val size: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.avs.inputs.PrivateCloudManagementClusterArgs =
com.pulumi.azure.avs.inputs.PrivateCloudManagementClusterArgs.builder()
.hosts(hosts?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.id(id?.applyValue({ args0 -> args0 }))
.size(size.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PrivateCloudManagementClusterArgs].
*/
@PulumiTagMarker
public class PrivateCloudManagementClusterArgsBuilder internal constructor() {
private var hosts: Output>? = null
private var id: Output? = null
private var size: Output? = null
/**
* @param value A list of hosts in the management cluster.
*/
@JvmName("swrwncjuslbhsros")
public suspend fun hosts(`value`: Output>) {
this.hosts = value
}
@JvmName("uhepydnmfhwtlunj")
public suspend fun hosts(vararg values: Output) {
this.hosts = Output.all(values.asList())
}
/**
* @param values A list of hosts in the management cluster.
*/
@JvmName("qinsolsdmoxgvouh")
public suspend fun hosts(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy