![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.compute.kotlin.inputs.DisallowedArgs.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.DisallowedArgs.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.collections.List
import kotlin.jvm.JvmName
/**
* Describes the disallowed disk types.
* @property diskTypes A list of disk types.
*/
public data class DisallowedArgs(
public val diskTypes: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.compute.inputs.DisallowedArgs =
com.pulumi.azurenative.compute.inputs.DisallowedArgs.builder()
.diskTypes(diskTypes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [DisallowedArgs].
*/
@PulumiTagMarker
public class DisallowedArgsBuilder internal constructor() {
private var diskTypes: Output>? = null
/**
* @param value A list of disk types.
*/
@JvmName("esknqyuvpnjfwori")
public suspend fun diskTypes(`value`: Output>) {
this.diskTypes = value
}
@JvmName("unqloagpxntbspou")
public suspend fun diskTypes(vararg values: Output) {
this.diskTypes = Output.all(values.asList())
}
/**
* @param values A list of disk types.
*/
@JvmName("lfevmqlyixgckjpf")
public suspend fun diskTypes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy