Files
netbox-sync/module/netbox/__init__.py
2023-02-20 18:16:48 +01:00

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
)