Source code for models_v2.default_template_name_enum

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

[docs]class DefaultTemplateNameEnum(object): """Implementation of the 'DefaultTemplateName' enum. Used for uniquely indentifying a default template. Attributes: UNKNOWN: TODO: type description here. BACKUPGENERAL: TODO: type description here. BACKUPCOMMVAULT: TODO: type description here. BACKUPVEEAM: TODO: type description here. FILESERVICEVIDEOS: TODO: type description here. FILESERVICEMULTIMEDIA: TODO: type description here. FILESERVICEARCHIVE: TODO: type description here. OBJECTSERVICECONTAINER: TODO: type description here. """ UNKNOWN = 'Unknown' BACKUPGENERAL = 'BackupGeneral' BACKUPCOMMVAULT = 'BackupCommvault' BACKUPVEEAM = 'BackupVeeam' FILESERVICEVIDEOS = 'FileServiceVideos' FILESERVICEMULTIMEDIA = 'FileServiceMultimedia' FILESERVICEARCHIVE = 'FileServiceArchive' OBJECTSERVICECONTAINER = 'ObjectServiceContainer'