![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.avs.kotlin.outputs.PrivateCloudCircuit.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 PrivateCloudCircuit(
public val expressRouteId: String? = null,
public val expressRoutePrivatePeeringId: String? = null,
public val primarySubnetCidr: String? = null,
public val secondarySubnetCidr: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.avs.outputs.PrivateCloudCircuit): PrivateCloudCircuit = PrivateCloudCircuit(
expressRouteId = javaType.expressRouteId().map({ args0 -> args0 }).orElse(null),
expressRoutePrivatePeeringId = javaType.expressRoutePrivatePeeringId().map({ args0 ->
args0
}).orElse(null),
primarySubnetCidr = javaType.primarySubnetCidr().map({ args0 -> args0 }).orElse(null),
secondarySubnetCidr = javaType.secondarySubnetCidr().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy