Source code for models_v2.status_23_enum
# -*- coding: utf-8 -*-
[docs]class Status23Enum(object):
"""Implementation of the 'Status23' enum.
Specifies the replication status.
Attributes:
RUNNING: TODO: type description here.
SUCCEEDED: TODO: type description here.
FAILED: TODO: type description here.
"""
RUNNING = 'Running'
SUCCEEDED = 'Succeeded'
FAILED = 'Failed'