Source code for models_v2.type_35_enum

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

[docs]class Type35Enum(object): """Implementation of the 'Type35' enum. Specifies the status of the resource. Attributes: SCHEDULED: TODO: type description here. INPROGRESS: TODO: type description here. SUCCEEDED: TODO: type description here. FAILED: TODO: type description here. CANCELED: TODO: type description here. """ SCHEDULED = 'scheduled' INPROGRESS = 'inProgress' SUCCEEDED = 'succeeded' FAILED = 'failed' CANCELED = 'canceled'