Source code for models_v2.replication_object_status_enum

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

[docs]class ReplicationObjectStatusEnum(object): """Implementation of the 'replicationObjectStatus' enum. TODO: type enum description here. Attributes: KINPROGRESS: TODO: type description here. KSUCCESSFUL: TODO: type description here. KFAILED: TODO: type description here. KWAITINGFORNEXTATTEMPT: TODO: type description here. KWARNING: TODO: type description here. """ KINPROGRESS = 'kInProgress' KSUCCESSFUL = 'kSuccessful' KFAILED = 'kFailed' KWAITINGFORNEXTATTEMPT = 'kWaitingForNextAttempt' KWARNING = 'kWarning'