com.pulumi.azure.synapse.kotlin.outputs.SparkPoolAutoPause.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.synapse.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property delayInMinutes Number of minutes of idle time before the Spark Pool is automatically paused. Must be between `5` and `10080`.
*/
public data class SparkPoolAutoPause(
public val delayInMinutes: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.synapse.outputs.SparkPoolAutoPause): SparkPoolAutoPause = SparkPoolAutoPause(
delayInMinutes = javaType.delayInMinutes(),
)
}
}