com.pulumi.azure.avs.kotlin.outputs.GetPrivateCloudCircuit.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.avs.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property expressRouteId The ID of the ExpressRoute Circuit.
* @property expressRoutePrivatePeeringId The ID of the ExpressRoute Circuit private peering.
* @property primarySubnetCidr The CIDR of the primary subnet.
* @property secondarySubnetCidr The CIDR of the secondary subnet.
*/
public data class GetPrivateCloudCircuit(
public val expressRouteId: String,
public val expressRoutePrivatePeeringId: String,
public val primarySubnetCidr: String,
public val secondarySubnetCidr: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.avs.outputs.GetPrivateCloudCircuit):
GetPrivateCloudCircuit = GetPrivateCloudCircuit(
expressRouteId = javaType.expressRouteId(),
expressRoutePrivatePeeringId = javaType.expressRoutePrivatePeeringId(),
primarySubnetCidr = javaType.primarySubnetCidr(),
secondarySubnetCidr = javaType.secondarySubnetCidr(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy