com.pulumi.azure.batch.kotlin.outputs.GetPoolAutoScale.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.batch.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property evaluationInterval The interval to wait before evaluating if the pool needs to be scaled.
* @property formula The autoscale formula that needs to be used for scaling the Batch pool.
*/
public data class GetPoolAutoScale(
public val evaluationInterval: String,
public val formula: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolAutoScale): GetPoolAutoScale = GetPoolAutoScale(
evaluationInterval = javaType.evaluationInterval(),
formula = javaType.formula(),
)
}
}