com.pulumi.azurenative.media.kotlin.inputs.FromAllInputFileArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.media.kotlin.inputs
import com.pulumi.azurenative.media.inputs.FromAllInputFileArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* An InputDefinition that looks across all of the files provided to select tracks specified by the IncludedTracks property. Generally used with the AudioTrackByAttribute and VideoTrackByAttribute to allow selection of a single track across a set of input files.
* @property includedTracks The list of TrackDescriptors which define the metadata and selection of tracks in the input.
* @property odataType The discriminator for derived types.
* Expected value is '#Microsoft.Media.FromAllInputFile'.
*/
public data class FromAllInputFileArgs(
public val includedTracks: Output>? = null,
public val odataType: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.media.inputs.FromAllInputFileArgs =
com.pulumi.azurenative.media.inputs.FromAllInputFileArgs.builder()
.includedTracks(includedTracks?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.odataType(odataType.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FromAllInputFileArgs].
*/
@PulumiTagMarker
public class FromAllInputFileArgsBuilder internal constructor() {
private var includedTracks: Output>? = null
private var odataType: Output? = null
/**
* @param value The list of TrackDescriptors which define the metadata and selection of tracks in the input.
*/
@JvmName("ovsrlfcmxxxojvhh")
public suspend fun includedTracks(`value`: Output>) {
this.includedTracks = value
}
@JvmName("nbqfshxfewtqpeje")
public suspend fun includedTracks(vararg values: Output) {
this.includedTracks = Output.all(values.asList())
}
/**
* @param values The list of TrackDescriptors which define the metadata and selection of tracks in the input.
*/
@JvmName("ssmbtmiygfhctfhx")
public suspend fun includedTracks(values: List