com.pulumi.gcp.cloudbuild.kotlin.outputs.TriggerBuildAvailableSecretsSecretManager.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.cloudbuild.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property env Environment variable name to associate with the secret. Secret environment
* variables must be unique across all of a build's secrets, and must be used
* by at least one build step.
* @property versionName Resource name of the SecretVersion. In format: projects/*/secrets/*/versions/*
* */*/*/
*/
public data class TriggerBuildAvailableSecretsSecretManager(
public val env: String,
public val versionName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudbuild.outputs.TriggerBuildAvailableSecretsSecretManager): TriggerBuildAvailableSecretsSecretManager = TriggerBuildAvailableSecretsSecretManager(
env = javaType.env(),
versionName = javaType.versionName(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy