mirror of
https://github.com/bb-Ricardo/netbox-sync.git
synced 2026-01-19 23:40:26 -06:00
39 lines
782 B
Python
39 lines
782 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2020 - 2023 Ricardo Bartels. All rights reserved.
|
|
#
|
|
# netbox-sync.py
|
|
#
|
|
# This work is licensed under the terms of the MIT license.
|
|
# For a copy, see file LICENSE.txt included in this
|
|
# repository or visit: <https://opensource.org/licenses/MIT>.
|
|
|
|
from module.netbox.object_classes import (
|
|
NetBoxInterfaceType,
|
|
NetBoxObject,
|
|
NBObjectList,
|
|
NBCustomField,
|
|
NBTag,
|
|
NBTagList,
|
|
NBTenant,
|
|
NBSite,
|
|
NBVRF,
|
|
NBVLAN,
|
|
NBVLANList,
|
|
NBPrefix,
|
|
NBManufacturer,
|
|
NBDeviceType,
|
|
NBPlatform,
|
|
NBClusterType,
|
|
NBClusterGroup,
|
|
NBDeviceRole,
|
|
NBCluster,
|
|
NBDevice,
|
|
NBVM,
|
|
NBVMInterface,
|
|
NBInterface,
|
|
NBIPAddress,
|
|
NBFHRPGroupItem,
|
|
NBInventoryItem,
|
|
NBPowerPort
|
|
)
|