Source code for models_v2.entity_type_2_enum

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

[docs]class EntityType2Enum(object): """Implementation of the 'EntityType2' enum. Specifies the type of entity that is registered on Helios. Attributes: RIGEL: TODO: type description here. CLUSTER: TODO: type description here. """ RIGEL = 'Rigel' CLUSTER = 'Cluster'