Source code for models.type_network_interface_enum

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

[docs]class TypeNetworkInterfaceEnum(object): """Implementation of the 'Type_NetworkInterface' enum. Specifies the type of interface. Attributes: KPHYSICALINTERFACE: TODO: type description here. KBONDMASTERINTERFACE: TODO: type description here. KBONDSLAVEINTERFACE: TODO: type description here. KTAGGEDVLANINTERFACE: TODO: type description here. """ KPHYSICALINTERFACE = 'kPhysicalInterface' KBONDMASTERINTERFACE = 'kBondMasterInterface' KBONDSLAVEINTERFACE = 'kBondSlaveInterface' KTAGGEDVLANINTERFACE = 'kTaggedVlanInterface'