nautobot 2.3.4__py3-none-any.whl → 2.3.6__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.
Files changed (327) hide show
  1. nautobot/core/api/utils.py +12 -2
  2. nautobot/core/forms/fields.py +5 -2
  3. nautobot/core/forms/utils.py +31 -6
  4. nautobot/core/models/fields.py +56 -0
  5. nautobot/core/tests/runner.py +13 -6
  6. nautobot/core/tests/test_utils.py +83 -0
  7. nautobot/core/tests/test_views.py +40 -1
  8. nautobot/core/views/generic.py +15 -15
  9. nautobot/core/views/mixins.py +12 -1
  10. nautobot/core/views/renderers.py +3 -1
  11. nautobot/core/views/utils.py +1 -1
  12. nautobot/dcim/api/serializers.py +1 -0
  13. nautobot/dcim/api/views.py +2 -0
  14. nautobot/dcim/forms.py +1 -1
  15. nautobot/dcim/templates/dcim/devicefamily_retrieve.html +1 -1
  16. nautobot/dcim/tests/test_api.py +61 -4
  17. nautobot/dcim/tests/test_models.py +0 -2
  18. nautobot/dcim/views.py +5 -2
  19. nautobot/extras/api/views.py +9 -0
  20. nautobot/extras/factory.py +2 -1
  21. nautobot/extras/models/jobs.py +9 -1
  22. nautobot/extras/models/models.py +2 -0
  23. nautobot/extras/querysets.py +10 -1
  24. nautobot/extras/tables.py +3 -0
  25. nautobot/extras/tests/test_api.py +39 -3
  26. nautobot/extras/tests/test_forms.py +2 -0
  27. nautobot/extras/tests/test_views.py +78 -3
  28. nautobot/extras/views.py +10 -7
  29. nautobot/ipam/api/serializers.py +30 -1
  30. nautobot/ipam/api/views.py +165 -3
  31. nautobot/ipam/filters.py +1 -1
  32. nautobot/ipam/forms.py +8 -1
  33. nautobot/ipam/migrations/0050_vlangroup_range.py +24 -0
  34. nautobot/ipam/models.py +56 -19
  35. nautobot/ipam/navigation.py +8 -1
  36. nautobot/ipam/tables.py +4 -4
  37. nautobot/ipam/templates/ipam/prefix.html +1 -1
  38. nautobot/ipam/templates/ipam/vlangroup.html +4 -0
  39. nautobot/ipam/tests/test_api.py +174 -0
  40. nautobot/ipam/tests/test_filters.py +1 -1
  41. nautobot/ipam/tests/test_models.py +35 -1
  42. nautobot/ipam/tests/test_utils.py +61 -0
  43. nautobot/ipam/tests/test_views.py +43 -41
  44. nautobot/ipam/utils/__init__.py +10 -17
  45. nautobot/ipam/views.py +2 -2
  46. nautobot/project-static/docs/404.html +2 -2
  47. nautobot/project-static/docs/apps/index.html +2 -2
  48. nautobot/project-static/docs/apps/nautobot-apps.html +2 -2
  49. nautobot/project-static/docs/assets/javascripts/workers/{search.07f07601.min.js → search.6ce7567c.min.js} +3 -3
  50. nautobot/project-static/docs/assets/javascripts/workers/{search.07f07601.min.js.map → search.6ce7567c.min.js.map} +2 -2
  51. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +2 -2
  52. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +2 -2
  53. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +2 -2
  54. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +2 -2
  55. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +2 -2
  56. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +2 -2
  57. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +2 -2
  58. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +2 -2
  59. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +2 -2
  60. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +2 -2
  61. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +2 -2
  62. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +4 -4
  63. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +2 -2
  64. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2 -2
  65. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +2 -2
  66. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +2 -2
  67. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +2 -2
  68. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +2 -2
  69. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +2 -2
  70. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +2 -2
  71. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +2 -2
  72. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +2 -2
  73. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +2 -2
  74. nautobot/project-static/docs/development/apps/api/configuration-view.html +2 -2
  75. nautobot/project-static/docs/development/apps/api/database-backend-config.html +2 -2
  76. nautobot/project-static/docs/development/apps/api/models/django-admin.html +2 -2
  77. nautobot/project-static/docs/development/apps/api/models/global-search.html +2 -2
  78. nautobot/project-static/docs/development/apps/api/models/graphql.html +2 -2
  79. nautobot/project-static/docs/development/apps/api/models/index.html +4 -4
  80. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +2 -2
  81. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +2 -2
  82. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +2 -2
  83. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +2 -2
  84. nautobot/project-static/docs/development/apps/api/platform-features/index.html +2 -2
  85. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +2 -2
  86. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +2 -2
  87. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +2 -2
  88. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +2 -2
  89. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +2 -2
  90. nautobot/project-static/docs/development/apps/api/prometheus.html +2 -2
  91. nautobot/project-static/docs/development/apps/api/setup.html +2 -2
  92. nautobot/project-static/docs/development/apps/api/testing.html +2 -2
  93. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +2 -2
  94. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +2 -2
  95. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +2 -2
  96. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +2 -2
  97. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +2 -2
  98. nautobot/project-static/docs/development/apps/api/views/base-template.html +2 -2
  99. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +2 -2
  100. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +2 -2
  101. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +2 -2
  102. nautobot/project-static/docs/development/apps/api/views/index.html +2 -2
  103. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +2 -2
  104. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +2 -2
  105. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +2 -2
  106. nautobot/project-static/docs/development/apps/api/views/notes.html +2 -2
  107. nautobot/project-static/docs/development/apps/api/views/rest-api.html +2 -2
  108. nautobot/project-static/docs/development/apps/api/views/urls.html +2 -2
  109. nautobot/project-static/docs/development/apps/index.html +2 -2
  110. nautobot/project-static/docs/development/apps/migration/code-updates.html +2 -2
  111. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +2 -2
  112. nautobot/project-static/docs/development/apps/migration/from-v1.html +2 -2
  113. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +2 -2
  114. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +2 -2
  115. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +2 -2
  116. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +2 -2
  117. nautobot/project-static/docs/development/apps/porting-from-netbox.html +2 -2
  118. nautobot/project-static/docs/development/core/application-registry.html +2 -2
  119. nautobot/project-static/docs/development/core/best-practices.html +2 -2
  120. nautobot/project-static/docs/development/core/bootstrap-ui.html +2 -2
  121. nautobot/project-static/docs/development/core/caching.html +2 -2
  122. nautobot/project-static/docs/development/core/controllers.html +2 -2
  123. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +2 -2
  124. nautobot/project-static/docs/development/core/generic-views.html +2 -2
  125. nautobot/project-static/docs/development/core/getting-started.html +7 -6
  126. nautobot/project-static/docs/development/core/homepage.html +2 -2
  127. nautobot/project-static/docs/development/core/index.html +2 -2
  128. nautobot/project-static/docs/development/core/model-checklist.html +2 -2
  129. nautobot/project-static/docs/development/core/model-features.html +2 -2
  130. nautobot/project-static/docs/development/core/natural-keys.html +2 -2
  131. nautobot/project-static/docs/development/core/navigation-menu.html +2 -2
  132. nautobot/project-static/docs/development/core/release-checklist.html +2 -2
  133. nautobot/project-static/docs/development/core/role-internals.html +2 -2
  134. nautobot/project-static/docs/development/core/settings.html +2 -2
  135. nautobot/project-static/docs/development/core/style-guide.html +2 -2
  136. nautobot/project-static/docs/development/core/templates.html +2 -2
  137. nautobot/project-static/docs/development/core/testing.html +12 -4
  138. nautobot/project-static/docs/development/core/user-preferences.html +2 -2
  139. nautobot/project-static/docs/development/index.html +2 -2
  140. nautobot/project-static/docs/development/jobs/index.html +2 -2
  141. nautobot/project-static/docs/development/jobs/migration/from-v1.html +2 -2
  142. nautobot/project-static/docs/index.html +2 -2
  143. nautobot/project-static/docs/objects.inv +0 -0
  144. nautobot/project-static/docs/overview/application_stack.html +2 -2
  145. nautobot/project-static/docs/overview/design_philosophy.html +2 -2
  146. nautobot/project-static/docs/release-notes/index.html +2 -2
  147. nautobot/project-static/docs/release-notes/version-1.0.html +2 -2
  148. nautobot/project-static/docs/release-notes/version-1.1.html +2 -2
  149. nautobot/project-static/docs/release-notes/version-1.2.html +2 -2
  150. nautobot/project-static/docs/release-notes/version-1.3.html +2 -2
  151. nautobot/project-static/docs/release-notes/version-1.4.html +2 -2
  152. nautobot/project-static/docs/release-notes/version-1.5.html +2 -2
  153. nautobot/project-static/docs/release-notes/version-1.6.html +2 -2
  154. nautobot/project-static/docs/release-notes/version-2.0.html +2 -2
  155. nautobot/project-static/docs/release-notes/version-2.1.html +2 -2
  156. nautobot/project-static/docs/release-notes/version-2.2.html +2 -2
  157. nautobot/project-static/docs/release-notes/version-2.3.html +402 -80
  158. nautobot/project-static/docs/search/search_index.json +1 -1
  159. nautobot/project-static/docs/sitemap.xml +269 -269
  160. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  161. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +2 -2
  162. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +2 -2
  163. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +2 -2
  164. nautobot/project-static/docs/user-guide/administration/configuration/index.html +2 -2
  165. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +2 -2
  166. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +2 -2
  167. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +2 -2
  168. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +2 -2
  169. nautobot/project-static/docs/user-guide/administration/guides/docker.html +2 -2
  170. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +2 -2
  171. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +2 -2
  172. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +2 -2
  173. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +2 -2
  174. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +2 -2
  175. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +2 -2
  176. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +2 -2
  177. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +2 -2
  178. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +2 -2
  179. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +2 -2
  180. nautobot/project-static/docs/user-guide/administration/installation/index.html +2 -2
  181. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +2 -2
  182. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +2 -2
  183. nautobot/project-static/docs/user-guide/administration/installation/services.html +2 -2
  184. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +2 -2
  185. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +2 -2
  186. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +2 -2
  187. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +2 -2
  188. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +2 -2
  189. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +2 -2
  190. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +2 -2
  191. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +2 -2
  192. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +2 -2
  193. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +2 -2
  194. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +2 -2
  195. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +2 -2
  196. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +2 -2
  197. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +2 -2
  198. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +2 -2
  199. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +2 -2
  200. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +2 -2
  201. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +2 -2
  202. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +2 -2
  203. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +2 -2
  204. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +2 -2
  205. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +2 -2
  206. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +2 -2
  207. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +2 -2
  208. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +2 -2
  209. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +2 -2
  210. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +2 -2
  211. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +2 -2
  212. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +2 -2
  213. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +2 -2
  214. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +2 -2
  215. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +2 -2
  216. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +2 -2
  217. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +2 -2
  218. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +2 -2
  219. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +2 -2
  220. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +2 -2
  221. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +2 -2
  222. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +2 -2
  223. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +2 -2
  224. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +2 -2
  225. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +2 -2
  226. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +2 -2
  227. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +2 -2
  228. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +2 -2
  229. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +2 -2
  230. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +2 -2
  231. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +2 -2
  232. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +2 -2
  233. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +2 -2
  234. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +2 -2
  235. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +2 -2
  236. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +2 -2
  237. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +2 -2
  238. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +2 -2
  239. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +2 -2
  240. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +2 -2
  241. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +2 -2
  242. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +2 -2
  243. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +2 -2
  244. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +2 -2
  245. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +2 -2
  246. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +2 -2
  247. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +2 -2
  248. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +2 -2
  249. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +2 -2
  250. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +2 -2
  251. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +2 -2
  252. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +2 -2
  253. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +2 -2
  254. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +2 -2
  255. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +2 -2
  256. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +2 -2
  257. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +2 -2
  258. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +2 -2
  259. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +2 -2
  260. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +2 -2
  261. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +307 -2
  262. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +2 -2
  263. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +2 -2
  264. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +2 -2
  265. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +2 -2
  266. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +2 -2
  267. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +2 -2
  268. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +2 -2
  269. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +2 -2
  270. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +2 -2
  271. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +2 -2
  272. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +2 -2
  273. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +2 -2
  274. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +2 -2
  275. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +2 -2
  276. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +2 -2
  277. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +2 -2
  278. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +2 -2
  279. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +2 -2
  280. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +2 -2
  281. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +2 -2
  282. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +2 -2
  283. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +2 -2
  284. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +2 -2
  285. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +2 -2
  286. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +2 -2
  287. nautobot/project-static/docs/user-guide/index.html +2 -2
  288. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +2 -2
  289. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +2 -2
  290. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +2 -2
  291. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +2 -2
  292. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +2 -2
  293. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +2 -2
  294. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +2 -2
  295. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +2 -2
  296. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +2 -2
  297. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +2 -2
  298. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +2 -2
  299. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +2 -2
  300. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +2 -2
  301. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +2 -2
  302. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +2 -2
  303. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +2 -2
  304. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +2 -2
  305. nautobot/project-static/docs/user-guide/platform-functionality/note.html +2 -2
  306. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +2 -2
  307. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +2 -2
  308. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +2 -2
  309. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +2 -2
  310. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +2 -2
  311. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +2 -2
  312. nautobot/project-static/docs/user-guide/platform-functionality/role.html +2 -2
  313. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +2 -2
  314. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +2 -2
  315. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +2 -2
  316. nautobot/project-static/docs/user-guide/platform-functionality/status.html +2 -2
  317. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +2 -2
  318. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +2 -2
  319. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +2 -2
  320. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +2 -2
  321. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +2 -2
  322. {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/METADATA +2 -2
  323. {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/RECORD +327 -325
  324. {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/LICENSE.txt +0 -0
  325. {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/NOTICE +0 -0
  326. {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/WHEEL +0 -0
  327. {nautobot-2.3.4.dist-info → nautobot-2.3.6.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.5.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -4292,6 +4292,17 @@
4292
4292
 
4293
4293
 
4294
4294
 
4295
+ <label class="md-nav__link md-nav__link--active" for="__toc">
4296
+
4297
+
4298
+ <span class="md-ellipsis">
4299
+ VLAN Group
4300
+ </span>
4301
+
4302
+
4303
+ <span class="md-nav__icon md-icon"></span>
4304
+ </label>
4305
+
4295
4306
  <a href="vlangroup.html" class="md-nav__link md-nav__link--active">
4296
4307
 
4297
4308
 
@@ -4302,6 +4313,76 @@
4302
4313
 
4303
4314
  </a>
4304
4315
 
4316
+
4317
+
4318
+ <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
4319
+
4320
+
4321
+
4322
+
4323
+
4324
+
4325
+ <label class="md-nav__title" for="__toc">
4326
+ <span class="md-nav__icon md-icon"></span>
4327
+ Table of contents
4328
+ </label>
4329
+ <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
4330
+
4331
+ <li class="md-nav__item">
4332
+ <a href="#vlan-group-ranges" class="md-nav__link">
4333
+ <span class="md-ellipsis">
4334
+ VLAN Group Ranges
4335
+ </span>
4336
+ </a>
4337
+
4338
+ </li>
4339
+
4340
+ <li class="md-nav__item">
4341
+ <a href="#creating-new-vlans-in-a-vlangroup-programatically" class="md-nav__link">
4342
+ <span class="md-ellipsis">
4343
+ Creating new VLANs in a VLANGroup programatically
4344
+ </span>
4345
+ </a>
4346
+
4347
+ <nav class="md-nav" aria-label="Creating new VLANs in a VLANGroup programatically">
4348
+ <ul class="md-nav__list">
4349
+
4350
+ <li class="md-nav__item">
4351
+ <a href="#creating-vlangroup-example" class="md-nav__link">
4352
+ <span class="md-ellipsis">
4353
+ Creating VLANGroup example
4354
+ </span>
4355
+ </a>
4356
+
4357
+ </li>
4358
+
4359
+ <li class="md-nav__item">
4360
+ <a href="#listing-available-vlans-example" class="md-nav__link">
4361
+ <span class="md-ellipsis">
4362
+ Listing available VLANs example
4363
+ </span>
4364
+ </a>
4365
+
4366
+ </li>
4367
+
4368
+ <li class="md-nav__item">
4369
+ <a href="#creating-new-vlans-example" class="md-nav__link">
4370
+ <span class="md-ellipsis">
4371
+ Creating new VLANs example
4372
+ </span>
4373
+ </a>
4374
+
4375
+ </li>
4376
+
4377
+ </ul>
4378
+ </nav>
4379
+
4380
+ </li>
4381
+
4382
+ </ul>
4383
+
4384
+ </nav>
4385
+
4305
4386
  </li>
4306
4387
 
4307
4388
 
@@ -8565,6 +8646,65 @@
8565
8646
 
8566
8647
 
8567
8648
 
8649
+ <label class="md-nav__title" for="__toc">
8650
+ <span class="md-nav__icon md-icon"></span>
8651
+ Table of contents
8652
+ </label>
8653
+ <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
8654
+
8655
+ <li class="md-nav__item">
8656
+ <a href="#vlan-group-ranges" class="md-nav__link">
8657
+ <span class="md-ellipsis">
8658
+ VLAN Group Ranges
8659
+ </span>
8660
+ </a>
8661
+
8662
+ </li>
8663
+
8664
+ <li class="md-nav__item">
8665
+ <a href="#creating-new-vlans-in-a-vlangroup-programatically" class="md-nav__link">
8666
+ <span class="md-ellipsis">
8667
+ Creating new VLANs in a VLANGroup programatically
8668
+ </span>
8669
+ </a>
8670
+
8671
+ <nav class="md-nav" aria-label="Creating new VLANs in a VLANGroup programatically">
8672
+ <ul class="md-nav__list">
8673
+
8674
+ <li class="md-nav__item">
8675
+ <a href="#creating-vlangroup-example" class="md-nav__link">
8676
+ <span class="md-ellipsis">
8677
+ Creating VLANGroup example
8678
+ </span>
8679
+ </a>
8680
+
8681
+ </li>
8682
+
8683
+ <li class="md-nav__item">
8684
+ <a href="#listing-available-vlans-example" class="md-nav__link">
8685
+ <span class="md-ellipsis">
8686
+ Listing available VLANs example
8687
+ </span>
8688
+ </a>
8689
+
8690
+ </li>
8691
+
8692
+ <li class="md-nav__item">
8693
+ <a href="#creating-new-vlans-example" class="md-nav__link">
8694
+ <span class="md-ellipsis">
8695
+ Creating new VLANs example
8696
+ </span>
8697
+ </a>
8698
+
8699
+ </li>
8700
+
8701
+ </ul>
8702
+ </nav>
8703
+
8704
+ </li>
8705
+
8706
+ </ul>
8707
+
8568
8708
  </nav>
8569
8709
  </div>
8570
8710
  </div>
@@ -8584,6 +8724,171 @@
8584
8724
  <h1 id="vlan-groups">VLAN Groups<a class="headerlink" href="#vlan-groups" title="Permanent link">&para;</a></h1>
8585
8725
  <p>VLAN groups can be used to organize VLANs within Nautobot. Each group may optionally be assigned to a specific location, but a group cannot belong to multiple locations.</p>
8586
8726
  <p>Groups can also be used to enforce uniqueness: Each VLAN within a group must have a unique ID and name. VLANs which are not assigned to a group may have overlapping names and IDs (including VLANs which belong to a common location). For example, you can create two VLANs with ID 123, but they cannot both be assigned to the same group.</p>
8727
+ <h2 id="vlan-group-ranges">VLAN Group Ranges<a class="headerlink" href="#vlan-group-ranges" title="Permanent link">&para;</a></h2>
8728
+ <details class="version-added">
8729
+ <summary>Added in version 2.3.6</summary>
8730
+ </details>
8731
+ <p>VLAN Groups contain a mandatory <code>range</code> field with a default value of <code>1-4094</code> (permitting all VLANs). This field may be used to constrain the valid member VLANs of the group. VLANs can only be associated with a given VLAN Group if their VLAN identifiers ("VIDs") fall within the specified <code>range</code>.
8732
+ Range value accepts commas and dashes, with examples as follows:</p>
8733
+ <ul>
8734
+ <li>1</li>
8735
+ <li>1-5</li>
8736
+ <li>1-5,10</li>
8737
+ <li>1-5,10-15</li>
8738
+ <li>1-5,10-15,16,17,18,19,20</li>
8739
+ </ul>
8740
+ <p>Values between dashes will also be expanded into a list of VLANs.</p>
8741
+ <h2 id="creating-new-vlans-in-a-vlangroup-programatically">Creating new VLANs in a VLANGroup programatically<a class="headerlink" href="#creating-new-vlans-in-a-vlangroup-programatically" title="Permanent link">&para;</a></h2>
8742
+ <details class="version-added">
8743
+ <summary>Added in version 2.3.6</summary>
8744
+ </details>
8745
+ <p>VLAN Groups offer an API endpoint to list available VIDs and create new VLANs programmatically:</p>
8746
+ <p><code>/api/ipam/vlan-groups/&lt;vlan_group_id&gt;/available-vlans/</code></p>
8747
+ <p>A <code>GET</code> request to this API endpoint will return a list of all available (unassigned) VIDs available in the given <code>VLANGroup</code>.</p>
8748
+ <p>A <code>POST</code> request to the same API endpoint will create <code>VLAN</code> record(s) in the given <code>VLANGroup</code>. Note that you must specify the <code>name</code> and <code>status</code> of each VLAN to be created as a part of this request, but the <code>vlan_group</code> and <code>vid</code> may be omitted as they can be automatically assigned by this API. See below.</p>
8749
+ <h3 id="creating-vlangroup-example">Creating VLANGroup example<a class="headerlink" href="#creating-vlangroup-example" title="Permanent link">&para;</a></h3>
8750
+ <p>To create a new <code>VLANGroup</code> with a <code>range</code> field of: <code>5-10</code> (permit VLANs <code>5, 6, 7, 8, 9, 10</code>), issue following POST request:</p>
8751
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>curl -X POST -H &quot;Authorization: Token $TOKEN&quot; \
8752
+ <a id="__codelineno-0-2" name="__codelineno-0-2" href="#__codelineno-0-2"></a>-H &quot;Content-Type: application/json&quot; \
8753
+ <a id="__codelineno-0-3" name="__codelineno-0-3" href="#__codelineno-0-3"></a>-H &quot;Accept: application/json; version=2.0; indent=4&quot; \
8754
+ <a id="__codelineno-0-4" name="__codelineno-0-4" href="#__codelineno-0-4"></a>http://nautobot/api/ipam/vlan-groups/ \
8755
+ <a id="__codelineno-0-5" name="__codelineno-0-5" href="#__codelineno-0-5"></a>--data &#39;[{&quot;name&quot;: &quot;Enterprise VLANs&quot;, &quot;range&quot;: &quot;5-10&quot;}]&#39;
8756
+ </code></pre></div>
8757
+ <p><code>VLANGroup</code> was created as follows:</p>
8758
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-1-1" name="__codelineno-1-1" href="#__codelineno-1-1"></a><span class="p">[</span>
8759
+ <a id="__codelineno-1-2" name="__codelineno-1-2" href="#__codelineno-1-2"></a><span class="w"> </span><span class="p">{</span>
8760
+ <a id="__codelineno-1-3" name="__codelineno-1-3" href="#__codelineno-1-3"></a><span class="w"> </span><span class="nt">&quot;id&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;c16d5d1d-40d6-4902-b89d-6294e60cb4bf&quot;</span><span class="p">,</span>
8761
+ <a id="__codelineno-1-4" name="__codelineno-1-4" href="#__codelineno-1-4"></a><span class="w"> </span><span class="nt">&quot;object_type&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;ipam.vlangroup&quot;</span><span class="p">,</span>
8762
+ <a id="__codelineno-1-5" name="__codelineno-1-5" href="#__codelineno-1-5"></a><span class="w"> </span><span class="nt">&quot;display&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;Enterprise VLANs&quot;</span><span class="p">,</span>
8763
+ <a id="__codelineno-1-6" name="__codelineno-1-6" href="#__codelineno-1-6"></a><span class="w"> </span><span class="nt">&quot;url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/ipam/vlan-groups/c16d5d1d-40d6-4902-b89d-6294e60cb4bf/&quot;</span><span class="p">,</span>
8764
+ <a id="__codelineno-1-7" name="__codelineno-1-7" href="#__codelineno-1-7"></a><span class="w"> </span><span class="nt">&quot;natural_slug&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;enterprise-vlans_c16d&quot;</span><span class="p">,</span>
8765
+ <a id="__codelineno-1-8" name="__codelineno-1-8" href="#__codelineno-1-8"></a><span class="w"> </span><span class="nt">&quot;name&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;Enterprise VLANs&quot;</span><span class="p">,</span>
8766
+ <a id="__codelineno-1-9" name="__codelineno-1-9" href="#__codelineno-1-9"></a><span class="w"> </span><span class="nt">&quot;description&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;&quot;</span><span class="p">,</span>
8767
+ <a id="__codelineno-1-10" name="__codelineno-1-10" href="#__codelineno-1-10"></a><span class="w"> </span><span class="nt">&quot;range&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;5-10&quot;</span><span class="p">,</span>
8768
+ <a id="__codelineno-1-11" name="__codelineno-1-11" href="#__codelineno-1-11"></a><span class="w"> </span><span class="nt">&quot;location&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
8769
+ <a id="__codelineno-1-12" name="__codelineno-1-12" href="#__codelineno-1-12"></a><span class="w"> </span><span class="nt">&quot;created&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;2024-09-25T09:27:16.343655Z&quot;</span><span class="p">,</span>
8770
+ <a id="__codelineno-1-13" name="__codelineno-1-13" href="#__codelineno-1-13"></a><span class="w"> </span><span class="nt">&quot;last_updated&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;2024-09-25T09:27:16.343670Z&quot;</span><span class="p">,</span>
8771
+ <a id="__codelineno-1-14" name="__codelineno-1-14" href="#__codelineno-1-14"></a><span class="w"> </span><span class="nt">&quot;notes_url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/ipam/vlan-groups/c16d5d1d-40d6-4902-b89d-6294e60cb4bf/notes/&quot;</span><span class="p">,</span>
8772
+ <a id="__codelineno-1-15" name="__codelineno-1-15" href="#__codelineno-1-15"></a><span class="w"> </span><span class="nt">&quot;custom_fields&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{},</span>
8773
+ <a id="__codelineno-1-16" name="__codelineno-1-16" href="#__codelineno-1-16"></a><span class="w"> </span><span class="nt">&quot;computed_fields&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{},</span>
8774
+ <a id="__codelineno-1-17" name="__codelineno-1-17" href="#__codelineno-1-17"></a><span class="w"> </span><span class="nt">&quot;relationships&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{}</span>
8775
+ <a id="__codelineno-1-18" name="__codelineno-1-18" href="#__codelineno-1-18"></a><span class="w"> </span><span class="p">}</span>
8776
+ <a id="__codelineno-1-19" name="__codelineno-1-19" href="#__codelineno-1-19"></a><span class="p">]</span>
8777
+ </code></pre></div>
8778
+ <h3 id="listing-available-vlans-example">Listing available VLANs example<a class="headerlink" href="#listing-available-vlans-example" title="Permanent link">&para;</a></h3>
8779
+ <p>Then, to list all available VLAN IDs within the just-created <code>VLANGroup</code>, issue a GET request:</p>
8780
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-2-1" name="__codelineno-2-1" href="#__codelineno-2-1"></a>curl -X GET -H &quot;Authorization: Token $TOKEN&quot; \
8781
+ <a id="__codelineno-2-2" name="__codelineno-2-2" href="#__codelineno-2-2"></a>-H &quot;Content-Type: application/json&quot; \
8782
+ <a id="__codelineno-2-3" name="__codelineno-2-3" href="#__codelineno-2-3"></a>-H &quot;Accept: application/json; version=2.0; indent=4&quot; \
8783
+ <a id="__codelineno-2-4" name="__codelineno-2-4" href="#__codelineno-2-4"></a>http://nautobot/api/ipam/vlan-groups/c16d5d1d-40d6-4902-b89d-6294e60cb4bf/available-vlans/
8784
+ </code></pre></div>
8785
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-3-1" name="__codelineno-3-1" href="#__codelineno-3-1"></a><span class="p">{</span>
8786
+ <a id="__codelineno-3-2" name="__codelineno-3-2" href="#__codelineno-3-2"></a><span class="w"> </span><span class="nt">&quot;count&quot;</span><span class="p">:</span><span class="w"> </span><span class="mi">6</span><span class="p">,</span>
8787
+ <a id="__codelineno-3-3" name="__codelineno-3-3" href="#__codelineno-3-3"></a><span class="w"> </span><span class="nt">&quot;next&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
8788
+ <a id="__codelineno-3-4" name="__codelineno-3-4" href="#__codelineno-3-4"></a><span class="w"> </span><span class="nt">&quot;previous&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
8789
+ <a id="__codelineno-3-5" name="__codelineno-3-5" href="#__codelineno-3-5"></a><span class="w"> </span><span class="nt">&quot;results&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">[</span>
8790
+ <a id="__codelineno-3-6" name="__codelineno-3-6" href="#__codelineno-3-6"></a><span class="w"> </span><span class="mi">5</span><span class="p">,</span>
8791
+ <a id="__codelineno-3-7" name="__codelineno-3-7" href="#__codelineno-3-7"></a><span class="w"> </span><span class="mi">6</span><span class="p">,</span>
8792
+ <a id="__codelineno-3-8" name="__codelineno-3-8" href="#__codelineno-3-8"></a><span class="w"> </span><span class="mi">7</span><span class="p">,</span>
8793
+ <a id="__codelineno-3-9" name="__codelineno-3-9" href="#__codelineno-3-9"></a><span class="w"> </span><span class="mi">8</span><span class="p">,</span>
8794
+ <a id="__codelineno-3-10" name="__codelineno-3-10" href="#__codelineno-3-10"></a><span class="w"> </span><span class="mi">9</span><span class="p">,</span>
8795
+ <a id="__codelineno-3-11" name="__codelineno-3-11" href="#__codelineno-3-11"></a><span class="w"> </span><span class="mi">10</span>
8796
+ <a id="__codelineno-3-12" name="__codelineno-3-12" href="#__codelineno-3-12"></a><span class="w"> </span><span class="p">]</span>
8797
+ <a id="__codelineno-3-13" name="__codelineno-3-13" href="#__codelineno-3-13"></a><span class="p">}</span>
8798
+ </code></pre></div>
8799
+ <h3 id="creating-new-vlans-example">Creating new VLANs example<a class="headerlink" href="#creating-new-vlans-example" title="Permanent link">&para;</a></h3>
8800
+ <p>The <code>/api/ipam/vlan-groups/&lt;vlan_group_id&gt;/available-vlans/</code> API endpoint accepts <code>POST</code> requests to create a new VLAN record, similar to the <code>/api/ipam/vlans/</code> API endpoint. However, there are some characteristic differences in the behavior of <code>/available-vlans/</code> with regard to its input and output:</p>
8801
+ <ul>
8802
+ <li>Accepts a single dictionary as input to create 1 VLAN, in which case it returns a single dictionary describing the created VLAN</li>
8803
+ <li>Accepts a list of dictionaries as input to create one or more VLANs, in which case it returns a list of VLAN objects</li>
8804
+ <li>The fields <code>name</code> and <code>status</code> of are mandatory inputs for each VLAN to be created</li>
8805
+ <li>The field <code>vid</code> is optional and might be specified to override auto-allocation for a given VLAN<ul>
8806
+ <li>Will not accept a request with the same <code>vid</code> value specified multiple times</li>
8807
+ </ul>
8808
+ </li>
8809
+ <li>Will not accept a <code>vlan_group</code> attribute different than that already specified in the request's URL</li>
8810
+ <li>Other <code>VLAN</code> model fields are permitted and optional</li>
8811
+ <li>As with the <code>/vlans/</code> endpoint, specifying <code>locations</code> in the POST request is not presently supported; you can make a subsequent call(s) to the <code>/api/ipam/vlan-location-assignments/</code> endpoint to update the many-to-many association between the created VLAN(s) and desired Location(s)</li>
8812
+ </ul>
8813
+ <p>To create two new VLANs, a data payload has to be specified. In the case of the first VLAN, its <code>VLAN ID</code> will be automatically determined based on <code>VLANGroups</code> availability, in the case of the second VLAN we explicitly request <code>vid</code> 8:</p>
8814
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-4-1" name="__codelineno-4-1" href="#__codelineno-4-1"></a>curl -X POST -H &quot;Authorization: Token $TOKEN&quot; \
8815
+ <a id="__codelineno-4-2" name="__codelineno-4-2" href="#__codelineno-4-2"></a>-H &quot;Content-Type: application/json&quot; \
8816
+ <a id="__codelineno-4-3" name="__codelineno-4-3" href="#__codelineno-4-3"></a>-H &quot;Accept: application/json; version=2.0; indent=4&quot; \
8817
+ <a id="__codelineno-4-4" name="__codelineno-4-4" href="#__codelineno-4-4"></a>http://nautobot/api/ipam/vlan-groups/c16d5d1d-40d6-4902-b89d-6294e60cb4bf/available-vlans/ \
8818
+ <a id="__codelineno-4-5" name="__codelineno-4-5" href="#__codelineno-4-5"></a>--data &#39;[
8819
+ <a id="__codelineno-4-6" name="__codelineno-4-6" href="#__codelineno-4-6"></a>{&quot;name&quot;: &quot;First VLAN&quot;, &quot;status&quot;: &quot;1e560c4d-07ef-4d49-af6e-c85aa1f295d3&quot;},
8820
+ <a id="__codelineno-4-7" name="__codelineno-4-7" href="#__codelineno-4-7"></a>{&quot;name&quot;: &quot;Second VLAN&quot;, &quot;vid&quot;: 8, &quot;status&quot;: &quot;1e560c4d-07ef-4d49-af6e-c85aa1f295d3&quot;}
8821
+ <a id="__codelineno-4-8" name="__codelineno-4-8" href="#__codelineno-4-8"></a>]&#39;
8822
+ </code></pre></div>
8823
+ <p><code>VLANs</code> created:</p>
8824
+ <div class="highlight"><pre><span></span><code><a id="__codelineno-5-1" name="__codelineno-5-1" href="#__codelineno-5-1"></a><span class="p">{</span>
8825
+ <a id="__codelineno-5-2" name="__codelineno-5-2" href="#__codelineno-5-2"></a><span class="w"> </span><span class="nt">&quot;count&quot;</span><span class="p">:</span><span class="w"> </span><span class="mi">2</span><span class="p">,</span>
8826
+ <a id="__codelineno-5-3" name="__codelineno-5-3" href="#__codelineno-5-3"></a><span class="w"> </span><span class="nt">&quot;next&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
8827
+ <a id="__codelineno-5-4" name="__codelineno-5-4" href="#__codelineno-5-4"></a><span class="w"> </span><span class="nt">&quot;previous&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
8828
+ <a id="__codelineno-5-5" name="__codelineno-5-5" href="#__codelineno-5-5"></a><span class="w"> </span><span class="nt">&quot;results&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">[</span>
8829
+ <a id="__codelineno-5-6" name="__codelineno-5-6" href="#__codelineno-5-6"></a><span class="w"> </span><span class="p">{</span>
8830
+ <a id="__codelineno-5-7" name="__codelineno-5-7" href="#__codelineno-5-7"></a><span class="w"> </span><span class="nt">&quot;id&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;58bd2a10-33f7-45e2-93d2-f56be25dfe8c&quot;</span><span class="p">,</span>
8831
+ <a id="__codelineno-5-8" name="__codelineno-5-8" href="#__codelineno-5-8"></a><span class="w"> </span><span class="nt">&quot;object_type&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;ipam.vlan&quot;</span><span class="p">,</span>
8832
+ <a id="__codelineno-5-9" name="__codelineno-5-9" href="#__codelineno-5-9"></a><span class="w"> </span><span class="nt">&quot;display&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;First VLAN (5)&quot;</span><span class="p">,</span>
8833
+ <a id="__codelineno-5-10" name="__codelineno-5-10" href="#__codelineno-5-10"></a><span class="w"> </span><span class="nt">&quot;url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/ipam/vlans/58bd2a10-33f7-45e2-93d2-f56be25dfe8c/&quot;</span><span class="p">,</span>
8834
+ <a id="__codelineno-5-11" name="__codelineno-5-11" href="#__codelineno-5-11"></a><span class="w"> </span><span class="nt">&quot;natural_slug&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;58bd2a10-33f7-45e2-93d2-f56be25dfe8c_58bd&quot;</span><span class="p">,</span>
8835
+ <a id="__codelineno-5-12" name="__codelineno-5-12" href="#__codelineno-5-12"></a><span class="w"> </span><span class="nt">&quot;vid&quot;</span><span class="p">:</span><span class="w"> </span><span class="mi">5</span><span class="p">,</span>
8836
+ <a id="__codelineno-5-13" name="__codelineno-5-13" href="#__codelineno-5-13"></a><span class="w"> </span><span class="nt">&quot;name&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;First VLAN&quot;</span><span class="p">,</span>
8837
+ <a id="__codelineno-5-14" name="__codelineno-5-14" href="#__codelineno-5-14"></a><span class="w"> </span><span class="nt">&quot;description&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;&quot;</span><span class="p">,</span>
8838
+ <a id="__codelineno-5-15" name="__codelineno-5-15" href="#__codelineno-5-15"></a><span class="w"> </span><span class="nt">&quot;vlan_group&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{</span>
8839
+ <a id="__codelineno-5-16" name="__codelineno-5-16" href="#__codelineno-5-16"></a><span class="w"> </span><span class="nt">&quot;id&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;c16d5d1d-40d6-4902-b89d-6294e60cb4bf&quot;</span><span class="p">,</span>
8840
+ <a id="__codelineno-5-17" name="__codelineno-5-17" href="#__codelineno-5-17"></a><span class="w"> </span><span class="nt">&quot;object_type&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;ipam.vlangroup&quot;</span><span class="p">,</span>
8841
+ <a id="__codelineno-5-18" name="__codelineno-5-18" href="#__codelineno-5-18"></a><span class="w"> </span><span class="nt">&quot;url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/ipam/vlan-groups/c16d5d1d-40d6-4902-b89d-6294e60cb4bf/&quot;</span>
8842
+ <a id="__codelineno-5-19" name="__codelineno-5-19" href="#__codelineno-5-19"></a><span class="w"> </span><span class="p">},</span>
8843
+ <a id="__codelineno-5-20" name="__codelineno-5-20" href="#__codelineno-5-20"></a><span class="w"> </span><span class="nt">&quot;status&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{</span>
8844
+ <a id="__codelineno-5-21" name="__codelineno-5-21" href="#__codelineno-5-21"></a><span class="w"> </span><span class="nt">&quot;id&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;1e560c4d-07ef-4d49-af6e-c85aa1f295d3&quot;</span><span class="p">,</span>
8845
+ <a id="__codelineno-5-22" name="__codelineno-5-22" href="#__codelineno-5-22"></a><span class="w"> </span><span class="nt">&quot;object_type&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;extras.status&quot;</span><span class="p">,</span>
8846
+ <a id="__codelineno-5-23" name="__codelineno-5-23" href="#__codelineno-5-23"></a><span class="w"> </span><span class="nt">&quot;url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/extras/statuses/1e560c4d-07ef-4d49-af6e-c85aa1f295d3/&quot;</span>
8847
+ <a id="__codelineno-5-24" name="__codelineno-5-24" href="#__codelineno-5-24"></a><span class="w"> </span><span class="p">},</span>
8848
+ <a id="__codelineno-5-25" name="__codelineno-5-25" href="#__codelineno-5-25"></a><span class="w"> </span><span class="nt">&quot;role&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
8849
+ <a id="__codelineno-5-26" name="__codelineno-5-26" href="#__codelineno-5-26"></a><span class="w"> </span><span class="nt">&quot;tenant&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
8850
+ <a id="__codelineno-5-27" name="__codelineno-5-27" href="#__codelineno-5-27"></a><span class="w"> </span><span class="nt">&quot;locations&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">[],</span>
8851
+ <a id="__codelineno-5-28" name="__codelineno-5-28" href="#__codelineno-5-28"></a><span class="w"> </span><span class="nt">&quot;created&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;2024-09-25T09:36:07.587950Z&quot;</span><span class="p">,</span>
8852
+ <a id="__codelineno-5-29" name="__codelineno-5-29" href="#__codelineno-5-29"></a><span class="w"> </span><span class="nt">&quot;last_updated&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;2024-09-25T09:36:07.587963Z&quot;</span><span class="p">,</span>
8853
+ <a id="__codelineno-5-30" name="__codelineno-5-30" href="#__codelineno-5-30"></a><span class="w"> </span><span class="nt">&quot;tags&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">[],</span>
8854
+ <a id="__codelineno-5-31" name="__codelineno-5-31" href="#__codelineno-5-31"></a><span class="w"> </span><span class="nt">&quot;notes_url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/ipam/vlans/58bd2a10-33f7-45e2-93d2-f56be25dfe8c/notes/&quot;</span><span class="p">,</span>
8855
+ <a id="__codelineno-5-32" name="__codelineno-5-32" href="#__codelineno-5-32"></a><span class="w"> </span><span class="nt">&quot;custom_fields&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{},</span>
8856
+ <a id="__codelineno-5-33" name="__codelineno-5-33" href="#__codelineno-5-33"></a><span class="w"> </span><span class="nt">&quot;computed_fields&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{},</span>
8857
+ <a id="__codelineno-5-34" name="__codelineno-5-34" href="#__codelineno-5-34"></a><span class="w"> </span><span class="nt">&quot;relationships&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{}</span>
8858
+ <a id="__codelineno-5-35" name="__codelineno-5-35" href="#__codelineno-5-35"></a><span class="w"> </span><span class="p">},</span>
8859
+ <a id="__codelineno-5-36" name="__codelineno-5-36" href="#__codelineno-5-36"></a><span class="w"> </span><span class="p">{</span>
8860
+ <a id="__codelineno-5-37" name="__codelineno-5-37" href="#__codelineno-5-37"></a><span class="w"> </span><span class="nt">&quot;id&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;9b7c6b03-9140-4b00-940f-5dbcde173de1&quot;</span><span class="p">,</span>
8861
+ <a id="__codelineno-5-38" name="__codelineno-5-38" href="#__codelineno-5-38"></a><span class="w"> </span><span class="nt">&quot;object_type&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;ipam.vlan&quot;</span><span class="p">,</span>
8862
+ <a id="__codelineno-5-39" name="__codelineno-5-39" href="#__codelineno-5-39"></a><span class="w"> </span><span class="nt">&quot;display&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;Second VLAN (8)&quot;</span><span class="p">,</span>
8863
+ <a id="__codelineno-5-40" name="__codelineno-5-40" href="#__codelineno-5-40"></a><span class="w"> </span><span class="nt">&quot;url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/ipam/vlans/9b7c6b03-9140-4b00-940f-5dbcde173de1/&quot;</span><span class="p">,</span>
8864
+ <a id="__codelineno-5-41" name="__codelineno-5-41" href="#__codelineno-5-41"></a><span class="w"> </span><span class="nt">&quot;natural_slug&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;9b7c6b03-9140-4b00-940f-5dbcde173de1_9b7c&quot;</span><span class="p">,</span>
8865
+ <a id="__codelineno-5-42" name="__codelineno-5-42" href="#__codelineno-5-42"></a><span class="w"> </span><span class="nt">&quot;vid&quot;</span><span class="p">:</span><span class="w"> </span><span class="mi">8</span><span class="p">,</span>
8866
+ <a id="__codelineno-5-43" name="__codelineno-5-43" href="#__codelineno-5-43"></a><span class="w"> </span><span class="nt">&quot;name&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;Second VLAN&quot;</span><span class="p">,</span>
8867
+ <a id="__codelineno-5-44" name="__codelineno-5-44" href="#__codelineno-5-44"></a><span class="w"> </span><span class="nt">&quot;description&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;&quot;</span><span class="p">,</span>
8868
+ <a id="__codelineno-5-45" name="__codelineno-5-45" href="#__codelineno-5-45"></a><span class="w"> </span><span class="nt">&quot;vlan_group&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{</span>
8869
+ <a id="__codelineno-5-46" name="__codelineno-5-46" href="#__codelineno-5-46"></a><span class="w"> </span><span class="nt">&quot;id&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;c16d5d1d-40d6-4902-b89d-6294e60cb4bf&quot;</span><span class="p">,</span>
8870
+ <a id="__codelineno-5-47" name="__codelineno-5-47" href="#__codelineno-5-47"></a><span class="w"> </span><span class="nt">&quot;object_type&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;ipam.vlangroup&quot;</span><span class="p">,</span>
8871
+ <a id="__codelineno-5-48" name="__codelineno-5-48" href="#__codelineno-5-48"></a><span class="w"> </span><span class="nt">&quot;url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/ipam/vlan-groups/c16d5d1d-40d6-4902-b89d-6294e60cb4bf/&quot;</span>
8872
+ <a id="__codelineno-5-49" name="__codelineno-5-49" href="#__codelineno-5-49"></a><span class="w"> </span><span class="p">},</span>
8873
+ <a id="__codelineno-5-50" name="__codelineno-5-50" href="#__codelineno-5-50"></a><span class="w"> </span><span class="nt">&quot;status&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{</span>
8874
+ <a id="__codelineno-5-51" name="__codelineno-5-51" href="#__codelineno-5-51"></a><span class="w"> </span><span class="nt">&quot;id&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;1e560c4d-07ef-4d49-af6e-c85aa1f295d3&quot;</span><span class="p">,</span>
8875
+ <a id="__codelineno-5-52" name="__codelineno-5-52" href="#__codelineno-5-52"></a><span class="w"> </span><span class="nt">&quot;object_type&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;extras.status&quot;</span><span class="p">,</span>
8876
+ <a id="__codelineno-5-53" name="__codelineno-5-53" href="#__codelineno-5-53"></a><span class="w"> </span><span class="nt">&quot;url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/extras/statuses/1e560c4d-07ef-4d49-af6e-c85aa1f295d3/&quot;</span>
8877
+ <a id="__codelineno-5-54" name="__codelineno-5-54" href="#__codelineno-5-54"></a><span class="w"> </span><span class="p">},</span>
8878
+ <a id="__codelineno-5-55" name="__codelineno-5-55" href="#__codelineno-5-55"></a><span class="w"> </span><span class="nt">&quot;role&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
8879
+ <a id="__codelineno-5-56" name="__codelineno-5-56" href="#__codelineno-5-56"></a><span class="w"> </span><span class="nt">&quot;tenant&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
8880
+ <a id="__codelineno-5-57" name="__codelineno-5-57" href="#__codelineno-5-57"></a><span class="w"> </span><span class="nt">&quot;locations&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">[],</span>
8881
+ <a id="__codelineno-5-58" name="__codelineno-5-58" href="#__codelineno-5-58"></a><span class="w"> </span><span class="nt">&quot;created&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;2024-09-25T09:36:07.634563Z&quot;</span><span class="p">,</span>
8882
+ <a id="__codelineno-5-59" name="__codelineno-5-59" href="#__codelineno-5-59"></a><span class="w"> </span><span class="nt">&quot;last_updated&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;2024-09-25T09:36:07.634578Z&quot;</span><span class="p">,</span>
8883
+ <a id="__codelineno-5-60" name="__codelineno-5-60" href="#__codelineno-5-60"></a><span class="w"> </span><span class="nt">&quot;tags&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">[],</span>
8884
+ <a id="__codelineno-5-61" name="__codelineno-5-61" href="#__codelineno-5-61"></a><span class="w"> </span><span class="nt">&quot;notes_url&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;http://nautobot/api/ipam/vlans/9b7c6b03-9140-4b00-940f-5dbcde173de1/notes/&quot;</span><span class="p">,</span>
8885
+ <a id="__codelineno-5-62" name="__codelineno-5-62" href="#__codelineno-5-62"></a><span class="w"> </span><span class="nt">&quot;custom_fields&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{},</span>
8886
+ <a id="__codelineno-5-63" name="__codelineno-5-63" href="#__codelineno-5-63"></a><span class="w"> </span><span class="nt">&quot;computed_fields&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{},</span>
8887
+ <a id="__codelineno-5-64" name="__codelineno-5-64" href="#__codelineno-5-64"></a><span class="w"> </span><span class="nt">&quot;relationships&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{}</span>
8888
+ <a id="__codelineno-5-65" name="__codelineno-5-65" href="#__codelineno-5-65"></a><span class="w"> </span><span class="p">}</span>
8889
+ <a id="__codelineno-5-66" name="__codelineno-5-66" href="#__codelineno-5-66"></a><span class="w"> </span><span class="p">]</span>
8890
+ <a id="__codelineno-5-67" name="__codelineno-5-67" href="#__codelineno-5-67"></a><span class="p">}</span>
8891
+ </code></pre></div>
8587
8892
 
8588
8893
 
8589
8894
 
@@ -8727,7 +9032,7 @@
8727
9032
  </div>
8728
9033
 
8729
9034
 
8730
- <script id="__config" type="application/json">{"base": "../../..", "features": ["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.07f07601.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
9035
+ <script id="__config" type="application/json">{"base": "../../..", "features": ["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.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8731
9036
 
8732
9037
 
8733
9038
  <script src="../../../assets/javascripts/bundle.56dfad97.min.js"></script>
@@ -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.5.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -8737,7 +8737,7 @@
8737
8737
  </div>
8738
8738
 
8739
8739
 
8740
- <script id="__config" type="application/json">{"base": "../../..", "features": ["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.07f07601.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8740
+ <script id="__config" type="application/json">{"base": "../../..", "features": ["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.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8741
8741
 
8742
8742
 
8743
8743
  <script src="../../../assets/javascripts/bundle.56dfad97.min.js"></script>
@@ -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.5.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -8812,7 +8812,7 @@
8812
8812
  </div>
8813
8813
 
8814
8814
 
8815
- <script id="__config" type="application/json">{"base": "../../..", "features": ["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.07f07601.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8815
+ <script id="__config" type="application/json">{"base": "../../..", "features": ["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.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8816
8816
 
8817
8817
 
8818
8818
  <script src="../../../assets/javascripts/bundle.56dfad97.min.js"></script>
@@ -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.5.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -8747,7 +8747,7 @@
8747
8747
  </div>
8748
8748
 
8749
8749
 
8750
- <script id="__config" type="application/json">{"base": "../../..", "features": ["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.07f07601.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8750
+ <script id="__config" type="application/json">{"base": "../../..", "features": ["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.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8751
8751
 
8752
8752
 
8753
8753
  <script src="../../../assets/javascripts/bundle.56dfad97.min.js"></script>
@@ -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.5.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -8727,7 +8727,7 @@
8727
8727
  </div>
8728
8728
 
8729
8729
 
8730
- <script id="__config" type="application/json">{"base": "../../..", "features": ["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.07f07601.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8730
+ <script id="__config" type="application/json">{"base": "../../..", "features": ["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.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8731
8731
 
8732
8732
 
8733
8733
  <script src="../../../assets/javascripts/bundle.56dfad97.min.js"></script>
@@ -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.5.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -8727,7 +8727,7 @@
8727
8727
  </div>
8728
8728
 
8729
8729
 
8730
- <script id="__config" type="application/json">{"base": "../../..", "features": ["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.07f07601.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8730
+ <script id="__config" type="application/json">{"base": "../../..", "features": ["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.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8731
8731
 
8732
8732
 
8733
8733
  <script src="../../../assets/javascripts/bundle.56dfad97.min.js"></script>
@@ -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.5.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -8726,7 +8726,7 @@
8726
8726
  </div>
8727
8727
 
8728
8728
 
8729
- <script id="__config" type="application/json">{"base": "../../..", "features": ["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.07f07601.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8729
+ <script id="__config" type="application/json">{"base": "../../..", "features": ["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.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8730
8730
 
8731
8731
 
8732
8732
  <script src="../../../assets/javascripts/bundle.56dfad97.min.js"></script>
@@ -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.5.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -8726,7 +8726,7 @@
8726
8726
  </div>
8727
8727
 
8728
8728
 
8729
- <script id="__config" type="application/json">{"base": "../../..", "features": ["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.07f07601.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8729
+ <script id="__config" type="application/json">{"base": "../../..", "features": ["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.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8730
8730
 
8731
8731
 
8732
8732
  <script src="../../../assets/javascripts/bundle.56dfad97.min.js"></script>
@@ -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.5.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -8744,7 +8744,7 @@
8744
8744
  </div>
8745
8745
 
8746
8746
 
8747
- <script id="__config" type="application/json">{"base": "../../..", "features": ["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.07f07601.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8747
+ <script id="__config" type="application/json">{"base": "../../..", "features": ["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.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8748
8748
 
8749
8749
 
8750
8750
  <script src="../../../assets/javascripts/bundle.56dfad97.min.js"></script>