com.pulumi.azure.network.kotlin.inputs.VpnGatewayBgpSettingsInstance1BgpPeeringAddressArgs.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.network.kotlin.inputs
import com.pulumi.azure.network.inputs.VpnGatewayBgpSettingsInstance1BgpPeeringAddressArgs.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 VpnGatewayBgpSettingsInstance1BgpPeeringAddressArgs(
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.VpnGatewayBgpSettingsInstance1BgpPeeringAddressArgs =
com.pulumi.azure.network.inputs.VpnGatewayBgpSettingsInstance1BgpPeeringAddressArgs.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 [VpnGatewayBgpSettingsInstance1BgpPeeringAddressArgs].
*/
@PulumiTagMarker
public class VpnGatewayBgpSettingsInstance1BgpPeeringAddressArgsBuilder 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("jfoxssbmaqpvxqkq")
public suspend fun customIps(`value`: Output>) {
this.customIps = value
}
@JvmName("yflhthjwdpkqbach")
public suspend fun customIps(vararg values: Output) {
this.customIps = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("qdrudekioqivqwbk")
public suspend fun customIps(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy