![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.storage.kotlin.inputs.MultichannelArgs.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.storage.kotlin.inputs
import com.pulumi.azurenative.storage.inputs.MultichannelArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Multichannel setting. Applies to Premium FileStorage only.
* @property enabled Indicates whether multichannel is enabled
*/
public data class MultichannelArgs(
public val enabled: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.storage.inputs.MultichannelArgs =
com.pulumi.azurenative.storage.inputs.MultichannelArgs.builder()
.enabled(enabled?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [MultichannelArgs].
*/
@PulumiTagMarker
public class MultichannelArgsBuilder internal constructor() {
private var enabled: Output? = null
/**
* @param value Indicates whether multichannel is enabled
*/
@JvmName("ttymflfeckejdbns")
public suspend fun enabled(`value`: Output) {
this.enabled = value
}
/**
* @param value Indicates whether multichannel is enabled
*/
@JvmName("wdhvdlkmrfcrftru")
public suspend fun enabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.enabled = mapped
}
internal fun build(): MultichannelArgs = MultichannelArgs(
enabled = enabled,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy