All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.network.kotlin.outputs.ExpressRouteCircuitPeeringIpv6MicrosoftPeering.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.network.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property advertisedCommunities The communities of Bgp Peering specified for microsoft peering.
 * @property advertisedPublicPrefixes A list of Advertised Public Prefixes.
 * @property customerAsn The CustomerASN of the peering. Defaults to `0`.
 * @property routingRegistryName The Routing Registry against which the AS number and prefixes are registered. For example: `ARIN`, `RIPE`, `AFRINIC` etc. Defaults to `NONE`.
 */
public data class ExpressRouteCircuitPeeringIpv6MicrosoftPeering(
    public val advertisedCommunities: List? = null,
    public val advertisedPublicPrefixes: List? = null,
    public val customerAsn: Int? = null,
    public val routingRegistryName: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.network.outputs.ExpressRouteCircuitPeeringIpv6MicrosoftPeering): ExpressRouteCircuitPeeringIpv6MicrosoftPeering =
            ExpressRouteCircuitPeeringIpv6MicrosoftPeering(
                advertisedCommunities = javaType.advertisedCommunities().map({ args0 -> args0 }),
                advertisedPublicPrefixes = javaType.advertisedPublicPrefixes().map({ args0 -> args0 }),
                customerAsn = javaType.customerAsn().map({ args0 -> args0 }).orElse(null),
                routingRegistryName = javaType.routingRegistryName().map({ args0 -> args0 }).orElse(null),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy