nautobot 3.0.3__py3-none-any.whl → 3.0.5__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.
- nautobot/core/authentication.py +0 -1
- nautobot/core/celery/schedulers.py +1 -3
- nautobot/core/cli/__init__.py +81 -39
- nautobot/core/settings.yaml +12 -4
- nautobot/core/tables.py +28 -17
- nautobot/core/templates/graphene/graphiql.html +3 -5
- nautobot/core/templates/inc/javascript.html +5 -10
- nautobot/core/templates/inc/media.html +5 -4
- nautobot/core/templates/inc/media_failure.html +73 -0
- nautobot/core/templates/media_failure.html +1 -0
- nautobot/core/tests/test_cli.py +120 -1
- nautobot/core/tests/test_templatetags_helpers.py +9 -9
- nautobot/core/ui/object_detail.py +1 -0
- nautobot/dcim/forms.py +1 -0
- nautobot/dcim/tables/devices.py +6 -5
- nautobot/dcim/tables/template_code.py +8 -4
- nautobot/dcim/templates/dcim/platform_create.html +3 -4
- nautobot/dcim/tests/test_tables.py +5 -6
- nautobot/dcim/views.py +6 -7
- nautobot/extras/models/jobs.py +7 -1
- nautobot/extras/signals.py +143 -113
- nautobot/extras/tables.py +3 -3
- nautobot/extras/templates/extras/inc/jobresult_js.html +1 -2
- nautobot/extras/templates/extras/scheduledjob.html +3 -1
- nautobot/extras/tests/test_customfields.py +75 -9
- nautobot/extras/tests/test_utils.py +116 -1
- nautobot/extras/utils.py +18 -16
- nautobot/extras/views.py +2 -14
- nautobot/ipam/apps.py +1 -0
- nautobot/ipam/filters.py +58 -3
- nautobot/ipam/tables.py +8 -4
- nautobot/ipam/tests/test_filters.py +55 -0
- nautobot/project-static/dist/css/nautobot.css +1 -1
- nautobot/project-static/dist/css/nautobot.css.map +1 -1
- nautobot/project-static/docs/404.html +64 -8
- nautobot/project-static/docs/apps/index.html +64 -8
- nautobot/project-static/docs/apps/nautobot-apps.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/templatetags.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +64 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +64 -8
- nautobot/project-static/docs/development/apps/api/configuration-view.html +64 -8
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +64 -8
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +67 -11
- nautobot/project-static/docs/development/apps/api/models/global-search.html +64 -8
- nautobot/project-static/docs/development/apps/api/models/graphql.html +64 -8
- nautobot/project-static/docs/development/apps/api/models/index.html +64 -8
- nautobot/project-static/docs/development/apps/api/models/queryset.html +13440 -0
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/prepopulating-data.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +64 -8
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +64 -8
- nautobot/project-static/docs/development/apps/api/prometheus.html +64 -8
- nautobot/project-static/docs/development/apps/api/setup.html +64 -8
- nautobot/project-static/docs/development/apps/api/testing.html +64 -8
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +64 -8
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +64 -8
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +64 -8
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +64 -8
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/base-template.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/index.html +67 -11
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/notes.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +64 -8
- nautobot/project-static/docs/development/apps/api/views/urls.html +64 -8
- nautobot/project-static/docs/development/apps/index.html +64 -8
- nautobot/project-static/docs/development/apps/migration/code-updates.html +64 -8
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +64 -8
- nautobot/project-static/docs/development/apps/migration/from-v1.html +64 -8
- nautobot/project-static/docs/development/apps/migration/from-v2/migrating-v2-to-v3.html +64 -8
- nautobot/project-static/docs/development/apps/migration/from-v2/new-nautobot-custom-ui-apis.html +64 -8
- nautobot/project-static/docs/development/apps/migration/from-v2/overview.html +68 -8
- nautobot/project-static/docs/development/apps/migration/from-v2/upgrading-from-bootstrap-v3-to-v5.html +64 -8
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +64 -8
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +64 -8
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +64 -8
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +64 -8
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +64 -8
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/breadcrumbs-titles.html +64 -8
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +64 -8
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +64 -8
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +64 -8
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +64 -8
- nautobot/project-static/docs/development/core/application-registry.html +64 -8
- nautobot/project-static/docs/development/core/best-practices.html +64 -8
- nautobot/project-static/docs/development/core/caching.html +64 -8
- nautobot/project-static/docs/development/core/controllers.html +64 -8
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +64 -8
- nautobot/project-static/docs/development/core/docs-media-standards.html +64 -8
- nautobot/project-static/docs/development/core/generic-views.html +64 -8
- nautobot/project-static/docs/development/core/getting-started.html +64 -8
- nautobot/project-static/docs/development/core/homepage.html +64 -8
- nautobot/project-static/docs/development/core/index.html +64 -8
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +64 -8
- nautobot/project-static/docs/development/core/model-checklist.html +64 -8
- nautobot/project-static/docs/development/core/model-features.html +64 -8
- nautobot/project-static/docs/development/core/natural-keys.html +64 -8
- nautobot/project-static/docs/development/core/navigation-menu.html +64 -8
- nautobot/project-static/docs/development/core/release-checklist.html +66 -8
- nautobot/project-static/docs/development/core/role-internals.html +64 -8
- nautobot/project-static/docs/development/core/settings.html +64 -8
- nautobot/project-static/docs/development/core/style-guide.html +64 -8
- nautobot/project-static/docs/development/core/templates.html +64 -8
- nautobot/project-static/docs/development/core/testing.html +64 -8
- nautobot/project-static/docs/development/core/ui-best-practices.html +64 -8
- nautobot/project-static/docs/development/core/ui-component-framework.html +64 -8
- nautobot/project-static/docs/development/core/user-preferences.html +64 -8
- nautobot/project-static/docs/development/index.html +64 -8
- nautobot/project-static/docs/development/jobs/getting-started.html +64 -8
- nautobot/project-static/docs/development/jobs/index.html +64 -8
- nautobot/project-static/docs/development/jobs/installation.html +64 -8
- nautobot/project-static/docs/development/jobs/job-extensions.html +64 -8
- nautobot/project-static/docs/development/jobs/job-logging.html +64 -8
- nautobot/project-static/docs/development/jobs/job-patterns.html +64 -8
- nautobot/project-static/docs/development/jobs/job-structure.html +64 -8
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +64 -8
- nautobot/project-static/docs/development/jobs/testing.html +64 -8
- nautobot/project-static/docs/index.html +64 -8
- nautobot/project-static/docs/overview/application_stack.html +64 -8
- nautobot/project-static/docs/overview/design_philosophy.html +64 -8
- nautobot/project-static/docs/release-notes/index.html +64 -8
- nautobot/project-static/docs/release-notes/version-1.0.html +64 -8
- nautobot/project-static/docs/release-notes/version-1.1.html +64 -8
- nautobot/project-static/docs/release-notes/version-1.2.html +65 -9
- nautobot/project-static/docs/release-notes/version-1.3.html +64 -8
- nautobot/project-static/docs/release-notes/version-1.4.html +64 -8
- nautobot/project-static/docs/release-notes/version-1.5.html +64 -8
- nautobot/project-static/docs/release-notes/version-1.6.html +64 -8
- nautobot/project-static/docs/release-notes/version-2.0.html +64 -8
- nautobot/project-static/docs/release-notes/version-2.1.html +64 -8
- nautobot/project-static/docs/release-notes/version-2.2.html +64 -8
- nautobot/project-static/docs/release-notes/version-2.3.html +64 -8
- nautobot/project-static/docs/release-notes/version-2.4.html +584 -8
- nautobot/project-static/docs/release-notes/version-3.0.html +467 -8
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +337 -329
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +64 -8
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +64 -8
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +64 -8
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +64 -8
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +64 -8
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +75 -12
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +64 -8
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +64 -8
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +64 -8
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +64 -8
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +64 -8
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +64 -8
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +64 -8
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +64 -8
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +64 -8
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +64 -8
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +64 -8
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +64 -8
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +72 -9
- nautobot/project-static/docs/user-guide/administration/installation/index.html +64 -8
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +64 -8
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +64 -8
- nautobot/project-static/docs/user-guide/administration/installation/services.html +64 -8
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +65 -9
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +64 -8
- nautobot/project-static/docs/user-guide/administration/security/index.html +64 -8
- nautobot/project-static/docs/user-guide/administration/security/notices.html +64 -8
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +64 -8
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +64 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +67 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +64 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +64 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +64 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +64 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +64 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +64 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +64 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v2/index.html +68 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/postgresql.html +13391 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +125 -15
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulefamily.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/load-balancers/certificateprofile.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/load-balancers/healthcheckmonitor.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/load-balancers/index.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/load-balancers/loadbalancerpool.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/load-balancers/loadbalancerpoolmember.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/load-balancers/virtualserver.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/vpn/index.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/vpn/vpn.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/vpn/vpnphase1policy.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/vpn/vpnphase2policy.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/vpn/vpnprofile.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/vpn/vpntunnel.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/vpn/vpntunnelendpoint.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +64 -8
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/data-compliance.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +75 -12
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +85 -17
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/12-add-tenant-dark.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/12-add-tenant-light.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/13-assign-tenant-to-device-dark.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/13-assign-tenant-to-device-light.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/14-assign-tenant-to-device-2-dark.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/14-assign-tenant-to-device-2-light.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/22-create-vlans-dark.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/22-create-vlans-light.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/23-create-vlans-2-dark.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/23-create-vlans-2-light.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/24-vlan-main-page-dark.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/24-vlan-main-page-light.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/25-add-vlan-to-interface-dark.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/25-add-vlan-to-interface-light.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/26-add-vlan-to-interface-2-dark.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/26-add-vlan-to-interface-2-light.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/load-balancers.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +64 -8
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +64 -8
- nautobot/project-static/docs/user-guide/index.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/approval-workflow.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/data-validation.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/echarts.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/managing-jobs.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +116 -34
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/user-interface/configurablecolumns.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/user-interface/savedview.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/user-interface/search.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/users/groups.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +64 -8
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +64 -8
- nautobot/tenancy/tables.py +1 -1
- nautobot/ui/package-lock.json +36 -36
- nautobot/ui/package.json +3 -3
- nautobot/ui/src/scss/nautobot.scss +2 -1
- nautobot/users/models.py +33 -0
- nautobot/users/tests/test_models.py +83 -0
- {nautobot-3.0.3.dist-info → nautobot-3.0.5.dist-info}/METADATA +4 -4
- {nautobot-3.0.3.dist-info → nautobot-3.0.5.dist-info}/RECORD +397 -386
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/12-add-tenant.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/13-assign-tenant-to-device.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/14-assign-tenant-to-device-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/22-create-vlans.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/23-create-vlans-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/24-vlan-main-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/25-add-vlan-to-interface.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/26-add-vlan-to-interface-2.png +0 -0
- {nautobot-3.0.3.dist-info → nautobot-3.0.5.dist-info}/LICENSE.txt +0 -0
- {nautobot-3.0.3.dist-info → nautobot-3.0.5.dist-info}/NOTICE +0 -0
- {nautobot-3.0.3.dist-info → nautobot-3.0.5.dist-info}/WHEEL +0 -0
- {nautobot-3.0.3.dist-info → nautobot-3.0.5.dist-info}/entry_points.txt +0 -0
|
@@ -1086,6 +1086,34 @@
|
|
|
1086
1086
|
|
|
1087
1087
|
|
|
1088
1088
|
|
|
1089
|
+
<li class="md-nav__item">
|
|
1090
|
+
<a href="../upgrading/postgresql.html" class="md-nav__link">
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
<span class="md-ellipsis">
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
Upgrading PostgreSQL
|
|
1098
|
+
|
|
1099
|
+
|
|
1100
|
+
|
|
1101
|
+
</span>
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
|
|
1105
|
+
</a>
|
|
1106
|
+
</li>
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
|
|
1089
1117
|
<li class="md-nav__item">
|
|
1090
1118
|
<a href="../upgrading/upgrading.html" class="md-nav__link">
|
|
1091
1119
|
|
|
@@ -1126,7 +1154,7 @@
|
|
|
1126
1154
|
|
|
1127
1155
|
|
|
1128
1156
|
|
|
1129
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1157
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
|
|
1130
1158
|
|
|
1131
1159
|
|
|
1132
1160
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1148,14 +1176,14 @@
|
|
|
1148
1176
|
</a>
|
|
1149
1177
|
|
|
1150
1178
|
|
|
1151
|
-
<label class="md-nav__link " for="
|
|
1179
|
+
<label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
|
|
1152
1180
|
<span class="md-nav__icon md-icon"></span>
|
|
1153
1181
|
</label>
|
|
1154
1182
|
|
|
1155
1183
|
</div>
|
|
1156
1184
|
|
|
1157
|
-
<nav class="md-nav" data-md-level="4" aria-labelledby="
|
|
1158
|
-
<label class="md-nav__title" for="
|
|
1185
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
|
|
1186
|
+
<label class="md-nav__title" for="__nav_2_1_2_4">
|
|
1159
1187
|
<span class="md-nav__icon md-icon"></span>
|
|
1160
1188
|
|
|
1161
1189
|
|
|
@@ -1211,7 +1239,7 @@
|
|
|
1211
1239
|
|
|
1212
1240
|
|
|
1213
1241
|
|
|
1214
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1242
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
|
|
1215
1243
|
|
|
1216
1244
|
|
|
1217
1245
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1233,14 +1261,14 @@
|
|
|
1233
1261
|
</a>
|
|
1234
1262
|
|
|
1235
1263
|
|
|
1236
|
-
<label class="md-nav__link " for="
|
|
1264
|
+
<label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
|
|
1237
1265
|
<span class="md-nav__icon md-icon"></span>
|
|
1238
1266
|
</label>
|
|
1239
1267
|
|
|
1240
1268
|
</div>
|
|
1241
1269
|
|
|
1242
|
-
<nav class="md-nav" data-md-level="5" aria-labelledby="
|
|
1243
|
-
<label class="md-nav__title" for="
|
|
1270
|
+
<nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
|
|
1271
|
+
<label class="md-nav__title" for="__nav_2_1_2_4_2">
|
|
1244
1272
|
<span class="md-nav__icon md-icon"></span>
|
|
1245
1273
|
|
|
1246
1274
|
|
|
@@ -9030,6 +9058,34 @@
|
|
|
9030
9058
|
|
|
9031
9059
|
|
|
9032
9060
|
|
|
9061
|
+
|
|
9062
|
+
|
|
9063
|
+
|
|
9064
|
+
|
|
9065
|
+
|
|
9066
|
+
|
|
9067
|
+
<li class="md-nav__item">
|
|
9068
|
+
<a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
|
|
9069
|
+
|
|
9070
|
+
|
|
9071
|
+
|
|
9072
|
+
<span class="md-ellipsis">
|
|
9073
|
+
|
|
9074
|
+
|
|
9075
|
+
QuerySet
|
|
9076
|
+
|
|
9077
|
+
|
|
9078
|
+
|
|
9079
|
+
</span>
|
|
9080
|
+
|
|
9081
|
+
|
|
9082
|
+
|
|
9083
|
+
</a>
|
|
9084
|
+
</li>
|
|
9085
|
+
|
|
9086
|
+
|
|
9087
|
+
|
|
9088
|
+
|
|
9033
9089
|
</ul>
|
|
9034
9090
|
</nav>
|
|
9035
9091
|
|
|
@@ -1235,6 +1235,34 @@
|
|
|
1235
1235
|
|
|
1236
1236
|
|
|
1237
1237
|
|
|
1238
|
+
<li class="md-nav__item">
|
|
1239
|
+
<a href="../upgrading/postgresql.html" class="md-nav__link">
|
|
1240
|
+
|
|
1241
|
+
|
|
1242
|
+
|
|
1243
|
+
<span class="md-ellipsis">
|
|
1244
|
+
|
|
1245
|
+
|
|
1246
|
+
Upgrading PostgreSQL
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
</span>
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
|
|
1254
|
+
</a>
|
|
1255
|
+
</li>
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
|
|
1238
1266
|
<li class="md-nav__item">
|
|
1239
1267
|
<a href="../upgrading/upgrading.html" class="md-nav__link">
|
|
1240
1268
|
|
|
@@ -1275,7 +1303,7 @@
|
|
|
1275
1303
|
|
|
1276
1304
|
|
|
1277
1305
|
|
|
1278
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1306
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
|
|
1279
1307
|
|
|
1280
1308
|
|
|
1281
1309
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1297,14 +1325,14 @@
|
|
|
1297
1325
|
</a>
|
|
1298
1326
|
|
|
1299
1327
|
|
|
1300
|
-
<label class="md-nav__link " for="
|
|
1328
|
+
<label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
|
|
1301
1329
|
<span class="md-nav__icon md-icon"></span>
|
|
1302
1330
|
</label>
|
|
1303
1331
|
|
|
1304
1332
|
</div>
|
|
1305
1333
|
|
|
1306
|
-
<nav class="md-nav" data-md-level="4" aria-labelledby="
|
|
1307
|
-
<label class="md-nav__title" for="
|
|
1334
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
|
|
1335
|
+
<label class="md-nav__title" for="__nav_2_1_2_4">
|
|
1308
1336
|
<span class="md-nav__icon md-icon"></span>
|
|
1309
1337
|
|
|
1310
1338
|
|
|
@@ -1360,7 +1388,7 @@
|
|
|
1360
1388
|
|
|
1361
1389
|
|
|
1362
1390
|
|
|
1363
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1391
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
|
|
1364
1392
|
|
|
1365
1393
|
|
|
1366
1394
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1382,14 +1410,14 @@
|
|
|
1382
1410
|
</a>
|
|
1383
1411
|
|
|
1384
1412
|
|
|
1385
|
-
<label class="md-nav__link " for="
|
|
1413
|
+
<label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
|
|
1386
1414
|
<span class="md-nav__icon md-icon"></span>
|
|
1387
1415
|
</label>
|
|
1388
1416
|
|
|
1389
1417
|
</div>
|
|
1390
1418
|
|
|
1391
|
-
<nav class="md-nav" data-md-level="5" aria-labelledby="
|
|
1392
|
-
<label class="md-nav__title" for="
|
|
1419
|
+
<nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
|
|
1420
|
+
<label class="md-nav__title" for="__nav_2_1_2_4_2">
|
|
1393
1421
|
<span class="md-nav__icon md-icon"></span>
|
|
1394
1422
|
|
|
1395
1423
|
|
|
@@ -9179,6 +9207,34 @@
|
|
|
9179
9207
|
|
|
9180
9208
|
|
|
9181
9209
|
|
|
9210
|
+
|
|
9211
|
+
|
|
9212
|
+
|
|
9213
|
+
|
|
9214
|
+
|
|
9215
|
+
|
|
9216
|
+
<li class="md-nav__item">
|
|
9217
|
+
<a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
|
|
9218
|
+
|
|
9219
|
+
|
|
9220
|
+
|
|
9221
|
+
<span class="md-ellipsis">
|
|
9222
|
+
|
|
9223
|
+
|
|
9224
|
+
QuerySet
|
|
9225
|
+
|
|
9226
|
+
|
|
9227
|
+
|
|
9228
|
+
</span>
|
|
9229
|
+
|
|
9230
|
+
|
|
9231
|
+
|
|
9232
|
+
</a>
|
|
9233
|
+
</li>
|
|
9234
|
+
|
|
9235
|
+
|
|
9236
|
+
|
|
9237
|
+
|
|
9182
9238
|
</ul>
|
|
9183
9239
|
</nav>
|
|
9184
9240
|
|
|
@@ -1242,6 +1242,34 @@
|
|
|
1242
1242
|
|
|
1243
1243
|
|
|
1244
1244
|
|
|
1245
|
+
<li class="md-nav__item">
|
|
1246
|
+
<a href="../upgrading/postgresql.html" class="md-nav__link">
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
<span class="md-ellipsis">
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
Upgrading PostgreSQL
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
</span>
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
</a>
|
|
1262
|
+
</li>
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
|
|
1245
1273
|
<li class="md-nav__item">
|
|
1246
1274
|
<a href="../upgrading/upgrading.html" class="md-nav__link">
|
|
1247
1275
|
|
|
@@ -1282,7 +1310,7 @@
|
|
|
1282
1310
|
|
|
1283
1311
|
|
|
1284
1312
|
|
|
1285
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1313
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
|
|
1286
1314
|
|
|
1287
1315
|
|
|
1288
1316
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1304,14 +1332,14 @@
|
|
|
1304
1332
|
</a>
|
|
1305
1333
|
|
|
1306
1334
|
|
|
1307
|
-
<label class="md-nav__link " for="
|
|
1335
|
+
<label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
|
|
1308
1336
|
<span class="md-nav__icon md-icon"></span>
|
|
1309
1337
|
</label>
|
|
1310
1338
|
|
|
1311
1339
|
</div>
|
|
1312
1340
|
|
|
1313
|
-
<nav class="md-nav" data-md-level="4" aria-labelledby="
|
|
1314
|
-
<label class="md-nav__title" for="
|
|
1341
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
|
|
1342
|
+
<label class="md-nav__title" for="__nav_2_1_2_4">
|
|
1315
1343
|
<span class="md-nav__icon md-icon"></span>
|
|
1316
1344
|
|
|
1317
1345
|
|
|
@@ -1367,7 +1395,7 @@
|
|
|
1367
1395
|
|
|
1368
1396
|
|
|
1369
1397
|
|
|
1370
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1398
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
|
|
1371
1399
|
|
|
1372
1400
|
|
|
1373
1401
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1389,14 +1417,14 @@
|
|
|
1389
1417
|
</a>
|
|
1390
1418
|
|
|
1391
1419
|
|
|
1392
|
-
<label class="md-nav__link " for="
|
|
1420
|
+
<label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
|
|
1393
1421
|
<span class="md-nav__icon md-icon"></span>
|
|
1394
1422
|
</label>
|
|
1395
1423
|
|
|
1396
1424
|
</div>
|
|
1397
1425
|
|
|
1398
|
-
<nav class="md-nav" data-md-level="5" aria-labelledby="
|
|
1399
|
-
<label class="md-nav__title" for="
|
|
1426
|
+
<nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
|
|
1427
|
+
<label class="md-nav__title" for="__nav_2_1_2_4_2">
|
|
1400
1428
|
<span class="md-nav__icon md-icon"></span>
|
|
1401
1429
|
|
|
1402
1430
|
|
|
@@ -9186,6 +9214,34 @@
|
|
|
9186
9214
|
|
|
9187
9215
|
|
|
9188
9216
|
|
|
9217
|
+
|
|
9218
|
+
|
|
9219
|
+
|
|
9220
|
+
|
|
9221
|
+
|
|
9222
|
+
|
|
9223
|
+
<li class="md-nav__item">
|
|
9224
|
+
<a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
|
|
9225
|
+
|
|
9226
|
+
|
|
9227
|
+
|
|
9228
|
+
<span class="md-ellipsis">
|
|
9229
|
+
|
|
9230
|
+
|
|
9231
|
+
QuerySet
|
|
9232
|
+
|
|
9233
|
+
|
|
9234
|
+
|
|
9235
|
+
</span>
|
|
9236
|
+
|
|
9237
|
+
|
|
9238
|
+
|
|
9239
|
+
</a>
|
|
9240
|
+
</li>
|
|
9241
|
+
|
|
9242
|
+
|
|
9243
|
+
|
|
9244
|
+
|
|
9189
9245
|
</ul>
|
|
9190
9246
|
</nav>
|
|
9191
9247
|
|
|
@@ -976,6 +976,34 @@
|
|
|
976
976
|
|
|
977
977
|
|
|
978
978
|
|
|
979
|
+
<li class="md-nav__item">
|
|
980
|
+
<a href="../upgrading/postgresql.html" class="md-nav__link">
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
<span class="md-ellipsis">
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
Upgrading PostgreSQL
|
|
988
|
+
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
</span>
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
</a>
|
|
996
|
+
</li>
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
|
|
979
1007
|
<li class="md-nav__item">
|
|
980
1008
|
<a href="../upgrading/upgrading.html" class="md-nav__link">
|
|
981
1009
|
|
|
@@ -1016,7 +1044,7 @@
|
|
|
1016
1044
|
|
|
1017
1045
|
|
|
1018
1046
|
|
|
1019
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1047
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
|
|
1020
1048
|
|
|
1021
1049
|
|
|
1022
1050
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1038,14 +1066,14 @@
|
|
|
1038
1066
|
</a>
|
|
1039
1067
|
|
|
1040
1068
|
|
|
1041
|
-
<label class="md-nav__link " for="
|
|
1069
|
+
<label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
|
|
1042
1070
|
<span class="md-nav__icon md-icon"></span>
|
|
1043
1071
|
</label>
|
|
1044
1072
|
|
|
1045
1073
|
</div>
|
|
1046
1074
|
|
|
1047
|
-
<nav class="md-nav" data-md-level="4" aria-labelledby="
|
|
1048
|
-
<label class="md-nav__title" for="
|
|
1075
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
|
|
1076
|
+
<label class="md-nav__title" for="__nav_2_1_2_4">
|
|
1049
1077
|
<span class="md-nav__icon md-icon"></span>
|
|
1050
1078
|
|
|
1051
1079
|
|
|
@@ -1101,7 +1129,7 @@
|
|
|
1101
1129
|
|
|
1102
1130
|
|
|
1103
1131
|
|
|
1104
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1132
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
|
|
1105
1133
|
|
|
1106
1134
|
|
|
1107
1135
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1123,14 +1151,14 @@
|
|
|
1123
1151
|
</a>
|
|
1124
1152
|
|
|
1125
1153
|
|
|
1126
|
-
<label class="md-nav__link " for="
|
|
1154
|
+
<label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
|
|
1127
1155
|
<span class="md-nav__icon md-icon"></span>
|
|
1128
1156
|
</label>
|
|
1129
1157
|
|
|
1130
1158
|
</div>
|
|
1131
1159
|
|
|
1132
|
-
<nav class="md-nav" data-md-level="5" aria-labelledby="
|
|
1133
|
-
<label class="md-nav__title" for="
|
|
1160
|
+
<nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
|
|
1161
|
+
<label class="md-nav__title" for="__nav_2_1_2_4_2">
|
|
1134
1162
|
<span class="md-nav__icon md-icon"></span>
|
|
1135
1163
|
|
|
1136
1164
|
|
|
@@ -9391,6 +9419,34 @@
|
|
|
9391
9419
|
|
|
9392
9420
|
|
|
9393
9421
|
|
|
9422
|
+
|
|
9423
|
+
|
|
9424
|
+
|
|
9425
|
+
|
|
9426
|
+
|
|
9427
|
+
|
|
9428
|
+
<li class="md-nav__item">
|
|
9429
|
+
<a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
|
|
9430
|
+
|
|
9431
|
+
|
|
9432
|
+
|
|
9433
|
+
<span class="md-ellipsis">
|
|
9434
|
+
|
|
9435
|
+
|
|
9436
|
+
QuerySet
|
|
9437
|
+
|
|
9438
|
+
|
|
9439
|
+
|
|
9440
|
+
</span>
|
|
9441
|
+
|
|
9442
|
+
|
|
9443
|
+
|
|
9444
|
+
</a>
|
|
9445
|
+
</li>
|
|
9446
|
+
|
|
9447
|
+
|
|
9448
|
+
|
|
9449
|
+
|
|
9394
9450
|
</ul>
|
|
9395
9451
|
</nav>
|
|
9396
9452
|
|
|
@@ -14020,7 +14076,7 @@
|
|
|
14020
14076
|
<h3 id="ipam-network-field-types">IPAM Network Field Types<a class="headerlink" href="#ipam-network-field-types" title="Permanent link">¶</a></h3>
|
|
14021
14077
|
<div class="admonition tip">
|
|
14022
14078
|
<p class="admonition-title">Tip</p>
|
|
14023
|
-
<p>Nautobot 1.2 and later supports most of the same filter-based network membership queries as NetBox. See <a href="#membership-lookups">below</a> and the <a href="../../platform-functionality/rest-api/filtering.html#
|
|
14079
|
+
<p>Nautobot 1.2 and later supports most of the same filter-based network membership queries as NetBox. See <a href="#membership-lookups">below</a> and the <a href="../../platform-functionality/rest-api/filtering.html#ipam-custom-filters">filtering documentation</a> for more details. (Prior to Nautobot 1.2, IPAM network objects only supported model-manager-based methods for network membership filtering.)</p>
|
|
14024
14080
|
</div>
|
|
14025
14081
|
<p>All IPAM objects with network field types (<code>ipam.IPAddress</code>, and <code>ipam.Prefix</code>) are no longer hard-coded to use PostgreSQL-only <code>inet</code> or <code>cidr</code> field types and are now using a custom implementation leveraging SQL-standard <code>varbinary</code> field types.</p>
|
|
14026
14082
|
<h4 id="technical-details">Technical Details<a class="headerlink" href="#technical-details" title="Permanent link">¶</a></h4>
|
nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html
CHANGED
|
@@ -976,6 +976,34 @@
|
|
|
976
976
|
|
|
977
977
|
|
|
978
978
|
|
|
979
|
+
<li class="md-nav__item">
|
|
980
|
+
<a href="../upgrading/postgresql.html" class="md-nav__link">
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
<span class="md-ellipsis">
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
Upgrading PostgreSQL
|
|
988
|
+
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
</span>
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
</a>
|
|
996
|
+
</li>
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
|
|
979
1007
|
<li class="md-nav__item">
|
|
980
1008
|
<a href="../upgrading/upgrading.html" class="md-nav__link">
|
|
981
1009
|
|
|
@@ -1016,7 +1044,7 @@
|
|
|
1016
1044
|
|
|
1017
1045
|
|
|
1018
1046
|
|
|
1019
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1047
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
|
|
1020
1048
|
|
|
1021
1049
|
|
|
1022
1050
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1038,14 +1066,14 @@
|
|
|
1038
1066
|
</a>
|
|
1039
1067
|
|
|
1040
1068
|
|
|
1041
|
-
<label class="md-nav__link " for="
|
|
1069
|
+
<label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
|
|
1042
1070
|
<span class="md-nav__icon md-icon"></span>
|
|
1043
1071
|
</label>
|
|
1044
1072
|
|
|
1045
1073
|
</div>
|
|
1046
1074
|
|
|
1047
|
-
<nav class="md-nav" data-md-level="4" aria-labelledby="
|
|
1048
|
-
<label class="md-nav__title" for="
|
|
1075
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
|
|
1076
|
+
<label class="md-nav__title" for="__nav_2_1_2_4">
|
|
1049
1077
|
<span class="md-nav__icon md-icon"></span>
|
|
1050
1078
|
|
|
1051
1079
|
|
|
@@ -1101,7 +1129,7 @@
|
|
|
1101
1129
|
|
|
1102
1130
|
|
|
1103
1131
|
|
|
1104
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
1132
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
|
|
1105
1133
|
|
|
1106
1134
|
|
|
1107
1135
|
<div class="md-nav__link md-nav__container">
|
|
@@ -1123,14 +1151,14 @@
|
|
|
1123
1151
|
</a>
|
|
1124
1152
|
|
|
1125
1153
|
|
|
1126
|
-
<label class="md-nav__link " for="
|
|
1154
|
+
<label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
|
|
1127
1155
|
<span class="md-nav__icon md-icon"></span>
|
|
1128
1156
|
</label>
|
|
1129
1157
|
|
|
1130
1158
|
</div>
|
|
1131
1159
|
|
|
1132
|
-
<nav class="md-nav" data-md-level="5" aria-labelledby="
|
|
1133
|
-
<label class="md-nav__title" for="
|
|
1160
|
+
<nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
|
|
1161
|
+
<label class="md-nav__title" for="__nav_2_1_2_4_2">
|
|
1134
1162
|
<span class="md-nav__icon md-icon"></span>
|
|
1135
1163
|
|
|
1136
1164
|
|
|
@@ -9052,6 +9080,34 @@
|
|
|
9052
9080
|
|
|
9053
9081
|
|
|
9054
9082
|
|
|
9083
|
+
|
|
9084
|
+
|
|
9085
|
+
|
|
9086
|
+
|
|
9087
|
+
|
|
9088
|
+
|
|
9089
|
+
<li class="md-nav__item">
|
|
9090
|
+
<a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
|
|
9091
|
+
|
|
9092
|
+
|
|
9093
|
+
|
|
9094
|
+
<span class="md-ellipsis">
|
|
9095
|
+
|
|
9096
|
+
|
|
9097
|
+
QuerySet
|
|
9098
|
+
|
|
9099
|
+
|
|
9100
|
+
|
|
9101
|
+
</span>
|
|
9102
|
+
|
|
9103
|
+
|
|
9104
|
+
|
|
9105
|
+
</a>
|
|
9106
|
+
</li>
|
|
9107
|
+
|
|
9108
|
+
|
|
9109
|
+
|
|
9110
|
+
|
|
9055
9111
|
</ul>
|
|
9056
9112
|
</nav>
|
|
9057
9113
|
|