com.pulumi.gcp.cloudrunv2.kotlin.outputs.ServiceTemplateVolumeSecret.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.cloudrunv2.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property defaultMode Integer representation of mode bits to use on created files by default. Must be a value between 0000 and 0777 (octal), defaulting to 0444. Directories within the path are not affected by this setting.
* @property items If unspecified, the volume will expose a file whose name is the secret, relative to VolumeMount.mount_path. If specified, the key will be used as the version to fetch from Cloud Secret Manager and the path will be the name of the file exposed in the volume. When items are defined, they must specify a path and a version.
* Structure is documented below.
* @property secret The name of the secret in Cloud Secret Manager. Format: {secret} if the secret is in the same project. projects/{project}/secrets/{secret} if the secret is in a different project.
*/
public data class ServiceTemplateVolumeSecret(
public val defaultMode: Int? = null,
public val items: List? = null,
public val secret: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudrunv2.outputs.ServiceTemplateVolumeSecret): ServiceTemplateVolumeSecret = ServiceTemplateVolumeSecret(
defaultMode = javaType.defaultMode().map({ args0 -> args0 }).orElse(null),
items = javaType.items().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.cloudrunv2.kotlin.outputs.ServiceTemplateVolumeSecretItem.Companion.toKotlin(args0)
})
}),
secret = javaType.secret(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy