Source code for models_v2.interface_role_type_1_enum

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

[docs]class InterfaceRoleType1Enum(object): """Implementation of the 'InterfaceRoleType1' enum. Specifies the network interface role. Attributes: PRIMARY: TODO: type description here. SECONDARY: TODO: type description here. UNDEFINED: TODO: type description here. """ PRIMARY = 'Primary' SECONDARY = 'Secondary' UNDEFINED = 'Undefined'