![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.media.kotlin.inputs.TrackSelectionArgs.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.media.kotlin.inputs
import com.pulumi.azurenative.media.inputs.TrackSelectionArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Class to select a track
* @property trackSelections TrackSelections is a track property condition list which can specify track(s)
*/
public data class TrackSelectionArgs(
public val trackSelections: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.media.inputs.TrackSelectionArgs =
com.pulumi.azurenative.media.inputs.TrackSelectionArgs.builder()
.trackSelections(
trackSelections?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [TrackSelectionArgs].
*/
@PulumiTagMarker
public class TrackSelectionArgsBuilder internal constructor() {
private var trackSelections: Output>? = null
/**
* @param value TrackSelections is a track property condition list which can specify track(s)
*/
@JvmName("qlcdndnlpkfimpan")
public suspend fun trackSelections(`value`: Output>) {
this.trackSelections = value
}
@JvmName("ppvovqhuwfntaygs")
public suspend fun trackSelections(vararg values: Output) {
this.trackSelections = Output.all(values.asList())
}
/**
* @param values TrackSelections is a track property condition list which can specify track(s)
*/
@JvmName("jaayckqjjdndyjnt")
public suspend fun trackSelections(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy