Show / Hide Table of Contents

Class BitbucketServerConfigSource

Metadata about the Bitbucket Server configuration source.

Inheritance
object
ConfigSource
BitbucketServerConfigSource
Inherited Members
ConfigSource.WorkingDirectory
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ResourcemanagerService.Models
Assembly: OCI.DotNetSDK.Resourcemanager.dll
Syntax
public class BitbucketServerConfigSource : ConfigSource

Properties

BranchName

Declaration
[JsonProperty(PropertyName = "branchName")]
public string BranchName { get; set; }
Property Value
Type Description
string

The name of the branch in the Bitbucket Server repository for the configuration source.

CloneUrl

Declaration
[JsonProperty(PropertyName = "cloneUrl")]
public string CloneUrl { get; set; }
Property Value
Type Description
string

The clone URL of Bitbucket Server configuration source.

ConfigurationSourceProviderId

Declaration
[Required(ErrorMessage = "ConfigurationSourceProviderId is required.")]
[JsonProperty(PropertyName = "configurationSourceProviderId")]
public string ConfigurationSourceProviderId { get; set; }
Property Value
Type Description
string

The OCID of the Bitbucket Server configuration source.

Remarks

Required

ProjectId

Declaration
[JsonProperty(PropertyName = "projectId")]
public string ProjectId { get; set; }
Property Value
Type Description
string

Unique identifier for a Bitbucket Server project.

RepositoryId

Declaration
[JsonProperty(PropertyName = "repositoryId")]
public string RepositoryId { get; set; }
Property Value
Type Description
string

RepositoryUrl

Declaration
[Required(ErrorMessage = "RepositoryUrl is required.")]
[JsonProperty(PropertyName = "repositoryUrl")]
public string RepositoryUrl { get; set; }
Property Value
Type Description
string

The URL of the Bitbucket Server repository for the configuration source.

Remarks

Required

In this article
Back to top