Show / Hide Table of Contents

Class CreateGithubAccessTokenConfigurationSourceProviderDetails

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

Inheritance
object
CreateConfigurationSourceProviderDetails
CreateGithubAccessTokenConfigurationSourceProviderDetails
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 CreateGithubAccessTokenConfigurationSourceProviderDetails : 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 GitHub 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 GitHub service endpoint. Example: https://github.com/

Remarks

Required

In this article
Back to top