com.pulumi.gcp.container.kotlin.inputs.AzureNodePoolConfigRootVolumeArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.container.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.container.inputs.AzureNodePoolConfigRootVolumeArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property sizeGib Optional. The size of the disk, in GiBs. When unspecified, a default value is provided. See the specific reference in the parent resource.
*/
public data class AzureNodePoolConfigRootVolumeArgs(
public val sizeGib: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.container.inputs.AzureNodePoolConfigRootVolumeArgs =
com.pulumi.gcp.container.inputs.AzureNodePoolConfigRootVolumeArgs.builder()
.sizeGib(sizeGib?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AzureNodePoolConfigRootVolumeArgs].
*/
@PulumiTagMarker
public class AzureNodePoolConfigRootVolumeArgsBuilder internal constructor() {
private var sizeGib: Output? = null
/**
* @param value Optional. The size of the disk, in GiBs. When unspecified, a default value is provided. See the specific reference in the parent resource.
*/
@JvmName("eqirecikyhqhybsx")
public suspend fun sizeGib(`value`: Output) {
this.sizeGib = value
}
/**
* @param value Optional. The size of the disk, in GiBs. When unspecified, a default value is provided. See the specific reference in the parent resource.
*/
@JvmName("oomqxxerhvbtwvvj")
public suspend fun sizeGib(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sizeGib = mapped
}
internal fun build(): AzureNodePoolConfigRootVolumeArgs = AzureNodePoolConfigRootVolumeArgs(
sizeGib = sizeGib,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy