nautobot 2.2.0__py3-none-any.whl → 2.2.1__py3-none-any.whl
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.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/__init__.py +31 -0
- nautobot/circuits/apps.py +1 -1
- nautobot/core/api/routers.py +25 -0
- nautobot/core/cli/__init__.py +18 -11
- nautobot/core/constants.py +85 -0
- nautobot/core/forms/widgets.py +1 -2
- nautobot/core/graphql/schema.py +1 -0
- nautobot/core/models/__init__.py +1 -0
- nautobot/core/settings.py +23 -3
- nautobot/core/settings.yaml +20 -0
- nautobot/core/signals.py +1 -0
- nautobot/core/templates/generic/object_retrieve.html +2 -2
- nautobot/core/templates/inc/javascript.html +4 -4
- nautobot/core/templates/inc/media.html +2 -2
- nautobot/core/templates/nautobot_config.py.j2 +14 -1
- nautobot/core/testing/__init__.py +1 -1
- nautobot/core/testing/filters.py +1 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/test_views.py +22 -0
- nautobot/core/utils/data.py +1 -2
- nautobot/core/utils/lookup.py +2 -0
- nautobot/core/views/generic.py +1 -3
- nautobot/core/views/mixins.py +0 -1
- nautobot/core/views/renderers.py +7 -5
- nautobot/dcim/apps.py +8 -4
- nautobot/dcim/elevations.py +5 -1
- nautobot/dcim/tables/devices.py +1 -1
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +12 -4
- nautobot/dcim/templates/dcim/device.html +1 -1
- nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
- nautobot/dcim/tests/test_api.py +36 -0
- nautobot/dcim/tests/test_signals.py +1 -1
- nautobot/dcim/views.py +6 -0
- nautobot/extras/api/serializers.py +20 -1
- nautobot/extras/apps.py +7 -0
- nautobot/extras/context_managers.py +15 -4
- nautobot/extras/filters/customfields.py +14 -9
- nautobot/extras/filters/mixins.py +6 -1
- nautobot/extras/health_checks.py +1 -0
- nautobot/extras/jobs.py +1 -0
- nautobot/extras/managers.py +1 -2
- nautobot/extras/models/contacts.py +1 -0
- nautobot/extras/models/customfields.py +25 -2
- nautobot/extras/models/datasources.py +1 -0
- nautobot/extras/models/mixins.py +1 -0
- nautobot/extras/plugins/__init__.py +2 -1
- nautobot/extras/querysets.py +1 -2
- nautobot/extras/secrets/providers.py +1 -0
- nautobot/extras/signals.py +15 -5
- nautobot/extras/tasks.py +70 -17
- nautobot/extras/tests/test_api.py +0 -4
- nautobot/extras/tests/test_customfields.py +72 -9
- nautobot/extras/views.py +8 -7
- nautobot/ipam/api/serializers.py +10 -0
- nautobot/ipam/apps.py +3 -2
- nautobot/project-static/docs/404.html +102 -70
- nautobot/project-static/docs/apps/index.html +103 -68
- nautobot/project-static/docs/apps/nautobot-apps.html +103 -68
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +141 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +141 -69
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +104 -69
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +103 -68
- nautobot/project-static/docs/development/apps/api/configuration-view.html +103 -68
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/global-search.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/graphql.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +103 -68
- nautobot/project-static/docs/development/apps/api/prometheus.html +103 -68
- nautobot/project-static/docs/development/apps/api/setup.html +103 -68
- nautobot/project-static/docs/development/apps/api/testing.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/base-template.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/notes.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/urls.html +103 -68
- nautobot/project-static/docs/development/apps/index.html +103 -68
- nautobot/project-static/docs/development/apps/migration/code-updates.html +103 -68
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +103 -68
- nautobot/project-static/docs/development/apps/migration/from-v1.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +103 -68
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +103 -68
- nautobot/project-static/docs/development/core/application-registry.html +103 -68
- nautobot/project-static/docs/development/core/best-practices.html +121 -76
- nautobot/project-static/docs/development/core/bootstrap-ui.html +103 -68
- nautobot/project-static/docs/development/core/caching.html +103 -68
- nautobot/project-static/docs/development/core/controllers.html +106 -71
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +103 -68
- nautobot/project-static/docs/development/core/extending-models.html +13 -8187
- nautobot/project-static/docs/development/core/generic-views.html +118 -83
- nautobot/project-static/docs/development/core/getting-started.html +103 -68
- nautobot/project-static/docs/development/core/homepage.html +121 -86
- nautobot/project-static/docs/development/core/index.html +103 -68
- nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
- nautobot/project-static/docs/development/core/model-features.html +106 -71
- nautobot/project-static/docs/development/core/natural-keys.html +103 -68
- nautobot/project-static/docs/development/core/navigation-menu.html +103 -68
- nautobot/project-static/docs/development/core/release-checklist.html +103 -68
- nautobot/project-static/docs/development/core/role-internals.html +103 -68
- nautobot/project-static/docs/development/core/settings.html +103 -68
- nautobot/project-static/docs/development/core/style-guide.html +103 -68
- nautobot/project-static/docs/development/core/templates.html +103 -68
- nautobot/project-static/docs/development/core/testing.html +103 -68
- nautobot/project-static/docs/development/core/user-preferences.html +103 -68
- nautobot/project-static/docs/development/extending-models.html +3 -3
- nautobot/project-static/docs/development/index.html +103 -68
- nautobot/project-static/docs/development/jobs/index.html +104 -69
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +103 -68
- nautobot/project-static/docs/index.html +102 -70
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.0.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.1.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.2.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.3.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.4.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.5.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.6.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.0.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.1.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.2.html +334 -97
- nautobot/project-static/docs/requirements.txt +3 -3
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +258 -258
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +168 -68
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +107 -68
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +106 -71
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/services.html +103 -68
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +103 -68
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +103 -68
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +103 -68
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +114 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +114 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +103 -68
- nautobot/project-static/docs/user-guide/index.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +103 -68
- nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/METADATA +22 -22
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/RECORD +339 -338
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
- nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/NOTICE +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/WHEEL +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../assets/stylesheets/main.bcfcd587.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -399,16 +399,14 @@
|
|
|
399
399
|
|
|
400
400
|
|
|
401
401
|
|
|
402
|
-
|
|
403
|
-
|
|
404
402
|
|
|
405
403
|
|
|
406
404
|
|
|
407
|
-
|
|
405
|
+
|
|
406
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
408
407
|
|
|
409
408
|
|
|
410
409
|
|
|
411
|
-
|
|
412
410
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" >
|
|
413
411
|
|
|
414
412
|
|
|
@@ -425,7 +423,7 @@
|
|
|
425
423
|
</a>
|
|
426
424
|
|
|
427
425
|
|
|
428
|
-
<label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="">
|
|
426
|
+
<label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="0">
|
|
429
427
|
<span class="md-nav__icon md-icon"></span>
|
|
430
428
|
</label>
|
|
431
429
|
|
|
@@ -447,13 +445,14 @@
|
|
|
447
445
|
|
|
448
446
|
|
|
449
447
|
|
|
448
|
+
|
|
449
|
+
|
|
450
450
|
|
|
451
451
|
|
|
452
452
|
<li class="md-nav__item md-nav__item--nested">
|
|
453
453
|
|
|
454
454
|
|
|
455
455
|
|
|
456
|
-
|
|
457
456
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" >
|
|
458
457
|
|
|
459
458
|
|
|
@@ -484,13 +483,14 @@
|
|
|
484
483
|
|
|
485
484
|
|
|
486
485
|
|
|
486
|
+
|
|
487
|
+
|
|
487
488
|
|
|
488
489
|
|
|
489
490
|
<li class="md-nav__item md-nav__item--nested">
|
|
490
491
|
|
|
491
492
|
|
|
492
493
|
|
|
493
|
-
|
|
494
494
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
|
|
495
495
|
|
|
496
496
|
|
|
@@ -739,13 +739,14 @@
|
|
|
739
739
|
|
|
740
740
|
|
|
741
741
|
|
|
742
|
+
|
|
743
|
+
|
|
742
744
|
|
|
743
745
|
|
|
744
746
|
<li class="md-nav__item md-nav__item--nested">
|
|
745
747
|
|
|
746
748
|
|
|
747
749
|
|
|
748
|
-
|
|
749
750
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
|
|
750
751
|
|
|
751
752
|
|
|
@@ -818,13 +819,14 @@
|
|
|
818
819
|
|
|
819
820
|
|
|
820
821
|
|
|
822
|
+
|
|
823
|
+
|
|
821
824
|
|
|
822
825
|
|
|
823
826
|
<li class="md-nav__item md-nav__item--nested">
|
|
824
827
|
|
|
825
828
|
|
|
826
829
|
|
|
827
|
-
|
|
828
830
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
|
|
829
831
|
|
|
830
832
|
|
|
@@ -884,13 +886,14 @@
|
|
|
884
886
|
|
|
885
887
|
|
|
886
888
|
|
|
889
|
+
|
|
890
|
+
|
|
887
891
|
|
|
888
892
|
|
|
889
893
|
<li class="md-nav__item md-nav__item--nested">
|
|
890
894
|
|
|
891
895
|
|
|
892
896
|
|
|
893
|
-
|
|
894
897
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
|
|
895
898
|
|
|
896
899
|
|
|
@@ -1037,13 +1040,14 @@
|
|
|
1037
1040
|
|
|
1038
1041
|
|
|
1039
1042
|
|
|
1043
|
+
|
|
1044
|
+
|
|
1040
1045
|
|
|
1041
1046
|
|
|
1042
1047
|
<li class="md-nav__item md-nav__item--nested">
|
|
1043
1048
|
|
|
1044
1049
|
|
|
1045
1050
|
|
|
1046
|
-
|
|
1047
1051
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1048
1052
|
|
|
1049
1053
|
|
|
@@ -1124,13 +1128,14 @@
|
|
|
1124
1128
|
|
|
1125
1129
|
|
|
1126
1130
|
|
|
1131
|
+
|
|
1132
|
+
|
|
1127
1133
|
|
|
1128
1134
|
|
|
1129
1135
|
<li class="md-nav__item md-nav__item--nested">
|
|
1130
1136
|
|
|
1131
1137
|
|
|
1132
1138
|
|
|
1133
|
-
|
|
1134
1139
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1135
1140
|
|
|
1136
1141
|
|
|
@@ -1232,13 +1237,14 @@
|
|
|
1232
1237
|
|
|
1233
1238
|
|
|
1234
1239
|
|
|
1240
|
+
|
|
1241
|
+
|
|
1235
1242
|
|
|
1236
1243
|
|
|
1237
1244
|
<li class="md-nav__item md-nav__item--nested">
|
|
1238
1245
|
|
|
1239
1246
|
|
|
1240
1247
|
|
|
1241
|
-
|
|
1242
1248
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1243
1249
|
|
|
1244
1250
|
|
|
@@ -1348,13 +1354,14 @@
|
|
|
1348
1354
|
|
|
1349
1355
|
|
|
1350
1356
|
|
|
1357
|
+
|
|
1358
|
+
|
|
1351
1359
|
|
|
1352
1360
|
|
|
1353
1361
|
<li class="md-nav__item md-nav__item--nested">
|
|
1354
1362
|
|
|
1355
1363
|
|
|
1356
1364
|
|
|
1357
|
-
|
|
1358
1365
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1359
1366
|
|
|
1360
1367
|
|
|
@@ -1435,13 +1442,14 @@
|
|
|
1435
1442
|
|
|
1436
1443
|
|
|
1437
1444
|
|
|
1445
|
+
|
|
1446
|
+
|
|
1438
1447
|
|
|
1439
1448
|
|
|
1440
1449
|
<li class="md-nav__item md-nav__item--nested">
|
|
1441
1450
|
|
|
1442
1451
|
|
|
1443
1452
|
|
|
1444
|
-
|
|
1445
1453
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1446
1454
|
|
|
1447
1455
|
|
|
@@ -1656,13 +1664,14 @@
|
|
|
1656
1664
|
|
|
1657
1665
|
|
|
1658
1666
|
|
|
1667
|
+
|
|
1668
|
+
|
|
1659
1669
|
|
|
1660
1670
|
|
|
1661
1671
|
<li class="md-nav__item md-nav__item--nested">
|
|
1662
1672
|
|
|
1663
1673
|
|
|
1664
1674
|
|
|
1665
|
-
|
|
1666
1675
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1667
1676
|
|
|
1668
1677
|
|
|
@@ -1693,13 +1702,14 @@
|
|
|
1693
1702
|
|
|
1694
1703
|
|
|
1695
1704
|
|
|
1705
|
+
|
|
1706
|
+
|
|
1696
1707
|
|
|
1697
1708
|
|
|
1698
1709
|
<li class="md-nav__item md-nav__item--nested">
|
|
1699
1710
|
|
|
1700
1711
|
|
|
1701
1712
|
|
|
1702
|
-
|
|
1703
1713
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1704
1714
|
|
|
1705
1715
|
|
|
@@ -2069,13 +2079,14 @@
|
|
|
2069
2079
|
|
|
2070
2080
|
|
|
2071
2081
|
|
|
2082
|
+
|
|
2083
|
+
|
|
2072
2084
|
|
|
2073
2085
|
|
|
2074
2086
|
<li class="md-nav__item md-nav__item--nested">
|
|
2075
2087
|
|
|
2076
2088
|
|
|
2077
2089
|
|
|
2078
|
-
|
|
2079
2090
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2080
2091
|
|
|
2081
2092
|
|
|
@@ -2106,13 +2117,14 @@
|
|
|
2106
2117
|
|
|
2107
2118
|
|
|
2108
2119
|
|
|
2120
|
+
|
|
2121
|
+
|
|
2109
2122
|
|
|
2110
2123
|
|
|
2111
2124
|
<li class="md-nav__item md-nav__item--nested">
|
|
2112
2125
|
|
|
2113
2126
|
|
|
2114
2127
|
|
|
2115
|
-
|
|
2116
2128
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2117
2129
|
|
|
2118
2130
|
|
|
@@ -2172,13 +2184,14 @@
|
|
|
2172
2184
|
|
|
2173
2185
|
|
|
2174
2186
|
|
|
2187
|
+
|
|
2188
|
+
|
|
2175
2189
|
|
|
2176
2190
|
|
|
2177
2191
|
<li class="md-nav__item md-nav__item--nested">
|
|
2178
2192
|
|
|
2179
2193
|
|
|
2180
2194
|
|
|
2181
|
-
|
|
2182
2195
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2183
2196
|
|
|
2184
2197
|
|
|
@@ -2322,13 +2335,14 @@
|
|
|
2322
2335
|
|
|
2323
2336
|
|
|
2324
2337
|
|
|
2338
|
+
|
|
2339
|
+
|
|
2325
2340
|
|
|
2326
2341
|
|
|
2327
2342
|
<li class="md-nav__item md-nav__item--nested">
|
|
2328
2343
|
|
|
2329
2344
|
|
|
2330
2345
|
|
|
2331
|
-
|
|
2332
2346
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2333
2347
|
|
|
2334
2348
|
|
|
@@ -2506,13 +2520,14 @@
|
|
|
2506
2520
|
|
|
2507
2521
|
|
|
2508
2522
|
|
|
2523
|
+
|
|
2524
|
+
|
|
2509
2525
|
|
|
2510
2526
|
|
|
2511
2527
|
<li class="md-nav__item md-nav__item--nested">
|
|
2512
2528
|
|
|
2513
2529
|
|
|
2514
2530
|
|
|
2515
|
-
|
|
2516
2531
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2517
2532
|
|
|
2518
2533
|
|
|
@@ -2727,13 +2742,14 @@
|
|
|
2727
2742
|
|
|
2728
2743
|
|
|
2729
2744
|
|
|
2745
|
+
|
|
2746
|
+
|
|
2730
2747
|
|
|
2731
2748
|
|
|
2732
2749
|
<li class="md-nav__item md-nav__item--nested">
|
|
2733
2750
|
|
|
2734
2751
|
|
|
2735
2752
|
|
|
2736
|
-
|
|
2737
2753
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2738
2754
|
|
|
2739
2755
|
|
|
@@ -3208,13 +3224,14 @@
|
|
|
3208
3224
|
|
|
3209
3225
|
|
|
3210
3226
|
|
|
3227
|
+
|
|
3228
|
+
|
|
3211
3229
|
|
|
3212
3230
|
|
|
3213
3231
|
<li class="md-nav__item md-nav__item--nested">
|
|
3214
3232
|
|
|
3215
3233
|
|
|
3216
3234
|
|
|
3217
|
-
|
|
3218
3235
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3219
3236
|
|
|
3220
3237
|
|
|
@@ -3337,13 +3354,14 @@
|
|
|
3337
3354
|
|
|
3338
3355
|
|
|
3339
3356
|
|
|
3357
|
+
|
|
3358
|
+
|
|
3340
3359
|
|
|
3341
3360
|
|
|
3342
3361
|
<li class="md-nav__item md-nav__item--nested">
|
|
3343
3362
|
|
|
3344
3363
|
|
|
3345
3364
|
|
|
3346
|
-
|
|
3347
3365
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3348
3366
|
|
|
3349
3367
|
|
|
@@ -3571,13 +3589,14 @@
|
|
|
3571
3589
|
|
|
3572
3590
|
|
|
3573
3591
|
|
|
3592
|
+
|
|
3593
|
+
|
|
3574
3594
|
|
|
3575
3595
|
|
|
3576
3596
|
<li class="md-nav__item md-nav__item--nested">
|
|
3577
3597
|
|
|
3578
3598
|
|
|
3579
3599
|
|
|
3580
|
-
|
|
3581
3600
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3582
3601
|
|
|
3583
3602
|
|
|
@@ -3658,13 +3677,14 @@
|
|
|
3658
3677
|
|
|
3659
3678
|
|
|
3660
3679
|
|
|
3680
|
+
|
|
3681
|
+
|
|
3661
3682
|
|
|
3662
3683
|
|
|
3663
3684
|
<li class="md-nav__item md-nav__item--nested">
|
|
3664
3685
|
|
|
3665
3686
|
|
|
3666
3687
|
|
|
3667
|
-
|
|
3668
3688
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3669
3689
|
|
|
3670
3690
|
|
|
@@ -3816,13 +3836,14 @@
|
|
|
3816
3836
|
|
|
3817
3837
|
|
|
3818
3838
|
|
|
3839
|
+
|
|
3840
|
+
|
|
3819
3841
|
|
|
3820
3842
|
|
|
3821
3843
|
<li class="md-nav__item md-nav__item--nested">
|
|
3822
3844
|
|
|
3823
3845
|
|
|
3824
3846
|
|
|
3825
|
-
|
|
3826
3847
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
3827
3848
|
|
|
3828
3849
|
|
|
@@ -4021,13 +4042,14 @@
|
|
|
4021
4042
|
|
|
4022
4043
|
|
|
4023
4044
|
|
|
4045
|
+
|
|
4046
|
+
|
|
4024
4047
|
|
|
4025
4048
|
|
|
4026
4049
|
<li class="md-nav__item md-nav__item--nested">
|
|
4027
4050
|
|
|
4028
4051
|
|
|
4029
4052
|
|
|
4030
|
-
|
|
4031
4053
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4032
4054
|
|
|
4033
4055
|
|
|
@@ -4116,13 +4138,14 @@
|
|
|
4116
4138
|
|
|
4117
4139
|
|
|
4118
4140
|
|
|
4141
|
+
|
|
4142
|
+
|
|
4119
4143
|
|
|
4120
4144
|
|
|
4121
4145
|
<li class="md-nav__item md-nav__item--nested">
|
|
4122
4146
|
|
|
4123
4147
|
|
|
4124
4148
|
|
|
4125
|
-
|
|
4126
4149
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4127
4150
|
|
|
4128
4151
|
|
|
@@ -4316,13 +4339,14 @@
|
|
|
4316
4339
|
|
|
4317
4340
|
|
|
4318
4341
|
|
|
4342
|
+
|
|
4343
|
+
|
|
4319
4344
|
|
|
4320
4345
|
|
|
4321
4346
|
<li class="md-nav__item md-nav__item--nested">
|
|
4322
4347
|
|
|
4323
4348
|
|
|
4324
4349
|
|
|
4325
|
-
|
|
4326
4350
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4327
4351
|
|
|
4328
4352
|
|
|
@@ -4537,13 +4561,14 @@
|
|
|
4537
4561
|
|
|
4538
4562
|
|
|
4539
4563
|
|
|
4564
|
+
|
|
4565
|
+
|
|
4540
4566
|
|
|
4541
4567
|
|
|
4542
4568
|
<li class="md-nav__item md-nav__item--nested">
|
|
4543
4569
|
|
|
4544
4570
|
|
|
4545
4571
|
|
|
4546
|
-
|
|
4547
4572
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4548
4573
|
|
|
4549
4574
|
|
|
@@ -4662,16 +4687,17 @@
|
|
|
4662
4687
|
|
|
4663
4688
|
|
|
4664
4689
|
|
|
4665
|
-
|
|
4666
|
-
|
|
4690
|
+
|
|
4691
|
+
|
|
4692
|
+
|
|
4667
4693
|
|
|
4668
4694
|
|
|
4695
|
+
|
|
4669
4696
|
|
|
4670
4697
|
<li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
|
|
4671
4698
|
|
|
4672
4699
|
|
|
4673
4700
|
|
|
4674
|
-
|
|
4675
4701
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" checked>
|
|
4676
4702
|
|
|
4677
4703
|
|
|
@@ -4710,13 +4736,14 @@
|
|
|
4710
4736
|
|
|
4711
4737
|
|
|
4712
4738
|
|
|
4739
|
+
|
|
4740
|
+
|
|
4713
4741
|
|
|
4714
4742
|
|
|
4715
4743
|
<li class="md-nav__item md-nav__item--nested">
|
|
4716
4744
|
|
|
4717
4745
|
|
|
4718
4746
|
|
|
4719
|
-
|
|
4720
4747
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4721
4748
|
|
|
4722
4749
|
|
|
@@ -4784,13 +4811,14 @@
|
|
|
4784
4811
|
|
|
4785
4812
|
|
|
4786
4813
|
|
|
4814
|
+
|
|
4815
|
+
|
|
4787
4816
|
|
|
4788
4817
|
|
|
4789
4818
|
<li class="md-nav__item md-nav__item--nested">
|
|
4790
4819
|
|
|
4791
4820
|
|
|
4792
4821
|
|
|
4793
|
-
|
|
4794
4822
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4795
4823
|
|
|
4796
4824
|
|
|
@@ -4871,13 +4899,14 @@
|
|
|
4871
4899
|
|
|
4872
4900
|
|
|
4873
4901
|
|
|
4902
|
+
|
|
4903
|
+
|
|
4874
4904
|
|
|
4875
4905
|
|
|
4876
4906
|
<li class="md-nav__item md-nav__item--nested">
|
|
4877
4907
|
|
|
4878
4908
|
|
|
4879
4909
|
|
|
4880
|
-
|
|
4881
4910
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
4882
4911
|
|
|
4883
4912
|
|
|
@@ -4987,13 +5016,14 @@
|
|
|
4987
5016
|
|
|
4988
5017
|
|
|
4989
5018
|
|
|
5019
|
+
|
|
5020
|
+
|
|
4990
5021
|
|
|
4991
5022
|
|
|
4992
5023
|
<li class="md-nav__item md-nav__item--nested">
|
|
4993
5024
|
|
|
4994
5025
|
|
|
4995
5026
|
|
|
4996
|
-
|
|
4997
5027
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
4998
5028
|
|
|
4999
5029
|
|
|
@@ -5179,13 +5209,14 @@
|
|
|
5179
5209
|
|
|
5180
5210
|
|
|
5181
5211
|
|
|
5212
|
+
|
|
5213
|
+
|
|
5182
5214
|
|
|
5183
5215
|
|
|
5184
5216
|
<li class="md-nav__item md-nav__item--nested">
|
|
5185
5217
|
|
|
5186
5218
|
|
|
5187
5219
|
|
|
5188
|
-
|
|
5189
5220
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5190
5221
|
|
|
5191
5222
|
|
|
@@ -5295,13 +5326,14 @@
|
|
|
5295
5326
|
|
|
5296
5327
|
|
|
5297
5328
|
|
|
5329
|
+
|
|
5330
|
+
|
|
5298
5331
|
|
|
5299
5332
|
|
|
5300
5333
|
<li class="md-nav__item md-nav__item--nested">
|
|
5301
5334
|
|
|
5302
5335
|
|
|
5303
5336
|
|
|
5304
|
-
|
|
5305
5337
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5306
5338
|
|
|
5307
5339
|
|
|
@@ -5558,13 +5590,14 @@
|
|
|
5558
5590
|
|
|
5559
5591
|
|
|
5560
5592
|
|
|
5593
|
+
|
|
5594
|
+
|
|
5561
5595
|
|
|
5562
5596
|
|
|
5563
5597
|
<li class="md-nav__item md-nav__item--nested">
|
|
5564
5598
|
|
|
5565
5599
|
|
|
5566
5600
|
|
|
5567
|
-
|
|
5568
5601
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5569
5602
|
|
|
5570
5603
|
|
|
@@ -5737,13 +5770,14 @@
|
|
|
5737
5770
|
|
|
5738
5771
|
|
|
5739
5772
|
|
|
5773
|
+
|
|
5774
|
+
|
|
5740
5775
|
|
|
5741
5776
|
|
|
5742
5777
|
<li class="md-nav__item md-nav__item--nested">
|
|
5743
5778
|
|
|
5744
5779
|
|
|
5745
5780
|
|
|
5746
|
-
|
|
5747
5781
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5748
5782
|
|
|
5749
5783
|
|
|
@@ -6265,13 +6299,14 @@
|
|
|
6265
6299
|
|
|
6266
6300
|
|
|
6267
6301
|
|
|
6302
|
+
|
|
6303
|
+
|
|
6268
6304
|
|
|
6269
6305
|
|
|
6270
6306
|
<li class="md-nav__item md-nav__item--nested">
|
|
6271
6307
|
|
|
6272
6308
|
|
|
6273
6309
|
|
|
6274
|
-
|
|
6275
6310
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6276
6311
|
|
|
6277
6312
|
|
|
@@ -6365,13 +6400,14 @@
|
|
|
6365
6400
|
|
|
6366
6401
|
|
|
6367
6402
|
|
|
6403
|
+
|
|
6404
|
+
|
|
6368
6405
|
|
|
6369
6406
|
|
|
6370
6407
|
<li class="md-nav__item md-nav__item--nested">
|
|
6371
6408
|
|
|
6372
6409
|
|
|
6373
6410
|
|
|
6374
|
-
|
|
6375
6411
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6376
6412
|
|
|
6377
6413
|
|
|
@@ -6502,13 +6538,14 @@
|
|
|
6502
6538
|
|
|
6503
6539
|
|
|
6504
6540
|
|
|
6541
|
+
|
|
6542
|
+
|
|
6505
6543
|
|
|
6506
6544
|
|
|
6507
6545
|
<li class="md-nav__item md-nav__item--nested">
|
|
6508
6546
|
|
|
6509
6547
|
|
|
6510
6548
|
|
|
6511
|
-
|
|
6512
6549
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6513
6550
|
|
|
6514
6551
|
|
|
@@ -6578,13 +6615,14 @@
|
|
|
6578
6615
|
|
|
6579
6616
|
|
|
6580
6617
|
|
|
6618
|
+
|
|
6619
|
+
|
|
6581
6620
|
|
|
6582
6621
|
|
|
6583
6622
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
6584
6623
|
|
|
6585
6624
|
|
|
6586
6625
|
|
|
6587
|
-
|
|
6588
6626
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" checked>
|
|
6589
6627
|
|
|
6590
6628
|
|
|
@@ -7054,11 +7092,11 @@
|
|
|
7054
7092
|
|
|
7055
7093
|
|
|
7056
7094
|
<li class="md-nav__item">
|
|
7057
|
-
<a href="
|
|
7095
|
+
<a href="generic-views.html" class="md-nav__link">
|
|
7058
7096
|
|
|
7059
7097
|
|
|
7060
7098
|
<span class="md-ellipsis">
|
|
7061
|
-
|
|
7099
|
+
Generic Views
|
|
7062
7100
|
</span>
|
|
7063
7101
|
|
|
7064
7102
|
|
|
@@ -7075,11 +7113,11 @@
|
|
|
7075
7113
|
|
|
7076
7114
|
|
|
7077
7115
|
<li class="md-nav__item">
|
|
7078
|
-
<a href="
|
|
7116
|
+
<a href="homepage.html" class="md-nav__link">
|
|
7079
7117
|
|
|
7080
7118
|
|
|
7081
7119
|
<span class="md-ellipsis">
|
|
7082
|
-
|
|
7120
|
+
Home Page Panels
|
|
7083
7121
|
</span>
|
|
7084
7122
|
|
|
7085
7123
|
|
|
@@ -7096,11 +7134,11 @@
|
|
|
7096
7134
|
|
|
7097
7135
|
|
|
7098
7136
|
<li class="md-nav__item">
|
|
7099
|
-
<a href="
|
|
7137
|
+
<a href="model-checklist.html" class="md-nav__link">
|
|
7100
7138
|
|
|
7101
7139
|
|
|
7102
7140
|
<span class="md-ellipsis">
|
|
7103
|
-
|
|
7141
|
+
Model Development Checklist
|
|
7104
7142
|
</span>
|
|
7105
7143
|
|
|
7106
7144
|
|
|
@@ -7323,16 +7361,14 @@
|
|
|
7323
7361
|
|
|
7324
7362
|
|
|
7325
7363
|
|
|
7326
|
-
|
|
7327
|
-
|
|
7328
7364
|
|
|
7329
7365
|
|
|
7330
7366
|
|
|
7331
|
-
|
|
7367
|
+
|
|
7368
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7332
7369
|
|
|
7333
7370
|
|
|
7334
7371
|
|
|
7335
|
-
|
|
7336
7372
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7337
7373
|
|
|
7338
7374
|
|
|
@@ -7349,7 +7385,7 @@
|
|
|
7349
7385
|
</a>
|
|
7350
7386
|
|
|
7351
7387
|
|
|
7352
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7388
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7353
7389
|
<span class="md-nav__icon md-icon"></span>
|
|
7354
7390
|
</label>
|
|
7355
7391
|
|
|
@@ -7588,16 +7624,14 @@
|
|
|
7588
7624
|
|
|
7589
7625
|
|
|
7590
7626
|
|
|
7591
|
-
|
|
7592
|
-
|
|
7593
7627
|
|
|
7594
7628
|
|
|
7595
7629
|
|
|
7596
|
-
|
|
7630
|
+
|
|
7631
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7597
7632
|
|
|
7598
7633
|
|
|
7599
7634
|
|
|
7600
|
-
|
|
7601
7635
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7602
7636
|
|
|
7603
7637
|
|
|
@@ -7614,7 +7648,7 @@
|
|
|
7614
7648
|
</a>
|
|
7615
7649
|
|
|
7616
7650
|
|
|
7617
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7651
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7618
7652
|
<span class="md-nav__icon md-icon"></span>
|
|
7619
7653
|
</label>
|
|
7620
7654
|
|
|
@@ -7636,13 +7670,14 @@
|
|
|
7636
7670
|
|
|
7637
7671
|
|
|
7638
7672
|
|
|
7673
|
+
|
|
7674
|
+
|
|
7639
7675
|
|
|
7640
7676
|
|
|
7641
7677
|
<li class="md-nav__item md-nav__item--nested">
|
|
7642
7678
|
|
|
7643
7679
|
|
|
7644
7680
|
|
|
7645
|
-
|
|
7646
7681
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7647
7682
|
|
|
7648
7683
|
|
|
@@ -8193,6 +8228,11 @@
|
|
|
8193
8228
|
</thead>
|
|
8194
8229
|
<tbody>
|
|
8195
8230
|
<tr>
|
|
8231
|
+
<td>Data models</td>
|
|
8232
|
+
<td><code>PrimaryModel</code></td>
|
|
8233
|
+
<td><code>BaseModel</code></td>
|
|
8234
|
+
</tr>
|
|
8235
|
+
<tr>
|
|
8196
8236
|
<td>FilterSets</td>
|
|
8197
8237
|
<td><code>NautobotFilterSet</code></td>
|
|
8198
8238
|
<td><code>BaseFilterSet</code></td>
|
|
@@ -8218,20 +8258,25 @@
|
|
|
8218
8258
|
<td><code>BaseModelSerializer</code></td>
|
|
8219
8259
|
</tr>
|
|
8220
8260
|
<tr>
|
|
8221
|
-
<td>Nested serializers</td>
|
|
8222
|
-
<td><code>WritableNestedSerializer</code></td>
|
|
8223
|
-
<td><code>WritableNestedSerializer</code></td>
|
|
8224
|
-
</tr>
|
|
8225
|
-
<tr>
|
|
8226
8261
|
<td>All other serializers</td>
|
|
8227
8262
|
<td><code>NautobotModelSerializer</code></td>
|
|
8228
8263
|
<td><code>ValidatedModelSerializer</code></td>
|
|
8229
8264
|
</tr>
|
|
8230
8265
|
<tr>
|
|
8231
|
-
<td>
|
|
8266
|
+
<td>List view tables</td>
|
|
8267
|
+
<td><code>BaseTable</code></td>
|
|
8268
|
+
<td><code>BaseTable</code></td>
|
|
8269
|
+
</tr>
|
|
8270
|
+
<tr>
|
|
8271
|
+
<td>API ViewSets</td>
|
|
8232
8272
|
<td><code>NautobotModelViewSet</code></td>
|
|
8233
8273
|
<td><code>ModelViewSet</code></td>
|
|
8234
8274
|
</tr>
|
|
8275
|
+
<tr>
|
|
8276
|
+
<td>UI ViewSets</td>
|
|
8277
|
+
<td><code>NautobotUIViewSet</code></td>
|
|
8278
|
+
<td>individual mixins as needed</td>
|
|
8279
|
+
</tr>
|
|
8235
8280
|
</tbody>
|
|
8236
8281
|
</table>
|
|
8237
8282
|
<h2 id="data-model-best-practices">Data Model Best Practices<a class="headerlink" href="#data-model-best-practices" title="Permanent link">¶</a></h2>
|
|
@@ -8312,7 +8357,7 @@ For most purposes, this is not the case you are intending to check!</p>
|
|
|
8312
8357
|
<a id="__codelineno-4-8" name="__codelineno-4-8" href="#__codelineno-4-8"></a> <span class="n">slug</span> <span class="o">=</span> <span class="n">AutoSlugField</span><span class="p">(</span><span class="n">populate_from</span><span class="o">=</span><span class="s1">'name'</span><span class="p">)</span>
|
|
8313
8358
|
</code></pre></div>
|
|
8314
8359
|
<h3 id="charfield-and-slugfield-max-length">CharField and SlugField Max Length<a class="headerlink" href="#charfield-and-slugfield-max-length" title="Permanent link">¶</a></h3>
|
|
8315
|
-
<p>When constructing a CharField or SlugField, always utilize the
|
|
8360
|
+
<p>When constructing a CharField or SlugField, always utilize the <code>CHARFIELD_MAX_LENGTH</code> constant unless your field requires a value greater than <code>CHARFIELD_MAX_LENGTH</code>, which is <code>255</code>.</p>
|
|
8316
8361
|
<h2 id="getting-url-routes">Getting URL Routes<a class="headerlink" href="#getting-url-routes" title="Permanent link">¶</a></h2>
|
|
8317
8362
|
<p>When developing new models a need often arises to retrieve a reversible route for a model to access it in either the web UI or the REST API. When this time comes, you <strong>must</strong> use <code>nautobot.core.utils.lookup.get_route_for_model</code>. You <strong>must not</strong> write your own logic to construct route names.</p>
|
|
8318
8363
|
<div class="admonition version-changed">
|
|
@@ -8386,7 +8431,7 @@ For most purposes, this is not the case you are intending to check!</p>
|
|
|
8386
8431
|
<h3 id="mapping-model-fields-to-filters">Mapping Model Fields to Filters<a class="headerlink" href="#mapping-model-fields-to-filters" title="Permanent link">¶</a></h3>
|
|
8387
8432
|
<ul>
|
|
8388
8433
|
<li>
|
|
8389
|
-
<p>FilterSets <strong>must</strong> inherit from <code>nautobot.extras.filters.NautobotFilterSet</code> (which inherits from <code>nautobot.core.filters.BaseFilterSet</code>)</p>
|
|
8434
|
+
<p>FilterSets <strong>must</strong> inherit from <code>nautobot.core.filters.BaseFilterSet</code> or <code>nautobot.extras.filters.NautobotFilterSet</code> (which inherits from <code>nautobot.core.filters.BaseFilterSet</code>)</p>
|
|
8390
8435
|
<ul>
|
|
8391
8436
|
<li>This affords that automatically generated lookup expressions (<code>ic</code>, <code>nic</code>, <code>iew</code>, <code>niew</code>, etc.) are always included</li>
|
|
8392
8437
|
<li>This also asserts that the correct underlying <code>Form</code> class that maps the generated form field types and widgets will be included</li>
|
|
@@ -8763,9 +8808,9 @@ For most purposes, this is not the case you are intending to check!</p>
|
|
|
8763
8808
|
<script id="__config" type="application/json">{"base": "../..", "features": ["content.code.copy", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
8764
8809
|
|
|
8765
8810
|
|
|
8766
|
-
<script src="../../assets/javascripts/bundle.
|
|
8811
|
+
<script src="../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8767
8812
|
|
|
8768
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8813
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8769
8814
|
|
|
8770
8815
|
|
|
8771
8816
|
</body>
|