![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.network.kotlin.outputs.VpnGatewayBgpSettingsInstance0BgpPeeringAddress.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property customIps A list of custom BGP peering addresses to assign to this instance.
* @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 VpnGatewayBgpSettingsInstance0BgpPeeringAddress(
public val customIps: List,
public val defaultIps: List? = null,
public val ipConfigurationId: String? = null,
public val tunnelIps: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.VpnGatewayBgpSettingsInstance0BgpPeeringAddress): VpnGatewayBgpSettingsInstance0BgpPeeringAddress =
VpnGatewayBgpSettingsInstance0BgpPeeringAddress(
customIps = javaType.customIps().map({ args0 -> args0 }),
defaultIps = javaType.defaultIps().map({ args0 -> args0 }),
ipConfigurationId = javaType.ipConfigurationId().map({ args0 -> args0 }).orElse(null),
tunnelIps = javaType.tunnelIps().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy