Source code for models_v2.bonding_mode_type_1_enum

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

[docs]class BondingModeType1Enum(object): """Implementation of the 'BondingModeType1' enum. Specifies the bonding mode type. Attributes: ACTIVEBACKUP: TODO: type description here. ENUM_802_3AD: TODO: type description here. BALANCEALB: TODO: type description here. INVALID: TODO: type description here. """ ACTIVEBACKUP = 'ActiveBackup' ENUM_802_3AD = '802_3ad' BALANCEALB = 'BalanceAlb' INVALID = 'Invalid'