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

com.pulumi.azure.batch.kotlin.outputs.GetPoolFixedScale.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.batch.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property resizeTimeout The timeout for resize operations.
 * @property targetDedicatedNodes The number of nodes in the Batch pool.
 * @property targetLowPriorityNodes The number of low priority nodes in the Batch pool.
 */
public data class GetPoolFixedScale(
    public val resizeTimeout: String,
    public val targetDedicatedNodes: Int,
    public val targetLowPriorityNodes: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolFixedScale):
            GetPoolFixedScale = GetPoolFixedScale(
            resizeTimeout = javaType.resizeTimeout(),
            targetDedicatedNodes = javaType.targetDedicatedNodes(),
            targetLowPriorityNodes = javaType.targetLowPriorityNodes(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy