Source code for models_v2.data_lock_type_enum

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

[docs]class DataLockTypeEnum(object): """Implementation of the 'DataLockType' enum. Specifies the snapshot data lock type. Attributes: COMPLIANCE: TODO: type description here. ADMINISTRATIVE: TODO: type description here. """ COMPLIANCE = 'Compliance' ADMINISTRATIVE = 'Administrative'