
com.pulumi.googlenative.bigtableadmin.v2.kotlin.outputs.GetInstanceResult.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.bigtableadmin.v2.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property createTime A commit timestamp representing when this Instance was created. For instances created before this field was added (August 2021), this value is `seconds: 0, nanos: 1`.
* @property displayName The descriptive name for this instance as it appears in UIs. Can be changed at any time, but should be kept globally unique to avoid confusion.
* @property labels Labels are a flexible and lightweight mechanism for organizing cloud resources into groups that reflect a customer's organizational needs and deployment strategies. They can be used to filter resources and aggregate metrics. * Label keys must be between 1 and 63 characters long and must conform to the regular expression: `\p{Ll}\p{Lo}{0,62}`. * Label values must be between 0 and 63 characters long and must conform to the regular expression: `[\p{Ll}\p{Lo}\p{N}_-]{0,63}`. * No more than 64 labels can be associated with a given resource. * Keys and values must both be under 128 bytes.
* @property name The unique name of the instance. Values are of the form `projects/{project}/instances/a-z+[a-z0-9]`.
* @property satisfiesPzs Reserved for future use.
* @property state The current state of the instance.
* @property type The type of the instance. Defaults to `PRODUCTION`.
*/
public data class GetInstanceResult(
public val createTime: String,
public val displayName: String,
public val labels: Map,
public val name: String,
public val satisfiesPzs: Boolean,
public val state: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.bigtableadmin.v2.outputs.GetInstanceResult): GetInstanceResult = GetInstanceResult(
createTime = javaType.createTime(),
displayName = javaType.displayName(),
labels = javaType.labels().map({ args0 -> args0.key.to(args0.value) }).toMap(),
name = javaType.name(),
satisfiesPzs = javaType.satisfiesPzs(),
state = javaType.state(),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy