Source code for models_v2.object_protection_type_enum

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

[docs]class ObjectProtectionTypeEnum(object): """Implementation of the 'ObjectProtectionType' enum. Specifies the MSSQL Object Protection type. Attributes: KFILE: TODO: type description here. KVOLUME: TODO: type description here. KNATIVE: TODO: type description here. """ KFILE = 'kFile' KVOLUME = 'kVolume' KNATIVE = 'kNative'