
com.pulumi.gcp.transcoder.kotlin.inputs.JobConfigOverlayArgs.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.JobConfigOverlayArgs.builder
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
/**
*
* @property animations List of animations. The list should be chronological, without any time overlap.
* Structure is documented below.
* @property image Image overlay.
* Structure is documented below.
*/
public data class JobConfigOverlayArgs(
public val animations: Output>? = null,
public val image: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.transcoder.inputs.JobConfigOverlayArgs =
com.pulumi.gcp.transcoder.inputs.JobConfigOverlayArgs.builder()
.animations(
animations?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.image(image?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [JobConfigOverlayArgs].
*/
@PulumiTagMarker
public class JobConfigOverlayArgsBuilder internal constructor() {
private var animations: Output>? = null
private var image: Output? = null
/**
* @param value List of animations. The list should be chronological, without any time overlap.
* Structure is documented below.
*/
@JvmName("hkvelmqksrtlpncc")
public suspend fun animations(`value`: Output>) {
this.animations = value
}
@JvmName("xhcmsjmsxodksnce")
public suspend fun animations(vararg values: Output) {
this.animations = Output.all(values.asList())
}
/**
* @param values List of animations. The list should be chronological, without any time overlap.
* Structure is documented below.
*/
@JvmName("fqdmmovtyjeydxse")
public suspend fun animations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy