Show / Hide Table of Contents

Class CreateBitbucketServerAccessTokenConfigurationSourceProviderDetails

The details for creating a configuration source provider of the type BITBUCKET_SERVER_ACCESS_TOKEN. This type corresponds to a configuration source provider in Bitbucket server that is authenticated with a personal access token.

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

Properties

ApiEndpoint

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

The Bitbucket Server 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

In this article
Back to top