com.pulumi.gcp.vmwareengine.kotlin.outputs.PrivateCloudVcenter.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.vmwareengine.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property fqdn Fully qualified domain name of the appliance.
* @property internalIp Internal IP address of the appliance.
* @property state State of the appliance.
* Possible values are: `ACTIVE`, `CREATING`.
* @property version Version of the appliance.
*/
public data class PrivateCloudVcenter(
public val fqdn: String? = null,
public val internalIp: String? = null,
public val state: String? = null,
public val version: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.vmwareengine.outputs.PrivateCloudVcenter): PrivateCloudVcenter = PrivateCloudVcenter(
fqdn = javaType.fqdn().map({ args0 -> args0 }).orElse(null),
internalIp = javaType.internalIp().map({ args0 -> args0 }).orElse(null),
state = javaType.state().map({ args0 -> args0 }).orElse(null),
version = javaType.version().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy