Show / Hide Table of Contents

Class CreateBitbucketCloudAppPasswordConnectionDetails

The details for creating a connection of the type BITBUCKET_CLOUD_APP_PASSWORD. This type corresponds to a connection in Bitbucket Cloud that is authenticated with username and app password.

Inheritance
object
CreateConnectionDetails
CreateBitbucketCloudAppPasswordConnectionDetails
Inherited Members
CreateConnectionDetails.Description
CreateConnectionDetails.DisplayName
CreateConnectionDetails.ProjectId
CreateConnectionDetails.FreeformTags
CreateConnectionDetails.DefinedTags
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 CreateBitbucketCloudAppPasswordConnectionDetails : CreateConnectionDetails

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(not more than 30 characters)

Remarks

Required

In this article
Back to top