com.pulumi.gcp.transcoder.kotlin.inputs.JobTemplateConfigMuxStreamArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.transcoder.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.transcoder.inputs.JobTemplateConfigMuxStreamArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property container The container format. The default is `mp4`.
* @property elementaryStreams List of ElementaryStream.key values multiplexed in this stream.
* @property encryptionId Identifier of the encryption configuration to use.
* @property fileName The name of the generated file.
* @property key A unique key for this multiplexed stream.
* @property segmentSettings Segment settings for ts, fmp4 and vtt.
* Structure is documented below.
*/
public data class JobTemplateConfigMuxStreamArgs(
public val container: Output? = null,
public val elementaryStreams: Output>? = null,
public val encryptionId: Output? = null,
public val fileName: Output? = null,
public val key: Output? = null,
public val segmentSettings: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.transcoder.inputs.JobTemplateConfigMuxStreamArgs =
com.pulumi.gcp.transcoder.inputs.JobTemplateConfigMuxStreamArgs.builder()
.container(container?.applyValue({ args0 -> args0 }))
.elementaryStreams(elementaryStreams?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.encryptionId(encryptionId?.applyValue({ args0 -> args0 }))
.fileName(fileName?.applyValue({ args0 -> args0 }))
.key(key?.applyValue({ args0 -> args0 }))
.segmentSettings(
segmentSettings?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [JobTemplateConfigMuxStreamArgs].
*/
@PulumiTagMarker
public class JobTemplateConfigMuxStreamArgsBuilder internal constructor() {
private var container: Output? = null
private var elementaryStreams: Output>? = null
private var encryptionId: Output? = null
private var fileName: Output? = null
private var key: Output? = null
private var segmentSettings: Output? = null
/**
* @param value The container format. The default is `mp4`.
*/
@JvmName("rfuhdhbdqhedwflj")
public suspend fun container(`value`: Output) {
this.container = value
}
/**
* @param value List of ElementaryStream.key values multiplexed in this stream.
*/
@JvmName("trnsfdsltyddjrti")
public suspend fun elementaryStreams(`value`: Output>) {
this.elementaryStreams = value
}
@JvmName("mgfpciesxelwgpsh")
public suspend fun elementaryStreams(vararg values: Output) {
this.elementaryStreams = Output.all(values.asList())
}
/**
* @param values List of ElementaryStream.key values multiplexed in this stream.
*/
@JvmName("lbhowxojqnuccivg")
public suspend fun elementaryStreams(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy