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 41df422 commit 716de3aCopy full SHA for 716de3a
ocp_resources/utils/resource_constants.py
@@ -70,3 +70,17 @@ class ProviderType:
70
RHV: str = "ovirt"
71
OVA: str = "ova"
72
OPENSTACK: str = "openstack"
73
+
74
+ class Backup:
75
+ class Status:
76
+ NEW: str = "New"
77
+ FAILEDVALIDATION: str = "FailedValidation"
78
+ INPROGRESS: str = "InProgress"
79
+ WAITINGFORPLUGINOPERATIONS: str = "WaitingForPluginOperations"
80
+ WAITINGFORPLUGINOPERATIONSPARTIALLYFAILED: str = "WaitingForPluginOperationsPartiallyFailed"
81
+ FINALIZING: str = "Finalizing"
82
+ FINALIZINGPARTIALLYFAILED: str = "FinalizingPartiallyFailed"
83
+ COMPLETED: str = "Completed"
84
+ PARTIALLYFAILED: str = "PartiallyFailed"
85
+ FAILED: str = "Failed"
86
+ DELETING: str = "Deleting"
0 commit comments