com.pulumi.gcp.cloudbuild.kotlin.outputs.BitbucketServerConfigSecrets.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 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