Show / Hide Table of Contents

Class UpdateBitbucketCloudAppPasswordConnectionDetails

The details for updating 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
UpdateConnectionDetails
UpdateBitbucketCloudAppPasswordConnectionDetails
Inherited Members
UpdateConnectionDetails.Description
UpdateConnectionDetails.DisplayName
UpdateConnectionDetails.FreeformTags
UpdateConnectionDetails.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 UpdateBitbucketCloudAppPasswordConnectionDetails : UpdateConnectionDetails

Properties

AppPassword

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

OCID of personal Bitbucket Cloud AppPassword saved in secret store

Username

Declaration
[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)

In this article
Back to top