feat(dcim): Add 2.5 Gbps and 5 Gbps options to InterfaceSpeedChoices

Extend `InterfaceSpeedChoices` to include 2.5 Gbps and 5 Gbps values.
This improves support for modern interface speeds and enhances API data
validation.
This commit is contained in:
Martin Hauser 2025-05-08 21:52:07 +02:00
parent 0c04a8d301
commit 138b22d458
No known key found for this signature in database

View File

@ -1238,6 +1238,8 @@ class InterfaceSpeedChoices(ChoiceSet):
(10000, '10 Mbps'), (10000, '10 Mbps'),
(100000, '100 Mbps'), (100000, '100 Mbps'),
(1000000, '1 Gbps'), (1000000, '1 Gbps'),
(2500000, '2.5 Gbps'),
(5000000, '5 Gbps'),
(10000000, '10 Gbps'), (10000000, '10 Gbps'),
(25000000, '25 Gbps'), (25000000, '25 Gbps'),
(40000000, '40 Gbps'), (40000000, '40 Gbps'),