DexcareComponentStatus
public enum DexcareComponentStatus : String, Codable
An enum representing a status of a component. During regular operations, this will be operational
-
The issue has been fully resolved.
Declaration
Swift
case resolved
-
The maintenance window has concluded.
Declaration
Swift
case completed
-
The component is working without issues.
Declaration
Swift
case operational
-
A maintenance is planned but has not yet started.
Declaration
Swift
case scheduled
-
The component is undergoing a scheduled maintenance and is currently unavailable.
Declaration
Swift
case underMaintenance = "under_maintenance"
-
An issue is affecting the component, and the component may not be fully functional.
Declaration
Swift
case degradedPerformance = "degraded_performance"
-
An issue is affecting the component, and the component is not fully functional.
Declaration
Swift
case partialOutage = "partial_outage"
-
An issue is affecting the component, and the component is non-functional.
Declaration
Swift
case majorOutage = "major_outage"
-
Only returned if the enum value could not be parsed to one of the above.
Declaration
Swift
case unknown = ""