
com.pulumi.googlenative.composer.v1.kotlin.outputs.CidrBlockResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.composer.v1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* CIDR block with an optional name.
* @property cidrBlock CIDR block that must be specified in CIDR notation.
* @property displayName User-defined name that identifies the CIDR block.
*/
public data class CidrBlockResponse(
public val cidrBlock: String,
public val displayName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.composer.v1.outputs.CidrBlockResponse): CidrBlockResponse = CidrBlockResponse(
cidrBlock = javaType.cidrBlock(),
displayName = javaType.displayName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy