Source code for models_v2.support_status_enum
# -*- coding: utf-8 -*-
[docs]class SupportStatusEnum(object):
"""Implementation of the 'SupportStatus' enum.
Specifies the whether agent version is compatible with cluster version ro
use various features.
Attributes:
SUPPORTED: TODO: type description here.
UPGRADE: TODO: type description here.
UNSUPPORTED: TODO: type description here.
"""
SUPPORTED = 'Supported'
UPGRADE = 'Upgrade'
UNSUPPORTED = 'Unsupported'