Source code for models_v2.disk_status_1_enum

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

[docs]class DiskStatus1Enum(object): """Implementation of the 'DiskStatus1' enum. Disk Status Attributes: ACTIVE: TODO: type description here. OFFLINE: TODO: type description here. DELETING: TODO: type description here. DELETED: TODO: type description here. DATAVIPNOTREACHABLE: TODO: type description here. FILESYSTEMNOTACCESSIBLE: TODO: type description here. FILESYSTEMDELETED: TODO: type description here. UNKNOWN: TODO: type description here. """ ACTIVE = 'Active' OFFLINE = 'Offline' DELETING = 'Deleting' DELETED = 'Deleted' DATAVIPNOTREACHABLE = 'DataVipNotReachable' FILESYSTEMNOTACCESSIBLE = 'FileSystemNotAccessible' FILESYSTEMDELETED = 'FileSystemDeleted' UNKNOWN = 'Unknown'