com.pulumi.gcp.compute.kotlin.outputs.InterconnectAttachmentPrivateInterconnectInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.compute.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property tag8021q (Output)
* 802.1q encapsulation tag to be used for traffic between
* Google and the customer, going to and from this network and region.
*/
public data class InterconnectAttachmentPrivateInterconnectInfo(
public val tag8021q: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.InterconnectAttachmentPrivateInterconnectInfo): InterconnectAttachmentPrivateInterconnectInfo =
InterconnectAttachmentPrivateInterconnectInfo(
tag8021q = javaType.tag8021q().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy