com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeSsisPipelineExternalComputeScale.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 numberOfExternalNodes Specifies the number of the external nodes, which should be greater than `0` and less than `11`.
* @property numberOfPipelineNodes Specifies the number of the pipeline nodes, which should be greater than `0` and less than `11`.
* @property timeToLive Specifies the time to live (in minutes) setting of integration runtime which will execute copy activity. Possible values are at least `5`.
*/
public data class IntegrationRuntimeSsisPipelineExternalComputeScale(
public val numberOfExternalNodes: Int? = null,
public val numberOfPipelineNodes: Int? = null,
public val timeToLive: Int? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.IntegrationRuntimeSsisPipelineExternalComputeScale):
IntegrationRuntimeSsisPipelineExternalComputeScale =
IntegrationRuntimeSsisPipelineExternalComputeScale(
numberOfExternalNodes = javaType.numberOfExternalNodes().map({ args0 -> args0 }).orElse(null),
numberOfPipelineNodes = javaType.numberOfPipelineNodes().map({ args0 -> args0 }).orElse(null),
timeToLive = javaType.timeToLive().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy