com.pulumi.azure.datafactory.kotlin.outputs.TriggerTumblingWindowRetry.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.Int
import kotlin.Suppress
/**
*
* @property count The maximum retry attempts if the pipeline run failed.
* @property interval The Interval in seconds between each retry if the pipeline run failed. Defaults to `30`.
*/
public data class TriggerTumblingWindowRetry(
public val count: Int,
public val interval: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.TriggerTumblingWindowRetry):
TriggerTumblingWindowRetry = TriggerTumblingWindowRetry(
count = javaType.count(),
interval = javaType.interval().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy