Source code for models.tenant_type_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class TenantTypeEnum(object): """Implementation of the 'TenantType' enum. Specifies the MCM tenant type. 'Dmaas' implies tenant type is DMaaS. 'OnPrem' implies tenant is cluster tenant. Attributes: DMAAS: TODO: type description here. ONPREM: TODO: type description here. """ DMAAS = 'Dmaas' ONPREM = 'OnPrem'