Source code for models_v2.rigel_type_enum
# -*- coding: utf-8 -*-
[docs]class RigelTypeEnum(object):
"""Implementation of the 'RigelType' enum.
Specifies the Rigel type that is being claimed.
Attributes:
ONPREM: TODO: type description here.
CLOUD: TODO: type description here.
"""
ONPREM = 'OnPrem'
CLOUD = 'Cloud'