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

com.pulumi.azure.datafactory.kotlin.outputs.TriggerTumblingWindowRetry.kt Maven / Gradle / Ivy

@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 - 2024 Weber Informatics LLC | Privacy Policy