com.pulumi.gcp.cloudrunv2.kotlin.outputs.GetServiceTemplateVolumeSecretItem.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
/**
*
* @property mode Integer octal mode bits to use on this file, must be a value between 01 and 0777 (octal). If 0 or not set, the Volume's default mode will be used.
* @property path The relative path of the secret in the container.
* @property version The Cloud Secret Manager secret version. Can be 'latest' for the latest value or an integer for a specific version
*/
public data class GetServiceTemplateVolumeSecretItem(
public val mode: Int,
public val path: String,
public val version: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudrunv2.outputs.GetServiceTemplateVolumeSecretItem): GetServiceTemplateVolumeSecretItem = GetServiceTemplateVolumeSecretItem(
mode = javaType.mode(),
path = javaType.path(),
version = javaType.version(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy