@itentialopensource/adapter-netbox_v33 2.4.1 → 2.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CALLS.md +1864 -0
- package/README.md +9 -1
- package/adapter.js +29547 -0
- package/entities/Circuits/action.json +1113 -0
- package/entities/Circuits/schema.json +1351 -157
- package/entities/Core/action.json +538 -0
- package/entities/Core/schema.json +2057 -0
- package/entities/Dcim/action.json +384 -0
- package/entities/Dcim/schema.json +2643 -445
- package/entities/Extras/action.json +1620 -0
- package/entities/Extras/schema.json +1817 -259
- package/entities/Ipam/action.json +587 -0
- package/entities/Ipam/schema.json +1348 -226
- package/entities/Schema/action.json +25 -0
- package/entities/Schema/schema.json +19 -0
- package/entities/Virtualization/action.json +202 -0
- package/entities/Virtualization/schema.json +709 -137
- package/entities/Vpn/action.json +1824 -0
- package/entities/Vpn/schema.json +3353 -0
- package/metadata.json +2 -1
- package/package.json +1 -1
- package/pronghorn.json +37236 -0
- package/report/Netbox_4.2.1.json +229481 -0
- package/report/adapterInfo.json +8 -8
- package/report/auto-adapter-openapi.json +29636 -2
- package/test/integration/adapterTestIntegration.js +8204 -0
- package/test/unit/adapterTestUnit.js +8905 -0
package/README.md
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
|
-
# Adapter for Netbox_v33
|
|
1
|
+
# Adapter for Netbox_v33
|
|
2
|
+
|
|
3
|
+
## Supported NetBox API Versions
|
|
4
|
+
|
|
5
|
+
This adapter supports multiple NetBox API versions:
|
|
6
|
+
- **NetBox API v3.3** (original version)
|
|
7
|
+
- **NetBox API v3.4**
|
|
8
|
+
- **NetBox API v4.2.1** (latest supported version)
|
|
2
9
|
|
|
3
10
|
## Table of Contents
|
|
4
11
|
|
|
5
12
|
Some of the page links in this document and links to other GitLab files do not work in Confluence however, the information is available in other sections of the Confluence material.
|
|
6
13
|
|
|
14
|
+
- [Supported NetBox API Versions](#supported-netbox-api-versions)
|
|
7
15
|
- [Specific to this Adapter](#specific-to-this-adapter)
|
|
8
16
|
- [Authentication](./AUTH.md)
|
|
9
17
|
- [Sample Properties](./sampleProperties.json)
|