![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.datafactory.kotlin.outputs.TriggerTumblingWindowTriggerDependency.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.datafactory.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @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 TriggerTumblingWindowTriggerDependency(
public val offset: String? = null,
public val size: String? = null,
public val triggerName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.TriggerTumblingWindowTriggerDependency): TriggerTumblingWindowTriggerDependency = TriggerTumblingWindowTriggerDependency(
offset = javaType.offset().map({ args0 -> args0 }).orElse(null),
size = javaType.size().map({ args0 -> args0 }).orElse(null),
triggerName = javaType.triggerName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy