Source code for models_v2.network_interface_type_1_enum

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

[docs]class NetworkInterfaceType1Enum(object): """Implementation of the 'NetworkInterfaceType1' enum. Specifies the network interface type. Attributes: PHYSICAL: TODO: type description here. BOND: TODO: type description here. BRIDGE: TODO: type description here. GROUP: TODO: type description here. VLAN: TODO: type description here. VLANPHYSICAL: TODO: type description here. VLANBOND: TODO: type description here. VLANGROUP: TODO: type description here. VLANBRIDGE: TODO: type description here. INVALID: TODO: type description here. """ PHYSICAL = 'Physical' BOND = 'Bond' BRIDGE = 'Bridge' GROUP = 'Group' VLAN = 'Vlan' VLANPHYSICAL = 'VlanPhysical' VLANBOND = 'VlanBond' VLANGROUP = 'VlanGroup' VLANBRIDGE = 'VlanBridge' INVALID = 'Invalid'