Show / Hide Table of Contents

Class CreateBitbucketCloudEmailApiTokenConfigurationSourceProviderDetails

Creation details for a configuration source provider of the type BITBUCKET_CLOUD_ACCESS_TOKEN. This type corresponds to a configuration source provider in Bitbucket Cloud that is authenticated with Atlassian account email and API token. Legacy username/app-password create request shapes are no longer supported.

Inheritance
object
CreateConfigurationSourceProviderDetails
CreateBitbucketCloudEmailApiTokenConfigurationSourceProviderDetails
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 CreateBitbucketCloudEmailApiTokenConfigurationSourceProviderDetails : 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

Email

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

Atlassian account email used for Bitbucket Cloud API token authentication.

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

In this article
Back to top