Show / Hide Table of Contents

Class VbsAccessTokenConnection

The properties that define a connection of the type VBS_ACCESS_TOKEN. This type corresponds to a connection in Visual Builder Studio that is authenticated with a Personal Access Token.

Inheritance
object
Connection
VbsAccessTokenConnection
Inherited Members
Connection.Id
Connection.Description
Connection.DisplayName
Connection.CompartmentId
Connection.ProjectId
Connection.TimeCreated
Connection.TimeUpdated
Connection.LastConnectionValidationResult
Connection.LifecycleDetails
Connection.LifecycleState
Connection.FreeformTags
Connection.DefinedTags
Connection.SystemTags
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 VbsAccessTokenConnection : Connection

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

BaseUrl

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

The Base URL of the hosted Visual Builder Studio server.

Remarks

Required

In this article
Back to top