![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.datafactory.kotlin.inputs.IntegrationRuntimeSsisExpressVnetIntegrationArgs.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.inputs
import com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressVnetIntegrationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property subnetId id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
*/
public data class IntegrationRuntimeSsisExpressVnetIntegrationArgs(
public val subnetId: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressVnetIntegrationArgs =
com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressVnetIntegrationArgs.builder()
.subnetId(subnetId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationRuntimeSsisExpressVnetIntegrationArgs].
*/
@PulumiTagMarker
public class IntegrationRuntimeSsisExpressVnetIntegrationArgsBuilder internal constructor() {
private var subnetId: Output? = null
/**
* @param value id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
*/
@JvmName("offscxkjadaeunnk")
public suspend fun subnetId(`value`: Output) {
this.subnetId = value
}
/**
* @param value id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
*/
@JvmName("trvfmwvrtydigpwk")
public suspend fun subnetId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.subnetId = mapped
}
internal fun build(): IntegrationRuntimeSsisExpressVnetIntegrationArgs =
IntegrationRuntimeSsisExpressVnetIntegrationArgs(
subnetId = subnetId ?: throw PulumiNullFieldException("subnetId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy