All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.cloudbuild.kotlin.outputs.TriggerBuildAvailableSecretsSecretManager.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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