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

com.pulumi.azurenative.datafactory.kotlin.inputs.PipelineExternalComputeScalePropertiesArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.datafactory.kotlin.inputs

import com.pulumi.azurenative.datafactory.inputs.PipelineExternalComputeScalePropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * PipelineExternalComputeScale properties for managed integration runtime.
 * @property numberOfExternalNodes Number of the the external nodes, which should be greater than 0 and less than 11.
 * @property numberOfPipelineNodes Number of the pipeline nodes, which should be greater than 0 and less than 11.
 * @property timeToLive Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
 */
public data class PipelineExternalComputeScalePropertiesArgs(
    public val numberOfExternalNodes: Output? = null,
    public val numberOfPipelineNodes: Output? = null,
    public val timeToLive: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.datafactory.inputs.PipelineExternalComputeScalePropertiesArgs =
        com.pulumi.azurenative.datafactory.inputs.PipelineExternalComputeScalePropertiesArgs.builder()
            .numberOfExternalNodes(numberOfExternalNodes?.applyValue({ args0 -> args0 }))
            .numberOfPipelineNodes(numberOfPipelineNodes?.applyValue({ args0 -> args0 }))
            .timeToLive(timeToLive?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [PipelineExternalComputeScalePropertiesArgs].
 */
@PulumiTagMarker
public class PipelineExternalComputeScalePropertiesArgsBuilder internal constructor() {
    private var numberOfExternalNodes: Output? = null

    private var numberOfPipelineNodes: Output? = null

    private var timeToLive: Output? = null

    /**
     * @param value Number of the the external nodes, which should be greater than 0 and less than 11.
     */
    @JvmName("xrhfuwjgxviqdeur")
    public suspend fun numberOfExternalNodes(`value`: Output) {
        this.numberOfExternalNodes = value
    }

    /**
     * @param value Number of the pipeline nodes, which should be greater than 0 and less than 11.
     */
    @JvmName("twxjuudraigwgktx")
    public suspend fun numberOfPipelineNodes(`value`: Output) {
        this.numberOfPipelineNodes = value
    }

    /**
     * @param value Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
     */
    @JvmName("smcwibctiyjvngwo")
    public suspend fun timeToLive(`value`: Output) {
        this.timeToLive = value
    }

    /**
     * @param value Number of the the external nodes, which should be greater than 0 and less than 11.
     */
    @JvmName("fhjksmooruphttti")
    public suspend fun numberOfExternalNodes(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.numberOfExternalNodes = mapped
    }

    /**
     * @param value Number of the pipeline nodes, which should be greater than 0 and less than 11.
     */
    @JvmName("sikdjyvkmfdchksh")
    public suspend fun numberOfPipelineNodes(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.numberOfPipelineNodes = mapped
    }

    /**
     * @param value Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
     */
    @JvmName("wvfuevvdprcsaxvk")
    public suspend fun timeToLive(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.timeToLive = mapped
    }

    internal fun build(): PipelineExternalComputeScalePropertiesArgs =
        PipelineExternalComputeScalePropertiesArgs(
            numberOfExternalNodes = numberOfExternalNodes,
            numberOfPipelineNodes = numberOfPipelineNodes,
            timeToLive = timeToLive,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy