All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.datafactory.kotlin.inputs.TriggerTumblingWindowTriggerDependencyArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.21.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.datafactory.kotlin.inputs

import com.pulumi.azure.datafactory.inputs.TriggerTumblingWindowTriggerDependencyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property offset The offset of the dependency trigger. Must be in Timespan format (±hh:mm:ss) and must be a negative offset for a self dependency.
 * @property size The size of the dependency tumbling window. Must be in Timespan format (hh:mm:ss).
 * @property triggerName The dependency trigger name. If not specified, it will use self dependency.
 */
public data class TriggerTumblingWindowTriggerDependencyArgs(
    public val offset: Output? = null,
    public val size: Output? = null,
    public val triggerName: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava():
        com.pulumi.azure.datafactory.inputs.TriggerTumblingWindowTriggerDependencyArgs =
        com.pulumi.azure.datafactory.inputs.TriggerTumblingWindowTriggerDependencyArgs.builder()
            .offset(offset?.applyValue({ args0 -> args0 }))
            .size(size?.applyValue({ args0 -> args0 }))
            .triggerName(triggerName?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TriggerTumblingWindowTriggerDependencyArgs].
 */
@PulumiTagMarker
public class TriggerTumblingWindowTriggerDependencyArgsBuilder internal constructor() {
    private var offset: Output? = null

    private var size: Output? = null

    private var triggerName: Output? = null

    /**
     * @param value The offset of the dependency trigger. Must be in Timespan format (±hh:mm:ss) and must be a negative offset for a self dependency.
     */
    @JvmName("dcgsjxfkxaaswtho")
    public suspend fun offset(`value`: Output) {
        this.offset = value
    }

    /**
     * @param value The size of the dependency tumbling window. Must be in Timespan format (hh:mm:ss).
     */
    @JvmName("epviyocqbitykioh")
    public suspend fun size(`value`: Output) {
        this.size = value
    }

    /**
     * @param value The dependency trigger name. If not specified, it will use self dependency.
     */
    @JvmName("qukwqtjrochbuxga")
    public suspend fun triggerName(`value`: Output) {
        this.triggerName = value
    }

    /**
     * @param value The offset of the dependency trigger. Must be in Timespan format (±hh:mm:ss) and must be a negative offset for a self dependency.
     */
    @JvmName("dqrsvofddgjplcca")
    public suspend fun offset(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.offset = mapped
    }

    /**
     * @param value The size of the dependency tumbling window. Must be in Timespan format (hh:mm:ss).
     */
    @JvmName("afsjqvauhuvjlskc")
    public suspend fun size(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.size = mapped
    }

    /**
     * @param value The dependency trigger name. If not specified, it will use self dependency.
     */
    @JvmName("ybkykrasgvhajvqu")
    public suspend fun triggerName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.triggerName = mapped
    }

    internal fun build(): TriggerTumblingWindowTriggerDependencyArgs =
        TriggerTumblingWindowTriggerDependencyArgs(
            offset = offset,
            size = size,
            triggerName = triggerName,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy