()
| 550 | } |
| 551 | |
| 552 | func 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 | |
| 573 | func defaultStackStatusFilter() []types.StackStatus { |
| 574 | return allNonDeletedStackStatuses() |
no outgoing calls
no test coverage detected