Source code for models.bonding_mode_update_bond_parameters_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class BondingModeUpdateBondParametersEnum(object): """Implementation of the 'BondingMode_UpdateBondParameters' enum. Specifies the new bonding mode. 'kActiveBackup' indicates active backup bonding mode. 'k802_3ad' indicates 802.3ad bonding mode. Attributes: KACTIVEBACKUP: TODO: type description here. K802_3AD: TODO: type description here. """ KACTIVEBACKUP = 'kActiveBackup' K802_3AD = 'k802_3ad'