
com.pulumi.azure.network.kotlin.inputs.VpnGatewayBgpSettingsInstance0BgpPeeringAddressArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.network.kotlin.inputs
import com.pulumi.azure.network.inputs.VpnGatewayBgpSettingsInstance0BgpPeeringAddressArgs.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.collections.List
import kotlin.jvm.JvmName
/**
*
* @property customIps
* @property defaultIps The list of default BGP peering addresses which belong to the pre-defined VPN Gateway IP configuration.
* @property ipConfigurationId The pre-defined id of VPN Gateway IP Configuration.
* @property tunnelIps The list of tunnel public IP addresses which belong to the pre-defined VPN Gateway IP configuration.
*/
public data class VpnGatewayBgpSettingsInstance0BgpPeeringAddressArgs(
public val customIps: Output>,
public val defaultIps: Output>? = null,
public val ipConfigurationId: Output? = null,
public val tunnelIps: Output>? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.network.inputs.VpnGatewayBgpSettingsInstance0BgpPeeringAddressArgs =
com.pulumi.azure.network.inputs.VpnGatewayBgpSettingsInstance0BgpPeeringAddressArgs.builder()
.customIps(customIps.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.defaultIps(defaultIps?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.ipConfigurationId(ipConfigurationId?.applyValue({ args0 -> args0 }))
.tunnelIps(tunnelIps?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [VpnGatewayBgpSettingsInstance0BgpPeeringAddressArgs].
*/
@PulumiTagMarker
public class VpnGatewayBgpSettingsInstance0BgpPeeringAddressArgsBuilder internal constructor() {
private var customIps: Output>? = null
private var defaultIps: Output>? = null
private var ipConfigurationId: Output? = null
private var tunnelIps: Output>? = null
/**
* @param value
*/
@JvmName("uajgidavyxdgpyvu")
public suspend fun customIps(`value`: Output>) {
this.customIps = value
}
@JvmName("ialqasslalmkxeav")
public suspend fun customIps(vararg values: Output) {
this.customIps = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("unannekdyxxpuyil")
public suspend fun customIps(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy