We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef101df commit 50c5f73Copy full SHA for 50c5f73
api/edge_services/v1beta1/edge_services_sdk.go
@@ -705,6 +705,7 @@ const (
705
PipelineStatusPending = PipelineStatus("pending")
706
// An event occured and the pipeline may not work.
707
PipelineStatusWarning = PipelineStatus("warning")
708
+ PipelineStatusLocked = PipelineStatus("locked")
709
)
710
711
func (enum PipelineStatus) String() string {
@@ -722,6 +723,7 @@ func (enum PipelineStatus) Values() []PipelineStatus {
722
723
"error",
724
"pending",
725
"warning",
726
+ "locked",
727
}
728
729
0 commit comments