![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.synapse.kotlin.inputs.IntegrationRuntimeCustomerVirtualNetworkArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.synapse.kotlin.inputs
import com.pulumi.azurenative.synapse.inputs.IntegrationRuntimeCustomerVirtualNetworkArgs.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.jvm.JvmName
/**
* The definition and properties of virtual network to which Azure-SSIS integration runtime will join.
* @property subnetId The ID of subnet to which Azure-SSIS integration runtime will join.
*/
public data class IntegrationRuntimeCustomerVirtualNetworkArgs(
public val subnetId: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.synapse.inputs.IntegrationRuntimeCustomerVirtualNetworkArgs =
com.pulumi.azurenative.synapse.inputs.IntegrationRuntimeCustomerVirtualNetworkArgs.builder()
.subnetId(subnetId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationRuntimeCustomerVirtualNetworkArgs].
*/
@PulumiTagMarker
public class IntegrationRuntimeCustomerVirtualNetworkArgsBuilder internal constructor() {
private var subnetId: Output? = null
/**
* @param value The ID of subnet to which Azure-SSIS integration runtime will join.
*/
@JvmName("fnrxvryykxedcecy")
public suspend fun subnetId(`value`: Output) {
this.subnetId = value
}
/**
* @param value The ID of subnet to which Azure-SSIS integration runtime will join.
*/
@JvmName("molofekvcfgnhong")
public suspend fun subnetId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.subnetId = mapped
}
internal fun build(): IntegrationRuntimeCustomerVirtualNetworkArgs =
IntegrationRuntimeCustomerVirtualNetworkArgs(
subnetId = subnetId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy