# -*- coding: utf-8 -*-
[docs]class ConnectionStatusEnum(object):
"""Implementation of the 'ConnectionStatus' enum.
Specifies the status of agent connection.
Attributes:
UNKNOWN: TODO: type description here.
HEALTHY: TODO: type description here.
UNREGISTERED: TODO: type description here.
UNREACHABLE: TODO: type description here.
UNHEALTHY: TODO: type description here.
ERROR: TODO: type description here.
"""
UNKNOWN = 'Unknown'
HEALTHY = 'Healthy'
UNREGISTERED = 'Unregistered'
UNREACHABLE = 'Unreachable'
UNHEALTHY = 'Unhealthy'
ERROR = 'Error'