Show / Hide Table of Contents

Class CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails

Creation details for a configuration source provider of the type BITBUCKET_CLOUD_USERNAME_appPASSWORD. This type corresponds to a configuration source provider in Bitbucket that is authenticated with a username and app password.

Inheritance
object
CreateConfigurationSourceProviderDetails
CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails
Inherited Members
CreateConfigurationSourceProviderDetails.CompartmentId
CreateConfigurationSourceProviderDetails.DisplayName
CreateConfigurationSourceProviderDetails.Description
CreateConfigurationSourceProviderDetails.PrivateServerConfigDetails
CreateConfigurationSourceProviderDetails.FreeformTags
CreateConfigurationSourceProviderDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ResourcemanagerService.Models
Assembly: OCI.DotNetSDK.Resourcemanager.dll
Syntax
public class CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails : CreateConfigurationSourceProviderDetails

Properties

ApiEndpoint

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

The Bitbucket cloud service endpoint. Example: https://bitbucket.org/

Remarks

Required

SecretId

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

The secret ocid which is used to authorize the user.

Remarks

Required

Username

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

The username for the user of the Bitbucket cloud repository.

Remarks

Required

In this article
Back to top