Source code for models_v2.status_20_enum

# -*- coding: utf-8 -*-

[docs]class Status20Enum(object): """Implementation of the 'Status20' enum. Specifies status of the disk. Attributes: ONLINE: TODO: type description here. OFFLINE: TODO: type description here. REMOVING: TODO: type description here. OKTOREMOVE: TODO: type description here. BLACKLIST: TODO: type description here. NEW: TODO: type description here. EMPTY: TODO: type description here. UNKNOWN: TODO: type description here. ACTIVATING: TODO: type description here. """ ONLINE = 'Online' OFFLINE = 'Offline' REMOVING = 'Removing' OKTOREMOVE = 'OkToRemove' BLACKLIST = 'Blacklist' NEW = 'New' EMPTY = 'Empty' UNKNOWN = 'Unknown' ACTIVATING = 'Activating'