com.pulumi.gcp.transcoder.kotlin.inputs.JobConfigOverlayAnimationAnimationFadeXyArgs.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.JobConfigOverlayAnimationAnimationFadeXyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Double
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property x Normalized x coordinate.
* @property y Normalized y coordinate.
*/
public data class JobConfigOverlayAnimationAnimationFadeXyArgs(
public val x: Output? = null,
public val y: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.transcoder.inputs.JobConfigOverlayAnimationAnimationFadeXyArgs =
com.pulumi.gcp.transcoder.inputs.JobConfigOverlayAnimationAnimationFadeXyArgs.builder()
.x(x?.applyValue({ args0 -> args0 }))
.y(y?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [JobConfigOverlayAnimationAnimationFadeXyArgs].
*/
@PulumiTagMarker
public class JobConfigOverlayAnimationAnimationFadeXyArgsBuilder internal constructor() {
private var x: Output? = null
private var y: Output? = null
/**
* @param value Normalized x coordinate.
*/
@JvmName("qwvhlgfespvifoiw")
public suspend fun x(`value`: Output) {
this.x = value
}
/**
* @param value Normalized y coordinate.
*/
@JvmName("kgpnmmfrenvmffnl")
public suspend fun y(`value`: Output) {
this.y = value
}
/**
* @param value Normalized x coordinate.
*/
@JvmName("eamhjvhvaknpgxal")
public suspend fun x(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.x = mapped
}
/**
* @param value Normalized y coordinate.
*/
@JvmName("xyukqmrgxqqpyhum")
public suspend fun y(`value`: Double?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.y = mapped
}
internal fun build(): JobConfigOverlayAnimationAnimationFadeXyArgs =
JobConfigOverlayAnimationAnimationFadeXyArgs(
x = x,
y = y,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy