Source code for models.bonding_mode_create_bond_parameters_enum

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

[docs]class BondingModeCreateBondParametersEnum(object): """Implementation of the 'BondingMode_CreateBondParameters' enum. Specifies the bonding mode to use for this bond. If not specified, this value will default to 'kActiveBackup'. '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'