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

com.pulumi.gcp.cloudbuild.kotlin.outputs.BitbucketServerConfigSecrets.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 adminAccessTokenVersionName The resource name for the admin access token's secret version.
 * @property readAccessTokenVersionName The resource name for the read access token's secret version.
 * @property webhookSecretVersionName Immutable. The resource name for the webhook secret's secret version. Once this field has been set, it cannot be changed.
 * Changing this field will result in deleting/ recreating the resource.
 * - - -
 */
public data class BitbucketServerConfigSecrets(
    public val adminAccessTokenVersionName: String,
    public val readAccessTokenVersionName: String,
    public val webhookSecretVersionName: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.cloudbuild.outputs.BitbucketServerConfigSecrets): BitbucketServerConfigSecrets = BitbucketServerConfigSecrets(
            adminAccessTokenVersionName = javaType.adminAccessTokenVersionName(),
            readAccessTokenVersionName = javaType.readAccessTokenVersionName(),
            webhookSecretVersionName = javaType.webhookSecretVersionName(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy