mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
25 lines
436 B
Python
25 lines
436 B
Python
|
from utilities.choices import ChoiceSet
|
||
|
|
||
|
|
||
|
#
|
||
|
# VirtualMachines
|
||
|
#
|
||
|
|
||
|
class VirtualMachineStatusChoices(ChoiceSet):
|
||
|
|
||
|
STATUS_ACTIVE = 'active'
|
||
|
STATUS_OFFLINE = 'offline'
|
||
|
STATUS_STAGED = 'staged'
|
||
|
|
||
|
CHOICES = (
|
||
|
(STATUS_ACTIVE, 'Active'),
|
||
|
(STATUS_OFFLINE, 'Offline'),
|
||
|
(STATUS_STAGED, 'Staged'),
|
||
|
)
|
||
|
|
||
|
LEGACY_MAP = {
|
||
|
STATUS_OFFLINE: 0,
|
||
|
STATUS_ACTIVE: 1,
|
||
|
STATUS_STAGED: 3,
|
||
|
}
|