nautobot 2.4.13__py3-none-any.whl → 2.4.15__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 (463) hide show
  1. nautobot/apps/choices.py +8 -0
  2. nautobot/apps/ui.py +14 -0
  3. nautobot/core/api/views.py +2 -0
  4. nautobot/core/choices.py +4 -0
  5. nautobot/core/filters.py +21 -41
  6. nautobot/core/graphql/generators.py +8 -0
  7. nautobot/core/graphql/schema.py +30 -30
  8. nautobot/core/management/commands/check_job_approval_status.py +47 -0
  9. nautobot/core/management/commands/generate_test_data.py +1 -1
  10. nautobot/core/management/commands/migrate.py +90 -1
  11. nautobot/core/models/tree_queries.py +17 -0
  12. nautobot/core/settings.py +2 -2
  13. nautobot/core/settings.yaml +3 -3
  14. nautobot/core/tables.py +29 -6
  15. nautobot/core/templates/base_django.html +1 -1
  16. nautobot/core/templates/components/panel/header_extra_content_table.html +1 -1
  17. nautobot/core/templates/generic/object_list.html +17 -20
  18. nautobot/core/templates/inc/breadcrumbs.html +14 -0
  19. nautobot/core/templatetags/buttons.py +2 -4
  20. nautobot/core/templatetags/helpers.py +29 -6
  21. nautobot/core/templatetags/ui_framework.py +21 -0
  22. nautobot/core/testing/api.py +7 -0
  23. nautobot/core/testing/filters.py +20 -3
  24. nautobot/core/testing/forms.py +1 -1
  25. nautobot/core/tests/integration/test_filters.py +2 -2
  26. nautobot/core/tests/test_breadcrumbs.py +366 -0
  27. nautobot/core/tests/test_commands.py +40 -0
  28. nautobot/core/tests/test_filters.py +51 -1
  29. nautobot/core/tests/test_forms.py +1 -1
  30. nautobot/core/tests/test_graphql.py +4 -4
  31. nautobot/core/tests/test_titles.py +183 -0
  32. nautobot/core/tests/test_tree_queries.py +30 -0
  33. nautobot/core/tests/test_views.py +2 -2
  34. nautobot/core/tests/test_views_utils.py +1 -1
  35. nautobot/core/ui/breadcrumbs.py +538 -0
  36. nautobot/core/ui/bulk_buttons.py +53 -0
  37. nautobot/core/ui/object_detail.py +31 -8
  38. nautobot/core/ui/titles.py +127 -0
  39. nautobot/core/ui/utils.py +25 -0
  40. nautobot/core/utils/migrations.py +1 -1
  41. nautobot/core/views/__init__.py +1 -1
  42. nautobot/core/views/mixins.py +26 -1
  43. nautobot/core/views/renderers.py +20 -2
  44. nautobot/core/views/utils.py +14 -13
  45. nautobot/dcim/api/serializers.py +9 -0
  46. nautobot/dcim/choices.py +55 -0
  47. nautobot/dcim/constants.py +0 -16
  48. nautobot/dcim/factory.py +1 -1
  49. nautobot/dcim/filters/__init__.py +15 -3
  50. nautobot/dcim/forms.py +120 -7
  51. nautobot/dcim/management/commands/trace_paths.py +1 -1
  52. nautobot/dcim/migrations/0072_alter_powerfeed_options_and_more.py +97 -0
  53. nautobot/dcim/models/device_component_templates.py +8 -0
  54. nautobot/dcim/models/device_components.py +31 -12
  55. nautobot/dcim/models/devices.py +1 -1
  56. nautobot/dcim/models/power.py +171 -10
  57. nautobot/dcim/models/racks.py +7 -4
  58. nautobot/dcim/tables/devices.py +2 -0
  59. nautobot/dcim/tables/devicetypes.py +1 -0
  60. nautobot/dcim/tables/power.py +30 -2
  61. nautobot/dcim/templates/dcim/device.html +2 -2
  62. nautobot/dcim/templates/dcim/devicetype_retrieve.html +1 -214
  63. nautobot/dcim/templates/dcim/location_retrieve.html +2 -2
  64. nautobot/dcim/templates/dcim/powerfeed_edit.html +8 -0
  65. nautobot/dcim/templates/dcim/powerfeed_retrieve.html +1 -1
  66. nautobot/dcim/templates/dcim/rack.html +2 -318
  67. nautobot/dcim/templates/dcim/rack_edit.html +2 -47
  68. nautobot/dcim/templates/dcim/rack_retrieve.html +318 -0
  69. nautobot/dcim/templates/dcim/rack_update.html +47 -0
  70. nautobot/dcim/tests/integration/test_device_bulk_operations.py +61 -0
  71. nautobot/dcim/tests/test_api.py +24 -4
  72. nautobot/dcim/tests/test_filters.py +91 -13
  73. nautobot/dcim/tests/test_models.py +262 -0
  74. nautobot/dcim/tests/test_views.py +20 -12
  75. nautobot/dcim/urls.py +2 -27
  76. nautobot/dcim/utils.py +13 -30
  77. nautobot/dcim/views.py +428 -146
  78. nautobot/extras/choices.py +12 -4
  79. nautobot/extras/factory.py +19 -20
  80. nautobot/extras/filters/__init__.py +3 -2
  81. nautobot/extras/filters/mixins.py +23 -7
  82. nautobot/extras/forms/__init__.py +2 -1
  83. nautobot/extras/forms/forms.py +71 -0
  84. nautobot/extras/forms/mixins.py +4 -2
  85. nautobot/extras/managers.py +4 -1
  86. nautobot/extras/migrations/0062_collect_roles_from_related_apps_roles.py +30 -7
  87. nautobot/extras/migrations/0124_add_joblogentry_index.py +16 -0
  88. nautobot/extras/migrations/0125_jobresult_date_started.py +18 -0
  89. nautobot/extras/models/customfields.py +53 -5
  90. nautobot/extras/models/datasources.py +1 -2
  91. nautobot/extras/models/jobs.py +13 -3
  92. nautobot/extras/models/relationships.py +55 -6
  93. nautobot/extras/plugins/views.py +24 -1
  94. nautobot/extras/secrets/__init__.py +1 -1
  95. nautobot/extras/tables.py +9 -0
  96. nautobot/extras/templates/extras/customfield.html +2 -129
  97. nautobot/extras/templates/extras/customfield_edit.html +2 -108
  98. nautobot/extras/templates/extras/customfield_retrieve.html +129 -0
  99. nautobot/extras/templates/extras/customfield_update.html +108 -0
  100. nautobot/extras/templates/extras/graphqlquery.html +2 -97
  101. nautobot/extras/templates/extras/graphqlquery_list.html +1 -0
  102. nautobot/extras/templates/extras/graphqlquery_retrieve.html +97 -0
  103. nautobot/extras/templates/extras/inc/jobresult.html +7 -3
  104. nautobot/extras/templates/extras/jobresult.html +2 -155
  105. nautobot/extras/templates/extras/jobresult_retrieve.html +155 -0
  106. nautobot/extras/templates/extras/marketplace.html +5 -6
  107. nautobot/extras/templates/extras/note.html +2 -53
  108. nautobot/extras/templates/extras/note_retrieve.html +53 -0
  109. nautobot/extras/templates/extras/plugins_list.html +5 -6
  110. nautobot/extras/templates/extras/secretsgroup.html +2 -29
  111. nautobot/extras/templates/extras/secretsgroup_edit.html +2 -82
  112. nautobot/extras/templates/extras/secretsgroup_retrieve.html +29 -0
  113. nautobot/extras/templates/extras/secretsgroup_update.html +82 -0
  114. nautobot/extras/templatetags/custom_links.py +2 -2
  115. nautobot/extras/templatetags/job_buttons.py +1 -1
  116. nautobot/extras/templatetags/plugins.py +1 -1
  117. nautobot/extras/tests/integration/test_computedfields.py +2 -2
  118. nautobot/extras/tests/integration/test_customfields.py +14 -11
  119. nautobot/extras/tests/integration/test_dynamicgroups.py +1 -1
  120. nautobot/extras/tests/integration/test_notes.py +1 -1
  121. nautobot/extras/tests/integration/test_plugins.py +6 -6
  122. nautobot/extras/tests/integration/test_relationships.py +2 -2
  123. nautobot/extras/tests/test_customfields.py +115 -7
  124. nautobot/extras/tests/test_filters.py +9 -0
  125. nautobot/extras/tests/test_forms.py +2 -2
  126. nautobot/extras/tests/test_plugins.py +2 -3
  127. nautobot/extras/tests/test_relationships.py +14 -8
  128. nautobot/extras/tests/test_views.py +285 -2
  129. nautobot/extras/urls.py +5 -110
  130. nautobot/extras/utils.py +5 -2
  131. nautobot/extras/views.py +116 -311
  132. nautobot/ipam/api/views.py +69 -6
  133. nautobot/ipam/tables.py +8 -15
  134. nautobot/ipam/tests/migration/test_migrations.py +8 -8
  135. nautobot/ipam/tests/test_api.py +352 -2
  136. nautobot/ipam/tests/test_models.py +1 -1
  137. nautobot/project-static/docs/404.html +34 -34
  138. nautobot/project-static/docs/apps/index.html +34 -34
  139. nautobot/project-static/docs/apps/nautobot-apps.html +34 -34
  140. nautobot/project-static/docs/assets/_mkdocstrings.css +44 -6
  141. nautobot/project-static/docs/assets/javascripts/{bundle.56ea9cef.min.js → bundle.50899def.min.js} +2 -2
  142. nautobot/project-static/docs/assets/javascripts/{bundle.56ea9cef.min.js.map → bundle.50899def.min.js.map} +2 -2
  143. nautobot/project-static/docs/assets/stylesheets/{main.342714a4.min.css → main.7e37652d.min.css} +1 -1
  144. nautobot/project-static/docs/assets/stylesheets/{main.342714a4.min.css.map → main.7e37652d.min.css.map} +1 -1
  145. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +39 -34
  146. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +36 -34
  147. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +139 -54
  148. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +48 -38
  149. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +50 -40
  150. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +36 -34
  151. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +35 -34
  152. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +43 -39
  153. nautobot/project-static/docs/code-reference/nautobot/apps/events.html +52 -42
  154. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +50 -41
  155. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +54 -44
  156. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +85 -93
  157. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +154 -62
  158. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +54 -46
  159. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +146 -87
  160. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +240 -70
  161. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +38 -35
  162. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +41 -35
  163. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +173 -52
  164. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +269 -85
  165. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +5987 -2643
  166. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +36 -34
  167. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +165 -89
  168. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +161 -69
  169. nautobot/project-static/docs/development/apps/api/configuration-view.html +34 -34
  170. nautobot/project-static/docs/development/apps/api/database-backend-config.html +34 -34
  171. nautobot/project-static/docs/development/apps/api/models/django-admin.html +34 -34
  172. nautobot/project-static/docs/development/apps/api/models/global-search.html +34 -34
  173. nautobot/project-static/docs/development/apps/api/models/graphql.html +34 -34
  174. nautobot/project-static/docs/development/apps/api/models/index.html +34 -34
  175. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +34 -34
  176. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +34 -34
  177. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +34 -34
  178. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +34 -34
  179. nautobot/project-static/docs/development/apps/api/platform-features/index.html +34 -34
  180. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +34 -34
  181. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +34 -34
  182. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +34 -34
  183. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +34 -34
  184. nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +34 -34
  185. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +34 -34
  186. nautobot/project-static/docs/development/apps/api/prometheus.html +34 -34
  187. nautobot/project-static/docs/development/apps/api/setup.html +34 -34
  188. nautobot/project-static/docs/development/apps/api/testing.html +34 -34
  189. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +34 -34
  190. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +34 -34
  191. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +34 -34
  192. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +34 -34
  193. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +34 -34
  194. nautobot/project-static/docs/development/apps/api/views/base-template.html +34 -34
  195. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +34 -34
  196. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +34 -34
  197. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +34 -34
  198. nautobot/project-static/docs/development/apps/api/views/index.html +34 -34
  199. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +34 -34
  200. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +42 -36
  201. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +34 -34
  202. nautobot/project-static/docs/development/apps/api/views/notes.html +34 -34
  203. nautobot/project-static/docs/development/apps/api/views/rest-api.html +34 -34
  204. nautobot/project-static/docs/development/apps/api/views/urls.html +34 -34
  205. nautobot/project-static/docs/development/apps/index.html +34 -34
  206. nautobot/project-static/docs/development/apps/migration/code-updates.html +34 -34
  207. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +34 -34
  208. nautobot/project-static/docs/development/apps/migration/from-v1.html +34 -34
  209. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +34 -34
  210. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +34 -34
  211. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +34 -34
  212. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +34 -34
  213. nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +37 -37
  214. nautobot/project-static/docs/development/apps/migration/ui-component-framework/breadcrumbs-titles.html +10544 -0
  215. nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +34 -34
  216. nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +34 -34
  217. nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +34 -34
  218. nautobot/project-static/docs/development/apps/porting-from-netbox.html +37 -37
  219. nautobot/project-static/docs/development/core/application-registry.html +162 -133
  220. nautobot/project-static/docs/development/core/best-practices.html +34 -34
  221. nautobot/project-static/docs/development/core/bootstrap-ui.html +34 -34
  222. nautobot/project-static/docs/development/core/caching.html +34 -34
  223. nautobot/project-static/docs/development/core/controllers.html +34 -34
  224. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +34 -34
  225. nautobot/project-static/docs/development/core/generic-views.html +34 -34
  226. nautobot/project-static/docs/development/core/getting-started.html +34 -34
  227. nautobot/project-static/docs/development/core/homepage.html +34 -34
  228. nautobot/project-static/docs/development/core/index.html +34 -34
  229. nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +34 -34
  230. nautobot/project-static/docs/development/core/model-checklist.html +34 -34
  231. nautobot/project-static/docs/development/core/model-features.html +34 -34
  232. nautobot/project-static/docs/development/core/natural-keys.html +34 -34
  233. nautobot/project-static/docs/development/core/navigation-menu.html +34 -34
  234. nautobot/project-static/docs/development/core/release-checklist.html +34 -34
  235. nautobot/project-static/docs/development/core/role-internals.html +34 -34
  236. nautobot/project-static/docs/development/core/settings.html +34 -34
  237. nautobot/project-static/docs/development/core/style-guide.html +34 -34
  238. nautobot/project-static/docs/development/core/templates.html +34 -34
  239. nautobot/project-static/docs/development/core/testing.html +34 -34
  240. nautobot/project-static/docs/development/core/ui-component-framework.html +724 -289
  241. nautobot/project-static/docs/development/core/user-preferences.html +34 -34
  242. nautobot/project-static/docs/development/index.html +34 -34
  243. nautobot/project-static/docs/development/jobs/getting-started.html +34 -34
  244. nautobot/project-static/docs/development/jobs/index.html +34 -34
  245. nautobot/project-static/docs/development/jobs/installation.html +34 -34
  246. nautobot/project-static/docs/development/jobs/job-extensions.html +34 -34
  247. nautobot/project-static/docs/development/jobs/job-logging.html +34 -34
  248. nautobot/project-static/docs/development/jobs/job-patterns.html +34 -34
  249. nautobot/project-static/docs/development/jobs/job-structure.html +34 -34
  250. nautobot/project-static/docs/development/jobs/migration/from-v1.html +34 -34
  251. nautobot/project-static/docs/development/jobs/testing.html +34 -34
  252. nautobot/project-static/docs/index.html +34 -34
  253. nautobot/project-static/docs/media/development/core/ui-component-framework/breadcrumbs-titles-data-flow.png +0 -0
  254. nautobot/project-static/docs/media/power_distribution.png +0 -0
  255. nautobot/project-static/docs/objects.inv +0 -0
  256. nautobot/project-static/docs/overview/application_stack.html +34 -34
  257. nautobot/project-static/docs/overview/design_philosophy.html +34 -34
  258. nautobot/project-static/docs/release-notes/index.html +34 -34
  259. nautobot/project-static/docs/release-notes/version-1.0.html +34 -34
  260. nautobot/project-static/docs/release-notes/version-1.1.html +34 -34
  261. nautobot/project-static/docs/release-notes/version-1.2.html +34 -34
  262. nautobot/project-static/docs/release-notes/version-1.3.html +34 -34
  263. nautobot/project-static/docs/release-notes/version-1.4.html +34 -34
  264. nautobot/project-static/docs/release-notes/version-1.5.html +34 -34
  265. nautobot/project-static/docs/release-notes/version-1.6.html +34 -34
  266. nautobot/project-static/docs/release-notes/version-2.0.html +34 -34
  267. nautobot/project-static/docs/release-notes/version-2.1.html +34 -34
  268. nautobot/project-static/docs/release-notes/version-2.2.html +34 -34
  269. nautobot/project-static/docs/release-notes/version-2.3.html +34 -34
  270. nautobot/project-static/docs/release-notes/version-2.4.html +402 -34
  271. nautobot/project-static/docs/requirements.txt +3 -3
  272. nautobot/project-static/docs/search/search_index.json +1 -1
  273. nautobot/project-static/docs/sitemap.xml +303 -299
  274. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  275. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +34 -34
  276. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +34 -34
  277. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +34 -34
  278. nautobot/project-static/docs/user-guide/administration/configuration/index.html +34 -34
  279. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +34 -34
  280. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +37 -37
  281. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +34 -34
  282. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +34 -34
  283. nautobot/project-static/docs/user-guide/administration/guides/docker.html +34 -34
  284. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +34 -34
  285. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +34 -34
  286. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +34 -34
  287. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +34 -34
  288. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +34 -34
  289. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +34 -34
  290. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +34 -34
  291. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +34 -34
  292. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +34 -34
  293. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +34 -34
  294. nautobot/project-static/docs/user-guide/administration/installation/index.html +34 -34
  295. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +34 -34
  296. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +34 -34
  297. nautobot/project-static/docs/user-guide/administration/installation/services.html +34 -34
  298. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +34 -34
  299. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +34 -34
  300. nautobot/project-static/docs/user-guide/administration/security/index.html +34 -34
  301. nautobot/project-static/docs/user-guide/administration/security/notices.html +34 -34
  302. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +296 -251
  303. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +34 -34
  304. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +34 -34
  305. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +34 -34
  306. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +34 -34
  307. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +34 -34
  308. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +34 -34
  309. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +34 -34
  310. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +34 -34
  311. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +34 -34
  312. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +34 -34
  313. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +34 -34
  314. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +34 -34
  315. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +34 -34
  316. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +34 -34
  317. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +34 -34
  318. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +34 -34
  319. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +34 -34
  320. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +34 -34
  321. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +34 -34
  322. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +34 -34
  323. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +34 -34
  324. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +34 -34
  325. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +34 -34
  326. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +34 -34
  327. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +34 -34
  328. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +34 -34
  329. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +34 -34
  330. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +34 -34
  331. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +34 -34
  332. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +34 -34
  333. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +34 -34
  334. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +34 -34
  335. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +34 -34
  336. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +34 -34
  337. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +34 -34
  338. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +34 -34
  339. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +34 -34
  340. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +37 -37
  341. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +34 -34
  342. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +34 -34
  343. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +42 -52
  344. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +34 -34
  345. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +34 -34
  346. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +34 -34
  347. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +34 -34
  348. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +37 -37
  349. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +34 -34
  350. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulefamily.html +34 -34
  351. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +34 -34
  352. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +34 -34
  353. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +316 -39
  354. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +35 -35
  355. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +34 -34
  356. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +147 -37
  357. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +52 -35
  358. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +51 -34
  359. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +34 -34
  360. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +34 -34
  361. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +34 -34
  362. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +34 -34
  363. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +34 -34
  364. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +34 -34
  365. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +34 -34
  366. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +34 -34
  367. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +34 -34
  368. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +34 -34
  369. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +34 -34
  370. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +34 -34
  371. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +34 -34
  372. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +34 -34
  373. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +34 -34
  374. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +34 -34
  375. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +34 -34
  376. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +34 -34
  377. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +34 -34
  378. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +34 -34
  379. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +34 -34
  380. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +34 -34
  381. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +34 -34
  382. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +34 -34
  383. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +34 -34
  384. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +34 -34
  385. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +34 -34
  386. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +34 -34
  387. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +34 -34
  388. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +34 -34
  389. nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +34 -34
  390. nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +34 -34
  391. nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +34 -34
  392. nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +34 -34
  393. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +34 -34
  394. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +34 -34
  395. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +34 -34
  396. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +34 -34
  397. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +34 -34
  398. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +34 -34
  399. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +34 -34
  400. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +34 -34
  401. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +34 -34
  402. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +34 -34
  403. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +34 -34
  404. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +34 -34
  405. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +34 -34
  406. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +34 -34
  407. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +34 -34
  408. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +34 -34
  409. nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +34 -34
  410. nautobot/project-static/docs/user-guide/index.html +34 -34
  411. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +34 -34
  412. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +34 -34
  413. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +34 -34
  414. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +34 -34
  415. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +34 -34
  416. nautobot/project-static/docs/user-guide/platform-functionality/events.html +34 -34
  417. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +34 -34
  418. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +34 -34
  419. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +34 -34
  420. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +34 -34
  421. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +34 -34
  422. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +34 -34
  423. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +34 -34
  424. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +35 -35
  425. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +34 -34
  426. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +34 -34
  427. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +34 -34
  428. nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +34 -34
  429. nautobot/project-static/docs/user-guide/platform-functionality/jobs/managing-jobs.html +34 -34
  430. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +34 -34
  431. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +34 -34
  432. nautobot/project-static/docs/user-guide/platform-functionality/note.html +34 -34
  433. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +34 -34
  434. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +34 -34
  435. nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +34 -34
  436. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +34 -34
  437. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +34 -34
  438. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +34 -34
  439. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +34 -34
  440. nautobot/project-static/docs/user-guide/platform-functionality/role.html +34 -34
  441. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +34 -34
  442. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +34 -34
  443. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +34 -34
  444. nautobot/project-static/docs/user-guide/platform-functionality/status.html +34 -34
  445. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +34 -34
  446. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +34 -34
  447. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +34 -34
  448. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +34 -34
  449. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +34 -34
  450. nautobot/tenancy/api/views.py +2 -1
  451. nautobot/users/tests/test_api.py +2 -2
  452. nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -252
  453. nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -75
  454. nautobot/virtualization/templates/virtualization/virtualmachine_retrieve.html +252 -0
  455. nautobot/virtualization/templates/virtualization/virtualmachine_update.html +75 -0
  456. nautobot/virtualization/urls.py +3 -61
  457. nautobot/virtualization/views.py +48 -72
  458. {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/METADATA +27 -27
  459. {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/RECORD +463 -439
  460. {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/LICENSE.txt +0 -0
  461. {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/NOTICE +0 -0
  462. {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/WHEEL +0 -0
  463. {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/entry_points.txt +0 -0
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
  <link rel="icon" href="../../../assets/favicon.ico">
21
- <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.15">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.16">
22
22
 
23
23
 
24
24
 
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- <link rel="stylesheet" href="../../../assets/stylesheets/main.342714a4.min.css">
29
+ <link rel="stylesheet" href="../../../assets/stylesheets/main.7e37652d.min.css">
30
30
 
31
31
 
32
32
  <link rel="stylesheet" href="../../../assets/stylesheets/palette.06af60db.min.css">
@@ -38,7 +38,7 @@
38
38
 
39
39
 
40
40
 
41
- <style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20448%20512%22%3E%3C%21--%21%20Font%20Awesome%20Free%206.7.2%20by%20%40fontawesome%20-%20https%3A//fontawesome.com%20License%20-%20https%3A//fontawesome.com/license/free%20%28Icons%3A%20CC%20BY%204.0%2C%20Fonts%3A%20SIL%20OFL%201.1%2C%20Code%3A%20MIT%20License%29%20Copyright%202024%20Fonticons%2C%20Inc.--%3E%3Cpath%20d%3D%22M288%200H128c-17.7%200-32%2014.3-32%2032s14.3%2032%2032%2032v132.8c0%2011.8-3.3%2023.5-9.5%2033.5L10.3%20406.2C3.6%20417.2%200%20429.7%200%20442.6%200%20480.9%2031.1%20512%2069.4%20512h309.2c38.3%200%2069.4-31.1%2069.4-69.4%200-12.8-3.6-25.4-10.3-36.4L329.5%20230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7%200%2032-14.3%2032-32S337.7%200%20320%200zm-96%20196.8V64h64v132.8c0%2023.7%206.6%2046.9%2019%2067.1l34.5%2056.1h-171l34.5-56.1c12.4-20.2%2019-43.4%2019-67.1%22/%3E%3C/svg%3E');}</style>
41
+ <style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20448%20512%22%3E%3C%21--%21%20Font%20Awesome%20Free%207.0.0%20by%20%40fontawesome%20-%20https%3A//fontawesome.com%20License%20-%20https%3A//fontawesome.com/license/free%20%28Icons%3A%20CC%20BY%204.0%2C%20Fonts%3A%20SIL%20OFL%201.1%2C%20Code%3A%20MIT%20License%29%20Copyright%202025%20Fonticons%2C%20Inc.--%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M288%200H128c-17.7%200-32%2014.3-32%2032s14.3%2032%2032%2032v151.5L7.5%20426.3C2.6%20435%200%20444.7%200%20454.7%200%20486.4%2025.6%20512%2057.3%20512h333.4c31.6%200%2057.3-25.6%2057.3-57.3%200-10-2.6-19.8-7.5-28.4L320%20215.5V64c17.7%200%2032-14.3%2032-32S337.7%200%20320%200zm-96%20215.5V64h64v151.5c0%2011.1%202.9%2022.1%208.4%2031.8L306%20320H142l41.6-72.7c5.5-9.7%208.4-20.6%208.4-31.8%22/%3E%3C/svg%3E');}</style>
42
42
 
43
43
 
44
44
 
@@ -220,7 +220,7 @@
220
220
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
221
221
  <div class="md-source__icon md-icon">
222
222
 
223
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
223
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
224
224
  </div>
225
225
  <div class="md-source__repository">
226
226
  GitHub
@@ -392,7 +392,7 @@
392
392
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
393
393
  <div class="md-source__icon md-icon">
394
394
 
395
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
395
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
396
396
  </div>
397
397
  <div class="md-source__repository">
398
398
  GitHub
@@ -1630,6 +1630,15 @@
1630
1630
  </span>
1631
1631
  </a>
1632
1632
 
1633
+ </li>
1634
+
1635
+ <li class="md-nav__item">
1636
+ <a href="#check_job_approval_status" class="md-nav__link">
1637
+ <span class="md-ellipsis">
1638
+ check_job_approval_status
1639
+ </span>
1640
+ </a>
1641
+
1633
1642
  </li>
1634
1643
 
1635
1644
  <li class="md-nav__item">
@@ -4340,29 +4349,6 @@
4340
4349
 
4341
4350
 
4342
4351
 
4343
- <li class="md-nav__item">
4344
- <a href="../../core-data-model/dcim/inventoryitem.html" class="md-nav__link">
4345
-
4346
-
4347
-
4348
- <span class="md-ellipsis">
4349
- Inventory Item
4350
-
4351
- </span>
4352
-
4353
-
4354
- </a>
4355
- </li>
4356
-
4357
-
4358
-
4359
-
4360
-
4361
-
4362
-
4363
-
4364
-
4365
-
4366
4352
  <li class="md-nav__item">
4367
4353
  <a href="../../core-data-model/dcim/modulebay.html" class="md-nav__link">
4368
4354
 
@@ -9027,6 +9013,29 @@
9027
9013
 
9028
9014
 
9029
9015
 
9016
+
9017
+
9018
+
9019
+
9020
+
9021
+
9022
+ <li class="md-nav__item">
9023
+ <a href="../../../development/apps/migration/ui-component-framework/breadcrumbs-titles.html" class="md-nav__link">
9024
+
9025
+
9026
+
9027
+ <span class="md-ellipsis">
9028
+ Breadcrumbs and titles
9029
+
9030
+ </span>
9031
+
9032
+
9033
+ </a>
9034
+ </li>
9035
+
9036
+
9037
+
9038
+
9030
9039
  </ul>
9031
9040
  </nav>
9032
9041
 
@@ -10467,6 +10476,15 @@
10467
10476
  </span>
10468
10477
  </a>
10469
10478
 
10479
+ </li>
10480
+
10481
+ <li class="md-nav__item">
10482
+ <a href="#check_job_approval_status" class="md-nav__link">
10483
+ <span class="md-ellipsis">
10484
+ check_job_approval_status
10485
+ </span>
10486
+ </a>
10487
+
10470
10488
  </li>
10471
10489
 
10472
10490
  <li class="md-nav__item">
@@ -10832,17 +10850,41 @@
10832
10850
  <p class="admonition-title">Note</p>
10833
10851
  <p>This is a built-in Django command. Please see the <a href="https://docs.djangoproject.com/en/stable/ref/django-admin/#collectstatic">official documentation on <code>collectstatic</code></a> for more information.</p>
10834
10852
  </div>
10853
+ <h3 id="check_job_approval_status"><code>check_job_approval_status</code><a class="headerlink" href="#check_job_approval_status" title="Permanent link">&para;</a></h3>
10854
+ <p><code>nautobot-server check_job_approval_status</code></p>
10855
+ <p>Checks for scheduled jobs and jobs that require approval.</p>
10856
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-12-1" name="__codelineno-12-1" href="#__codelineno-12-1"></a>nautobot-server check_job_approval_status
10857
+ </code></pre></div>
10858
+ <p>Output (when failed):</p>
10859
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-13-1" name="__codelineno-13-1" href="#__codelineno-13-1"></a>nautobot.core.management.commands.check_job_approval_status.ApprovalRequiredScheduledJobsError: These need to be approved (and run) or denied before upgrading to Nautobot v3, as the introduction of the approval workflows feature means that future scheduled-job approvals will be handled differently.
10860
+ <a id="__codelineno-13-2" name="__codelineno-13-2" href="#__codelineno-13-2"></a>Refer to the documentation: https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/job-scheduling-and-approvals/#approval-via-the-ui
10861
+ <a id="__codelineno-13-3" name="__codelineno-13-3" href="#__codelineno-13-3"></a>Below is a list of affected scheduled jobs:
10862
+ <a id="__codelineno-13-4" name="__codelineno-13-4" href="#__codelineno-13-4"></a> - ID: 0f8a0670-459b-430f-8c5e-a631888509d4, Name: test2
10863
+ </code></pre></div>
10864
+ <p>Output (with warning):</p>
10865
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-14-1" name="__codelineno-14-1" href="#__codelineno-14-1"></a>Following jobs still have `approval_required=True`.
10866
+ <a id="__codelineno-14-2" name="__codelineno-14-2" href="#__codelineno-14-2"></a>These jobs will no longer trigger approval automatically.
10867
+ <a id="__codelineno-14-3" name="__codelineno-14-3" href="#__codelineno-14-3"></a>After upgrading to Nautobot 3.x, you should add an approval workflow definition(s) covering these jobs.
10868
+ <a id="__codelineno-14-4" name="__codelineno-14-4" href="#__codelineno-14-4"></a>Refer to the documentation: https://docs.nautobot.com/projects/core/en/next/user-guide/platform-functionality/approval-workflow/
10869
+ <a id="__codelineno-14-5" name="__codelineno-14-5" href="#__codelineno-14-5"></a>Affected jobs (Names):
10870
+ <a id="__codelineno-14-6" name="__codelineno-14-6" href="#__codelineno-14-6"></a> - ExampleDryRunJob
10871
+ <a id="__codelineno-14-7" name="__codelineno-14-7" href="#__codelineno-14-7"></a> - Example Job of Everything
10872
+ <a id="__codelineno-14-8" name="__codelineno-14-8" href="#__codelineno-14-8"></a> - Export Object List
10873
+ </code></pre></div>
10874
+ <p>Output (when pass):</p>
10875
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-15-1" name="__codelineno-15-1" href="#__codelineno-15-1"></a>No approval_required jobs or scheduled jobs found.
10876
+ </code></pre></div>
10835
10877
  <h3 id="createsuperuser"><code>createsuperuser</code><a class="headerlink" href="#createsuperuser" title="Permanent link">&para;</a></h3>
10836
10878
  <p><code>nautobot-server createsuperuser</code></p>
10837
10879
  <p>Creates a superuser account that has all permissions.</p>
10838
- <div class="highlight"><pre><span></span><code><a id="__codelineno-12-1" name="__codelineno-12-1" href="#__codelineno-12-1"></a>nautobot-server createsuperuser
10880
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-16-1" name="__codelineno-16-1" href="#__codelineno-16-1"></a>nautobot-server createsuperuser
10839
10881
  </code></pre></div>
10840
10882
  <p>This provides the following output:</p>
10841
- <div class="highlight"><pre><span></span><code><a id="__codelineno-13-1" name="__codelineno-13-1" href="#__codelineno-13-1"></a>Username (leave blank to use &#39;jathan&#39;): example
10842
- <a id="__codelineno-13-2" name="__codelineno-13-2" href="#__codelineno-13-2"></a>Email address: example@localhost
10843
- <a id="__codelineno-13-3" name="__codelineno-13-3" href="#__codelineno-13-3"></a>Password:
10844
- <a id="__codelineno-13-4" name="__codelineno-13-4" href="#__codelineno-13-4"></a>Password (again):
10845
- <a id="__codelineno-13-5" name="__codelineno-13-5" href="#__codelineno-13-5"></a>Superuser created successfully.
10883
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-17-1" name="__codelineno-17-1" href="#__codelineno-17-1"></a>Username (leave blank to use &#39;jathan&#39;): example
10884
+ <a id="__codelineno-17-2" name="__codelineno-17-2" href="#__codelineno-17-2"></a>Email address: example@localhost
10885
+ <a id="__codelineno-17-3" name="__codelineno-17-3" href="#__codelineno-17-3"></a>Password:
10886
+ <a id="__codelineno-17-4" name="__codelineno-17-4" href="#__codelineno-17-4"></a>Password (again):
10887
+ <a id="__codelineno-17-5" name="__codelineno-17-5" href="#__codelineno-17-5"></a>Superuser created successfully.
10846
10888
  </code></pre></div>
10847
10889
  <div class="admonition note">
10848
10890
  <p class="admonition-title">Note</p>
@@ -10855,17 +10897,17 @@
10855
10897
  <p class="admonition-title">Danger</p>
10856
10898
  <p>This is an advanced feature that gives you direct access to run raw SQL queries. Use this very cautiously as you can cause irreparable damage to your Nautobot installation.</p>
10857
10899
  </div>
10858
- <div class="highlight"><pre><span></span><code><a id="__codelineno-14-1" name="__codelineno-14-1" href="#__codelineno-14-1"></a>nautobot-server dbshell
10900
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-18-1" name="__codelineno-18-1" href="#__codelineno-18-1"></a>nautobot-server dbshell
10859
10901
  </code></pre></div>
10860
10902
  <p>Output:</p>
10861
- <div class="highlight"><pre><span></span><code><a id="__codelineno-15-1" name="__codelineno-15-1" href="#__codelineno-15-1"></a>psql (12.6 (Ubuntu 12.6-0ubuntu0.20.04.1))
10862
- <a id="__codelineno-15-2" name="__codelineno-15-2" href="#__codelineno-15-2"></a>SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off)
10863
- <a id="__codelineno-15-3" name="__codelineno-15-3" href="#__codelineno-15-3"></a>Type &quot;help&quot; for help.
10864
- <a id="__codelineno-15-4" name="__codelineno-15-4" href="#__codelineno-15-4"></a>
10865
- <a id="__codelineno-15-5" name="__codelineno-15-5" href="#__codelineno-15-5"></a>nautobot=&gt; \conninfo
10866
- <a id="__codelineno-15-6" name="__codelineno-15-6" href="#__codelineno-15-6"></a>You are connected to database &quot;nautobot&quot; as user &quot;nautobot&quot; on host &quot;localhost&quot; (address &quot;::1&quot;) at port &quot;5432&quot;.
10867
- <a id="__codelineno-15-7" name="__codelineno-15-7" href="#__codelineno-15-7"></a>SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off)
10868
- <a id="__codelineno-15-8" name="__codelineno-15-8" href="#__codelineno-15-8"></a>nautobot=&gt; \q
10903
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-19-1" name="__codelineno-19-1" href="#__codelineno-19-1"></a>psql (12.6 (Ubuntu 12.6-0ubuntu0.20.04.1))
10904
+ <a id="__codelineno-19-2" name="__codelineno-19-2" href="#__codelineno-19-2"></a>SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off)
10905
+ <a id="__codelineno-19-3" name="__codelineno-19-3" href="#__codelineno-19-3"></a>Type &quot;help&quot; for help.
10906
+ <a id="__codelineno-19-4" name="__codelineno-19-4" href="#__codelineno-19-4"></a>
10907
+ <a id="__codelineno-19-5" name="__codelineno-19-5" href="#__codelineno-19-5"></a>nautobot=&gt; \conninfo
10908
+ <a id="__codelineno-19-6" name="__codelineno-19-6" href="#__codelineno-19-6"></a>You are connected to database &quot;nautobot&quot; as user &quot;nautobot&quot; on host &quot;localhost&quot; (address &quot;::1&quot;) at port &quot;5432&quot;.
10909
+ <a id="__codelineno-19-7" name="__codelineno-19-7" href="#__codelineno-19-7"></a>SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off)
10910
+ <a id="__codelineno-19-8" name="__codelineno-19-8" href="#__codelineno-19-8"></a>nautobot=&gt; \q
10869
10911
  </code></pre></div>
10870
10912
  <div class="admonition note">
10871
10913
  <p class="admonition-title">Note</p>
@@ -10886,12 +10928,12 @@
10886
10928
  <li><code>django_rq</code> is no longer part of Nautobot's dependencies and so no longer needs to be explicitly excluded.</li>
10887
10929
  </ul>
10888
10930
  </details>
10889
- <div class="highlight"><pre><span></span><code><a id="__codelineno-16-1" name="__codelineno-16-1" href="#__codelineno-16-1"></a>nautobot-server dumpdata \
10890
- <a id="__codelineno-16-2" name="__codelineno-16-2" href="#__codelineno-16-2"></a> --exclude auth.permission \
10891
- <a id="__codelineno-16-3" name="__codelineno-16-3" href="#__codelineno-16-3"></a> --format json \
10892
- <a id="__codelineno-16-4" name="__codelineno-16-4" href="#__codelineno-16-4"></a> --indent 2 \
10893
- <a id="__codelineno-16-5" name="__codelineno-16-5" href="#__codelineno-16-5"></a> --traceback \
10894
- <a id="__codelineno-16-6" name="__codelineno-16-6" href="#__codelineno-16-6"></a> &gt; nautobot_dump.json
10931
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-20-1" name="__codelineno-20-1" href="#__codelineno-20-1"></a>nautobot-server dumpdata \
10932
+ <a id="__codelineno-20-2" name="__codelineno-20-2" href="#__codelineno-20-2"></a> --exclude auth.permission \
10933
+ <a id="__codelineno-20-3" name="__codelineno-20-3" href="#__codelineno-20-3"></a> --format json \
10934
+ <a id="__codelineno-20-4" name="__codelineno-20-4" href="#__codelineno-20-4"></a> --indent 2 \
10935
+ <a id="__codelineno-20-5" name="__codelineno-20-5" href="#__codelineno-20-5"></a> --traceback \
10936
+ <a id="__codelineno-20-6" name="__codelineno-20-6" href="#__codelineno-20-6"></a> &gt; nautobot_dump.json
10895
10937
  </code></pre></div>
10896
10938
  <p>Use this command to generate a JSON dump of the database contents.</p>
10897
10939
  <p>One example of using this command would be to <a href="../migration/migrating-from-postgresql.html#export-data-from-postgresql">export data from PostgreSQL</a> and then <a href="../migration/migrating-from-postgresql.html#import-the-database-dump-into-mysql">import the data dump into MySQL</a>.</p>
@@ -10902,32 +10944,32 @@
10902
10944
  <h3 id="fix_custom_fields"><code>fix_custom_fields</code><a class="headerlink" href="#fix_custom_fields" title="Permanent link">&para;</a></h3>
10903
10945
  <p><code>nautobot-server fix_custom_fields [app_label.ModelName [app_label.ModelName ...]]</code></p>
10904
10946
  <p>Adds/Removes any custom fields which should or should not exist on an object. This command should not be run unless a custom fields jobs has failed:</p>
10905
- <div class="highlight"><pre><span></span><code><a id="__codelineno-17-1" name="__codelineno-17-1" href="#__codelineno-17-1"></a>nautobot-server fix_custom_fields
10947
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-21-1" name="__codelineno-21-1" href="#__codelineno-21-1"></a>nautobot-server fix_custom_fields
10906
10948
  </code></pre></div>
10907
10949
  <p>Example output:</p>
10908
- <div class="highlight"><pre><span></span><code><a id="__codelineno-18-1" name="__codelineno-18-1" href="#__codelineno-18-1"></a>Processing ContentType dcim | device
10909
- <a id="__codelineno-18-2" name="__codelineno-18-2" href="#__codelineno-18-2"></a>Processing ContentType dcim | location
10910
- <a id="__codelineno-18-3" name="__codelineno-18-3" href="#__codelineno-18-3"></a>Processing ContentType dcim | rack
10911
- <a id="__codelineno-18-4" name="__codelineno-18-4" href="#__codelineno-18-4"></a>Processing ContentType dcim | cable
10912
- <a id="__codelineno-18-5" name="__codelineno-18-5" href="#__codelineno-18-5"></a>Processing ContentType dcim | power feed
10913
- <a id="__codelineno-18-6" name="__codelineno-18-6" href="#__codelineno-18-6"></a>Processing ContentType circuits | circuit
10914
- <a id="__codelineno-18-7" name="__codelineno-18-7" href="#__codelineno-18-7"></a>Processing ContentType ipam | prefix
10915
- <a id="__codelineno-18-8" name="__codelineno-18-8" href="#__codelineno-18-8"></a>... (truncated for brevity of documentation) ...
10950
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-22-1" name="__codelineno-22-1" href="#__codelineno-22-1"></a>Processing ContentType dcim | device
10951
+ <a id="__codelineno-22-2" name="__codelineno-22-2" href="#__codelineno-22-2"></a>Processing ContentType dcim | location
10952
+ <a id="__codelineno-22-3" name="__codelineno-22-3" href="#__codelineno-22-3"></a>Processing ContentType dcim | rack
10953
+ <a id="__codelineno-22-4" name="__codelineno-22-4" href="#__codelineno-22-4"></a>Processing ContentType dcim | cable
10954
+ <a id="__codelineno-22-5" name="__codelineno-22-5" href="#__codelineno-22-5"></a>Processing ContentType dcim | power feed
10955
+ <a id="__codelineno-22-6" name="__codelineno-22-6" href="#__codelineno-22-6"></a>Processing ContentType circuits | circuit
10956
+ <a id="__codelineno-22-7" name="__codelineno-22-7" href="#__codelineno-22-7"></a>Processing ContentType ipam | prefix
10957
+ <a id="__codelineno-22-8" name="__codelineno-22-8" href="#__codelineno-22-8"></a>... (truncated for brevity of documentation) ...
10916
10958
  </code></pre></div>
10917
10959
  <p>You may optionally specify one or more specific models (each prefixed with its app_label) to fix:</p>
10918
- <div class="highlight"><pre><span></span><code><a id="__codelineno-19-1" name="__codelineno-19-1" href="#__codelineno-19-1"></a>nautobot-server fix_custom_fields circuits.Circuit dcim.Location
10960
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-23-1" name="__codelineno-23-1" href="#__codelineno-23-1"></a>nautobot-server fix_custom_fields circuits.Circuit dcim.Location
10919
10961
  </code></pre></div>
10920
10962
  <p>Example output:</p>
10921
- <div class="highlight"><pre><span></span><code><a id="__codelineno-20-1" name="__codelineno-20-1" href="#__codelineno-20-1"></a>Processing ContentType circuits | circuit
10922
- <a id="__codelineno-20-2" name="__codelineno-20-2" href="#__codelineno-20-2"></a>Processing ContentType dcim | location
10963
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-24-1" name="__codelineno-24-1" href="#__codelineno-24-1"></a>Processing ContentType circuits | circuit
10964
+ <a id="__codelineno-24-2" name="__codelineno-24-2" href="#__codelineno-24-2"></a>Processing ContentType dcim | location
10923
10965
  </code></pre></div>
10924
10966
  <h3 id="generate_secret_key"><code>generate_secret_key</code><a class="headerlink" href="#generate_secret_key" title="Permanent link">&para;</a></h3>
10925
10967
  <p><code>nautobot-server generate_secret_key</code></p>
10926
10968
  <p>Generates a new <a href="../configuration/settings.html#secret_key"><code>SECRET_KEY</code></a> that can be used in your <code>nautobot_config.py</code>:</p>
10927
- <div class="highlight"><pre><span></span><code><a id="__codelineno-21-1" name="__codelineno-21-1" href="#__codelineno-21-1"></a>nautobot-server generate_secret_key
10969
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-25-1" name="__codelineno-25-1" href="#__codelineno-25-1"></a>nautobot-server generate_secret_key
10928
10970
  </code></pre></div>
10929
10971
  <p>Output:</p>
10930
- <div class="highlight"><pre><span></span><code><a id="__codelineno-22-1" name="__codelineno-22-1" href="#__codelineno-22-1"></a>e!j=vrlhz-!wl8p_3+q5s5cph29nzj$xm81eap-!&amp;n!_9^du09
10972
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-26-1" name="__codelineno-26-1" href="#__codelineno-26-1"></a>e!j=vrlhz-!wl8p_3+q5s5cph29nzj$xm81eap-!&amp;n!_9^du09
10931
10973
  </code></pre></div>
10932
10974
  <h3 id="generate_test_data"><code>generate_test_data</code><a class="headerlink" href="#generate_test_data" title="Permanent link">&para;</a></h3>
10933
10975
  <p><code>nautobot-server generate_test_data [--flush] --seed SEED</code></p>
@@ -10940,45 +10982,45 @@ Flush any existing data from the database before generating new data.</p>
10940
10982
  </div>
10941
10983
  <p><code>--seed SEED</code><br />
10942
10984
  String to use as a random generator seed for reproducible results.</p>
10943
- <div class="highlight"><pre><span></span><code><a id="__codelineno-23-1" name="__codelineno-23-1" href="#__codelineno-23-1"></a>nautobot-server generate_test_data --flush --seed &quot;Nautobot&quot;
10985
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-27-1" name="__codelineno-27-1" href="#__codelineno-27-1"></a>nautobot-server generate_test_data --flush --seed &quot;Nautobot&quot;
10944
10986
  </code></pre></div>
10945
10987
  <p>Sample output:</p>
10946
- <div class="highlight"><pre><span></span><code><a id="__codelineno-24-1" name="__codelineno-24-1" href="#__codelineno-24-1"></a>Flushing all existing data from the database...
10947
- <a id="__codelineno-24-2" name="__codelineno-24-2" href="#__codelineno-24-2"></a>Seeding the pseudo-random number generator with seed &quot;Nautobot&quot;...
10948
- <a id="__codelineno-24-3" name="__codelineno-24-3" href="#__codelineno-24-3"></a>Creating Statuses...
10949
- <a id="__codelineno-24-4" name="__codelineno-24-4" href="#__codelineno-24-4"></a>Creating TenantGroups...
10950
- <a id="__codelineno-24-5" name="__codelineno-24-5" href="#__codelineno-24-5"></a>Creating Tenants...
10951
- <a id="__codelineno-24-6" name="__codelineno-24-6" href="#__codelineno-24-6"></a>Creating RIRs...
10952
- <a id="__codelineno-24-7" name="__codelineno-24-7" href="#__codelineno-24-7"></a>Creating RouteTargets...
10953
- <a id="__codelineno-24-8" name="__codelineno-24-8" href="#__codelineno-24-8"></a>Creating VRFs...
10954
- <a id="__codelineno-24-9" name="__codelineno-24-9" href="#__codelineno-24-9"></a>Creating IP/VLAN Roles...
10955
- <a id="__codelineno-24-10" name="__codelineno-24-10" href="#__codelineno-24-10"></a>Creating VLANGroups...
10956
- <a id="__codelineno-24-11" name="__codelineno-24-11" href="#__codelineno-24-11"></a>Creating VLANs...
10957
- <a id="__codelineno-24-12" name="__codelineno-24-12" href="#__codelineno-24-12"></a>Database populated successfully!
10988
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-28-1" name="__codelineno-28-1" href="#__codelineno-28-1"></a>Flushing all existing data from the database...
10989
+ <a id="__codelineno-28-2" name="__codelineno-28-2" href="#__codelineno-28-2"></a>Seeding the pseudo-random number generator with seed &quot;Nautobot&quot;...
10990
+ <a id="__codelineno-28-3" name="__codelineno-28-3" href="#__codelineno-28-3"></a>Creating Statuses...
10991
+ <a id="__codelineno-28-4" name="__codelineno-28-4" href="#__codelineno-28-4"></a>Creating TenantGroups...
10992
+ <a id="__codelineno-28-5" name="__codelineno-28-5" href="#__codelineno-28-5"></a>Creating Tenants...
10993
+ <a id="__codelineno-28-6" name="__codelineno-28-6" href="#__codelineno-28-6"></a>Creating RIRs...
10994
+ <a id="__codelineno-28-7" name="__codelineno-28-7" href="#__codelineno-28-7"></a>Creating RouteTargets...
10995
+ <a id="__codelineno-28-8" name="__codelineno-28-8" href="#__codelineno-28-8"></a>Creating VRFs...
10996
+ <a id="__codelineno-28-9" name="__codelineno-28-9" href="#__codelineno-28-9"></a>Creating IP/VLAN Roles...
10997
+ <a id="__codelineno-28-10" name="__codelineno-28-10" href="#__codelineno-28-10"></a>Creating VLANGroups...
10998
+ <a id="__codelineno-28-11" name="__codelineno-28-11" href="#__codelineno-28-11"></a>Creating VLANs...
10999
+ <a id="__codelineno-28-12" name="__codelineno-28-12" href="#__codelineno-28-12"></a>Database populated successfully!
10958
11000
  </code></pre></div>
10959
11001
  <h3 id="health_check"><code>health_check</code><a class="headerlink" href="#health_check" title="Permanent link">&para;</a></h3>
10960
11002
  <p><code>nautobot-server health_check</code></p>
10961
11003
  <p>Run health checks and exit 0 if everything went well.</p>
10962
- <div class="highlight"><pre><span></span><code><a id="__codelineno-25-1" name="__codelineno-25-1" href="#__codelineno-25-1"></a>nautobot-server health_check
11004
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-29-1" name="__codelineno-29-1" href="#__codelineno-29-1"></a>nautobot-server health_check
10963
11005
  </code></pre></div>
10964
11006
  <p>Output</p>
10965
- <div class="highlight"><pre><span></span><code><a id="__codelineno-26-1" name="__codelineno-26-1" href="#__codelineno-26-1"></a>DatabaseBackend ... working
10966
- <a id="__codelineno-26-2" name="__codelineno-26-2" href="#__codelineno-26-2"></a>DefaultFileStorageHealthCheck ... working
10967
- <a id="__codelineno-26-3" name="__codelineno-26-3" href="#__codelineno-26-3"></a>RedisBackend ... working
11007
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-30-1" name="__codelineno-30-1" href="#__codelineno-30-1"></a>DatabaseBackend ... working
11008
+ <a id="__codelineno-30-2" name="__codelineno-30-2" href="#__codelineno-30-2"></a>DefaultFileStorageHealthCheck ... working
11009
+ <a id="__codelineno-30-3" name="__codelineno-30-3" href="#__codelineno-30-3"></a>RedisBackend ... working
10968
11010
  </code></pre></div>
10969
11011
  <p>Please see the <a href="../guides/health-checks.html">health-checks documentation</a> for more information.</p>
10970
11012
  <h3 id="init"><code>init</code><a class="headerlink" href="#init" title="Permanent link">&para;</a></h3>
10971
11013
  <p><code>nautobot-server init [--disable-installation-metrics] [config_path]</code></p>
10972
11014
  <p>Generates a new configuration with all of the default settings provided for you, and will also generate a unique <a href="../configuration/settings.html#secret_key"><code>SECRET_KEY</code></a>.</p>
10973
11015
  <p>By default the file will be created at <code>$HOME/.nautobot/nautobot_config.py</code>:</p>
10974
- <div class="highlight"><pre><span></span><code><a id="__codelineno-27-1" name="__codelineno-27-1" href="#__codelineno-27-1"></a>nautobot-server init
11016
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-31-1" name="__codelineno-31-1" href="#__codelineno-31-1"></a>nautobot-server init
10975
11017
  </code></pre></div>
10976
11018
  <p>Output:</p>
10977
- <div class="highlight"><pre><span></span><code><a id="__codelineno-28-1" name="__codelineno-28-1" href="#__codelineno-28-1"></a>Nautobot would like to send anonymized installation metrics to the project&#39;s maintainers.
10978
- <a id="__codelineno-28-2" name="__codelineno-28-2" href="#__codelineno-28-2"></a>These metrics include the installed Nautobot version, the Python version in use, an anonymous &quot;deployment ID&quot;, and a list of one-way-hashed names of enabled Nautobot Apps and their versions.
10979
- <a id="__codelineno-28-3" name="__codelineno-28-3" href="#__codelineno-28-3"></a>Allow Nautobot to send these metrics? [y/n]: y
10980
- <a id="__codelineno-28-4" name="__codelineno-28-4" href="#__codelineno-28-4"></a>Installation metrics will be sent when running &#39;nautobot-server post_upgrade&#39;. Thank you!
10981
- <a id="__codelineno-28-5" name="__codelineno-28-5" href="#__codelineno-28-5"></a>Configuration file created at /home/example/.nautobot/nautobot_config.py
11019
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-32-1" name="__codelineno-32-1" href="#__codelineno-32-1"></a>Nautobot would like to send anonymized installation metrics to the project&#39;s maintainers.
11020
+ <a id="__codelineno-32-2" name="__codelineno-32-2" href="#__codelineno-32-2"></a>These metrics include the installed Nautobot version, the Python version in use, an anonymous &quot;deployment ID&quot;, and a list of one-way-hashed names of enabled Nautobot Apps and their versions.
11021
+ <a id="__codelineno-32-3" name="__codelineno-32-3" href="#__codelineno-32-3"></a>Allow Nautobot to send these metrics? [y/n]: y
11022
+ <a id="__codelineno-32-4" name="__codelineno-32-4" href="#__codelineno-32-4"></a>Installation metrics will be sent when running &#39;nautobot-server post_upgrade&#39;. Thank you!
11023
+ <a id="__codelineno-32-5" name="__codelineno-32-5" href="#__codelineno-32-5"></a>Configuration file created at /home/example/.nautobot/nautobot_config.py
10982
11024
  </code></pre></div>
10983
11025
  <p>For more information on configuring Nautobot for the first time or on more advanced configuration patterns, please see the guide on <a href="../configuration/index.html">Nautobot Configuration</a>.</p>
10984
11026
  <h3 id="loaddata"><code>loaddata</code><a class="headerlink" href="#loaddata" title="Permanent link">&para;</a></h3>
@@ -10992,21 +11034,24 @@ String to use as a random generator seed for reproducible results.</p>
10992
11034
  <h3 id="migrate"><code>migrate</code><a class="headerlink" href="#migrate" title="Permanent link">&para;</a></h3>
10993
11035
  <p><code>nautobot-server migrate [app_label] [migration_name]</code></p>
10994
11036
  <p>Initialize a new database or run any pending database migrations to an existing database.</p>
10995
- <div class="highlight"><pre><span></span><code><a id="__codelineno-29-1" name="__codelineno-29-1" href="#__codelineno-29-1"></a>nautobot-server migrate
11037
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-33-1" name="__codelineno-33-1" href="#__codelineno-33-1"></a>nautobot-server migrate
10996
11038
  </code></pre></div>
10997
11039
  <p>Output:</p>
10998
- <div class="highlight"><pre><span></span><code><a id="__codelineno-30-1" name="__codelineno-30-1" href="#__codelineno-30-1"></a>Wrapping model clean methods for custom validators failed because the ContentType table was not available or populated. This is normal during the execution of the migration command for the first time.
10999
- <a id="__codelineno-30-2" name="__codelineno-30-2" href="#__codelineno-30-2"></a>Operations to perform:
11000
- <a id="__codelineno-30-3" name="__codelineno-30-3" href="#__codelineno-30-3"></a> Apply all migrations: admin, auth, circuits, contenttypes, dcim, extras, ipam, sessions, taggit, tenancy, users, virtualization
11001
- <a id="__codelineno-30-4" name="__codelineno-30-4" href="#__codelineno-30-4"></a>Running migrations:
11002
- <a id="__codelineno-30-5" name="__codelineno-30-5" href="#__codelineno-30-5"></a> Applying contenttypes.0001_initial... OK
11003
- <a id="__codelineno-30-6" name="__codelineno-30-6" href="#__codelineno-30-6"></a> Applying auth.0001_initial... OK
11004
- <a id="__codelineno-30-7" name="__codelineno-30-7" href="#__codelineno-30-7"></a> Applying admin.0001_initial... OK
11005
- <a id="__codelineno-30-8" name="__codelineno-30-8" href="#__codelineno-30-8"></a>... (truncated for brevity of documentation) ...
11040
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-34-1" name="__codelineno-34-1" href="#__codelineno-34-1"></a>Wrapping model clean methods for custom validators failed because the ContentType table was not available or populated. This is normal during the execution of the migration command for the first time.
11041
+ <a id="__codelineno-34-2" name="__codelineno-34-2" href="#__codelineno-34-2"></a>Operations to perform:
11042
+ <a id="__codelineno-34-3" name="__codelineno-34-3" href="#__codelineno-34-3"></a> Apply all migrations: admin, auth, circuits, contenttypes, dcim, extras, ipam, sessions, taggit, tenancy, users, virtualization
11043
+ <a id="__codelineno-34-4" name="__codelineno-34-4" href="#__codelineno-34-4"></a>Running migrations:
11044
+ <a id="__codelineno-34-5" name="__codelineno-34-5" href="#__codelineno-34-5"></a> Applying ipam.0050_vlangroup_range... OK ( 0.1s)
11045
+ <a id="__codelineno-34-6" name="__codelineno-34-6" href="#__codelineno-34-6"></a> Affected ipam.vlangroup 20 rows 0.003s/record
11046
+ <a id="__codelineno-34-7" name="__codelineno-34-7" href="#__codelineno-34-7"></a> Applying dcim.0063_interfacevdcassignment_virtualdevicecont... OK ( 0.2s)
11047
+ <a id="__codelineno-34-8" name="__codelineno-34-8" href="#__codelineno-34-8"></a> Affected dcim.interfacevdcassignment 0 rows
11048
+ <a id="__codelineno-34-9" name="__codelineno-34-9" href="#__codelineno-34-9"></a> Affected dcim.virtualdevicecontext 0 rows
11049
+ <a id="__codelineno-34-10" name="__codelineno-34-10" href="#__codelineno-34-10"></a> Applying dcim.0064_virtualdevicecontext_status_data_migrati...
11050
+ <a id="__codelineno-34-11" name="__codelineno-34-11" href="#__codelineno-34-11"></a>... (truncated for brevity of documentation) ...
11006
11051
  </code></pre></div>
11007
11052
  <div class="admonition note">
11008
11053
  <p class="admonition-title">Note</p>
11009
- <p>This is a built-in Django command. Please see the <a href="https://docs.djangoproject.com/en/stable/ref/django-admin/#migrate">official documentation on <code>migrate</code></a> for more information.</p>
11054
+ <p>This is a built-in Django command, although Nautobot has enhanced it to provide additional output when run. Please see the <a href="https://docs.djangoproject.com/en/stable/ref/django-admin/#migrate">official documentation on <code>migrate</code></a> for more information.</p>
11010
11055
  </div>
11011
11056
  <h3 id="nbshell"><code>nbshell</code><a class="headerlink" href="#nbshell" title="Permanent link">&para;</a></h3>
11012
11057
  <p><code>nautobot-server nbshell</code></p>
@@ -11015,26 +11060,26 @@ String to use as a random generator seed for reproducible results.</p>
11015
11060
  <p class="admonition-title">Danger</p>
11016
11061
  <p>This is an advanced feature that gives you direct access to the Django database models. Use this very cautiously as you can cause irreparable damage to your Nautobot installation.</p>
11017
11062
  </div>
11018
- <div class="highlight"><pre><span></span><code><a id="__codelineno-31-1" name="__codelineno-31-1" href="#__codelineno-31-1"></a>nautobot-server nbshell
11063
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-35-1" name="__codelineno-35-1" href="#__codelineno-35-1"></a>nautobot-server nbshell
11019
11064
  </code></pre></div>
11020
11065
  <p>Prompt provided:</p>
11021
- <div class="highlight"><pre><span></span><code><a id="__codelineno-32-1" name="__codelineno-32-1" href="#__codelineno-32-1"></a># Shell Plus Model Imports
11022
- <a id="__codelineno-32-2" name="__codelineno-32-2" href="#__codelineno-32-2"></a>from constance.models import Constance
11023
- <a id="__codelineno-32-3" name="__codelineno-32-3" href="#__codelineno-32-3"></a>from django.contrib.admin.models import LogEntry
11024
- <a id="__codelineno-32-4" name="__codelineno-32-4" href="#__codelineno-32-4"></a>from django.contrib.auth.models import Group, Permission
11025
- <a id="__codelineno-32-5" name="__codelineno-32-5" href="#__codelineno-32-5"></a>...
11026
- <a id="__codelineno-32-6" name="__codelineno-32-6" href="#__codelineno-32-6"></a># Shell Plus Django Imports
11027
- <a id="__codelineno-32-7" name="__codelineno-32-7" href="#__codelineno-32-7"></a>from django.core.cache import cache
11028
- <a id="__codelineno-32-8" name="__codelineno-32-8" href="#__codelineno-32-8"></a>from django.conf import settings
11029
- <a id="__codelineno-32-9" name="__codelineno-32-9" href="#__codelineno-32-9"></a>from django.contrib.auth import get_user_model
11030
- <a id="__codelineno-32-10" name="__codelineno-32-10" href="#__codelineno-32-10"></a>...
11031
- <a id="__codelineno-32-11" name="__codelineno-32-11" href="#__codelineno-32-11"></a># Django version 4.2.15
11032
- <a id="__codelineno-32-12" name="__codelineno-32-12" href="#__codelineno-32-12"></a># Nautobot version 2.3.3b1
11033
- <a id="__codelineno-32-13" name="__codelineno-32-13" href="#__codelineno-32-13"></a>...
11034
- <a id="__codelineno-32-14" name="__codelineno-32-14" href="#__codelineno-32-14"></a>Python 3.12.6 (main, Sep 12 2024, 21:12:08) [GCC 12.2.0] on linux
11035
- <a id="__codelineno-32-15" name="__codelineno-32-15" href="#__codelineno-32-15"></a>Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.
11036
- <a id="__codelineno-32-16" name="__codelineno-32-16" href="#__codelineno-32-16"></a>(InteractiveConsole)
11037
- <a id="__codelineno-32-17" name="__codelineno-32-17" href="#__codelineno-32-17"></a>&gt;&gt;&gt;
11066
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-36-1" name="__codelineno-36-1" href="#__codelineno-36-1"></a># Shell Plus Model Imports
11067
+ <a id="__codelineno-36-2" name="__codelineno-36-2" href="#__codelineno-36-2"></a>from constance.models import Constance
11068
+ <a id="__codelineno-36-3" name="__codelineno-36-3" href="#__codelineno-36-3"></a>from django.contrib.admin.models import LogEntry
11069
+ <a id="__codelineno-36-4" name="__codelineno-36-4" href="#__codelineno-36-4"></a>from django.contrib.auth.models import Group, Permission
11070
+ <a id="__codelineno-36-5" name="__codelineno-36-5" href="#__codelineno-36-5"></a>...
11071
+ <a id="__codelineno-36-6" name="__codelineno-36-6" href="#__codelineno-36-6"></a># Shell Plus Django Imports
11072
+ <a id="__codelineno-36-7" name="__codelineno-36-7" href="#__codelineno-36-7"></a>from django.core.cache import cache
11073
+ <a id="__codelineno-36-8" name="__codelineno-36-8" href="#__codelineno-36-8"></a>from django.conf import settings
11074
+ <a id="__codelineno-36-9" name="__codelineno-36-9" href="#__codelineno-36-9"></a>from django.contrib.auth import get_user_model
11075
+ <a id="__codelineno-36-10" name="__codelineno-36-10" href="#__codelineno-36-10"></a>...
11076
+ <a id="__codelineno-36-11" name="__codelineno-36-11" href="#__codelineno-36-11"></a># Django version 4.2.15
11077
+ <a id="__codelineno-36-12" name="__codelineno-36-12" href="#__codelineno-36-12"></a># Nautobot version 2.3.3b1
11078
+ <a id="__codelineno-36-13" name="__codelineno-36-13" href="#__codelineno-36-13"></a>...
11079
+ <a id="__codelineno-36-14" name="__codelineno-36-14" href="#__codelineno-36-14"></a>Python 3.12.6 (main, Sep 12 2024, 21:12:08) [GCC 12.2.0] on linux
11080
+ <a id="__codelineno-36-15" name="__codelineno-36-15" href="#__codelineno-36-15"></a>Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.
11081
+ <a id="__codelineno-36-16" name="__codelineno-36-16" href="#__codelineno-36-16"></a>(InteractiveConsole)
11082
+ <a id="__codelineno-36-17" name="__codelineno-36-17" href="#__codelineno-36-17"></a>&gt;&gt;&gt;
11038
11083
  </code></pre></div>
11039
11084
  <p>Please see the dedicated guide on the <a href="nautobot-shell.html">Nautobot Shell</a> for more information.</p>
11040
11085
  <h3 id="pre_migrate"><code>pre_migrate</code><a class="headerlink" href="#pre_migrate" title="Permanent link">&para;</a></h3>
@@ -11095,32 +11140,32 @@ Do not automatically generate missing cable paths.</p>
11095
11140
  Do not automatically refresh the content type cache.</p>
11096
11141
  <p><code>--no-refresh-dynamic-group-member-caches</code><br />
11097
11142
  Do not automatically refresh the dynamic group member lists.</p>
11098
- <div class="highlight"><pre><span></span><code><a id="__codelineno-33-1" name="__codelineno-33-1" href="#__codelineno-33-1"></a>nautobot-server post_upgrade
11143
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-37-1" name="__codelineno-37-1" href="#__codelineno-37-1"></a>nautobot-server post_upgrade
11099
11144
  </code></pre></div>
11100
11145
  <p>Example Output:</p>
11101
- <div class="highlight"><pre><span></span><code><a id="__codelineno-34-1" name="__codelineno-34-1" href="#__codelineno-34-1"></a>Performing database migrations...
11102
- <a id="__codelineno-34-2" name="__codelineno-34-2" href="#__codelineno-34-2"></a>Operations to perform:
11103
- <a id="__codelineno-34-3" name="__codelineno-34-3" href="#__codelineno-34-3"></a> Apply all migrations: admin, auth, circuits, contenttypes, dcim, extras, ipam, sessions, taggit, tenancy, users, virtualization
11104
- <a id="__codelineno-34-4" name="__codelineno-34-4" href="#__codelineno-34-4"></a>Running migrations:
11105
- <a id="__codelineno-34-5" name="__codelineno-34-5" href="#__codelineno-34-5"></a> No migrations to apply.
11106
- <a id="__codelineno-34-6" name="__codelineno-34-6" href="#__codelineno-34-6"></a>
11107
- <a id="__codelineno-34-7" name="__codelineno-34-7" href="#__codelineno-34-7"></a>Generating cable paths...
11108
- <a id="__codelineno-34-8" name="__codelineno-34-8" href="#__codelineno-34-8"></a>Found no missing circuit termination paths; skipping
11109
- <a id="__codelineno-34-9" name="__codelineno-34-9" href="#__codelineno-34-9"></a>Found no missing console port paths; skipping
11110
- <a id="__codelineno-34-10" name="__codelineno-34-10" href="#__codelineno-34-10"></a>Found no missing console server port paths; skipping
11111
- <a id="__codelineno-34-11" name="__codelineno-34-11" href="#__codelineno-34-11"></a>Found no missing interface paths; skipping
11112
- <a id="__codelineno-34-12" name="__codelineno-34-12" href="#__codelineno-34-12"></a>Found no missing power feed paths; skipping
11113
- <a id="__codelineno-34-13" name="__codelineno-34-13" href="#__codelineno-34-13"></a>Found no missing power outlet paths; skipping
11114
- <a id="__codelineno-34-14" name="__codelineno-34-14" href="#__codelineno-34-14"></a>Found no missing power port paths; skipping
11115
- <a id="__codelineno-34-15" name="__codelineno-34-15" href="#__codelineno-34-15"></a>Finished.
11116
- <a id="__codelineno-34-16" name="__codelineno-34-16" href="#__codelineno-34-16"></a>
11117
- <a id="__codelineno-34-17" name="__codelineno-34-17" href="#__codelineno-34-17"></a>Collecting static files...
11118
- <a id="__codelineno-34-18" name="__codelineno-34-18" href="#__codelineno-34-18"></a>
11119
- <a id="__codelineno-34-19" name="__codelineno-34-19" href="#__codelineno-34-19"></a>0 static files copied to &#39;/opt/nautobot/static&#39;, 965 unmodified.
11120
- <a id="__codelineno-34-20" name="__codelineno-34-20" href="#__codelineno-34-20"></a>
11121
- <a id="__codelineno-34-21" name="__codelineno-34-21" href="#__codelineno-34-21"></a>Removing stale content types...
11122
- <a id="__codelineno-34-22" name="__codelineno-34-22" href="#__codelineno-34-22"></a>
11123
- <a id="__codelineno-34-23" name="__codelineno-34-23" href="#__codelineno-34-23"></a>Removing expired sessions...
11146
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-38-1" name="__codelineno-38-1" href="#__codelineno-38-1"></a>Performing database migrations...
11147
+ <a id="__codelineno-38-2" name="__codelineno-38-2" href="#__codelineno-38-2"></a>Operations to perform:
11148
+ <a id="__codelineno-38-3" name="__codelineno-38-3" href="#__codelineno-38-3"></a> Apply all migrations: admin, auth, circuits, contenttypes, dcim, extras, ipam, sessions, taggit, tenancy, users, virtualization
11149
+ <a id="__codelineno-38-4" name="__codelineno-38-4" href="#__codelineno-38-4"></a>Running migrations:
11150
+ <a id="__codelineno-38-5" name="__codelineno-38-5" href="#__codelineno-38-5"></a> No migrations to apply.
11151
+ <a id="__codelineno-38-6" name="__codelineno-38-6" href="#__codelineno-38-6"></a>
11152
+ <a id="__codelineno-38-7" name="__codelineno-38-7" href="#__codelineno-38-7"></a>Generating cable paths...
11153
+ <a id="__codelineno-38-8" name="__codelineno-38-8" href="#__codelineno-38-8"></a>Found no missing circuit termination paths; skipping
11154
+ <a id="__codelineno-38-9" name="__codelineno-38-9" href="#__codelineno-38-9"></a>Found no missing console port paths; skipping
11155
+ <a id="__codelineno-38-10" name="__codelineno-38-10" href="#__codelineno-38-10"></a>Found no missing console server port paths; skipping
11156
+ <a id="__codelineno-38-11" name="__codelineno-38-11" href="#__codelineno-38-11"></a>Found no missing interface paths; skipping
11157
+ <a id="__codelineno-38-12" name="__codelineno-38-12" href="#__codelineno-38-12"></a>Found no missing power feed paths; skipping
11158
+ <a id="__codelineno-38-13" name="__codelineno-38-13" href="#__codelineno-38-13"></a>Found no missing power outlet paths; skipping
11159
+ <a id="__codelineno-38-14" name="__codelineno-38-14" href="#__codelineno-38-14"></a>Found no missing power port paths; skipping
11160
+ <a id="__codelineno-38-15" name="__codelineno-38-15" href="#__codelineno-38-15"></a>Finished.
11161
+ <a id="__codelineno-38-16" name="__codelineno-38-16" href="#__codelineno-38-16"></a>
11162
+ <a id="__codelineno-38-17" name="__codelineno-38-17" href="#__codelineno-38-17"></a>Collecting static files...
11163
+ <a id="__codelineno-38-18" name="__codelineno-38-18" href="#__codelineno-38-18"></a>
11164
+ <a id="__codelineno-38-19" name="__codelineno-38-19" href="#__codelineno-38-19"></a>0 static files copied to &#39;/opt/nautobot/static&#39;, 965 unmodified.
11165
+ <a id="__codelineno-38-20" name="__codelineno-38-20" href="#__codelineno-38-20"></a>
11166
+ <a id="__codelineno-38-21" name="__codelineno-38-21" href="#__codelineno-38-21"></a>Removing stale content types...
11167
+ <a id="__codelineno-38-22" name="__codelineno-38-22" href="#__codelineno-38-22"></a>
11168
+ <a id="__codelineno-38-23" name="__codelineno-38-23" href="#__codelineno-38-23"></a>Removing expired sessions...
11124
11169
  </code></pre></div>
11125
11170
  <h3 id="refresh_dynamic_group_member_caches"><code>refresh_dynamic_group_member_caches</code><a class="headerlink" href="#refresh_dynamic_group_member_caches" title="Permanent link">&para;</a></h3>
11126
11171
  <p><code>nautobot-server refresh_dynamic_group_member_caches</code></p>
@@ -11135,52 +11180,52 @@ Do not automatically refresh the dynamic group member lists.</p>
11135
11180
  <p><code>nautobot-server renaturalize [app_label.ModelName [app_label.ModelName ...]]</code></p>
11136
11181
  <p>Recalculate natural ordering values for the specified models.</p>
11137
11182
  <p>This defaults to recalculating natural ordering on all models which have one or more fields of type <code>NaturalOrderingField</code>:</p>
11138
- <div class="highlight"><pre><span></span><code><a id="__codelineno-35-1" name="__codelineno-35-1" href="#__codelineno-35-1"></a>nautobot-server renaturalize
11183
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-39-1" name="__codelineno-39-1" href="#__codelineno-39-1"></a>nautobot-server renaturalize
11139
11184
  </code></pre></div>
11140
11185
  <p>Example output:</p>
11141
- <div class="highlight"><pre><span></span><code><a id="__codelineno-36-1" name="__codelineno-36-1" href="#__codelineno-36-1"></a>Renaturalizing 21 models.
11142
- <a id="__codelineno-36-2" name="__codelineno-36-2" href="#__codelineno-36-2"></a>dcim.ConsolePort.name (_name)... 196
11143
- <a id="__codelineno-36-3" name="__codelineno-36-3" href="#__codelineno-36-3"></a>dcim.ConsoleServerPort.name (_name)... 0
11144
- <a id="__codelineno-36-4" name="__codelineno-36-4" href="#__codelineno-36-4"></a>dcim.PowerPort.name (_name)... 392
11145
- <a id="__codelineno-36-5" name="__codelineno-36-5" href="#__codelineno-36-5"></a>dcim.PowerOutlet.name (_name)... 0
11146
- <a id="__codelineno-36-6" name="__codelineno-36-6" href="#__codelineno-36-6"></a>dcim.Interface.name (_name)... 7161
11147
- <a id="__codelineno-36-7" name="__codelineno-36-7" href="#__codelineno-36-7"></a>dcim.FrontPort.name (_name)... 0
11148
- <a id="__codelineno-36-8" name="__codelineno-36-8" href="#__codelineno-36-8"></a>dcim.RearPort.name (_name)... 0
11149
- <a id="__codelineno-36-9" name="__codelineno-36-9" href="#__codelineno-36-9"></a>dcim.DeviceBay.name (_name)... 0
11150
- <a id="__codelineno-36-10" name="__codelineno-36-10" href="#__codelineno-36-10"></a>dcim.InventoryItem.name (_name)... 1
11151
- <a id="__codelineno-36-11" name="__codelineno-36-11" href="#__codelineno-36-11"></a>dcim.Device.name (_name)... 208
11152
- <a id="__codelineno-36-12" name="__codelineno-36-12" href="#__codelineno-36-12"></a>dcim.ConsolePortTemplate.name (_name)... 2
11153
- <a id="__codelineno-36-13" name="__codelineno-36-13" href="#__codelineno-36-13"></a>dcim.ConsoleServerPortTemplate.name (_name)... 0
11154
- <a id="__codelineno-36-14" name="__codelineno-36-14" href="#__codelineno-36-14"></a>dcim.PowerPortTemplate.name (_name)... 4
11155
- <a id="__codelineno-36-15" name="__codelineno-36-15" href="#__codelineno-36-15"></a>dcim.PowerOutletTemplate.name (_name)... 0
11156
- <a id="__codelineno-36-16" name="__codelineno-36-16" href="#__codelineno-36-16"></a>dcim.InterfaceTemplate.name (_name)... 221
11157
- <a id="__codelineno-36-17" name="__codelineno-36-17" href="#__codelineno-36-17"></a>dcim.FrontPortTemplate.name (_name)... 0
11158
- <a id="__codelineno-36-18" name="__codelineno-36-18" href="#__codelineno-36-18"></a>dcim.RearPortTemplate.name (_name)... 0
11159
- <a id="__codelineno-36-19" name="__codelineno-36-19" href="#__codelineno-36-19"></a>dcim.DeviceBayTemplate.name (_name)... 0
11160
- <a id="__codelineno-36-20" name="__codelineno-36-20" href="#__codelineno-36-20"></a>dcim.Rack.name (_name)... 156
11161
- <a id="__codelineno-36-21" name="__codelineno-36-21" href="#__codelineno-36-21"></a>virtualization.VMInterface.name (_name)... 0
11162
- <a id="__codelineno-36-22" name="__codelineno-36-22" href="#__codelineno-36-22"></a>Done.
11186
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-40-1" name="__codelineno-40-1" href="#__codelineno-40-1"></a>Renaturalizing 21 models.
11187
+ <a id="__codelineno-40-2" name="__codelineno-40-2" href="#__codelineno-40-2"></a>dcim.ConsolePort.name (_name)... 196
11188
+ <a id="__codelineno-40-3" name="__codelineno-40-3" href="#__codelineno-40-3"></a>dcim.ConsoleServerPort.name (_name)... 0
11189
+ <a id="__codelineno-40-4" name="__codelineno-40-4" href="#__codelineno-40-4"></a>dcim.PowerPort.name (_name)... 392
11190
+ <a id="__codelineno-40-5" name="__codelineno-40-5" href="#__codelineno-40-5"></a>dcim.PowerOutlet.name (_name)... 0
11191
+ <a id="__codelineno-40-6" name="__codelineno-40-6" href="#__codelineno-40-6"></a>dcim.Interface.name (_name)... 7161
11192
+ <a id="__codelineno-40-7" name="__codelineno-40-7" href="#__codelineno-40-7"></a>dcim.FrontPort.name (_name)... 0
11193
+ <a id="__codelineno-40-8" name="__codelineno-40-8" href="#__codelineno-40-8"></a>dcim.RearPort.name (_name)... 0
11194
+ <a id="__codelineno-40-9" name="__codelineno-40-9" href="#__codelineno-40-9"></a>dcim.DeviceBay.name (_name)... 0
11195
+ <a id="__codelineno-40-10" name="__codelineno-40-10" href="#__codelineno-40-10"></a>dcim.InventoryItem.name (_name)... 1
11196
+ <a id="__codelineno-40-11" name="__codelineno-40-11" href="#__codelineno-40-11"></a>dcim.Device.name (_name)... 208
11197
+ <a id="__codelineno-40-12" name="__codelineno-40-12" href="#__codelineno-40-12"></a>dcim.ConsolePortTemplate.name (_name)... 2
11198
+ <a id="__codelineno-40-13" name="__codelineno-40-13" href="#__codelineno-40-13"></a>dcim.ConsoleServerPortTemplate.name (_name)... 0
11199
+ <a id="__codelineno-40-14" name="__codelineno-40-14" href="#__codelineno-40-14"></a>dcim.PowerPortTemplate.name (_name)... 4
11200
+ <a id="__codelineno-40-15" name="__codelineno-40-15" href="#__codelineno-40-15"></a>dcim.PowerOutletTemplate.name (_name)... 0
11201
+ <a id="__codelineno-40-16" name="__codelineno-40-16" href="#__codelineno-40-16"></a>dcim.InterfaceTemplate.name (_name)... 221
11202
+ <a id="__codelineno-40-17" name="__codelineno-40-17" href="#__codelineno-40-17"></a>dcim.FrontPortTemplate.name (_name)... 0
11203
+ <a id="__codelineno-40-18" name="__codelineno-40-18" href="#__codelineno-40-18"></a>dcim.RearPortTemplate.name (_name)... 0
11204
+ <a id="__codelineno-40-19" name="__codelineno-40-19" href="#__codelineno-40-19"></a>dcim.DeviceBayTemplate.name (_name)... 0
11205
+ <a id="__codelineno-40-20" name="__codelineno-40-20" href="#__codelineno-40-20"></a>dcim.Rack.name (_name)... 156
11206
+ <a id="__codelineno-40-21" name="__codelineno-40-21" href="#__codelineno-40-21"></a>virtualization.VMInterface.name (_name)... 0
11207
+ <a id="__codelineno-40-22" name="__codelineno-40-22" href="#__codelineno-40-22"></a>Done.
11163
11208
  </code></pre></div>
11164
11209
  <p>You may optionally specify or more specific models (each prefixed with its app_label) to renaturalize:</p>
11165
- <div class="highlight"><pre><span></span><code><a id="__codelineno-37-1" name="__codelineno-37-1" href="#__codelineno-37-1"></a>nautobot-server renaturalize dcim.Device
11210
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-41-1" name="__codelineno-41-1" href="#__codelineno-41-1"></a>nautobot-server renaturalize dcim.Device
11166
11211
  </code></pre></div>
11167
11212
  <p>Example output:</p>
11168
- <div class="highlight"><pre><span></span><code><a id="__codelineno-38-1" name="__codelineno-38-1" href="#__codelineno-38-1"></a>Renaturalizing 1 models.
11169
- <a id="__codelineno-38-2" name="__codelineno-38-2" href="#__codelineno-38-2"></a>dcim.Device.name (_name)... 208
11170
- <a id="__codelineno-38-3" name="__codelineno-38-3" href="#__codelineno-38-3"></a>Done.
11213
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-42-1" name="__codelineno-42-1" href="#__codelineno-42-1"></a>Renaturalizing 1 models.
11214
+ <a id="__codelineno-42-2" name="__codelineno-42-2" href="#__codelineno-42-2"></a>dcim.Device.name (_name)... 208
11215
+ <a id="__codelineno-42-3" name="__codelineno-42-3" href="#__codelineno-42-3"></a>Done.
11171
11216
  </code></pre></div>
11172
11217
  <h3 id="runjob"><code>runjob</code><a class="headerlink" href="#runjob" title="Permanent link">&para;</a></h3>
11173
11218
  <p><code>nautobot-server runjob --username &lt;username&gt; [--local] [--data &lt;data&gt;] &lt;job&gt;</code></p>
11174
11219
  <p>Run a job (script, report) to validate or update data in Nautobot. The Job name must be in the Python module form: <code>&lt;module_name&gt;.&lt;JobClassName&gt;</code>. You can find this under the Job's detail view on the "Class Path" row.</p>
11175
11220
  <p><code>--username &lt;username&gt;</code><br />
11176
11221
  User account to impersonate as the requester of this job.</p>
11177
- <div class="highlight"><pre><span></span><code><a id="__codelineno-39-1" name="__codelineno-39-1" href="#__codelineno-39-1"></a>nautobot-server runjob --username someuser example_app.jobs.MyJobWithNoVars
11222
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-43-1" name="__codelineno-43-1" href="#__codelineno-43-1"></a>nautobot-server runjob --username someuser example_app.jobs.MyJobWithNoVars
11178
11223
  </code></pre></div>
11179
11224
  <p><code>--local</code>
11180
11225
  Run the job on the local system and not on a worker.</p>
11181
11226
  <p><code>--data &lt;data&gt;</code>
11182
11227
  JSON string that populates the <code>data</code> variable of the job.</p>
11183
- <div class="highlight"><pre><span></span><code><a id="__codelineno-40-1" name="__codelineno-40-1" href="#__codelineno-40-1"></a>nautobot-server runjob --username someuser --local --data &#39;{&quot;my_boolvar&quot;: false}&#39; example_app.jobs.MyJobWithVars
11228
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-44-1" name="__codelineno-44-1" href="#__codelineno-44-1"></a>nautobot-server runjob --username someuser --local --data &#39;{&quot;my_boolvar&quot;: false}&#39; example_app.jobs.MyJobWithVars
11184
11229
  </code></pre></div>
11185
11230
  <p>Please see the <a href="../../platform-functionality/jobs/index.html">guide on Jobs</a> for more information on working with and running jobs.</p>
11186
11231
  <h3 id="send_installation_metrics"><code>send_installation_metrics</code><a class="headerlink" href="#send_installation_metrics" title="Permanent link">&para;</a></h3>
@@ -11188,15 +11233,15 @@ JSON string that populates the <code>data</code> variable of the job.</p>
11188
11233
  <p>Send anonymized installation metrics to the Nautobot maintainers. This management command is called by <a href="#post_upgrade"><code>post_upgrade</code></a> and is not intended to be run manually.</p>
11189
11234
  <p>If the <a href="../configuration/settings.html#installation_metrics_enabled"><code>INSTALLATION_METRICS_ENABLED</code></a> setting is <code>True</code>, this command will send a list of all installed <a href="../../../development/apps/index.html">Apps</a> and their versions, as well as the currently installed Nautobot and Python versions, to the Nautobot maintainers. A randomized UUID will be generated and saved in the <a href="../configuration/settings.html#deployment_id"><code>DEPLOYMENT_ID</code></a> setting to anonymously but uniquely identify this installation. The App names will be one-way hashed with SHA256 to further anonymize the data sent. This enables tracking the installation metrics of publicly released apps without disclosing the names of any private apps.</p>
11190
11235
  <p>The following is an example of the data that is sent:</p>
11191
- <div class="highlight"><pre><span></span><code><a id="__codelineno-41-1" name="__codelineno-41-1" href="#__codelineno-41-1"></a><span class="p">{</span>
11192
- <a id="__codelineno-41-2" name="__codelineno-41-2" href="#__codelineno-41-2"></a> <span class="s2">&quot;deployment_id&quot;</span><span class="p">:</span> <span class="s2">&quot;1de3dacf-f046-4a98-8d4a-17419080db79&quot;</span><span class="p">,</span>
11193
- <a id="__codelineno-41-3" name="__codelineno-41-3" href="#__codelineno-41-3"></a> <span class="s2">&quot;nautobot_version&quot;</span><span class="p">:</span> <span class="s2">&quot;2.1.2&quot;</span><span class="p">,</span>
11194
- <a id="__codelineno-41-4" name="__codelineno-41-4" href="#__codelineno-41-4"></a> <span class="s2">&quot;python_version&quot;</span><span class="p">:</span> <span class="s2">&quot;3.10.12&quot;</span><span class="p">,</span>
11195
- <a id="__codelineno-41-5" name="__codelineno-41-5" href="#__codelineno-41-5"></a> <span class="s2">&quot;installed_apps&quot;</span><span class="p">:</span> <span class="p">{</span>
11196
- <a id="__codelineno-41-6" name="__codelineno-41-6" href="#__codelineno-41-6"></a> <span class="c1"># &quot;example_app&quot; hashed by sha256</span>
11197
- <a id="__codelineno-41-7" name="__codelineno-41-7" href="#__codelineno-41-7"></a> <span class="s2">&quot;ded1fb19a53a47aa4fe26b72b4ab9297b631e4d4f852b03b3788d5dbc292ae8d&quot;</span><span class="p">:</span> <span class="s2">&quot;1.0.0&quot;</span>
11198
- <a id="__codelineno-41-8" name="__codelineno-41-8" href="#__codelineno-41-8"></a> <span class="p">}</span>
11199
- <a id="__codelineno-41-9" name="__codelineno-41-9" href="#__codelineno-41-9"></a><span class="p">}</span>
11236
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-45-1" name="__codelineno-45-1" href="#__codelineno-45-1"></a><span class="p">{</span>
11237
+ <a id="__codelineno-45-2" name="__codelineno-45-2" href="#__codelineno-45-2"></a> <span class="s2">&quot;deployment_id&quot;</span><span class="p">:</span> <span class="s2">&quot;1de3dacf-f046-4a98-8d4a-17419080db79&quot;</span><span class="p">,</span>
11238
+ <a id="__codelineno-45-3" name="__codelineno-45-3" href="#__codelineno-45-3"></a> <span class="s2">&quot;nautobot_version&quot;</span><span class="p">:</span> <span class="s2">&quot;2.1.2&quot;</span><span class="p">,</span>
11239
+ <a id="__codelineno-45-4" name="__codelineno-45-4" href="#__codelineno-45-4"></a> <span class="s2">&quot;python_version&quot;</span><span class="p">:</span> <span class="s2">&quot;3.10.12&quot;</span><span class="p">,</span>
11240
+ <a id="__codelineno-45-5" name="__codelineno-45-5" href="#__codelineno-45-5"></a> <span class="s2">&quot;installed_apps&quot;</span><span class="p">:</span> <span class="p">{</span>
11241
+ <a id="__codelineno-45-6" name="__codelineno-45-6" href="#__codelineno-45-6"></a> <span class="c1"># &quot;example_app&quot; hashed by sha256</span>
11242
+ <a id="__codelineno-45-7" name="__codelineno-45-7" href="#__codelineno-45-7"></a> <span class="s2">&quot;ded1fb19a53a47aa4fe26b72b4ab9297b631e4d4f852b03b3788d5dbc292ae8d&quot;</span><span class="p">:</span> <span class="s2">&quot;1.0.0&quot;</span>
11243
+ <a id="__codelineno-45-8" name="__codelineno-45-8" href="#__codelineno-45-8"></a> <span class="p">}</span>
11244
+ <a id="__codelineno-45-9" name="__codelineno-45-9" href="#__codelineno-45-9"></a><span class="p">}</span>
11200
11245
  </code></pre></div>
11201
11246
  <h3 id="start"><code>start</code><a class="headerlink" href="#start" title="Permanent link">&para;</a></h3>
11202
11247
  <p><code>nautobot-server start</code></p>
@@ -11205,43 +11250,43 @@ JSON string that populates the <code>data</code> variable of the job.</p>
11205
11250
  <p class="admonition-title">Note</p>
11206
11251
  <p>uWSGI offers an overwhelming amount of command-line arguments that could not possibly be covered here. Please see the <a href="https://uwsgi-docs.readthedocs.io/en/latest/Options.html">official uWSGI Options guide</a> for more information.</p>
11207
11252
  </div>
11208
- <div class="highlight"><pre><span></span><code><a id="__codelineno-42-1" name="__codelineno-42-1" href="#__codelineno-42-1"></a>nautobot-server start --ini ./uwsgi.ini
11253
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-46-1" name="__codelineno-46-1" href="#__codelineno-46-1"></a>nautobot-server start --ini ./uwsgi.ini
11209
11254
  </code></pre></div>
11210
11255
  <p>Example output:</p>
11211
- <div class="highlight"><pre><span></span><code><a id="__codelineno-43-1" name="__codelineno-43-1" href="#__codelineno-43-1"></a>[uWSGI] getting INI configuration from ./uwsgi.ini
11212
- <a id="__codelineno-43-2" name="__codelineno-43-2" href="#__codelineno-43-2"></a>[uwsgi-static] added mapping for /static =&gt; /opt/nautobot/static
11213
- <a id="__codelineno-43-3" name="__codelineno-43-3" href="#__codelineno-43-3"></a>*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Mar 11 21:13:22 2021] ***
11214
- <a id="__codelineno-43-4" name="__codelineno-43-4" href="#__codelineno-43-4"></a>compiled with version: 8.3.1 20190311 (Red Hat 8.3.1-3) on 23 September 2020 02:39:40
11215
- <a id="__codelineno-43-5" name="__codelineno-43-5" href="#__codelineno-43-5"></a>os: Linux-5.4.0-52-generic #57-Ubuntu SMP Thu Oct 15 10:57:00 UTC 2020
11216
- <a id="__codelineno-43-6" name="__codelineno-43-6" href="#__codelineno-43-6"></a>nodename: jathan-nautobot-testing
11217
- <a id="__codelineno-43-7" name="__codelineno-43-7" href="#__codelineno-43-7"></a>machine: x86_64
11218
- <a id="__codelineno-43-8" name="__codelineno-43-8" href="#__codelineno-43-8"></a>clock source: unix
11219
- <a id="__codelineno-43-9" name="__codelineno-43-9" href="#__codelineno-43-9"></a>pcre jit disabled
11220
- <a id="__codelineno-43-10" name="__codelineno-43-10" href="#__codelineno-43-10"></a>detected number of CPU cores: 48
11221
- <a id="__codelineno-43-11" name="__codelineno-43-11" href="#__codelineno-43-11"></a>current working directory: /opt/nautobot
11222
- <a id="__codelineno-43-12" name="__codelineno-43-12" href="#__codelineno-43-12"></a>detected binary path: /usr/bin/python3.8
11223
- <a id="__codelineno-43-13" name="__codelineno-43-13" href="#__codelineno-43-13"></a>your processes number limit is 256070
11224
- <a id="__codelineno-43-14" name="__codelineno-43-14" href="#__codelineno-43-14"></a>your memory page size is 4096 bytes
11225
- <a id="__codelineno-43-15" name="__codelineno-43-15" href="#__codelineno-43-15"></a>detected max file descriptor number: 1024
11226
- <a id="__codelineno-43-16" name="__codelineno-43-16" href="#__codelineno-43-16"></a>building mime-types dictionary from file /etc/mime.types...567 entry found
11227
- <a id="__codelineno-43-17" name="__codelineno-43-17" href="#__codelineno-43-17"></a>lock engine: pthread robust mutexes
11228
- <a id="__codelineno-43-18" name="__codelineno-43-18" href="#__codelineno-43-18"></a>thunder lock: disabled (you can enable it with --thunder-lock)
11229
- <a id="__codelineno-43-19" name="__codelineno-43-19" href="#__codelineno-43-19"></a>uwsgi socket 0 bound to TCP address 0.0.0.0:9191 fd 7
11230
- <a id="__codelineno-43-20" name="__codelineno-43-20" href="#__codelineno-43-20"></a>Python version: 3.8.5 (default, Jan 27 2021, 15:41:15) [GCC 9.3.0]
11231
- <a id="__codelineno-43-21" name="__codelineno-43-21" href="#__codelineno-43-21"></a>--- Python VM already initialized ---
11232
- <a id="__codelineno-43-22" name="__codelineno-43-22" href="#__codelineno-43-22"></a>Python main interpreter initialized at 0x2573e30
11233
- <a id="__codelineno-43-23" name="__codelineno-43-23" href="#__codelineno-43-23"></a>python threads support enabled
11234
- <a id="__codelineno-43-24" name="__codelineno-43-24" href="#__codelineno-43-24"></a>your server socket listen backlog is limited to 1024 connections
11235
- <a id="__codelineno-43-25" name="__codelineno-43-25" href="#__codelineno-43-25"></a>your mercy for graceful operations on workers is 60 seconds
11236
- <a id="__codelineno-43-26" name="__codelineno-43-26" href="#__codelineno-43-26"></a>mapped 636432 bytes (621 KB) for 15 cores
11237
- <a id="__codelineno-43-27" name="__codelineno-43-27" href="#__codelineno-43-27"></a>*** Operational MODE: preforking+threaded ***
11238
- <a id="__codelineno-43-28" name="__codelineno-43-28" href="#__codelineno-43-28"></a>WSGI app 0 (mountpoint=&#39;&#39;) ready in 0 seconds on interpreter 0x2573e30 pid: 112153 (default app)
11239
- <a id="__codelineno-43-29" name="__codelineno-43-29" href="#__codelineno-43-29"></a>spawned uWSGI master process (pid: 112153)
11240
- <a id="__codelineno-43-30" name="__codelineno-43-30" href="#__codelineno-43-30"></a>spawned uWSGI worker 1 (pid: 112159, cores: 3)
11241
- <a id="__codelineno-43-31" name="__codelineno-43-31" href="#__codelineno-43-31"></a>spawned uWSGI worker 2 (pid: 112162, cores: 3)
11242
- <a id="__codelineno-43-32" name="__codelineno-43-32" href="#__codelineno-43-32"></a>spawned uWSGI worker 3 (pid: 112165, cores: 3)
11243
- <a id="__codelineno-43-33" name="__codelineno-43-33" href="#__codelineno-43-33"></a>spawned uWSGI worker 4 (pid: 112168, cores: 3)
11244
- <a id="__codelineno-43-34" name="__codelineno-43-34" href="#__codelineno-43-34"></a>spawned uWSGI worker 5 (pid: 112171, cores: 3)
11256
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-47-1" name="__codelineno-47-1" href="#__codelineno-47-1"></a>[uWSGI] getting INI configuration from ./uwsgi.ini
11257
+ <a id="__codelineno-47-2" name="__codelineno-47-2" href="#__codelineno-47-2"></a>[uwsgi-static] added mapping for /static =&gt; /opt/nautobot/static
11258
+ <a id="__codelineno-47-3" name="__codelineno-47-3" href="#__codelineno-47-3"></a>*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Mar 11 21:13:22 2021] ***
11259
+ <a id="__codelineno-47-4" name="__codelineno-47-4" href="#__codelineno-47-4"></a>compiled with version: 8.3.1 20190311 (Red Hat 8.3.1-3) on 23 September 2020 02:39:40
11260
+ <a id="__codelineno-47-5" name="__codelineno-47-5" href="#__codelineno-47-5"></a>os: Linux-5.4.0-52-generic #57-Ubuntu SMP Thu Oct 15 10:57:00 UTC 2020
11261
+ <a id="__codelineno-47-6" name="__codelineno-47-6" href="#__codelineno-47-6"></a>nodename: jathan-nautobot-testing
11262
+ <a id="__codelineno-47-7" name="__codelineno-47-7" href="#__codelineno-47-7"></a>machine: x86_64
11263
+ <a id="__codelineno-47-8" name="__codelineno-47-8" href="#__codelineno-47-8"></a>clock source: unix
11264
+ <a id="__codelineno-47-9" name="__codelineno-47-9" href="#__codelineno-47-9"></a>pcre jit disabled
11265
+ <a id="__codelineno-47-10" name="__codelineno-47-10" href="#__codelineno-47-10"></a>detected number of CPU cores: 48
11266
+ <a id="__codelineno-47-11" name="__codelineno-47-11" href="#__codelineno-47-11"></a>current working directory: /opt/nautobot
11267
+ <a id="__codelineno-47-12" name="__codelineno-47-12" href="#__codelineno-47-12"></a>detected binary path: /usr/bin/python3.8
11268
+ <a id="__codelineno-47-13" name="__codelineno-47-13" href="#__codelineno-47-13"></a>your processes number limit is 256070
11269
+ <a id="__codelineno-47-14" name="__codelineno-47-14" href="#__codelineno-47-14"></a>your memory page size is 4096 bytes
11270
+ <a id="__codelineno-47-15" name="__codelineno-47-15" href="#__codelineno-47-15"></a>detected max file descriptor number: 1024
11271
+ <a id="__codelineno-47-16" name="__codelineno-47-16" href="#__codelineno-47-16"></a>building mime-types dictionary from file /etc/mime.types...567 entry found
11272
+ <a id="__codelineno-47-17" name="__codelineno-47-17" href="#__codelineno-47-17"></a>lock engine: pthread robust mutexes
11273
+ <a id="__codelineno-47-18" name="__codelineno-47-18" href="#__codelineno-47-18"></a>thunder lock: disabled (you can enable it with --thunder-lock)
11274
+ <a id="__codelineno-47-19" name="__codelineno-47-19" href="#__codelineno-47-19"></a>uwsgi socket 0 bound to TCP address 0.0.0.0:9191 fd 7
11275
+ <a id="__codelineno-47-20" name="__codelineno-47-20" href="#__codelineno-47-20"></a>Python version: 3.8.5 (default, Jan 27 2021, 15:41:15) [GCC 9.3.0]
11276
+ <a id="__codelineno-47-21" name="__codelineno-47-21" href="#__codelineno-47-21"></a>--- Python VM already initialized ---
11277
+ <a id="__codelineno-47-22" name="__codelineno-47-22" href="#__codelineno-47-22"></a>Python main interpreter initialized at 0x2573e30
11278
+ <a id="__codelineno-47-23" name="__codelineno-47-23" href="#__codelineno-47-23"></a>python threads support enabled
11279
+ <a id="__codelineno-47-24" name="__codelineno-47-24" href="#__codelineno-47-24"></a>your server socket listen backlog is limited to 1024 connections
11280
+ <a id="__codelineno-47-25" name="__codelineno-47-25" href="#__codelineno-47-25"></a>your mercy for graceful operations on workers is 60 seconds
11281
+ <a id="__codelineno-47-26" name="__codelineno-47-26" href="#__codelineno-47-26"></a>mapped 636432 bytes (621 KB) for 15 cores
11282
+ <a id="__codelineno-47-27" name="__codelineno-47-27" href="#__codelineno-47-27"></a>*** Operational MODE: preforking+threaded ***
11283
+ <a id="__codelineno-47-28" name="__codelineno-47-28" href="#__codelineno-47-28"></a>WSGI app 0 (mountpoint=&#39;&#39;) ready in 0 seconds on interpreter 0x2573e30 pid: 112153 (default app)
11284
+ <a id="__codelineno-47-29" name="__codelineno-47-29" href="#__codelineno-47-29"></a>spawned uWSGI master process (pid: 112153)
11285
+ <a id="__codelineno-47-30" name="__codelineno-47-30" href="#__codelineno-47-30"></a>spawned uWSGI worker 1 (pid: 112159, cores: 3)
11286
+ <a id="__codelineno-47-31" name="__codelineno-47-31" href="#__codelineno-47-31"></a>spawned uWSGI worker 2 (pid: 112162, cores: 3)
11287
+ <a id="__codelineno-47-32" name="__codelineno-47-32" href="#__codelineno-47-32"></a>spawned uWSGI worker 3 (pid: 112165, cores: 3)
11288
+ <a id="__codelineno-47-33" name="__codelineno-47-33" href="#__codelineno-47-33"></a>spawned uWSGI worker 4 (pid: 112168, cores: 3)
11289
+ <a id="__codelineno-47-34" name="__codelineno-47-34" href="#__codelineno-47-34"></a>spawned uWSGI worker 5 (pid: 112171, cores: 3)
11245
11290
  </code></pre></div>
11246
11291
  <p>Please see the guide on <a href="../installation/services.html">Deploying Nautobot Services</a> for our recommended configuration for use with uWSGI.</p>
11247
11292
  <h3 id="trace_paths"><code>trace_paths</code><a class="headerlink" href="#trace_paths" title="Permanent link">&para;</a></h3>
@@ -11252,17 +11297,17 @@ JSON string that populates the <code>data</code> variable of the job.</p>
11252
11297
  Force recalculation of all existing cable paths.</p>
11253
11298
  <p><code>--no-input</code><br />
11254
11299
  Do not prompt user for any input/confirmation.</p>
11255
- <div class="highlight"><pre><span></span><code><a id="__codelineno-44-1" name="__codelineno-44-1" href="#__codelineno-44-1"></a>nautobot-server trace_paths
11300
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-48-1" name="__codelineno-48-1" href="#__codelineno-48-1"></a>nautobot-server trace_paths
11256
11301
  </code></pre></div>
11257
11302
  <p>Example output:</p>
11258
- <div class="highlight"><pre><span></span><code><a id="__codelineno-45-1" name="__codelineno-45-1" href="#__codelineno-45-1"></a>Found no missing circuit termination paths; skipping
11259
- <a id="__codelineno-45-2" name="__codelineno-45-2" href="#__codelineno-45-2"></a>Found no missing console port paths; skipping
11260
- <a id="__codelineno-45-3" name="__codelineno-45-3" href="#__codelineno-45-3"></a>Found no missing console server port paths; skipping
11261
- <a id="__codelineno-45-4" name="__codelineno-45-4" href="#__codelineno-45-4"></a>Found no missing interface paths; skipping
11262
- <a id="__codelineno-45-5" name="__codelineno-45-5" href="#__codelineno-45-5"></a>Found no missing power feed paths; skipping
11263
- <a id="__codelineno-45-6" name="__codelineno-45-6" href="#__codelineno-45-6"></a>Found no missing power outlet paths; skipping
11264
- <a id="__codelineno-45-7" name="__codelineno-45-7" href="#__codelineno-45-7"></a>Found no missing power port paths; skipping
11265
- <a id="__codelineno-45-8" name="__codelineno-45-8" href="#__codelineno-45-8"></a>Finished.
11303
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-49-1" name="__codelineno-49-1" href="#__codelineno-49-1"></a>Found no missing circuit termination paths; skipping
11304
+ <a id="__codelineno-49-2" name="__codelineno-49-2" href="#__codelineno-49-2"></a>Found no missing console port paths; skipping
11305
+ <a id="__codelineno-49-3" name="__codelineno-49-3" href="#__codelineno-49-3"></a>Found no missing console server port paths; skipping
11306
+ <a id="__codelineno-49-4" name="__codelineno-49-4" href="#__codelineno-49-4"></a>Found no missing interface paths; skipping
11307
+ <a id="__codelineno-49-5" name="__codelineno-49-5" href="#__codelineno-49-5"></a>Found no missing power feed paths; skipping
11308
+ <a id="__codelineno-49-6" name="__codelineno-49-6" href="#__codelineno-49-6"></a>Found no missing power outlet paths; skipping
11309
+ <a id="__codelineno-49-7" name="__codelineno-49-7" href="#__codelineno-49-7"></a>Found no missing power port paths; skipping
11310
+ <a id="__codelineno-49-8" name="__codelineno-49-8" href="#__codelineno-49-8"></a>Finished.
11266
11311
  </code></pre></div>
11267
11312
  <div class="admonition note">
11268
11313
  <p class="admonition-title">Note</p>
@@ -11275,42 +11320,42 @@ Do not prompt user for any input/confirmation.</p>
11275
11320
  <p class="admonition-title">Warning</p>
11276
11321
  <p>Depending on the number of records in your database, this may take a long time to run.</p>
11277
11322
  </div>
11278
- <div class="highlight"><pre><span></span><code><a id="__codelineno-46-1" name="__codelineno-46-1" href="#__codelineno-46-1"></a>nautobot-server validate_models
11323
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-50-1" name="__codelineno-50-1" href="#__codelineno-50-1"></a>nautobot-server validate_models
11279
11324
  </code></pre></div>
11280
11325
  <p>Example output:</p>
11281
- <div class="highlight"><pre><span></span><code><a id="__codelineno-47-1" name="__codelineno-47-1" href="#__codelineno-47-1"></a>Validating 171 models.
11282
- <a id="__codelineno-47-2" name="__codelineno-47-2" href="#__codelineno-47-2"></a>auth.Permission
11283
- <a id="__codelineno-47-3" name="__codelineno-47-3" href="#__codelineno-47-3"></a>circuits.ProviderNetwork
11284
- <a id="__codelineno-47-4" name="__codelineno-47-4" href="#__codelineno-47-4"></a>circuits.Provider
11285
- <a id="__codelineno-47-5" name="__codelineno-47-5" href="#__codelineno-47-5"></a>circuits.CircuitType
11286
- <a id="__codelineno-47-6" name="__codelineno-47-6" href="#__codelineno-47-6"></a>circuits.Circuit
11287
- <a id="__codelineno-47-7" name="__codelineno-47-7" href="#__codelineno-47-7"></a>circuits.CircuitTermination
11288
- <a id="__codelineno-47-8" name="__codelineno-47-8" href="#__codelineno-47-8"></a>dcim.Interface
11289
- <a id="__codelineno-47-9" name="__codelineno-47-9" href="#__codelineno-47-9"></a>dcim.Manufacturer
11290
- <a id="__codelineno-47-10" name="__codelineno-47-10" href="#__codelineno-47-10"></a>dcim.DeviceFamily
11291
- <a id="__codelineno-47-11" name="__codelineno-47-11" href="#__codelineno-47-11"></a>dcim.DeviceTypeToSoftwareImageFile
11292
- <a id="__codelineno-47-12" name="__codelineno-47-12" href="#__codelineno-47-12"></a>dcim.DeviceType
11293
- <a id="__codelineno-47-13" name="__codelineno-47-13" href="#__codelineno-47-13"></a>dcim.Platform
11294
- <a id="__codelineno-47-14" name="__codelineno-47-14" href="#__codelineno-47-14"></a>&lt;omitted for brevity&gt;
11326
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-51-1" name="__codelineno-51-1" href="#__codelineno-51-1"></a>Validating 171 models.
11327
+ <a id="__codelineno-51-2" name="__codelineno-51-2" href="#__codelineno-51-2"></a>auth.Permission
11328
+ <a id="__codelineno-51-3" name="__codelineno-51-3" href="#__codelineno-51-3"></a>circuits.ProviderNetwork
11329
+ <a id="__codelineno-51-4" name="__codelineno-51-4" href="#__codelineno-51-4"></a>circuits.Provider
11330
+ <a id="__codelineno-51-5" name="__codelineno-51-5" href="#__codelineno-51-5"></a>circuits.CircuitType
11331
+ <a id="__codelineno-51-6" name="__codelineno-51-6" href="#__codelineno-51-6"></a>circuits.Circuit
11332
+ <a id="__codelineno-51-7" name="__codelineno-51-7" href="#__codelineno-51-7"></a>circuits.CircuitTermination
11333
+ <a id="__codelineno-51-8" name="__codelineno-51-8" href="#__codelineno-51-8"></a>dcim.Interface
11334
+ <a id="__codelineno-51-9" name="__codelineno-51-9" href="#__codelineno-51-9"></a>dcim.Manufacturer
11335
+ <a id="__codelineno-51-10" name="__codelineno-51-10" href="#__codelineno-51-10"></a>dcim.DeviceFamily
11336
+ <a id="__codelineno-51-11" name="__codelineno-51-11" href="#__codelineno-51-11"></a>dcim.DeviceTypeToSoftwareImageFile
11337
+ <a id="__codelineno-51-12" name="__codelineno-51-12" href="#__codelineno-51-12"></a>dcim.DeviceType
11338
+ <a id="__codelineno-51-13" name="__codelineno-51-13" href="#__codelineno-51-13"></a>dcim.Platform
11339
+ <a id="__codelineno-51-14" name="__codelineno-51-14" href="#__codelineno-51-14"></a>&lt;omitted for brevity&gt;
11295
11340
  </code></pre></div>
11296
11341
  <p>You can validate a specific subset of models by providing a space separated list of models as shown here:</p>
11297
- <div class="highlight"><pre><span></span><code><a id="__codelineno-48-1" name="__codelineno-48-1" href="#__codelineno-48-1"></a>nautobot-server validate_models dcim.Manufacturer dcim.Device
11342
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-52-1" name="__codelineno-52-1" href="#__codelineno-52-1"></a>nautobot-server validate_models dcim.Manufacturer dcim.Device
11298
11343
  </code></pre></div>
11299
- <div class="highlight"><pre><span></span><code><a id="__codelineno-49-1" name="__codelineno-49-1" href="#__codelineno-49-1"></a>Validating 2 models.
11300
- <a id="__codelineno-49-2" name="__codelineno-49-2" href="#__codelineno-49-2"></a>dcim.Manufacturer
11301
- <a id="__codelineno-49-3" name="__codelineno-49-3" href="#__codelineno-49-3"></a>dcim.Device
11344
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-53-1" name="__codelineno-53-1" href="#__codelineno-53-1"></a>Validating 2 models.
11345
+ <a id="__codelineno-53-2" name="__codelineno-53-2" href="#__codelineno-53-2"></a>dcim.Manufacturer
11346
+ <a id="__codelineno-53-3" name="__codelineno-53-3" href="#__codelineno-53-3"></a>dcim.Device
11302
11347
  </code></pre></div>
11303
11348
  <p><code>--save</code><br />
11304
11349
  Run <code>validated_save()</code> instead of <code>full_clean()</code> for slower but more thorough data validation.</p>
11305
11350
  <h3 id="version"><code>version</code><a class="headerlink" href="#version" title="Permanent link">&para;</a></h3>
11306
11351
  <p><code>nautobot-server version</code></p>
11307
11352
  <p>Report the Nautobot version and Django version, as well as the current configuration file in use.</p>
11308
- <div class="highlight"><pre><span></span><code><a id="__codelineno-50-1" name="__codelineno-50-1" href="#__codelineno-50-1"></a>nautobot-server version
11353
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-54-1" name="__codelineno-54-1" href="#__codelineno-54-1"></a>nautobot-server version
11309
11354
  </code></pre></div>
11310
11355
  <p>Example output:</p>
11311
- <div class="highlight"><pre><span></span><code><a id="__codelineno-51-1" name="__codelineno-51-1" href="#__codelineno-51-1"></a>Nautobot version: 2.2.0a1
11312
- <a id="__codelineno-51-2" name="__codelineno-51-2" href="#__codelineno-51-2"></a>Django version: 3.2.24
11313
- <a id="__codelineno-51-3" name="__codelineno-51-3" href="#__codelineno-51-3"></a>Configuration file: /opt/nautobot/nautobot_config.py
11356
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-55-1" name="__codelineno-55-1" href="#__codelineno-55-1"></a>Nautobot version: 2.2.0a1
11357
+ <a id="__codelineno-55-2" name="__codelineno-55-2" href="#__codelineno-55-2"></a>Django version: 3.2.24
11358
+ <a id="__codelineno-55-3" name="__codelineno-55-3" href="#__codelineno-55-3"></a>Configuration file: /opt/nautobot/nautobot_config.py
11314
11359
  </code></pre></div>
11315
11360
  <h3 id="webhook_receiver"><code>webhook_receiver</code><a class="headerlink" href="#webhook_receiver" title="Permanent link">&para;</a></h3>
11316
11361
  <p><code>nautobot-server webhook_receiver</code></p>
@@ -11319,10 +11364,10 @@ Run <code>validated_save()</code> instead of <code>full_clean()</code> for slowe
11319
11364
  Optional port number (default: <code>9000</code>)</p>
11320
11365
  <p><code>--no-headers</code><br />
11321
11366
  Hide HTTP request headers.</p>
11322
- <div class="highlight"><pre><span></span><code><a id="__codelineno-52-1" name="__codelineno-52-1" href="#__codelineno-52-1"></a>nautobot-server webhook_receiver --port 9001 --no-headers
11367
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-56-1" name="__codelineno-56-1" href="#__codelineno-56-1"></a>nautobot-server webhook_receiver --port 9001 --no-headers
11323
11368
  </code></pre></div>
11324
11369
  <p>Example output:</p>
11325
- <div class="highlight"><pre><span></span><code><a id="__codelineno-53-1" name="__codelineno-53-1" href="#__codelineno-53-1"></a>Listening on port http://localhost:9000. Stop with CONTROL-C.
11370
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-57-1" name="__codelineno-57-1" href="#__codelineno-57-1"></a>Listening on port http://localhost:9000. Stop with CONTROL-C.
11326
11371
  </code></pre></div>
11327
11372
  <p>Please see the guide on <a href="../../platform-functionality/webhook.html#troubleshooting-webhooks">Troubleshooting Webhooks</a> for more information.</p>
11328
11373
 
@@ -11421,7 +11466,7 @@ Hide HTTP request headers.</p>
11421
11466
 
11422
11467
 
11423
11468
  <a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
11424
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
11469
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
11425
11470
  </a>
11426
11471
 
11427
11472
 
@@ -11429,7 +11474,7 @@ Hide HTTP request headers.</p>
11429
11474
 
11430
11475
 
11431
11476
  <a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
11432
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
11477
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M549.7 124.1c-6.2-23.7-24.8-42.3-48.3-48.6C458.9 64 288.1 64 288.1 64S117.3 64 74.7 75.5c-23.5 6.3-42 24.9-48.3 48.6C15 167 15 256.4 15 256.4s0 89.4 11.4 132.3c6.3 23.6 24.8 41.5 48.3 47.8C117.3 448 288.1 448 288.1 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zM232.2 337.6V175.2l142.7 81.2z"/></svg>
11433
11478
  </a>
11434
11479
 
11435
11480
 
@@ -11437,7 +11482,7 @@ Hide HTTP request headers.</p>
11437
11482
 
11438
11483
 
11439
11484
  <a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
11440
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
11485
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M94.1 315.1c0 25.9-21.2 47.1-47.1 47.1S0 341 0 315.1 21.2 268 47.1 268h47.1v47.1zm23.7 0c0-25.9 21.2-47.1 47.1-47.1s47.1 21.2 47.1 47.1v117.8c0 25.9-21.2 47.1-47.1 47.1s-47.1-21.2-47.1-47.1zm47.1-189c-25.9 0-47.1-21.2-47.1-47.1s21.2-47 47.1-47S212 53.2 212 79.1v47.1h-47.1zm0 23.7c25.9 0 47.1 21.2 47.1 47.1S190.8 244 164.9 244H47.1C21.2 244 0 222.8 0 196.9s21.2-47.1 47.1-47.1zm189 47.1c0-25.9 21.2-47.1 47.1-47.1s47 21.2 47 47.1-21.2 47.1-47.1 47.1h-47.1v-47.1zm-23.7 0c0 25.9-21.2 47.1-47.1 47.1S236 222.8 236 196.9V79.1c0-25.9 21.2-47.1 47.1-47.1s47.1 21.2 47.1 47.1zm-47.1 189c25.9 0 47.1 21.2 47.1 47.1s-21.2 47-47.1 47-47.1-21.2-47.1-47.1v-47.1h47.1zm0-23.7c-25.9 0-47.1-21.2-47.1-47.1s21.2-47.1 47.1-47.1h117.8c25.9 0 47.1 21.2 47.1 47.1s-21.2 47.1-47.1 47.1z"/></svg>
11441
11486
  </a>
11442
11487
 
11443
11488
 
@@ -11445,7 +11490,7 @@ Hide HTTP request headers.</p>
11445
11490
 
11446
11491
 
11447
11492
  <a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
11448
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
11493
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M173.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M252.8 8C114.1 8 8 113.3 8 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C436.2 457.8 504 362.9 504 252 504 113.3 391.5 8 252.8 8M105.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
11449
11494
  </a>
11450
11495
 
11451
11496
 
@@ -11453,7 +11498,7 @@ Hide HTTP request headers.</p>
11453
11498
 
11454
11499
 
11455
11500
  <a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
11456
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>
11501
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M459.4 151.7c.3 4.5.3 9.1.3 13.6 0 138.7-105.6 298.6-298.6 298.6-59.5 0-114.7-17.2-161.1-47.1 8.4 1 16.6 1.3 25.3 1.3 49.1 0 94.2-16.6 130.3-44.8-46.1-1-84.8-31.2-98.1-72.8 6.5 1 13 1.6 19.8 1.6 9.4 0 18.8-1.3 27.6-3.6-48.1-9.7-84.1-52-84.1-103v-1.3c14 7.8 30.2 12.7 47.4 13.3-28.3-18.8-46.8-51-46.8-87.4 0-19.5 5.2-37.4 14.3-53C87.4 130.8 165 172.4 252.1 176.9c-1.6-7.8-2.6-15.9-2.6-24C249.5 95.1 296.3 48 354.4 48c30.2 0 57.5 12.7 76.7 33.1 23.7-4.5 46.5-13.3 66.6-25.3-7.8 24.4-24.4 44.8-46.1 57.8 21.1-2.3 41.6-8.1 60.4-16.2-14.3 20.8-32.2 39.3-52.6 54.3"/></svg>
11457
11502
  </a>
11458
11503
 
11459
11504
  </div>
@@ -11473,7 +11518,7 @@ Hide HTTP request headers.</p>
11473
11518
  <script id="__config" type="application/json">{"base": "../../..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../assets/javascripts/workers/search.d50fe291.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": null}</script>
11474
11519
 
11475
11520
 
11476
- <script src="../../../assets/javascripts/bundle.56ea9cef.min.js"></script>
11521
+ <script src="../../../assets/javascripts/bundle.50899def.min.js"></script>
11477
11522
 
11478
11523
 
11479
11524
  <script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});