Show / Hide Table of Contents

Class UpdateGitlabServerAccessTokenConnectionDetails

The details for updating a connection of the type GITLAB_SERVER_ACCESS_TOKEN. This type corresponds to a connection in GitLab self-hosted server that is authenticated with a personal access token.

Inheritance
object
UpdateConnectionDetails
UpdateGitlabServerAccessTokenConnectionDetails
Inherited Members
UpdateConnectionDetails.Description
UpdateConnectionDetails.DisplayName
UpdateConnectionDetails.FreeformTags
UpdateConnectionDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class UpdateGitlabServerAccessTokenConnectionDetails : UpdateConnectionDetails

Properties

AccessToken

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

The OCID of personal access token saved in secret store.

BaseUrl

Declaration
[JsonProperty(PropertyName = "baseUrl")]
public string BaseUrl { get; set; }
Property Value
Type Description
string

The baseUrl of the hosted GitLabServer.

TlsVerifyConfig

Declaration
[JsonProperty(PropertyName = "tlsVerifyConfig")]
public TlsVerifyConfig TlsVerifyConfig { get; set; }
Property Value
Type Description
TlsVerifyConfig
In this article
Back to top