
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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy