Show / Hide Table of Contents

Class TriggerDeploymentStageSummary

Specifies the Trigger Deployment stage, which runs another pipeline of the application.

Inheritance
object
BuildPipelineStageSummary
TriggerDeploymentStageSummary
Inherited Members
BuildPipelineStageSummary.Id
BuildPipelineStageSummary.DisplayName
BuildPipelineStageSummary.ProjectId
BuildPipelineStageSummary.BuildPipelineId
BuildPipelineStageSummary.CompartmentId
BuildPipelineStageSummary.TimeCreated
BuildPipelineStageSummary.TimeUpdated
BuildPipelineStageSummary.LifecycleState
BuildPipelineStageSummary.LifecycleDetails
BuildPipelineStageSummary.Description
BuildPipelineStageSummary.BuildPipelineStagePredecessorCollection
BuildPipelineStageSummary.FreeformTags
BuildPipelineStageSummary.DefinedTags
BuildPipelineStageSummary.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 TriggerDeploymentStageSummary : BuildPipelineStageSummary

Properties

DeployPipelineId

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

A target deployment pipeline OCID that will run in this stage.

Remarks

Required

IsPassAllParametersEnabled

Declaration
[Required(ErrorMessage = "IsPassAllParametersEnabled is required.")]
[JsonProperty(PropertyName = "isPassAllParametersEnabled")]
public bool? IsPassAllParametersEnabled { get; set; }
Property Value
Type Description
bool?

A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.

Remarks

Required

In this article
Back to top