
com.pulumi.azure.network.kotlin.outputs.GetVpnGatewayBgpSettingInstance1BgpPeeringAddress.kt Maven / Gradle / Ivy
@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 assigned 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 GetVpnGatewayBgpSettingInstance1BgpPeeringAddress(
public val customIps: List,
public val defaultIps: List,
public val ipConfigurationId: String,
public val tunnelIps: List,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetVpnGatewayBgpSettingInstance1BgpPeeringAddress):
GetVpnGatewayBgpSettingInstance1BgpPeeringAddress =
GetVpnGatewayBgpSettingInstance1BgpPeeringAddress(
customIps = javaType.customIps().map({ args0 -> args0 }),
defaultIps = javaType.defaultIps().map({ args0 -> args0 }),
ipConfigurationId = javaType.ipConfigurationId(),
tunnelIps = javaType.tunnelIps().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy