
com.pulumi.azurenative.synapse.kotlin.inputs.IntegrationRuntimeVNetPropertiesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.synapse.kotlin.inputs
import com.pulumi.azurenative.synapse.inputs.IntegrationRuntimeVNetPropertiesArgs.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
/**
* VNet properties for managed integration runtime.
* @property publicIPs Resource IDs of the public IP addresses that this integration runtime will use.
* @property subnet The name of the subnet this integration runtime will join.
* @property subnetId The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
* @property vNetId The ID of the VNet that this integration runtime will join.
*/
public data class IntegrationRuntimeVNetPropertiesArgs(
public val publicIPs: Output>? = null,
public val subnet: Output? = null,
public val subnetId: Output? = null,
public val vNetId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.synapse.inputs.IntegrationRuntimeVNetPropertiesArgs = com.pulumi.azurenative.synapse.inputs.IntegrationRuntimeVNetPropertiesArgs.builder()
.publicIPs(publicIPs?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.subnet(subnet?.applyValue({ args0 -> args0 }))
.subnetId(subnetId?.applyValue({ args0 -> args0 }))
.vNetId(vNetId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationRuntimeVNetPropertiesArgs].
*/
@PulumiTagMarker
public class IntegrationRuntimeVNetPropertiesArgsBuilder internal constructor() {
private var publicIPs: Output>? = null
private var subnet: Output? = null
private var subnetId: Output? = null
private var vNetId: Output? = null
/**
* @param value Resource IDs of the public IP addresses that this integration runtime will use.
*/
@JvmName("plkwrpguscysaykv")
public suspend fun publicIPs(`value`: Output>) {
this.publicIPs = value
}
@JvmName("dagkjomvdjdfjdie")
public suspend fun publicIPs(vararg values: Output) {
this.publicIPs = Output.all(values.asList())
}
/**
* @param values Resource IDs of the public IP addresses that this integration runtime will use.
*/
@JvmName("gvcsiclncjjdnacb")
public suspend fun publicIPs(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy