
com.pulumi.googlenative.transcoder.v1.kotlin.inputs.OverlayArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.transcoder.v1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.transcoder.v1.inputs.OverlayArgs.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
/**
* Overlay configuration.
* @property animations List of Animations. The list should be chronological, without any time overlap.
* @property image Image overlay.
*/
public data class OverlayArgs(
public val animations: Output>? = null,
public val image: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.transcoder.v1.inputs.OverlayArgs =
com.pulumi.googlenative.transcoder.v1.inputs.OverlayArgs.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 [OverlayArgs].
*/
@PulumiTagMarker
public class OverlayArgsBuilder 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.
*/
@JvmName("nxcjuolscmgxbrsv")
public suspend fun animations(`value`: Output>) {
this.animations = value
}
@JvmName("aqtastppsfcoynlc")
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.
*/
@JvmName("sxgpmgxgrrphljrg")
public suspend fun animations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy