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.

Files changed (338) hide show
  1. nautobot/apps/api.py +1 -2
  2. nautobot/apps/utils.py +4 -0
  3. nautobot/apps/views.py +2 -0
  4. nautobot/circuits/api/urls.py +1 -2
  5. nautobot/circuits/api/views.py +0 -12
  6. nautobot/circuits/tests/integration/test_relationships.py +0 -4
  7. nautobot/core/api/routers.py +25 -3
  8. nautobot/core/api/utils.py +4 -0
  9. nautobot/core/api/views.py +21 -15
  10. nautobot/core/celery/schedulers.py +13 -0
  11. nautobot/core/choices.py +0 -21
  12. nautobot/core/models/__init__.py +1 -1
  13. nautobot/core/models/tree_queries.py +29 -7
  14. nautobot/core/releases.py +1 -1
  15. nautobot/core/settings.py +9 -0
  16. nautobot/core/settings_funcs.py +0 -18
  17. nautobot/core/signals.py +5 -5
  18. nautobot/core/tasks.py +7 -3
  19. nautobot/core/templates/admin/base.html +23 -94
  20. nautobot/core/templates/generic/object_list.html +2 -0
  21. nautobot/core/templates/graphene/graphiql.html +18 -47
  22. nautobot/core/templates/inc/footer.html +5 -5
  23. nautobot/core/templates/inc/nav_menu.html +0 -7
  24. nautobot/core/templates/nautobot_config.py.j2 +6 -0
  25. nautobot/core/templates/rest_framework/api.html +12 -5
  26. nautobot/core/testing/mixins.py +13 -5
  27. nautobot/core/tests/integration/test_plugin_navbar.py +7 -21
  28. nautobot/core/tests/integration/test_view_authentication.py +67 -0
  29. nautobot/core/tests/runner.py +25 -2
  30. nautobot/core/tests/test_graphql.py +2 -14
  31. nautobot/core/tests/test_models.py +3 -3
  32. nautobot/core/tests/test_navigations.py +67 -10
  33. nautobot/core/tests/test_releases.py +9 -3
  34. nautobot/core/tests/test_views.py +23 -16
  35. nautobot/core/utils/lookup.py +124 -0
  36. nautobot/core/views/__init__.py +3 -7
  37. nautobot/core/views/generic.py +9 -0
  38. nautobot/dcim/api/urls.py +1 -2
  39. nautobot/dcim/api/views.py +1 -12
  40. nautobot/dcim/choices.py +56 -0
  41. nautobot/dcim/models/racks.py +1 -3
  42. nautobot/dcim/navigation.py +1 -1
  43. nautobot/dcim/templates/dcim/device/lldp_neighbors.html +67 -43
  44. nautobot/dcim/tests/test_api.py +3 -0
  45. nautobot/dcim/tests/test_filters.py +0 -28
  46. nautobot/dcim/views.py +5 -2
  47. nautobot/extras/api/urls.py +1 -2
  48. nautobot/extras/api/views.py +0 -10
  49. nautobot/extras/choices.py +14 -0
  50. nautobot/extras/models/customfields.py +93 -34
  51. nautobot/extras/models/groups.py +1 -1
  52. nautobot/extras/models/relationships.py +32 -19
  53. nautobot/extras/navigation.py +3 -2
  54. nautobot/extras/plugins/__init__.py +8 -0
  55. nautobot/extras/plugins/views.py +6 -9
  56. nautobot/extras/querysets.py +1 -1
  57. nautobot/extras/signals.py +12 -6
  58. nautobot/extras/templates/extras/customfield.html +22 -14
  59. nautobot/extras/templatetags/job_buttons.py +7 -0
  60. nautobot/extras/templatetags/plugins.py +5 -1
  61. nautobot/extras/tests/test_customfields.py +323 -287
  62. nautobot/extras/tests/test_dynamicgroups.py +1 -1
  63. nautobot/extras/tests/test_jobs.py +2 -2
  64. nautobot/extras/tests/test_plugins.py +41 -0
  65. nautobot/extras/tests/test_relationships.py +31 -14
  66. nautobot/extras/tests/test_views.py +124 -1
  67. nautobot/extras/utils.py +7 -3
  68. nautobot/extras/views.py +10 -10
  69. nautobot/ipam/api/urls.py +1 -2
  70. nautobot/ipam/api/views.py +6 -13
  71. nautobot/ipam/tables.py +0 -1
  72. nautobot/ipam/tests/test_graphql.py +2 -3
  73. nautobot/ipam/views.py +12 -10
  74. nautobot/project-static/css/base.css +1 -0
  75. nautobot/project-static/docs/404.html +30 -2
  76. nautobot/project-static/docs/apps/index.html +30 -2
  77. nautobot/project-static/docs/apps/nautobot-apps.html +30 -2
  78. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +30 -2
  79. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +30 -2
  80. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +410 -410
  81. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +30 -2
  82. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +386 -358
  83. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +30 -2
  84. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +30 -2
  85. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +30 -2
  86. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +30 -2
  87. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +45 -17
  88. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +30 -2
  89. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +30 -2
  90. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +30 -2
  91. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +759 -602
  92. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +30 -2
  93. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +30 -2
  94. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +30 -2
  95. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +528 -467
  96. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +205 -109
  97. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +30 -2
  98. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +1265 -785
  99. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1827 -1746
  100. nautobot/project-static/docs/development/apps/api/configuration-view.html +30 -2
  101. nautobot/project-static/docs/development/apps/api/database-backend-config.html +30 -2
  102. nautobot/project-static/docs/development/apps/api/models/django-admin.html +30 -2
  103. nautobot/project-static/docs/development/apps/api/models/global-search.html +30 -2
  104. nautobot/project-static/docs/development/apps/api/models/graphql.html +30 -2
  105. nautobot/project-static/docs/development/apps/api/models/index.html +30 -2
  106. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +31 -3
  107. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +30 -2
  108. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +30 -2
  109. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +30 -2
  110. nautobot/project-static/docs/development/apps/api/platform-features/index.html +30 -2
  111. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +30 -2
  112. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +30 -2
  113. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +30 -2
  114. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +30 -2
  115. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +30 -2
  116. nautobot/project-static/docs/development/apps/api/prometheus.html +30 -2
  117. nautobot/project-static/docs/development/apps/api/setup.html +30 -2
  118. nautobot/project-static/docs/development/apps/api/testing.html +33 -5
  119. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +30 -2
  120. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +30 -2
  121. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +30 -2
  122. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +33 -5
  123. nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +13 -5559
  124. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +5594 -0
  125. nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +3 -3
  126. nautobot/project-static/docs/development/apps/api/views/base-template.html +30 -2
  127. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +44 -11
  128. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +47 -14
  129. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +30 -2
  130. nautobot/project-static/docs/development/apps/api/views/index.html +30 -2
  131. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +30 -2
  132. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +30 -2
  133. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +30 -2
  134. nautobot/project-static/docs/development/apps/api/views/notes.html +30 -2
  135. nautobot/project-static/docs/development/apps/api/views/rest-api.html +30 -2
  136. nautobot/project-static/docs/development/apps/api/views/urls.html +30 -2
  137. nautobot/project-static/docs/development/apps/index.html +30 -2
  138. nautobot/project-static/docs/development/apps/migration/code-updates.html +30 -2
  139. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +30 -2
  140. nautobot/project-static/docs/development/apps/migration/from-v1.html +30 -2
  141. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +30 -2
  142. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +30 -2
  143. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +30 -2
  144. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +30 -2
  145. nautobot/project-static/docs/development/apps/porting-from-netbox.html +30 -2
  146. nautobot/project-static/docs/development/core/application-registry.html +30 -2
  147. nautobot/project-static/docs/development/core/best-practices.html +33 -5
  148. nautobot/project-static/docs/development/core/bootstrap-ui.html +30 -2
  149. nautobot/project-static/docs/development/core/caching.html +5481 -0
  150. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +30 -2
  151. nautobot/project-static/docs/development/core/extending-models.html +33 -5
  152. nautobot/project-static/docs/development/core/generic-views.html +30 -2
  153. nautobot/project-static/docs/development/core/getting-started.html +49 -12
  154. nautobot/project-static/docs/development/core/homepage.html +30 -2
  155. nautobot/project-static/docs/development/core/index.html +30 -2
  156. nautobot/project-static/docs/development/core/model-features.html +30 -2
  157. nautobot/project-static/docs/development/core/natural-keys.html +30 -2
  158. nautobot/project-static/docs/development/core/navigation-menu.html +30 -2
  159. nautobot/project-static/docs/development/core/release-checklist.html +30 -2
  160. nautobot/project-static/docs/development/core/role-internals.html +30 -2
  161. nautobot/project-static/docs/development/core/style-guide.html +30 -2
  162. nautobot/project-static/docs/development/core/templates.html +30 -2
  163. nautobot/project-static/docs/development/core/testing.html +30 -2
  164. nautobot/project-static/docs/development/core/user-preferences.html +30 -2
  165. nautobot/project-static/docs/development/index.html +30 -2
  166. nautobot/project-static/docs/development/jobs/index.html +30 -2
  167. nautobot/project-static/docs/development/jobs/migration/from-v1.html +30 -2
  168. nautobot/project-static/docs/index.html +30 -2
  169. nautobot/project-static/docs/objects.inv +0 -0
  170. nautobot/project-static/docs/release-notes/index.html +30 -2
  171. nautobot/project-static/docs/release-notes/version-1.0.html +30 -2
  172. nautobot/project-static/docs/release-notes/version-1.1.html +30 -2
  173. nautobot/project-static/docs/release-notes/version-1.2.html +30 -2
  174. nautobot/project-static/docs/release-notes/version-1.3.html +30 -2
  175. nautobot/project-static/docs/release-notes/version-1.4.html +31 -3
  176. nautobot/project-static/docs/release-notes/version-1.5.html +30 -2
  177. nautobot/project-static/docs/release-notes/version-1.6.html +573 -134
  178. nautobot/project-static/docs/release-notes/version-2.0.html +30 -2
  179. nautobot/project-static/docs/release-notes/version-2.1.html +539 -170
  180. nautobot/project-static/docs/search/search_index.json +1 -1
  181. nautobot/project-static/docs/sitemap.xml +250 -240
  182. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  183. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +30 -2
  184. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +30 -2
  185. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +30 -2
  186. nautobot/project-static/docs/user-guide/administration/configuration/index.html +30 -2
  187. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +49 -2
  188. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +30 -2
  189. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +30 -2
  190. nautobot/project-static/docs/user-guide/administration/guides/caching.html +30 -2
  191. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +30 -2
  192. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +30 -2
  193. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +30 -2
  194. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +30 -2
  195. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +30 -2
  196. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +30 -2
  197. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +30 -2
  198. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +30 -2
  199. nautobot/project-static/docs/user-guide/administration/installation/docker.html +37 -5
  200. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +30 -2
  201. nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +6019 -0
  202. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +30 -2
  203. nautobot/project-static/docs/user-guide/administration/installation/index.html +30 -2
  204. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +30 -2
  205. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +30 -2
  206. nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +33 -5
  207. nautobot/project-static/docs/user-guide/administration/installation/services.html +30 -2
  208. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +30 -2
  209. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +30 -2
  210. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +30 -2
  211. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +30 -2
  212. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +30 -2
  213. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +30 -2
  214. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +30 -2
  215. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +30 -2
  216. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +30 -2
  217. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +30 -2
  218. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +30 -2
  219. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +30 -2
  220. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +30 -2
  221. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +30 -2
  222. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +30 -2
  223. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +30 -2
  224. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +30 -2
  225. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +30 -2
  226. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +30 -2
  227. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +30 -2
  228. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +30 -2
  229. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +30 -2
  230. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +30 -2
  231. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +30 -2
  232. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +30 -2
  233. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +30 -2
  234. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +30 -2
  235. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +30 -2
  236. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +30 -2
  237. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +30 -2
  238. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +30 -2
  239. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +30 -2
  240. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +30 -2
  241. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +30 -2
  242. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +30 -2
  243. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +30 -2
  244. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +30 -2
  245. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +30 -2
  246. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +30 -2
  247. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +30 -2
  248. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +30 -2
  249. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +30 -2
  250. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +30 -2
  251. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +30 -2
  252. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +30 -2
  253. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +30 -2
  254. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +30 -2
  255. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +30 -2
  256. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +30 -2
  257. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +30 -2
  258. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +30 -2
  259. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +30 -2
  260. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +30 -2
  261. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +30 -2
  262. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +30 -2
  263. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +30 -2
  264. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +30 -2
  265. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +30 -2
  266. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +30 -2
  267. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +30 -2
  268. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +30 -2
  269. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +30 -2
  270. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +30 -2
  271. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +30 -2
  272. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +30 -2
  273. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +30 -2
  274. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +30 -2
  275. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +30 -2
  276. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +30 -2
  277. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +33 -5
  278. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +30 -2
  279. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +30 -2
  280. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +30 -2
  281. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +30 -2
  282. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +30 -2
  283. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +30 -2
  284. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +30 -2
  285. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +30 -2
  286. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +30 -2
  287. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +30 -2
  288. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +30 -2
  289. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +30 -2
  290. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +30 -2
  291. nautobot/project-static/docs/user-guide/index.html +30 -2
  292. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +30 -2
  293. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +30 -2
  294. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +111 -15
  295. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +30 -2
  296. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +30 -2
  297. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +30 -2
  298. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +30 -2
  299. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +30 -2
  300. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +30 -2
  301. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +30 -2
  302. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +30 -2
  303. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +30 -2
  304. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +30 -2
  305. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +30 -2
  306. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +30 -2
  307. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +30 -2
  308. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +30 -2
  309. nautobot/project-static/docs/user-guide/platform-functionality/note.html +30 -2
  310. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +30 -2
  311. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +30 -2
  312. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +30 -2
  313. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +30 -2
  314. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +30 -2
  315. nautobot/project-static/docs/user-guide/platform-functionality/role.html +30 -2
  316. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +30 -2
  317. nautobot/project-static/docs/user-guide/platform-functionality/status.html +30 -2
  318. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +30 -2
  319. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +30 -2
  320. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +30 -2
  321. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +30 -2
  322. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +30 -2
  323. nautobot/tenancy/api/urls.py +1 -2
  324. nautobot/tenancy/api/views.py +0 -12
  325. nautobot/tenancy/navigation.py +1 -1
  326. nautobot/tenancy/tests/test_filters.py +0 -168
  327. nautobot/users/api/urls.py +1 -2
  328. nautobot/users/api/views.py +2 -65
  329. nautobot/users/views.py +8 -8
  330. nautobot/virtualization/api/urls.py +1 -2
  331. nautobot/virtualization/api/views.py +0 -12
  332. nautobot/virtualization/tests/test_filters.py +0 -28
  333. {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/METADATA +2 -2
  334. {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/RECORD +338 -334
  335. {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/LICENSE.txt +0 -0
  336. {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/NOTICE +0 -0
  337. {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/WHEEL +0 -0
  338. {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/entry_points.txt +0 -0
@@ -699,6 +699,20 @@
699
699
 
700
700
 
701
701
 
702
+ <li class="md-nav__item">
703
+ <a href="health-checks.html" class="md-nav__link">
704
+ Health Checks
705
+ </a>
706
+ </li>
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+
702
716
  <li class="md-nav__item">
703
717
  <a href="selinux-troubleshooting.html" class="md-nav__link">
704
718
  SELinux Troubleshooting
@@ -4033,8 +4047,8 @@
4033
4047
 
4034
4048
 
4035
4049
  <li class="md-nav__item">
4036
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
4037
- Object Detail Views and Tabs
4050
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
4051
+ Object Detail & List Views
4038
4052
  </a>
4039
4053
  </li>
4040
4054
 
@@ -4733,6 +4747,20 @@
4733
4747
 
4734
4748
 
4735
4749
 
4750
+ <li class="md-nav__item">
4751
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4752
+ Caching
4753
+ </a>
4754
+ </li>
4755
+
4756
+
4757
+
4758
+
4759
+
4760
+
4761
+
4762
+
4763
+
4736
4764
  <li class="md-nav__item">
4737
4765
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4738
4766
  Extending Models
@@ -691,6 +691,20 @@
691
691
 
692
692
 
693
693
 
694
+ <li class="md-nav__item">
695
+ <a href="health-checks.html" class="md-nav__link">
696
+ Health Checks
697
+ </a>
698
+ </li>
699
+
700
+
701
+
702
+
703
+
704
+
705
+
706
+
707
+
694
708
  <li class="md-nav__item">
695
709
  <a href="selinux-troubleshooting.html" class="md-nav__link">
696
710
  SELinux Troubleshooting
@@ -4025,8 +4039,8 @@
4025
4039
 
4026
4040
 
4027
4041
  <li class="md-nav__item">
4028
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
4029
- Object Detail Views and Tabs
4042
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
4043
+ Object Detail & List Views
4030
4044
  </a>
4031
4045
  </li>
4032
4046
 
@@ -4725,6 +4739,20 @@
4725
4739
 
4726
4740
 
4727
4741
 
4742
+ <li class="md-nav__item">
4743
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4744
+ Caching
4745
+ </a>
4746
+ </li>
4747
+
4748
+
4749
+
4750
+
4751
+
4752
+
4753
+
4754
+
4755
+
4728
4756
  <li class="md-nav__item">
4729
4757
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4730
4758
  Extending Models
@@ -794,6 +794,20 @@
794
794
 
795
795
 
796
796
 
797
+ <li class="md-nav__item">
798
+ <a href="health-checks.html" class="md-nav__link">
799
+ Health Checks
800
+ </a>
801
+ </li>
802
+
803
+
804
+
805
+
806
+
807
+
808
+
809
+
810
+
797
811
  <li class="md-nav__item">
798
812
  <a href="selinux-troubleshooting.html" class="md-nav__link">
799
813
  SELinux Troubleshooting
@@ -4128,8 +4142,8 @@
4128
4142
 
4129
4143
 
4130
4144
  <li class="md-nav__item">
4131
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
4132
- Object Detail Views and Tabs
4145
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
4146
+ Object Detail & List Views
4133
4147
  </a>
4134
4148
  </li>
4135
4149
 
@@ -4828,6 +4842,20 @@
4828
4842
 
4829
4843
 
4830
4844
 
4845
+ <li class="md-nav__item">
4846
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4847
+ Caching
4848
+ </a>
4849
+ </li>
4850
+
4851
+
4852
+
4853
+
4854
+
4855
+
4856
+
4857
+
4858
+
4831
4859
  <li class="md-nav__item">
4832
4860
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4833
4861
  Extending Models
@@ -775,6 +775,20 @@
775
775
 
776
776
 
777
777
 
778
+ <li class="md-nav__item">
779
+ <a href="health-checks.html" class="md-nav__link">
780
+ Health Checks
781
+ </a>
782
+ </li>
783
+
784
+
785
+
786
+
787
+
788
+
789
+
790
+
791
+
778
792
  <li class="md-nav__item">
779
793
  <a href="selinux-troubleshooting.html" class="md-nav__link">
780
794
  SELinux Troubleshooting
@@ -4109,8 +4123,8 @@
4109
4123
 
4110
4124
 
4111
4125
  <li class="md-nav__item">
4112
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
4113
- Object Detail Views and Tabs
4126
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
4127
+ Object Detail & List Views
4114
4128
  </a>
4115
4129
  </li>
4116
4130
 
@@ -4809,6 +4823,20 @@
4809
4823
 
4810
4824
 
4811
4825
 
4826
+ <li class="md-nav__item">
4827
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4828
+ Caching
4829
+ </a>
4830
+ </li>
4831
+
4832
+
4833
+
4834
+
4835
+
4836
+
4837
+
4838
+
4839
+
4812
4840
  <li class="md-nav__item">
4813
4841
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4814
4842
  Extending Models
@@ -11,7 +11,7 @@
11
11
  <link rel="canonical" href="https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/selinux-troubleshooting.html">
12
12
 
13
13
 
14
- <link rel="prev" href="docker.html">
14
+ <link rel="prev" href="health-checks.html">
15
15
 
16
16
 
17
17
  <link rel="next" href="../upgrading/database-backup.html">
@@ -555,6 +555,20 @@
555
555
 
556
556
 
557
557
 
558
+
559
+ <li class="md-nav__item">
560
+ <a href="health-checks.html" class="md-nav__link">
561
+ Health Checks
562
+ </a>
563
+ </li>
564
+
565
+
566
+
567
+
568
+
569
+
570
+
571
+
558
572
 
559
573
 
560
574
 
@@ -3938,8 +3952,8 @@
3938
3952
 
3939
3953
 
3940
3954
  <li class="md-nav__item">
3941
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
3942
- Object Detail Views and Tabs
3955
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
3956
+ Object Detail & List Views
3943
3957
  </a>
3944
3958
  </li>
3945
3959
 
@@ -4638,6 +4652,20 @@
4638
4652
 
4639
4653
 
4640
4654
 
4655
+ <li class="md-nav__item">
4656
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4657
+ Caching
4658
+ </a>
4659
+ </li>
4660
+
4661
+
4662
+
4663
+
4664
+
4665
+
4666
+
4667
+
4668
+
4641
4669
  <li class="md-nav__item">
4642
4670
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4643
4671
  Extending Models
@@ -5456,7 +5484,7 @@ Since Nginx is communicating with the Nautobot application via HTTP, the second
5456
5484
  <nav class="md-footer__inner md-grid" aria-label="Footer" >
5457
5485
 
5458
5486
 
5459
- <a href="docker.html" class="md-footer__link md-footer__link--prev" aria-label="Previous: Nautobot Docker Images" rel="prev">
5487
+ <a href="health-checks.html" class="md-footer__link md-footer__link--prev" aria-label="Previous: Health Checks" rel="prev">
5460
5488
  <div class="md-footer__button md-icon">
5461
5489
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
5462
5490
  </div>
@@ -5465,7 +5493,7 @@ Since Nginx is communicating with the Nautobot application via HTTP, the second
5465
5493
  Previous
5466
5494
  </span>
5467
5495
  <div class="md-ellipsis">
5468
- Nautobot Docker Images
5496
+ Health Checks
5469
5497
  </div>
5470
5498
  </div>
5471
5499
  </a>
@@ -739,6 +739,20 @@
739
739
 
740
740
 
741
741
 
742
+ <li class="md-nav__item">
743
+ <a href="health-checks.html" class="md-nav__link">
744
+ Health Checks
745
+ </a>
746
+ </li>
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+
755
+
742
756
  <li class="md-nav__item">
743
757
  <a href="selinux-troubleshooting.html" class="md-nav__link">
744
758
  SELinux Troubleshooting
@@ -4073,8 +4087,8 @@
4073
4087
 
4074
4088
 
4075
4089
  <li class="md-nav__item">
4076
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
4077
- Object Detail Views and Tabs
4090
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
4091
+ Object Detail & List Views
4078
4092
  </a>
4079
4093
  </li>
4080
4094
 
@@ -4773,6 +4787,20 @@
4773
4787
 
4774
4788
 
4775
4789
 
4790
+ <li class="md-nav__item">
4791
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4792
+ Caching
4793
+ </a>
4794
+ </li>
4795
+
4796
+
4797
+
4798
+
4799
+
4800
+
4801
+
4802
+
4803
+
4776
4804
  <li class="md-nav__item">
4777
4805
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4778
4806
  Extending Models
@@ -554,6 +554,20 @@
554
554
 
555
555
 
556
556
 
557
+ <li class="md-nav__item">
558
+ <a href="../installation/health-checks.html" class="md-nav__link">
559
+ Health Checks
560
+ </a>
561
+ </li>
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
557
571
  <li class="md-nav__item">
558
572
  <a href="../installation/selinux-troubleshooting.html" class="md-nav__link">
559
573
  SELinux Troubleshooting
@@ -4210,8 +4224,8 @@
4210
4224
 
4211
4225
 
4212
4226
  <li class="md-nav__item">
4213
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
4214
- Object Detail Views and Tabs
4227
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
4228
+ Object Detail & List Views
4215
4229
  </a>
4216
4230
  </li>
4217
4231
 
@@ -4910,6 +4924,20 @@
4910
4924
 
4911
4925
 
4912
4926
 
4927
+ <li class="md-nav__item">
4928
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4929
+ Caching
4930
+ </a>
4931
+ </li>
4932
+
4933
+
4934
+
4935
+
4936
+
4937
+
4938
+
4939
+
4940
+
4913
4941
  <li class="md-nav__item">
4914
4942
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4915
4943
  Extending Models
@@ -554,6 +554,20 @@
554
554
 
555
555
 
556
556
 
557
+ <li class="md-nav__item">
558
+ <a href="../installation/health-checks.html" class="md-nav__link">
559
+ Health Checks
560
+ </a>
561
+ </li>
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
557
571
  <li class="md-nav__item">
558
572
  <a href="../installation/selinux-troubleshooting.html" class="md-nav__link">
559
573
  SELinux Troubleshooting
@@ -3979,8 +3993,8 @@
3979
3993
 
3980
3994
 
3981
3995
  <li class="md-nav__item">
3982
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
3983
- Object Detail Views and Tabs
3996
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
3997
+ Object Detail & List Views
3984
3998
  </a>
3985
3999
  </li>
3986
4000
 
@@ -4679,6 +4693,20 @@
4679
4693
 
4680
4694
 
4681
4695
 
4696
+ <li class="md-nav__item">
4697
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4698
+ Caching
4699
+ </a>
4700
+ </li>
4701
+
4702
+
4703
+
4704
+
4705
+
4706
+
4707
+
4708
+
4709
+
4682
4710
  <li class="md-nav__item">
4683
4711
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4684
4712
  Extending Models
@@ -554,6 +554,20 @@
554
554
 
555
555
 
556
556
 
557
+ <li class="md-nav__item">
558
+ <a href="../installation/health-checks.html" class="md-nav__link">
559
+ Health Checks
560
+ </a>
561
+ </li>
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
557
571
  <li class="md-nav__item">
558
572
  <a href="../installation/selinux-troubleshooting.html" class="md-nav__link">
559
573
  SELinux Troubleshooting
@@ -4133,8 +4147,8 @@
4133
4147
 
4134
4148
 
4135
4149
  <li class="md-nav__item">
4136
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
4137
- Object Detail Views and Tabs
4150
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
4151
+ Object Detail & List Views
4138
4152
  </a>
4139
4153
  </li>
4140
4154
 
@@ -4833,6 +4847,20 @@
4833
4847
 
4834
4848
 
4835
4849
 
4850
+ <li class="md-nav__item">
4851
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4852
+ Caching
4853
+ </a>
4854
+ </li>
4855
+
4856
+
4857
+
4858
+
4859
+
4860
+
4861
+
4862
+
4863
+
4836
4864
  <li class="md-nav__item">
4837
4865
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4838
4866
  Extending Models
@@ -554,6 +554,20 @@
554
554
 
555
555
 
556
556
 
557
+ <li class="md-nav__item">
558
+ <a href="../installation/health-checks.html" class="md-nav__link">
559
+ Health Checks
560
+ </a>
561
+ </li>
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
557
571
  <li class="md-nav__item">
558
572
  <a href="../installation/selinux-troubleshooting.html" class="md-nav__link">
559
573
  SELinux Troubleshooting
@@ -3965,8 +3979,8 @@
3965
3979
 
3966
3980
 
3967
3981
  <li class="md-nav__item">
3968
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
3969
- Object Detail Views and Tabs
3982
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
3983
+ Object Detail & List Views
3970
3984
  </a>
3971
3985
  </li>
3972
3986
 
@@ -4665,6 +4679,20 @@
4665
4679
 
4666
4680
 
4667
4681
 
4682
+ <li class="md-nav__item">
4683
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4684
+ Caching
4685
+ </a>
4686
+ </li>
4687
+
4688
+
4689
+
4690
+
4691
+
4692
+
4693
+
4694
+
4695
+
4668
4696
  <li class="md-nav__item">
4669
4697
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4670
4698
  Extending Models
@@ -554,6 +554,20 @@
554
554
 
555
555
 
556
556
 
557
+ <li class="md-nav__item">
558
+ <a href="../installation/health-checks.html" class="md-nav__link">
559
+ Health Checks
560
+ </a>
561
+ </li>
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
557
571
  <li class="md-nav__item">
558
572
  <a href="../installation/selinux-troubleshooting.html" class="md-nav__link">
559
573
  SELinux Troubleshooting
@@ -3938,8 +3952,8 @@
3938
3952
 
3939
3953
 
3940
3954
  <li class="md-nav__item">
3941
- <a href="../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
3942
- Object Detail Views and Tabs
3955
+ <a href="../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
3956
+ Object Detail & List Views
3943
3957
  </a>
3944
3958
  </li>
3945
3959
 
@@ -4638,6 +4652,20 @@
4638
4652
 
4639
4653
 
4640
4654
 
4655
+ <li class="md-nav__item">
4656
+ <a href="../../../development/core/caching.html" class="md-nav__link">
4657
+ Caching
4658
+ </a>
4659
+ </li>
4660
+
4661
+
4662
+
4663
+
4664
+
4665
+
4666
+
4667
+
4668
+
4641
4669
  <li class="md-nav__item">
4642
4670
  <a href="../../../development/core/extending-models.html" class="md-nav__link">
4643
4671
  Extending Models
@@ -554,6 +554,20 @@
554
554
 
555
555
 
556
556
 
557
+ <li class="md-nav__item">
558
+ <a href="../../../installation/health-checks.html" class="md-nav__link">
559
+ Health Checks
560
+ </a>
561
+ </li>
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
557
571
  <li class="md-nav__item">
558
572
  <a href="../../../installation/selinux-troubleshooting.html" class="md-nav__link">
559
573
  SELinux Troubleshooting
@@ -3976,8 +3990,8 @@
3976
3990
 
3977
3991
 
3978
3992
  <li class="md-nav__item">
3979
- <a href="../../../../../development/apps/api/ui-extensions/object-detail-views.html" class="md-nav__link">
3980
- Object Detail Views and Tabs
3993
+ <a href="../../../../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
3994
+ Object Detail & List Views
3981
3995
  </a>
3982
3996
  </li>
3983
3997
 
@@ -4676,6 +4690,20 @@
4676
4690
 
4677
4691
 
4678
4692
 
4693
+ <li class="md-nav__item">
4694
+ <a href="../../../../../development/core/caching.html" class="md-nav__link">
4695
+ Caching
4696
+ </a>
4697
+ </li>
4698
+
4699
+
4700
+
4701
+
4702
+
4703
+
4704
+
4705
+
4706
+
4679
4707
  <li class="md-nav__item">
4680
4708
  <a href="../../../../../development/core/extending-models.html" class="md-nav__link">
4681
4709
  Extending Models