MCPcopy Create free account
hub / github.com/eksctl-io/eksctl / allNonDeletedStackStatuses

Function allNonDeletedStackStatuses

pkg/cfn/manager/api.go:552–571  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

550}
551
552func allNonDeletedStackStatuses() []types.StackStatus {
553 return []types.StackStatus{
554 types.StackStatusCreateInProgress,
555 types.StackStatusCreateFailed,
556 types.StackStatusCreateComplete,
557 types.StackStatusRollbackInProgress,
558 types.StackStatusRollbackFailed,
559 types.StackStatusRollbackComplete,
560 types.StackStatusDeleteInProgress,
561 types.StackStatusDeleteFailed,
562 types.StackStatusUpdateInProgress,
563 types.StackStatusUpdateCompleteCleanupInProgress,
564 types.StackStatusUpdateComplete,
565 types.StackStatusUpdateRollbackInProgress,
566 types.StackStatusUpdateRollbackFailed,
567 types.StackStatusUpdateRollbackCompleteCleanupInProgress,
568 types.StackStatusUpdateRollbackComplete,
569 types.StackStatusReviewInProgress,
570 }
571}
572
573func defaultStackStatusFilter() []types.StackStatus {
574 return allNonDeletedStackStatuses()

Callers 1

defaultStackStatusFilterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected