Source code for models_v2.bonding_mode_enum

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

[docs]class BondingModeEnum(object): """Implementation of the 'BondingMode' enum. Specifies the bonding mode of this interface. 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'