Source code for models_v2.domain_controller_status_1_enum
# -*- coding: utf-8 -*-
[docs]class DomainControllerStatus1Enum(object):
"""Implementation of the 'DomainControllerStatus1' enum.
Specifies the connection status of a domain controller.
Attributes:
REACHABLE: TODO: type description here.
UNREACHABLE: TODO: type description here.
INCOMPATIBLE: TODO: type description here.
"""
REACHABLE = 'Reachable'
UNREACHABLE = 'Unreachable'
INCOMPATIBLE = 'Incompatible'