Show / Hide Table of Contents

Class BitbucketCloudAppPasswordConnection

The properties that define a connection of the type BITBUCKET_CLOUD_APP_PASSWORD. This type corresponds to a connection in Bitbucket Cloud that is authenticated with a App Password along with username.

Inheritance
object
Connection
BitbucketCloudAppPasswordConnection
Inherited Members
Connection.Id
Connection.Description
Connection.DisplayName
Connection.CompartmentId
Connection.ProjectId
Connection.TimeCreated
Connection.TimeUpdated
Connection.LastConnectionValidationResult
Connection.LifecycleDetails
Connection.LifecycleState
Connection.FreeformTags
Connection.DefinedTags
Connection.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 BitbucketCloudAppPasswordConnection : Connection

Properties

AppPassword

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

OCID of personal Bitbucket Cloud AppPassword saved in secret store

Remarks

Required

Username

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

Public Bitbucket Cloud Username in plain text

Remarks

Required

In this article
Back to top