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