Show / Hide Table of Contents

Class BitbucketCloudAppPasswordConnectionSummary

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

Inheritance
object
ConnectionSummary
BitbucketCloudAppPasswordConnectionSummary
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 BitbucketCloudAppPasswordConnectionSummary : ConnectionSummary

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