
com.pulumi.azure.datafactory.kotlin.inputs.IntegrationRuntimeManagedVnetIntegrationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.datafactory.kotlin.inputs
import com.pulumi.azure.datafactory.inputs.IntegrationRuntimeManagedVnetIntegrationArgs.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 subnetName Name of the subnet to which the nodes of the Managed Integration Runtime will be added.
* @property vnetId ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.
*/
public data class IntegrationRuntimeManagedVnetIntegrationArgs(
public val subnetName: Output,
public val vnetId: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.datafactory.inputs.IntegrationRuntimeManagedVnetIntegrationArgs =
com.pulumi.azure.datafactory.inputs.IntegrationRuntimeManagedVnetIntegrationArgs.builder()
.subnetName(subnetName.applyValue({ args0 -> args0 }))
.vnetId(vnetId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationRuntimeManagedVnetIntegrationArgs].
*/
@PulumiTagMarker
public class IntegrationRuntimeManagedVnetIntegrationArgsBuilder internal constructor() {
private var subnetName: Output? = null
private var vnetId: Output? = null
/**
* @param value Name of the subnet to which the nodes of the Managed Integration Runtime will be added.
*/
@JvmName("nsntllrabgccvkhl")
public suspend fun subnetName(`value`: Output) {
this.subnetName = value
}
/**
* @param value ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.
*/
@JvmName("aeovbbgvbqqichlh")
public suspend fun vnetId(`value`: Output) {
this.vnetId = value
}
/**
* @param value Name of the subnet to which the nodes of the Managed Integration Runtime will be added.
*/
@JvmName("sxqdammbexlyjgap")
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 Managed Integration Runtime will be added.
*/
@JvmName("axgqrsoyauecrvuo")
public suspend fun vnetId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.vnetId = mapped
}
internal fun build(): IntegrationRuntimeManagedVnetIntegrationArgs =
IntegrationRuntimeManagedVnetIntegrationArgs(
subnetName = subnetName ?: throw PulumiNullFieldException("subnetName"),
vnetId = vnetId ?: throw PulumiNullFieldException("vnetId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy