Source code for models_v2.cluster_type_1_enum

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

[docs]class ClusterType1Enum(object): """Implementation of the 'ClusterType1' enum. Specifies the cluster types. Attributes: PHYSICAL: TODO: type description here. VIRTUAL: TODO: type description here. CLOUD: TODO: type description here. """ PHYSICAL = 'Physical' VIRTUAL = 'Virtual' CLOUD = 'Cloud'