Class CreateGithubAccessTokenConnectionDetails
The details for creating a connection of the type GITHUB_ACCESS_TOKEN
.
This type corresponds to a connection in GitHub that is authenticated with a personal access token.
Inherited Members
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class CreateGithubAccessTokenConnectionDetails : CreateConnectionDetails
Properties
AccessToken
Declaration
[Required(ErrorMessage = "AccessToken is required.")]
[JsonProperty(PropertyName = "accessToken")]
public string AccessToken { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of personal access token saved in secret store. |
Remarks
Required