Source code for models.entity_type_enum
# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class EntityTypeEnum(object):
"""Implementation of the 'entityType' enum.
TODO: type enum description here.
Attributes:
CLUSTER: TODO: type description here.
STORAGEDOMAIN: TODO: type description here.
"""
CLUSTER = 'Cluster'
STORAGEDOMAIN = 'StorageDomain'