BitbucketServerConfigArgs

data class BitbucketServerConfigArgs(val apiKey: Output<String>? = null, val bitbucketServerConfigId: Output<String>? = null, val createTime: Output<String>? = null, val hostUri: Output<String>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val peeredNetwork: Output<String>? = null, val project: Output<String>? = null, val secrets: Output<BitbucketServerSecretsArgs>? = null, val sslCa: Output<String>? = null, val username: Output<String>? = null) : ConvertibleToJava<BitbucketServerConfigArgs>

Creates a new BitbucketServerConfig. This API is experimental.

Constructors

Link copied to clipboard
fun BitbucketServerConfigArgs(apiKey: Output<String>? = null, bitbucketServerConfigId: Output<String>? = null, createTime: Output<String>? = null, hostUri: Output<String>? = null, location: Output<String>? = null, name: Output<String>? = null, peeredNetwork: Output<String>? = null, project: Output<String>? = null, secrets: Output<BitbucketServerSecretsArgs>? = null, sslCa: Output<String>? = null, username: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): BitbucketServerConfigArgs

Properties

Link copied to clipboard
val apiKey: Output<String>? = null

Immutable. API Key that will be attached to webhook. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.

Link copied to clipboard
val bitbucketServerConfigId: Output<String>? = null

Optional. The ID to use for the BitbucketServerConfig, which will become the final component of the BitbucketServerConfig's resource name. bitbucket_server_config_id must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character.

Link copied to clipboard
val createTime: Output<String>? = null

Time when the config was created.

Link copied to clipboard
val hostUri: Output<String>? = null

Immutable. The URI of the Bitbucket Server host. Once this field has been set, it cannot be changed. If you need to change it, please create another BitbucketServerConfig.

Link copied to clipboard
val location: Output<String>? = null
Link copied to clipboard
val name: Output<String>? = null

The resource name for the config.

Link copied to clipboard
val peeredNetwork: Output<String>? = null

Optional. The network to be used when reaching out to the Bitbucket Server instance. The VPC network must be enabled for private service connection. This should be set if the Bitbucket Server instance is hosted on-premises and not reachable by public internet. If this field is left empty, no network peering will occur and calls to the Bitbucket Server instance will be made over the public internet. Must be in the format projects/{project}/global/networks/{network}, where {project} is a project number or id and {network} is the name of a VPC network in the project.

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val secrets: Output<BitbucketServerSecretsArgs>? = null

Secret Manager secrets needed by the config.

Link copied to clipboard
val sslCa: Output<String>? = null

Optional. SSL certificate to use for requests to Bitbucket Server. The format should be PEM format but the extension can be one of .pem, .cer, or .crt.

Link copied to clipboard
val username: Output<String>? = null

Username of the account Cloud Build will use on Bitbucket Server.