Show / Hide Table of Contents

Class GitlabTriggerCreateResult

Trigger create response specific to GitLab.

Inheritance
object
TriggerCreateResult
GitlabTriggerCreateResult
Inherited Members
TriggerCreateResult.Id
TriggerCreateResult.DisplayName
TriggerCreateResult.Description
TriggerCreateResult.ProjectId
TriggerCreateResult.CompartmentId
TriggerCreateResult.TimeCreated
TriggerCreateResult.TimeUpdated
TriggerCreateResult.LifecycleState
TriggerCreateResult.LifecycleDetails
TriggerCreateResult.Actions
TriggerCreateResult.FreeformTags
TriggerCreateResult.DefinedTags
TriggerCreateResult.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 GitlabTriggerCreateResult : TriggerCreateResult

Properties

ConnectionId

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

The OCID of the connection resource used to get details for triggered events.

Secret

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

The secret used to validate the incoming trigger call. This is visible only after the resource is created.

Remarks

Required

TriggerUrl

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

The endpoint that listens to trigger events.

Remarks

Required

In this article
Back to top