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

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

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@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