com.pulumi.gcp.cloudrun.kotlin.outputs.ServiceTemplateSpecContainerEnvFromConfigMapRef.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.cloudrun.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property localObjectReference The ConfigMap to select from.
* Structure is documented below.
* @property optional Specify whether the ConfigMap must be defined
*/
public data class ServiceTemplateSpecContainerEnvFromConfigMapRef(
public val localObjectReference: ServiceTemplateSpecContainerEnvFromConfigMapRefLocalObjectReference? = null,
public val optional: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudrun.outputs.ServiceTemplateSpecContainerEnvFromConfigMapRef): ServiceTemplateSpecContainerEnvFromConfigMapRef =
ServiceTemplateSpecContainerEnvFromConfigMapRef(
localObjectReference = javaType.localObjectReference().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.cloudrun.kotlin.outputs.ServiceTemplateSpecContainerEnvFromConfigMapRefLocalObjectReference.Companion.toKotlin(args0)
})
}).orElse(null),
optional = javaType.optional().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy