nautobot 2.1.7__py3-none-any.whl → 2.1.9__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/apps/api.py +1 -2
- nautobot/apps/utils.py +4 -0
- nautobot/apps/views.py +2 -0
- nautobot/circuits/api/urls.py +1 -2
- nautobot/circuits/api/views.py +0 -12
- nautobot/circuits/tests/integration/test_relationships.py +0 -4
- nautobot/core/api/routers.py +25 -3
- nautobot/core/api/utils.py +4 -0
- nautobot/core/api/views.py +21 -15
- nautobot/core/celery/schedulers.py +13 -0
- nautobot/core/choices.py +0 -21
- nautobot/core/models/__init__.py +1 -1
- nautobot/core/models/tree_queries.py +29 -7
- nautobot/core/releases.py +1 -1
- nautobot/core/settings.py +9 -0
- nautobot/core/settings_funcs.py +0 -18
- nautobot/core/signals.py +5 -5
- nautobot/core/tasks.py +7 -3
- nautobot/core/templates/admin/base.html +23 -94
- nautobot/core/templates/generic/object_list.html +2 -0
- nautobot/core/templates/graphene/graphiql.html +18 -47
- nautobot/core/templates/inc/footer.html +5 -5
- nautobot/core/templates/inc/nav_menu.html +0 -7
- nautobot/core/templates/nautobot_config.py.j2 +6 -0
- nautobot/core/templates/rest_framework/api.html +12 -5
- nautobot/core/testing/mixins.py +13 -5
- nautobot/core/tests/integration/test_plugin_navbar.py +7 -21
- nautobot/core/tests/integration/test_view_authentication.py +67 -0
- nautobot/core/tests/runner.py +25 -2
- nautobot/core/tests/test_graphql.py +2 -14
- nautobot/core/tests/test_models.py +3 -3
- nautobot/core/tests/test_navigations.py +67 -10
- nautobot/core/tests/test_releases.py +9 -3
- nautobot/core/tests/test_views.py +23 -16
- nautobot/core/utils/lookup.py +124 -0
- nautobot/core/views/__init__.py +3 -7
- nautobot/core/views/generic.py +9 -0
- nautobot/dcim/api/urls.py +1 -2
- nautobot/dcim/api/views.py +1 -12
- nautobot/dcim/choices.py +56 -0
- nautobot/dcim/models/racks.py +1 -3
- nautobot/dcim/navigation.py +1 -1
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +67 -43
- nautobot/dcim/tests/test_api.py +3 -0
- nautobot/dcim/tests/test_filters.py +0 -28
- nautobot/dcim/views.py +5 -2
- nautobot/extras/api/urls.py +1 -2
- nautobot/extras/api/views.py +0 -10
- nautobot/extras/choices.py +14 -0
- nautobot/extras/models/customfields.py +93 -34
- nautobot/extras/models/groups.py +1 -1
- nautobot/extras/models/relationships.py +32 -19
- nautobot/extras/navigation.py +3 -2
- nautobot/extras/plugins/__init__.py +8 -0
- nautobot/extras/plugins/views.py +6 -9
- nautobot/extras/querysets.py +1 -1
- nautobot/extras/signals.py +12 -6
- nautobot/extras/templates/extras/customfield.html +22 -14
- nautobot/extras/templatetags/job_buttons.py +7 -0
- nautobot/extras/templatetags/plugins.py +5 -1
- nautobot/extras/tests/test_customfields.py +323 -287
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_jobs.py +2 -2
- nautobot/extras/tests/test_plugins.py +41 -0
- nautobot/extras/tests/test_relationships.py +31 -14
- nautobot/extras/tests/test_views.py +124 -1
- nautobot/extras/utils.py +7 -3
- nautobot/extras/views.py +10 -10
- nautobot/ipam/api/urls.py +1 -2
- nautobot/ipam/api/views.py +6 -13
- nautobot/ipam/tables.py +0 -1
- nautobot/ipam/tests/test_graphql.py +2 -3
- nautobot/ipam/views.py +12 -10
- nautobot/project-static/css/base.css +1 -0
- nautobot/project-static/docs/404.html +30 -2
- nautobot/project-static/docs/apps/index.html +30 -2
- nautobot/project-static/docs/apps/nautobot-apps.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +410 -410
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +386 -358
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +759 -602
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +528 -467
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +205 -109
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +1265 -785
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1827 -1746
- nautobot/project-static/docs/development/apps/api/configuration-view.html +30 -2
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/global-search.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/graphql.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +31 -3
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +30 -2
- nautobot/project-static/docs/development/apps/api/prometheus.html +30 -2
- nautobot/project-static/docs/development/apps/api/setup.html +30 -2
- nautobot/project-static/docs/development/apps/api/testing.html +33 -5
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +30 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +30 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +33 -5
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +13 -5559
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +5594 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/base-template.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +44 -11
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +47 -14
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/notes.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/urls.html +30 -2
- nautobot/project-static/docs/development/apps/index.html +30 -2
- nautobot/project-static/docs/development/apps/migration/code-updates.html +30 -2
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +30 -2
- nautobot/project-static/docs/development/apps/migration/from-v1.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +30 -2
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +30 -2
- nautobot/project-static/docs/development/core/application-registry.html +30 -2
- nautobot/project-static/docs/development/core/best-practices.html +33 -5
- nautobot/project-static/docs/development/core/bootstrap-ui.html +30 -2
- nautobot/project-static/docs/development/core/caching.html +5481 -0
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +30 -2
- nautobot/project-static/docs/development/core/extending-models.html +33 -5
- nautobot/project-static/docs/development/core/generic-views.html +30 -2
- nautobot/project-static/docs/development/core/getting-started.html +49 -12
- nautobot/project-static/docs/development/core/homepage.html +30 -2
- nautobot/project-static/docs/development/core/index.html +30 -2
- nautobot/project-static/docs/development/core/model-features.html +30 -2
- nautobot/project-static/docs/development/core/natural-keys.html +30 -2
- nautobot/project-static/docs/development/core/navigation-menu.html +30 -2
- nautobot/project-static/docs/development/core/release-checklist.html +30 -2
- nautobot/project-static/docs/development/core/role-internals.html +30 -2
- nautobot/project-static/docs/development/core/style-guide.html +30 -2
- nautobot/project-static/docs/development/core/templates.html +30 -2
- nautobot/project-static/docs/development/core/testing.html +30 -2
- nautobot/project-static/docs/development/core/user-preferences.html +30 -2
- nautobot/project-static/docs/development/index.html +30 -2
- nautobot/project-static/docs/development/jobs/index.html +30 -2
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +30 -2
- nautobot/project-static/docs/index.html +30 -2
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.0.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.1.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.3.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.4.html +31 -3
- nautobot/project-static/docs/release-notes/version-1.5.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.6.html +573 -134
- nautobot/project-static/docs/release-notes/version-2.0.html +30 -2
- nautobot/project-static/docs/release-notes/version-2.1.html +539 -170
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +250 -240
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +49 -2
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +37 -5
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +6019 -0
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/index.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +33 -5
- nautobot/project-static/docs/user-guide/administration/installation/services.html +30 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +30 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +30 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +30 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +33 -5
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +30 -2
- nautobot/project-static/docs/user-guide/index.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +111 -15
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +30 -2
- nautobot/tenancy/api/urls.py +1 -2
- nautobot/tenancy/api/views.py +0 -12
- nautobot/tenancy/navigation.py +1 -1
- nautobot/tenancy/tests/test_filters.py +0 -168
- nautobot/users/api/urls.py +1 -2
- nautobot/users/api/views.py +2 -65
- nautobot/users/views.py +8 -8
- nautobot/virtualization/api/urls.py +1 -2
- nautobot/virtualization/api/views.py +0 -12
- nautobot/virtualization/tests/test_filters.py +0 -28
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/METADATA +2 -2
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/RECORD +338 -334
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/NOTICE +0 -0
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/WHEEL +0 -0
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/entry_points.txt +0 -0
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -3886,8 +3900,8 @@
|
|
|
3886
3900
|
|
|
3887
3901
|
|
|
3888
3902
|
<li class="md-nav__item">
|
|
3889
|
-
<a href="../development/apps/api/ui-extensions/object-
|
|
3890
|
-
Object Detail
|
|
3903
|
+
<a href="../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3904
|
+
Object Detail & List Views
|
|
3891
3905
|
</a>
|
|
3892
3906
|
</li>
|
|
3893
3907
|
|
|
@@ -4586,6 +4600,20 @@
|
|
|
4586
4600
|
|
|
4587
4601
|
|
|
4588
4602
|
|
|
4603
|
+
<li class="md-nav__item">
|
|
4604
|
+
<a href="../development/core/caching.html" class="md-nav__link">
|
|
4605
|
+
Caching
|
|
4606
|
+
</a>
|
|
4607
|
+
</li>
|
|
4608
|
+
|
|
4609
|
+
|
|
4610
|
+
|
|
4611
|
+
|
|
4612
|
+
|
|
4613
|
+
|
|
4614
|
+
|
|
4615
|
+
|
|
4616
|
+
|
|
4589
4617
|
<li class="md-nav__item">
|
|
4590
4618
|
<a href="../development/core/extending-models.html" class="md-nav__link">
|
|
4591
4619
|
Extending Models
|
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="../administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="../administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -3936,8 +3950,8 @@
|
|
|
3936
3950
|
|
|
3937
3951
|
|
|
3938
3952
|
<li class="md-nav__item">
|
|
3939
|
-
<a href="../../development/apps/api/ui-extensions/object-
|
|
3940
|
-
Object Detail
|
|
3953
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3954
|
+
Object Detail & List Views
|
|
3941
3955
|
</a>
|
|
3942
3956
|
</li>
|
|
3943
3957
|
|
|
@@ -4636,6 +4650,20 @@
|
|
|
4636
4650
|
|
|
4637
4651
|
|
|
4638
4652
|
|
|
4653
|
+
<li class="md-nav__item">
|
|
4654
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
4655
|
+
Caching
|
|
4656
|
+
</a>
|
|
4657
|
+
</li>
|
|
4658
|
+
|
|
4659
|
+
|
|
4660
|
+
|
|
4661
|
+
|
|
4662
|
+
|
|
4663
|
+
|
|
4664
|
+
|
|
4665
|
+
|
|
4666
|
+
|
|
4639
4667
|
<li class="md-nav__item">
|
|
4640
4668
|
<a href="../../development/core/extending-models.html" class="md-nav__link">
|
|
4641
4669
|
Extending Models
|
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="../administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="../administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -3950,8 +3964,8 @@
|
|
|
3950
3964
|
|
|
3951
3965
|
|
|
3952
3966
|
<li class="md-nav__item">
|
|
3953
|
-
<a href="../../development/apps/api/ui-extensions/object-
|
|
3954
|
-
Object Detail
|
|
3967
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3968
|
+
Object Detail & List Views
|
|
3955
3969
|
</a>
|
|
3956
3970
|
</li>
|
|
3957
3971
|
|
|
@@ -4650,6 +4664,20 @@
|
|
|
4650
4664
|
|
|
4651
4665
|
|
|
4652
4666
|
|
|
4667
|
+
<li class="md-nav__item">
|
|
4668
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
4669
|
+
Caching
|
|
4670
|
+
</a>
|
|
4671
|
+
</li>
|
|
4672
|
+
|
|
4673
|
+
|
|
4674
|
+
|
|
4675
|
+
|
|
4676
|
+
|
|
4677
|
+
|
|
4678
|
+
|
|
4679
|
+
|
|
4680
|
+
|
|
4653
4681
|
<li class="md-nav__item">
|
|
4654
4682
|
<a href="../../development/core/extending-models.html" class="md-nav__link">
|
|
4655
4683
|
Extending Models
|
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="../administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="../administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -3970,8 +3984,8 @@
|
|
|
3970
3984
|
|
|
3971
3985
|
|
|
3972
3986
|
<li class="md-nav__item">
|
|
3973
|
-
<a href="../../development/apps/api/ui-extensions/object-
|
|
3974
|
-
Object Detail
|
|
3987
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3988
|
+
Object Detail & List Views
|
|
3975
3989
|
</a>
|
|
3976
3990
|
</li>
|
|
3977
3991
|
|
|
@@ -4670,6 +4684,20 @@
|
|
|
4670
4684
|
|
|
4671
4685
|
|
|
4672
4686
|
|
|
4687
|
+
<li class="md-nav__item">
|
|
4688
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
4689
|
+
Caching
|
|
4690
|
+
</a>
|
|
4691
|
+
</li>
|
|
4692
|
+
|
|
4693
|
+
|
|
4694
|
+
|
|
4695
|
+
|
|
4696
|
+
|
|
4697
|
+
|
|
4698
|
+
|
|
4699
|
+
|
|
4700
|
+
|
|
4673
4701
|
<li class="md-nav__item">
|
|
4674
4702
|
<a href="../../development/core/extending-models.html" class="md-nav__link">
|
|
4675
4703
|
Extending Models
|
|
@@ -5343,12 +5371,13 @@
|
|
|
5343
5371
|
<p>Custom fields can be created through the UI under <strong>Extensibility > Miscellaneous > Custom Fields</strong> or through the REST API.</p>
|
|
5344
5372
|
<p>Nautobot supports these custom field types:</p>
|
|
5345
5373
|
<ul>
|
|
5346
|
-
<li>Text: Free-form text
|
|
5374
|
+
<li>Text: Free-form text</li>
|
|
5347
5375
|
<li>Integer: A whole number (positive or negative)</li>
|
|
5348
5376
|
<li>Boolean: True or false</li>
|
|
5349
5377
|
<li>Date: A date in ISO 8601 format (YYYY-MM-DD)</li>
|
|
5350
5378
|
<li>URL: This will be presented as a link in the web UI</li>
|
|
5351
5379
|
<li>JSON: Arbitrary JSON data</li>
|
|
5380
|
+
<li>Markdown: Free-form text that will be rendered from Markdown in the web UI.</li>
|
|
5352
5381
|
<li>Selection: A selection of one of several pre-defined custom choices</li>
|
|
5353
5382
|
<li>Multiple selection: A selection field which supports the assignment of multiple values</li>
|
|
5354
5383
|
</ul>
|
|
@@ -5356,6 +5385,14 @@
|
|
|
5356
5385
|
<p class="admonition-title">Added in version 1.3.0</p>
|
|
5357
5386
|
<p>Support for JSON-type custom fields was added.</p>
|
|
5358
5387
|
</div>
|
|
5388
|
+
<div class="admonition version-added">
|
|
5389
|
+
<p class="admonition-title">Added in version 1.6.0</p>
|
|
5390
|
+
<p>Support for Markdown-type custom fields was added.</p>
|
|
5391
|
+
</div>
|
|
5392
|
+
<div class="admonition version-changed">
|
|
5393
|
+
<p class="admonition-title">Changed in version 2.1.8</p>
|
|
5394
|
+
<p>Prior to this release, text-type custom fields were always limited to a maximum of 255 characters. In this and later releases, text-type custom fields have no intrinsic length limit unless one is <a href="#custom-field-validation">explicitly defined</a>.</p>
|
|
5395
|
+
</div>
|
|
5359
5396
|
<p>Each custom field must have a key; this should be a simple database-friendly string, e.g. <code>tps_report</code>. You may also assign a corresponding human-friendly label (e.g. "TPS report"); the label will be displayed on web forms. A weight is also required: Higher-weight fields will be ordered lower within a form. (The default weight is 100.) If a description is provided, it will appear beneath the field in a form.</p>
|
|
5360
5397
|
<div class="admonition version-changed">
|
|
5361
5398
|
<p class="admonition-title">Changed in version 1.4.0</p>
|
|
@@ -5379,20 +5416,79 @@
|
|
|
5379
5416
|
<p>A custom field must be assigned to one or more object types, or models, in Nautobot. Once created, custom fields will automatically appear as part of these models in the web UI and REST API.</p>
|
|
5380
5417
|
<p>When creating a custom field, if "Move to Advanced tab" is checked, this custom field won't appear on the object's main detail tab in the UI, but will appear in the "Advanced" tab. This is useful when the requirement is to hide this field from the main detail tab when, for instance, it is only required for machine-to-machine communication and not user consumption.</p>
|
|
5381
5418
|
<h3 id="custom-field-validation">Custom Field Validation<a class="headerlink" href="#custom-field-validation" title="Permanent link">¶</a></h3>
|
|
5382
|
-
<p>Nautobot supports limited custom validation for custom field values. Following are the types of validation enforced for each field type:</p>
|
|
5383
|
-
<
|
|
5384
|
-
<
|
|
5385
|
-
<
|
|
5386
|
-
<
|
|
5387
|
-
<
|
|
5388
|
-
<
|
|
5389
|
-
<
|
|
5390
|
-
</
|
|
5391
|
-
</
|
|
5392
|
-
</
|
|
5419
|
+
<p>Nautobot supports limited custom validation for custom field values. Following are the types of validation that can be enforced for each field type:</p>
|
|
5420
|
+
<table>
|
|
5421
|
+
<thead>
|
|
5422
|
+
<tr>
|
|
5423
|
+
<th>Field Type</th>
|
|
5424
|
+
<th>Minimum</th>
|
|
5425
|
+
<th>Maximum</th>
|
|
5426
|
+
<th>Regex</th>
|
|
5427
|
+
<th>Notes</th>
|
|
5428
|
+
</tr>
|
|
5429
|
+
</thead>
|
|
5430
|
+
<tbody>
|
|
5431
|
+
<tr>
|
|
5432
|
+
<td>Text</td>
|
|
5433
|
+
<td>✅ (length)</td>
|
|
5434
|
+
<td>✅ (length)</td>
|
|
5435
|
+
<td>✅</td>
|
|
5436
|
+
<td></td>
|
|
5437
|
+
</tr>
|
|
5438
|
+
<tr>
|
|
5439
|
+
<td>Integer</td>
|
|
5440
|
+
<td>✅ (value)</td>
|
|
5441
|
+
<td>✅ (value)</td>
|
|
5442
|
+
<td>❌</td>
|
|
5443
|
+
<td></td>
|
|
5444
|
+
</tr>
|
|
5445
|
+
<tr>
|
|
5446
|
+
<td>Boolean</td>
|
|
5447
|
+
<td>❌</td>
|
|
5448
|
+
<td>❌</td>
|
|
5449
|
+
<td>❌</td>
|
|
5450
|
+
<td></td>
|
|
5451
|
+
</tr>
|
|
5452
|
+
<tr>
|
|
5453
|
+
<td>URL</td>
|
|
5454
|
+
<td>✅ (length)</td>
|
|
5455
|
+
<td>✅ (length)</td>
|
|
5456
|
+
<td>✅</td>
|
|
5457
|
+
<td></td>
|
|
5458
|
+
</tr>
|
|
5459
|
+
<tr>
|
|
5460
|
+
<td>Markdown</td>
|
|
5461
|
+
<td>✅ (length)</td>
|
|
5462
|
+
<td>✅ (length)</td>
|
|
5463
|
+
<td>✅</td>
|
|
5464
|
+
<td></td>
|
|
5465
|
+
</tr>
|
|
5466
|
+
<tr>
|
|
5467
|
+
<td>JSON</td>
|
|
5468
|
+
<td>✅ (length)</td>
|
|
5469
|
+
<td>✅ (length)</td>
|
|
5470
|
+
<td>✅</td>
|
|
5471
|
+
<td>Must be valid JSON; validators apply to string representation</td>
|
|
5472
|
+
</tr>
|
|
5473
|
+
<tr>
|
|
5474
|
+
<td>Select</td>
|
|
5475
|
+
<td>✅ (length)</td>
|
|
5476
|
+
<td>✅ (length)</td>
|
|
5477
|
+
<td>✅</td>
|
|
5478
|
+
<td>Must match defined choice; validators apply to defining choices</td>
|
|
5479
|
+
</tr>
|
|
5480
|
+
<tr>
|
|
5481
|
+
<td>Multi-select</td>
|
|
5482
|
+
<td>✅ (length)</td>
|
|
5483
|
+
<td>✅ (length)</td>
|
|
5484
|
+
<td>✅</td>
|
|
5485
|
+
<td>Must match defined choice(s); validators apply to defining choices</td>
|
|
5486
|
+
</tr>
|
|
5487
|
+
</tbody>
|
|
5488
|
+
</table>
|
|
5393
5489
|
<h3 id="custom-selection-fields">Custom Selection Fields<a class="headerlink" href="#custom-selection-fields" title="Permanent link">¶</a></h3>
|
|
5394
5490
|
<p>Choices are stored as independent values and are assigned a numeric weight which affects their ordering in selection lists and dropdowns. Note that choice values are saved exactly as they appear, so it's best to avoid superfluous punctuation or symbols where possible.</p>
|
|
5395
|
-
<p>A regular expression can optionally be defined on custom selection choices to validate the defined field choices in the user interface and the API.</p>
|
|
5491
|
+
<p>A regular expression can optionally be defined on custom selection choices to validate the defined field choices in the user interface and the API. Similarly, minimum and maximum lengths may be defined to validate defined field choices.</p>
|
|
5396
5492
|
<p>If a default value is specified for a selection field, it must exactly match one of the provided choices. Note that the default value can only be set on the custom field after its corresponding choice has been added.</p>
|
|
5397
5493
|
<p>The value of a multiple selection field will always return a list, even if only one value is selected.</p>
|
|
5398
5494
|
<h3 id="filtering-on-custom-fields">Filtering on Custom Fields<a class="headerlink" href="#filtering-on-custom-fields" title="Permanent link">¶</a></h3>
|
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="../administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="../administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -3943,8 +3957,8 @@
|
|
|
3943
3957
|
|
|
3944
3958
|
|
|
3945
3959
|
<li class="md-nav__item">
|
|
3946
|
-
<a href="../../development/apps/api/ui-extensions/object-
|
|
3947
|
-
Object Detail
|
|
3960
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3961
|
+
Object Detail & List Views
|
|
3948
3962
|
</a>
|
|
3949
3963
|
</li>
|
|
3950
3964
|
|
|
@@ -4643,6 +4657,20 @@
|
|
|
4643
4657
|
|
|
4644
4658
|
|
|
4645
4659
|
|
|
4660
|
+
<li class="md-nav__item">
|
|
4661
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
4662
|
+
Caching
|
|
4663
|
+
</a>
|
|
4664
|
+
</li>
|
|
4665
|
+
|
|
4666
|
+
|
|
4667
|
+
|
|
4668
|
+
|
|
4669
|
+
|
|
4670
|
+
|
|
4671
|
+
|
|
4672
|
+
|
|
4673
|
+
|
|
4646
4674
|
<li class="md-nav__item">
|
|
4647
4675
|
<a href="../../development/core/extending-models.html" class="md-nav__link">
|
|
4648
4676
|
Extending Models
|
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="../administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="../administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -4178,8 +4192,8 @@
|
|
|
4178
4192
|
|
|
4179
4193
|
|
|
4180
4194
|
<li class="md-nav__item">
|
|
4181
|
-
<a href="../../development/apps/api/ui-extensions/object-
|
|
4182
|
-
Object Detail
|
|
4195
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
4196
|
+
Object Detail & List Views
|
|
4183
4197
|
</a>
|
|
4184
4198
|
</li>
|
|
4185
4199
|
|
|
@@ -4878,6 +4892,20 @@
|
|
|
4878
4892
|
|
|
4879
4893
|
|
|
4880
4894
|
|
|
4895
|
+
<li class="md-nav__item">
|
|
4896
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
4897
|
+
Caching
|
|
4898
|
+
</a>
|
|
4899
|
+
</li>
|
|
4900
|
+
|
|
4901
|
+
|
|
4902
|
+
|
|
4903
|
+
|
|
4904
|
+
|
|
4905
|
+
|
|
4906
|
+
|
|
4907
|
+
|
|
4908
|
+
|
|
4881
4909
|
<li class="md-nav__item">
|
|
4882
4910
|
<a href="../../development/core/extending-models.html" class="md-nav__link">
|
|
4883
4911
|
Extending Models
|
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="../administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="../administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -3929,8 +3943,8 @@
|
|
|
3929
3943
|
|
|
3930
3944
|
|
|
3931
3945
|
<li class="md-nav__item">
|
|
3932
|
-
<a href="../../development/apps/api/ui-extensions/object-
|
|
3933
|
-
Object Detail
|
|
3946
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3947
|
+
Object Detail & List Views
|
|
3934
3948
|
</a>
|
|
3935
3949
|
</li>
|
|
3936
3950
|
|
|
@@ -4629,6 +4643,20 @@
|
|
|
4629
4643
|
|
|
4630
4644
|
|
|
4631
4645
|
|
|
4646
|
+
<li class="md-nav__item">
|
|
4647
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
4648
|
+
Caching
|
|
4649
|
+
</a>
|
|
4650
|
+
</li>
|
|
4651
|
+
|
|
4652
|
+
|
|
4653
|
+
|
|
4654
|
+
|
|
4655
|
+
|
|
4656
|
+
|
|
4657
|
+
|
|
4658
|
+
|
|
4659
|
+
|
|
4632
4660
|
<li class="md-nav__item">
|
|
4633
4661
|
<a href="../../development/core/extending-models.html" class="md-nav__link">
|
|
4634
4662
|
Extending Models
|
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="../administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="../administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -3929,8 +3943,8 @@
|
|
|
3929
3943
|
|
|
3930
3944
|
|
|
3931
3945
|
<li class="md-nav__item">
|
|
3932
|
-
<a href="../../development/apps/api/ui-extensions/object-
|
|
3933
|
-
Object Detail
|
|
3946
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3947
|
+
Object Detail & List Views
|
|
3934
3948
|
</a>
|
|
3935
3949
|
</li>
|
|
3936
3950
|
|
|
@@ -4629,6 +4643,20 @@
|
|
|
4629
4643
|
|
|
4630
4644
|
|
|
4631
4645
|
|
|
4646
|
+
<li class="md-nav__item">
|
|
4647
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
4648
|
+
Caching
|
|
4649
|
+
</a>
|
|
4650
|
+
</li>
|
|
4651
|
+
|
|
4652
|
+
|
|
4653
|
+
|
|
4654
|
+
|
|
4655
|
+
|
|
4656
|
+
|
|
4657
|
+
|
|
4658
|
+
|
|
4659
|
+
|
|
4632
4660
|
<li class="md-nav__item">
|
|
4633
4661
|
<a href="../../development/core/extending-models.html" class="md-nav__link">
|
|
4634
4662
|
Extending Models
|
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="../administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="../administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -4024,8 +4038,8 @@
|
|
|
4024
4038
|
|
|
4025
4039
|
|
|
4026
4040
|
<li class="md-nav__item">
|
|
4027
|
-
<a href="../../development/apps/api/ui-extensions/object-
|
|
4028
|
-
Object Detail
|
|
4041
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
4042
|
+
Object Detail & List Views
|
|
4029
4043
|
</a>
|
|
4030
4044
|
</li>
|
|
4031
4045
|
|
|
@@ -4724,6 +4738,20 @@
|
|
|
4724
4738
|
|
|
4725
4739
|
|
|
4726
4740
|
|
|
4741
|
+
<li class="md-nav__item">
|
|
4742
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
4743
|
+
Caching
|
|
4744
|
+
</a>
|
|
4745
|
+
</li>
|
|
4746
|
+
|
|
4747
|
+
|
|
4748
|
+
|
|
4749
|
+
|
|
4750
|
+
|
|
4751
|
+
|
|
4752
|
+
|
|
4753
|
+
|
|
4754
|
+
|
|
4727
4755
|
<li class="md-nav__item">
|
|
4728
4756
|
<a href="../../development/core/extending-models.html" class="md-nav__link">
|
|
4729
4757
|
Extending Models
|
|
@@ -552,6 +552,20 @@
|
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
<li class="md-nav__item">
|
|
556
|
+
<a href="../administration/installation/health-checks.html" class="md-nav__link">
|
|
557
|
+
Health Checks
|
|
558
|
+
</a>
|
|
559
|
+
</li>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
555
569
|
<li class="md-nav__item">
|
|
556
570
|
<a href="../administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
557
571
|
SELinux Troubleshooting
|
|
@@ -3890,8 +3904,8 @@
|
|
|
3890
3904
|
|
|
3891
3905
|
|
|
3892
3906
|
<li class="md-nav__item">
|
|
3893
|
-
<a href="../../development/apps/api/ui-extensions/object-
|
|
3894
|
-
Object Detail
|
|
3907
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3908
|
+
Object Detail & List Views
|
|
3895
3909
|
</a>
|
|
3896
3910
|
</li>
|
|
3897
3911
|
|
|
@@ -4590,6 +4604,20 @@
|
|
|
4590
4604
|
|
|
4591
4605
|
|
|
4592
4606
|
|
|
4607
|
+
<li class="md-nav__item">
|
|
4608
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
4609
|
+
Caching
|
|
4610
|
+
</a>
|
|
4611
|
+
</li>
|
|
4612
|
+
|
|
4613
|
+
|
|
4614
|
+
|
|
4615
|
+
|
|
4616
|
+
|
|
4617
|
+
|
|
4618
|
+
|
|
4619
|
+
|
|
4620
|
+
|
|
4593
4621
|
<li class="md-nav__item">
|
|
4594
4622
|
<a href="../../development/core/extending-models.html" class="md-nav__link">
|
|
4595
4623
|
Extending Models
|