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