Source code for models_v2.type_6_enum

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

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