Show / Hide Table of Contents

Class CreateGitlabAccessTokenConfigurationSourceProviderDetails

Creation details for a configuration source provider of the type GITLAB_ACCESS_TOKEN. This type corresponds to a configuration source provider in GitLab that is authenticated with a personal access token.

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

Properties

AccessToken

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

The personal access token to be configured on the GitLab repository. Avoid entering confidential information.

Remarks

Required

ApiEndpoint

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

The Git service endpoint. Example: https://gitlab.com

Remarks

Required

In this article
Back to top