Source code for models_v2.status_1_enum
# -*- coding: utf-8 -*-
[docs]class Status1Enum(object):
"""Implementation of the 'Status1' enum.
Specifies the creating status of this disk.
Attributes:
SUCCEEDED: TODO: type description here.
FAILED: TODO: type description here.
"""
SUCCEEDED = 'Succeeded'
FAILED = 'Failed'