Replaced is_console_server, is_pdu, and is_network_device filters on Device and DeviceType

This commit is contained in:
Jeremy Stretch
2018-11-02 10:45:31 -04:00
parent a04daf52f9
commit 20ff42df11
3 changed files with 137 additions and 18 deletions

View File

@@ -27,6 +27,14 @@ NetBox now supports modeling physical cables for console, power, and interface c
* Introduced a new API endpoint for cables at `/dcim/cables/`
* New endpoints for front and rear pass-through ports (and their templates) in parallel with existing device components
* New fields for dcim.Rack: `status`, `asset_tag`, `outer_width`, `outer_depth`, `outer_unit`
* The following boolean filters on dcim.Device and dcim.DeviceType have been renamed:
* `is_console_server`: `console_server_ports`
* `is_pdu`: `power_outlets`
* `is_network_device`: `interfaces`
* The following new boolean filters have been introduced for dcim.Device and dcim.DeviceType:
* `console_ports`
* `power_ports`
* `pass_through_ports`
---