Source code for models_v2.status_28_enum

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

[docs]class Status28Enum(object): """Implementation of the 'Status28' enum. Specifies the status of a remote disk. 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. MOUNTING: TODO: type description here. MIGRATING: TODO: type description here. UNKNOWN: TODO: type description here. """ ACTIVE = 'Active' OFFLINE = 'Offline' DELETING = 'Deleting' DELETED = 'Deleted' DATAVIPNOTREACHABLE = 'DataVipNotReachable' FILESYSTEMNOTACCESSIBLE = 'FileSystemNotAccessible' FILESYSTEMDELETED = 'FileSystemDeleted' MOUNTING = 'Mounting' MIGRATING = 'Migrating' UNKNOWN = 'Unknown'