com.pulumi.gcp.cloudrun.kotlin.outputs.ServiceTemplateSpecContainerEnvFrom.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.String
import kotlin.Suppress
/**
*
* @property configMapRef The ConfigMap to select from.
* Structure is documented below.
* @property prefix An optional identifier to prepend to each key in the ConfigMap.
* @property secretRef The Secret to select from.
* Structure is documented below.
*/
public data class ServiceTemplateSpecContainerEnvFrom(
public val configMapRef: ServiceTemplateSpecContainerEnvFromConfigMapRef? = null,
public val prefix: String? = null,
public val secretRef: ServiceTemplateSpecContainerEnvFromSecretRef? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudrun.outputs.ServiceTemplateSpecContainerEnvFrom): ServiceTemplateSpecContainerEnvFrom = ServiceTemplateSpecContainerEnvFrom(
configMapRef = javaType.configMapRef().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.cloudrun.kotlin.outputs.ServiceTemplateSpecContainerEnvFromConfigMapRef.Companion.toKotlin(args0)
})
}).orElse(null),
prefix = javaType.prefix().map({ args0 -> args0 }).orElse(null),
secretRef = javaType.secretRef().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.cloudrun.kotlin.outputs.ServiceTemplateSpecContainerEnvFromSecretRef.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy