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 494d410 commit 3789342Copy full SHA for 3789342
netbox/virtualization/choices.py
@@ -38,6 +38,8 @@ class VirtualMachineStatusChoices(ChoiceSet):
38
STATUS_STAGED = 'staged'
39
STATUS_FAILED = 'failed'
40
STATUS_DECOMMISSIONING = 'decommissioning'
41
+ STATUS_PAUSED = 'paused'
42
+ STATUS_SUSPENDED = 'suspended'
43
44
CHOICES = [
45
(STATUS_OFFLINE, _('Offline'), 'gray'),
@@ -46,4 +48,6 @@ class VirtualMachineStatusChoices(ChoiceSet):
46
48
(STATUS_STAGED, _('Staged'), 'blue'),
47
49
(STATUS_FAILED, _('Failed'), 'red'),
50
(STATUS_DECOMMISSIONING, _('Decommissioning'), 'yellow'),
51
+ (STATUS_PAUSED, _('Paused'), 'orange'),
52
+ (STATUS_SUSPENDED, _('Suspended'), 'purple'),
53
]
0 commit comments