com.pulumi.gcp.compute.kotlin.outputs.GetZonesResult.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.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getZones.
* @property id The provider-assigned unique ID for this managed resource.
* @property names A list of zones available in the given region
* @property project
* @property region
* @property status
*/
public data class GetZonesResult(
public val id: String,
public val names: List,
public val project: String,
public val region: String? = null,
public val status: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetZonesResult): GetZonesResult =
GetZonesResult(
id = javaType.id(),
names = javaType.names().map({ args0 -> args0 }),
project = javaType.project(),
region = javaType.region().map({ args0 -> args0 }).orElse(null),
status = javaType.status().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy