Skip to content

Commit

Permalink
Update device overall status
Browse files Browse the repository at this point in the history
Change-type: major
  • Loading branch information
Andrea Rosci authored and Andrea Rosci committed May 14, 2024
1 parent c6fa018 commit 3faa8ad
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions balena/models/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,15 @@ class DeviceStatus:
Balena device statuses.
"""

IDLE = "Idle"
CONFIGURING = "Configuring"
UPDATING = "Updating"
OFFLINE = "Offline"
POST_PROVISIONING = "Post Provisioning"
INACTIVE = "Inactive"
IDLE = "idle"
CONFIGURING = "configuring"
UPDATING = "updating"
OFFLINE = "offline"
POST_PROVISIONING = "post-provisioning"
INACTIVE = "inactive"
OPERATIONAL = "operational",
DISCONNECTED = "disconnected",
REDUCED_FUNCTIONALITY = "reduced-functionality"


class Device:
Expand Down

0 comments on commit 3faa8ad

Please sign in to comment.