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

com.pulumi.azure.datafactory.kotlin.inputs.IntegrationRuntimeSsisVnetIntegrationArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azure.datafactory.kotlin.inputs

import com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisVnetIntegrationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property publicIps Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
 * @property subnetId id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
 * > **NOTE** Only one of `subnet_id` and `subnet_name` can be specified. If `subnet_name` is specified, `vnet_id` must be provided.
 * @property subnetName Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
 * @property vnetId ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
 */
public data class IntegrationRuntimeSsisVnetIntegrationArgs(
    public val publicIps: Output>? = null,
    public val subnetId: Output? = null,
    public val subnetName: Output? = null,
    public val vnetId: Output? = null,
) : ConvertibleToJava {
    override fun toJava():
        com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisVnetIntegrationArgs =
        com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisVnetIntegrationArgs.builder()
            .publicIps(publicIps?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .subnetId(subnetId?.applyValue({ args0 -> args0 }))
            .subnetName(subnetName?.applyValue({ args0 -> args0 }))
            .vnetId(vnetId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [IntegrationRuntimeSsisVnetIntegrationArgs].
 */
@PulumiTagMarker
public class IntegrationRuntimeSsisVnetIntegrationArgsBuilder internal constructor() {
    private var publicIps: Output>? = null

    private var subnetId: Output? = null

    private var subnetName: Output? = null

    private var vnetId: Output? = null

    /**
     * @param value Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
     */
    @JvmName("lyswascsbegbqreg")
    public suspend fun publicIps(`value`: Output>) {
        this.publicIps = value
    }

    @JvmName("apklswoaxrjbaayc")
    public suspend fun publicIps(vararg values: Output) {
        this.publicIps = Output.all(values.asList())
    }

    /**
     * @param values Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
     */
    @JvmName("xqdvxyxhpvappgmq")
    public suspend fun publicIps(values: List>) {
        this.publicIps = Output.all(values)
    }

    /**
     * @param value id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
     * > **NOTE** Only one of `subnet_id` and `subnet_name` can be specified. If `subnet_name` is specified, `vnet_id` must be provided.
     */
    @JvmName("mxwsilirchxvyyir")
    public suspend fun subnetId(`value`: Output) {
        this.subnetId = value
    }

    /**
     * @param value Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
     */
    @JvmName("xvwnrnsatlatmgww")
    public suspend fun subnetName(`value`: Output) {
        this.subnetName = value
    }

    /**
     * @param value ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
     */
    @JvmName("pdvtydshskncoaei")
    public suspend fun vnetId(`value`: Output) {
        this.vnetId = value
    }

    /**
     * @param value Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
     */
    @JvmName("lngdcfcchkkoccfw")
    public suspend fun publicIps(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.publicIps = mapped
    }

    /**
     * @param values Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
     */
    @JvmName("dcpljspjugomksoi")
    public suspend fun publicIps(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.publicIps = mapped
    }

    /**
     * @param value id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
     * > **NOTE** Only one of `subnet_id` and `subnet_name` can be specified. If `subnet_name` is specified, `vnet_id` must be provided.
     */
    @JvmName("skihfudywtvygtjk")
    public suspend fun subnetId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.subnetId = mapped
    }

    /**
     * @param value Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
     */
    @JvmName("jisexhewcknvnwiy")
    public suspend fun subnetName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.subnetName = mapped
    }

    /**
     * @param value ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
     */
    @JvmName("wmomxwrtvmvymoqc")
    public suspend fun vnetId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.vnetId = mapped
    }

    internal fun build(): IntegrationRuntimeSsisVnetIntegrationArgs =
        IntegrationRuntimeSsisVnetIntegrationArgs(
            publicIps = publicIps,
            subnetId = subnetId,
            subnetName = subnetName,
            vnetId = vnetId,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy