![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.compute.kotlin.inputs.DiskEncryptionSetParametersArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.compute.kotlin.inputs
import com.pulumi.azurenative.compute.inputs.DiskEncryptionSetParametersArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Describes the parameter of customer managed disk encryption set resource id that can be specified for disk. **Note:** The disk encryption set resource id can only be specified for managed disk. Please refer https://aka.ms/mdssewithcmkoverview for more details.
* @property id Resource Id
*/
public data class DiskEncryptionSetParametersArgs(
public val id: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.compute.inputs.DiskEncryptionSetParametersArgs =
com.pulumi.azurenative.compute.inputs.DiskEncryptionSetParametersArgs.builder()
.id(id?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DiskEncryptionSetParametersArgs].
*/
@PulumiTagMarker
public class DiskEncryptionSetParametersArgsBuilder internal constructor() {
private var id: Output? = null
/**
* @param value Resource Id
*/
@JvmName("deogftnbqcghdekq")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value Resource Id
*/
@JvmName("qipdedspdnalyclf")
public suspend fun id(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.id = mapped
}
internal fun build(): DiskEncryptionSetParametersArgs = DiskEncryptionSetParametersArgs(
id = id,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy