Show / Hide Table of Contents

Class BitbucketServerTokenConnectionSummary

Summary information for a connection of the type BITBUCKET_SERVER_ACCESS_TOKEN. This type corresponds to a connection in Bitbucket that is authenticated with a personal access token.

Inheritance
object
ConnectionSummary
BitbucketServerTokenConnectionSummary
Inherited Members
ConnectionSummary.Id
ConnectionSummary.DisplayName
ConnectionSummary.Description
ConnectionSummary.CompartmentId
ConnectionSummary.ProjectId
ConnectionSummary.TimeCreated
ConnectionSummary.TimeUpdated
ConnectionSummary.LastConnectionValidationResult
ConnectionSummary.LifecycleDetails
ConnectionSummary.LifecycleState
ConnectionSummary.FreeformTags
ConnectionSummary.DefinedTags
ConnectionSummary.SystemTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class BitbucketServerTokenConnectionSummary : ConnectionSummary

Properties

AccessToken

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

The OCID of personal access token saved in secret store.

Remarks

Required

BaseUrl

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

The Base URL of the hosted BitbucketServer.

Remarks

Required

TlsVerifyConfig

Declaration
[JsonProperty(PropertyName = "tlsVerifyConfig")]
public TlsVerifyConfig TlsVerifyConfig { get; set; }
Property Value
Type Description
TlsVerifyConfig
In this article
Back to top