Source code for models_v2.nic_speed_type_1_enum

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

[docs]class NicSpeedType1Enum(object): """Implementation of the 'NicSpeedType1' enum. Specifies the network interface speed. Attributes: ENUM_1GBITS: TODO: type description here. ENUM_10GBITS: TODO: type description here. ENUM_25GBITS: TODO: type description here. ENUM_40GBITS: TODO: type description here. ENUM_100GBITS: TODO: type description here. UNKNOWN: TODO: type description here. """ ENUM_1GBITS = '1Gbit/s' ENUM_10GBITS = '10Gbit/s' ENUM_25GBITS = '25Gbit/s' ENUM_40GBITS = '40Gbit/s' ENUM_100GBITS = '100Gbit/s' UNKNOWN = 'Unknown'