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

com.pulumi.azure.expressroute.kotlin.outputs.GetCircuitPeeringResult.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.expressroute.kotlin.outputs

import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getCircuitPeering.
 * @property azureAsn The ASN used by Azure for the peering.
 * @property expressRouteCircuitName
 * @property gatewayManagerEtag
 * @property id The provider-assigned unique ID for this managed resource.
 * @property ipv4Enabled Indicates if IPv4 is enabled.
 * @property peerAsn
 * @property peeringType The type of the ExpressRoute Circuit Peering.
 * @property primaryAzurePort The primary port used by Azure for this peering.
 * @property primaryPeerAddressPrefix The primary peer address prefix.
 * @property resourceGroupName
 * @property routeFilterId
 * @property secondaryAzurePort The secondary port used by Azure for this peering.
 * @property secondaryPeerAddressPrefix The secondary peer address prefix.
 * @property sharedKey
 * @property vlanId The VLAN ID used for this peering.
 */
public data class GetCircuitPeeringResult(
    public val azureAsn: Int,
    public val expressRouteCircuitName: String,
    public val gatewayManagerEtag: String,
    public val id: String,
    public val ipv4Enabled: Boolean,
    public val peerAsn: Int,
    public val peeringType: String,
    public val primaryAzurePort: String,
    public val primaryPeerAddressPrefix: String,
    public val resourceGroupName: String,
    public val routeFilterId: String,
    public val secondaryAzurePort: String,
    public val secondaryPeerAddressPrefix: String,
    public val sharedKey: String,
    public val vlanId: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.expressroute.outputs.GetCircuitPeeringResult): GetCircuitPeeringResult = GetCircuitPeeringResult(
            azureAsn = javaType.azureAsn(),
            expressRouteCircuitName = javaType.expressRouteCircuitName(),
            gatewayManagerEtag = javaType.gatewayManagerEtag(),
            id = javaType.id(),
            ipv4Enabled = javaType.ipv4Enabled(),
            peerAsn = javaType.peerAsn(),
            peeringType = javaType.peeringType(),
            primaryAzurePort = javaType.primaryAzurePort(),
            primaryPeerAddressPrefix = javaType.primaryPeerAddressPrefix(),
            resourceGroupName = javaType.resourceGroupName(),
            routeFilterId = javaType.routeFilterId(),
            secondaryAzurePort = javaType.secondaryAzurePort(),
            secondaryPeerAddressPrefix = javaType.secondaryPeerAddressPrefix(),
            sharedKey = javaType.sharedKey(),
            vlanId = javaType.vlanId(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy