com.pulumi.gcp.vmwareengine.kotlin.outputs.GetExternalAddressResult.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
/**
* A collection of values returned by getExternalAddress.
* @property createTime
* @property description
* @property externalIp
* @property id The provider-assigned unique ID for this managed resource.
* @property internalIp
* @property name
* @property parent
* @property state
* @property uid
* @property updateTime
*/
public data class GetExternalAddressResult(
public val createTime: String,
public val description: String,
public val externalIp: String,
public val id: String,
public val internalIp: String,
public val name: String,
public val parent: String,
public val state: String,
public val uid: String,
public val updateTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.vmwareengine.outputs.GetExternalAddressResult): GetExternalAddressResult = GetExternalAddressResult(
createTime = javaType.createTime(),
description = javaType.description(),
externalIp = javaType.externalIp(),
id = javaType.id(),
internalIp = javaType.internalIp(),
name = javaType.name(),
parent = javaType.parent(),
state = javaType.state(),
uid = javaType.uid(),
updateTime = javaType.updateTime(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy