![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.composer.kotlin.outputs.GetUserWorkloadsConfigMapResult.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.composer.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getUserWorkloadsConfigMap.
* @property data The "data" field of Kubernetes ConfigMap, organized in key-value pairs.
* For details see: https://kubernetes.io/docs/concepts/configuration/configmap/
* @property environment
* @property id The provider-assigned unique ID for this managed resource.
* @property name
* @property project
* @property region
*/
public data class GetUserWorkloadsConfigMapResult(
public val `data`: Map,
public val environment: String,
public val id: String,
public val name: String,
public val project: String? = null,
public val region: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.composer.outputs.GetUserWorkloadsConfigMapResult): GetUserWorkloadsConfigMapResult = GetUserWorkloadsConfigMapResult(
`data` = javaType.`data`().map({ args0 -> args0.key.to(args0.value) }).toMap(),
environment = javaType.environment(),
id = javaType.id(),
name = javaType.name(),
project = javaType.project().map({ args0 -> args0 }).orElse(null),
region = javaType.region().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy