nautobot 1.6.31__py3-none-any.whl → 1.6.32__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 (235) hide show
  1. nautobot/circuits/forms.py +6 -0
  2. nautobot/circuits/views.py +1 -0
  3. nautobot/core/graphql/schema.py +3 -1
  4. nautobot/core/graphql/types.py +10 -0
  5. nautobot/core/models/__init__.py +2 -0
  6. nautobot/core/templates/generic/object_list.html +1 -1
  7. nautobot/core/tests/test_views.py +73 -0
  8. nautobot/core/urls.py +3 -3
  9. nautobot/core/views/__init__.py +21 -0
  10. nautobot/dcim/forms.py +29 -0
  11. nautobot/dcim/models/device_component_templates.py +4 -0
  12. nautobot/dcim/models/device_components.py +4 -0
  13. nautobot/dcim/models/devices.py +2 -0
  14. nautobot/dcim/views.py +4 -0
  15. nautobot/extras/forms/forms.py +12 -0
  16. nautobot/extras/models/customfields.py +2 -0
  17. nautobot/extras/models/datasources.py +2 -0
  18. nautobot/extras/models/groups.py +8 -0
  19. nautobot/extras/models/jobs.py +10 -0
  20. nautobot/extras/models/models.py +2 -0
  21. nautobot/extras/models/secrets.py +8 -2
  22. nautobot/extras/secrets/__init__.py +14 -0
  23. nautobot/extras/tests/test_models.py +26 -0
  24. nautobot/extras/views.py +1 -0
  25. nautobot/ipam/filters.py +1 -1
  26. nautobot/ipam/forms.py +6 -0
  27. nautobot/ipam/models.py +8 -0
  28. nautobot/ipam/views.py +1 -0
  29. nautobot/project-static/docs/404.html +62 -0
  30. nautobot/project-static/docs/additional-features/caching.html +62 -0
  31. nautobot/project-static/docs/additional-features/change-logging.html +62 -0
  32. nautobot/project-static/docs/additional-features/config-contexts.html +62 -0
  33. nautobot/project-static/docs/additional-features/graphql.html +62 -0
  34. nautobot/project-static/docs/additional-features/healthcheck.html +62 -0
  35. nautobot/project-static/docs/additional-features/job-scheduling-and-approvals.html +63 -1
  36. nautobot/project-static/docs/additional-features/jobs.html +62 -0
  37. nautobot/project-static/docs/additional-features/napalm.html +62 -0
  38. nautobot/project-static/docs/additional-features/prometheus-metrics.html +62 -0
  39. nautobot/project-static/docs/additional-features/template-filters.html +62 -0
  40. nautobot/project-static/docs/administration/celery-queues.html +63 -1
  41. nautobot/project-static/docs/administration/nautobot-server.html +62 -0
  42. nautobot/project-static/docs/administration/nautobot-shell.html +62 -0
  43. nautobot/project-static/docs/administration/permissions.html +62 -0
  44. nautobot/project-static/docs/administration/replicating-nautobot.html +62 -0
  45. nautobot/project-static/docs/administration/request-profiling.html +62 -0
  46. nautobot/project-static/docs/administration/security/index.html +4407 -0
  47. nautobot/project-static/docs/administration/security/notices.html +4797 -0
  48. nautobot/project-static/docs/apps/index.html +62 -0
  49. nautobot/project-static/docs/apps/nautobot-apps.html +62 -0
  50. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +62 -0
  51. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +62 -0
  52. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +62 -0
  53. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +62 -0
  54. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +62 -0
  55. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +62 -0
  56. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +83 -21
  57. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +67 -1
  58. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +140 -52
  59. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +62 -0
  60. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3203 -3101
  61. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +62 -0
  62. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +62 -0
  63. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +210 -148
  64. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +62 -0
  65. nautobot/project-static/docs/configuration/authentication/ldap.html +62 -0
  66. nautobot/project-static/docs/configuration/authentication/remote.html +62 -0
  67. nautobot/project-static/docs/configuration/authentication/sso.html +62 -0
  68. nautobot/project-static/docs/configuration/index.html +62 -0
  69. nautobot/project-static/docs/configuration/optional-settings.html +67 -5
  70. nautobot/project-static/docs/configuration/required-settings.html +62 -0
  71. nautobot/project-static/docs/core-functionality/circuits.html +62 -0
  72. nautobot/project-static/docs/core-functionality/device-types.html +62 -0
  73. nautobot/project-static/docs/core-functionality/devices.html +62 -0
  74. nautobot/project-static/docs/core-functionality/ipam.html +62 -0
  75. nautobot/project-static/docs/core-functionality/power.html +62 -0
  76. nautobot/project-static/docs/core-functionality/secrets.html +62 -0
  77. nautobot/project-static/docs/core-functionality/services.html +62 -0
  78. nautobot/project-static/docs/core-functionality/sites-and-racks.html +62 -0
  79. nautobot/project-static/docs/core-functionality/tenancy.html +62 -0
  80. nautobot/project-static/docs/core-functionality/virtualization.html +62 -0
  81. nautobot/project-static/docs/core-functionality/vlans.html +62 -0
  82. nautobot/project-static/docs/development/application-registry.html +62 -0
  83. nautobot/project-static/docs/development/best-practices.html +62 -0
  84. nautobot/project-static/docs/development/docker-compose-advanced-use-cases.html +62 -0
  85. nautobot/project-static/docs/development/extending-models.html +62 -0
  86. nautobot/project-static/docs/development/generic-views.html +62 -0
  87. nautobot/project-static/docs/development/getting-started.html +63 -1
  88. nautobot/project-static/docs/development/homepage.html +62 -0
  89. nautobot/project-static/docs/development/index.html +62 -0
  90. nautobot/project-static/docs/development/navigation-menu.html +62 -0
  91. nautobot/project-static/docs/development/release-checklist.html +62 -0
  92. nautobot/project-static/docs/development/style-guide.html +62 -0
  93. nautobot/project-static/docs/development/templates.html +62 -0
  94. nautobot/project-static/docs/development/testing.html +62 -0
  95. nautobot/project-static/docs/development/user-preferences.html +62 -0
  96. nautobot/project-static/docs/docker/index.html +62 -0
  97. nautobot/project-static/docs/index.html +62 -0
  98. nautobot/project-static/docs/installation/centos.html +62 -0
  99. nautobot/project-static/docs/installation/external-authentication.html +62 -0
  100. nautobot/project-static/docs/installation/http-server.html +62 -0
  101. nautobot/project-static/docs/installation/index.html +62 -0
  102. nautobot/project-static/docs/installation/migrating-from-netbox.html +62 -0
  103. nautobot/project-static/docs/installation/migrating-from-postgresql.html +62 -0
  104. nautobot/project-static/docs/installation/nautobot.html +62 -0
  105. nautobot/project-static/docs/installation/selinux-troubleshooting.html +62 -0
  106. nautobot/project-static/docs/installation/services.html +62 -0
  107. nautobot/project-static/docs/installation/ubuntu.html +62 -0
  108. nautobot/project-static/docs/installation/upgrading.html +62 -0
  109. nautobot/project-static/docs/models/circuits/circuit.html +62 -0
  110. nautobot/project-static/docs/models/circuits/circuittermination.html +62 -0
  111. nautobot/project-static/docs/models/circuits/circuittype.html +62 -0
  112. nautobot/project-static/docs/models/circuits/provider.html +62 -0
  113. nautobot/project-static/docs/models/circuits/providernetwork.html +62 -0
  114. nautobot/project-static/docs/models/dcim/cable.html +62 -0
  115. nautobot/project-static/docs/models/dcim/consoleport.html +62 -0
  116. nautobot/project-static/docs/models/dcim/consoleporttemplate.html +62 -0
  117. nautobot/project-static/docs/models/dcim/consoleserverport.html +62 -0
  118. nautobot/project-static/docs/models/dcim/consoleserverporttemplate.html +62 -0
  119. nautobot/project-static/docs/models/dcim/device.html +62 -0
  120. nautobot/project-static/docs/models/dcim/devicebay.html +62 -0
  121. nautobot/project-static/docs/models/dcim/devicebaytemplate.html +62 -0
  122. nautobot/project-static/docs/models/dcim/deviceredundancygroup.html +62 -0
  123. nautobot/project-static/docs/models/dcim/devicerole.html +62 -0
  124. nautobot/project-static/docs/models/dcim/devicetype.html +62 -0
  125. nautobot/project-static/docs/models/dcim/frontport.html +62 -0
  126. nautobot/project-static/docs/models/dcim/frontporttemplate.html +62 -0
  127. nautobot/project-static/docs/models/dcim/interface.html +62 -0
  128. nautobot/project-static/docs/models/dcim/interfaceredundancygroup.html +62 -0
  129. nautobot/project-static/docs/models/dcim/interfacetemplate.html +62 -0
  130. nautobot/project-static/docs/models/dcim/inventoryitem.html +62 -0
  131. nautobot/project-static/docs/models/dcim/location.html +62 -0
  132. nautobot/project-static/docs/models/dcim/locationtype.html +62 -0
  133. nautobot/project-static/docs/models/dcim/manufacturer.html +62 -0
  134. nautobot/project-static/docs/models/dcim/platform.html +62 -0
  135. nautobot/project-static/docs/models/dcim/powerfeed.html +62 -0
  136. nautobot/project-static/docs/models/dcim/poweroutlet.html +62 -0
  137. nautobot/project-static/docs/models/dcim/poweroutlettemplate.html +62 -0
  138. nautobot/project-static/docs/models/dcim/powerpanel.html +62 -0
  139. nautobot/project-static/docs/models/dcim/powerport.html +62 -0
  140. nautobot/project-static/docs/models/dcim/powerporttemplate.html +62 -0
  141. nautobot/project-static/docs/models/dcim/rack.html +62 -0
  142. nautobot/project-static/docs/models/dcim/rackgroup.html +62 -0
  143. nautobot/project-static/docs/models/dcim/rackreservation.html +62 -0
  144. nautobot/project-static/docs/models/dcim/rackrole.html +62 -0
  145. nautobot/project-static/docs/models/dcim/rearport.html +62 -0
  146. nautobot/project-static/docs/models/dcim/rearporttemplate.html +62 -0
  147. nautobot/project-static/docs/models/dcim/region.html +62 -0
  148. nautobot/project-static/docs/models/dcim/site.html +62 -0
  149. nautobot/project-static/docs/models/dcim/virtualchassis.html +62 -0
  150. nautobot/project-static/docs/models/extras/computedfield.html +63 -1
  151. nautobot/project-static/docs/models/extras/configcontext.html +62 -0
  152. nautobot/project-static/docs/models/extras/configcontextschema.html +62 -0
  153. nautobot/project-static/docs/models/extras/customfield.html +62 -0
  154. nautobot/project-static/docs/models/extras/customlink.html +63 -1
  155. nautobot/project-static/docs/models/extras/dynamicgroup.html +62 -0
  156. nautobot/project-static/docs/models/extras/exporttemplate.html +62 -0
  157. nautobot/project-static/docs/models/extras/gitrepository.html +62 -0
  158. nautobot/project-static/docs/models/extras/graphqlquery.html +62 -0
  159. nautobot/project-static/docs/models/extras/imageattachment.html +62 -0
  160. nautobot/project-static/docs/models/extras/job.html +62 -0
  161. nautobot/project-static/docs/models/extras/jobbutton.html +63 -1
  162. nautobot/project-static/docs/models/extras/jobhook.html +62 -0
  163. nautobot/project-static/docs/models/extras/joblogentry.html +62 -0
  164. nautobot/project-static/docs/models/extras/jobresult.html +62 -0
  165. nautobot/project-static/docs/models/extras/note.html +62 -0
  166. nautobot/project-static/docs/models/extras/relationship.html +62 -0
  167. nautobot/project-static/docs/models/extras/secret.html +62 -0
  168. nautobot/project-static/docs/models/extras/secretsgroup.html +62 -0
  169. nautobot/project-static/docs/models/extras/status.html +62 -0
  170. nautobot/project-static/docs/models/extras/tag.html +62 -0
  171. nautobot/project-static/docs/models/extras/webhook.html +62 -0
  172. nautobot/project-static/docs/models/ipam/aggregate.html +62 -0
  173. nautobot/project-static/docs/models/ipam/ipaddress.html +62 -0
  174. nautobot/project-static/docs/models/ipam/prefix.html +62 -0
  175. nautobot/project-static/docs/models/ipam/rir.html +62 -0
  176. nautobot/project-static/docs/models/ipam/role.html +62 -0
  177. nautobot/project-static/docs/models/ipam/routetarget.html +62 -0
  178. nautobot/project-static/docs/models/ipam/service.html +62 -0
  179. nautobot/project-static/docs/models/ipam/vlan.html +62 -0
  180. nautobot/project-static/docs/models/ipam/vlangroup.html +62 -0
  181. nautobot/project-static/docs/models/ipam/vrf.html +62 -0
  182. nautobot/project-static/docs/models/tenancy/tenant.html +62 -0
  183. nautobot/project-static/docs/models/tenancy/tenantgroup.html +62 -0
  184. nautobot/project-static/docs/models/users/objectpermission.html +62 -0
  185. nautobot/project-static/docs/models/users/token.html +62 -0
  186. nautobot/project-static/docs/models/virtualization/cluster.html +62 -0
  187. nautobot/project-static/docs/models/virtualization/clustergroup.html +62 -0
  188. nautobot/project-static/docs/models/virtualization/clustertype.html +62 -0
  189. nautobot/project-static/docs/models/virtualization/virtualmachine.html +62 -0
  190. nautobot/project-static/docs/models/virtualization/vminterface.html +62 -0
  191. nautobot/project-static/docs/plugins/development.html +63 -1
  192. nautobot/project-static/docs/plugins/index.html +62 -0
  193. nautobot/project-static/docs/plugins/porting-from-netbox.html +62 -0
  194. nautobot/project-static/docs/release-notes/index.html +62 -0
  195. nautobot/project-static/docs/release-notes/version-1.0.html +62 -0
  196. nautobot/project-static/docs/release-notes/version-1.1.html +64 -2
  197. nautobot/project-static/docs/release-notes/version-1.2.html +63 -1
  198. nautobot/project-static/docs/release-notes/version-1.3.html +62 -0
  199. nautobot/project-static/docs/release-notes/version-1.4.html +62 -0
  200. nautobot/project-static/docs/release-notes/version-1.5.html +62 -0
  201. nautobot/project-static/docs/release-notes/version-1.6.html +354 -188
  202. nautobot/project-static/docs/rest-api/authentication.html +62 -0
  203. nautobot/project-static/docs/rest-api/filtering.html +62 -0
  204. nautobot/project-static/docs/rest-api/overview.html +62 -0
  205. nautobot/project-static/docs/search/search_index.json +1 -1
  206. nautobot/project-static/docs/sitemap.xml +197 -187
  207. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  208. nautobot/project-static/docs/user-guides/custom-fields.html +62 -0
  209. nautobot/project-static/docs/user-guides/getting-started/creating-devices.html +63 -1
  210. nautobot/project-static/docs/user-guides/getting-started/index.html +62 -0
  211. nautobot/project-static/docs/user-guides/getting-started/interfaces.html +62 -0
  212. nautobot/project-static/docs/user-guides/getting-started/ipam.html +62 -0
  213. nautobot/project-static/docs/user-guides/getting-started/platforms.html +62 -0
  214. nautobot/project-static/docs/user-guides/getting-started/regions.html +62 -0
  215. nautobot/project-static/docs/user-guides/getting-started/search-bar.html +62 -0
  216. nautobot/project-static/docs/user-guides/getting-started/tenants.html +62 -0
  217. nautobot/project-static/docs/user-guides/getting-started/vlans-and-vlan-groups.html +63 -1
  218. nautobot/project-static/docs/user-guides/git-data-source.html +62 -0
  219. nautobot/project-static/docs/user-guides/graphql.html +62 -0
  220. nautobot/project-static/docs/user-guides/relationships.html +62 -0
  221. nautobot/project-static/docs/user-guides/s3-django-storage.html +62 -0
  222. nautobot/tenancy/forms.py +10 -0
  223. nautobot/tenancy/views.py +1 -0
  224. nautobot/users/models.py +4 -0
  225. nautobot/utilities/testing/views.py +17 -1
  226. nautobot/utilities/tests/test_jinja_filters.py +26 -2
  227. nautobot/utilities/utils.py +14 -0
  228. nautobot/virtualization/forms.py +12 -0
  229. nautobot/virtualization/views.py +2 -0
  230. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/METADATA +1 -1
  231. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/RECORD +235 -233
  232. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/LICENSE.txt +0 -0
  233. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/NOTICE +0 -0
  234. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/WHEEL +0 -0
  235. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/entry_points.txt +0 -0
nautobot/ipam/models.py CHANGED
@@ -295,6 +295,8 @@ class Aggregate(PrimaryModel):
295
295
  self.broadcast = str(broadcast)
296
296
  self.prefix_length = pre.prefixlen
297
297
 
298
+ _deconstruct_prefix.alters_data = True
299
+
298
300
  def get_absolute_url(self):
299
301
  return reverse("ipam:aggregate", args=[self.pk])
300
302
 
@@ -334,6 +336,8 @@ class Aggregate(PrimaryModel):
334
336
  }
335
337
  )
336
338
 
339
+ clean.alters_data = True
340
+
337
341
  def to_csv(self):
338
342
  return (
339
343
  self.prefix,
@@ -880,6 +884,8 @@ class IPAddress(PrimaryModel, StatusModel):
880
884
  self.broadcast = str(broadcast)
881
885
  self.prefix_length = address.prefixlen
882
886
 
887
+ _deconstruct_address.alters_data = True
888
+
883
889
  def get_absolute_url(self):
884
890
  return reverse("ipam:ipaddress", args=[self.pk])
885
891
 
@@ -948,6 +954,8 @@ class IPAddress(PrimaryModel, StatusModel):
948
954
  # Force dns_name to lowercase
949
955
  self.dns_name = self.dns_name.lower()
950
956
 
957
+ clean.alters_data = True
958
+
951
959
  def save(self, *args, **kwargs):
952
960
  if self.address and not self.broadcast:
953
961
  self.broadcast = self.get_broadcast(self.address)
nautobot/ipam/views.py CHANGED
@@ -315,6 +315,7 @@ class RoleListView(generic.ObjectListView):
315
315
  vlan_count=count_related(VLAN, "role"),
316
316
  )
317
317
  filterset = filters.RoleFilterSet
318
+ filterset_form = forms.RoleFilterForm
318
319
  table = tables.RoleTable
319
320
 
320
321
 
@@ -856,6 +856,68 @@
856
856
 
857
857
 
858
858
 
859
+
860
+
861
+
862
+
863
+
864
+
865
+ <li class="md-nav__item md-nav__item--nested">
866
+
867
+
868
+
869
+
870
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
871
+
872
+
873
+
874
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
875
+ Security
876
+ <span class="md-nav__icon md-icon"></span>
877
+ </label>
878
+
879
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
880
+ <label class="md-nav__title" for="__nav_2_5_7">
881
+ <span class="md-nav__icon md-icon"></span>
882
+ Security
883
+ </label>
884
+ <ul class="md-nav__list" data-md-scrollfix>
885
+
886
+
887
+
888
+
889
+
890
+
891
+ <li class="md-nav__item">
892
+ <a href="/projects/core/en/stable/administration/security/index.html" class="md-nav__link">
893
+ Nautobot Security
894
+ </a>
895
+ </li>
896
+
897
+
898
+
899
+
900
+
901
+
902
+
903
+
904
+
905
+ <li class="md-nav__item">
906
+ <a href="/projects/core/en/stable/administration/security/notices.html" class="md-nav__link">
907
+ Notices
908
+ </a>
909
+ </li>
910
+
911
+
912
+
913
+
914
+ </ul>
915
+ </nav>
916
+ </li>
917
+
918
+
919
+
920
+
859
921
  </ul>
860
922
  </nav>
861
923
  </li>
@@ -871,6 +871,68 @@
871
871
 
872
872
 
873
873
 
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <li class="md-nav__item md-nav__item--nested">
881
+
882
+
883
+
884
+
885
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
886
+
887
+
888
+
889
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
890
+ Security
891
+ <span class="md-nav__icon md-icon"></span>
892
+ </label>
893
+
894
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
895
+ <label class="md-nav__title" for="__nav_2_5_7">
896
+ <span class="md-nav__icon md-icon"></span>
897
+ Security
898
+ </label>
899
+ <ul class="md-nav__list" data-md-scrollfix>
900
+
901
+
902
+
903
+
904
+
905
+
906
+ <li class="md-nav__item">
907
+ <a href="../administration/security/index.html" class="md-nav__link">
908
+ Nautobot Security
909
+ </a>
910
+ </li>
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+ <li class="md-nav__item">
921
+ <a href="../administration/security/notices.html" class="md-nav__link">
922
+ Notices
923
+ </a>
924
+ </li>
925
+
926
+
927
+
928
+
929
+ </ul>
930
+ </nav>
931
+ </li>
932
+
933
+
934
+
935
+
874
936
  </ul>
875
937
  </nav>
876
938
  </li>
@@ -871,6 +871,68 @@
871
871
 
872
872
 
873
873
 
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <li class="md-nav__item md-nav__item--nested">
881
+
882
+
883
+
884
+
885
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
886
+
887
+
888
+
889
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
890
+ Security
891
+ <span class="md-nav__icon md-icon"></span>
892
+ </label>
893
+
894
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
895
+ <label class="md-nav__title" for="__nav_2_5_7">
896
+ <span class="md-nav__icon md-icon"></span>
897
+ Security
898
+ </label>
899
+ <ul class="md-nav__list" data-md-scrollfix>
900
+
901
+
902
+
903
+
904
+
905
+
906
+ <li class="md-nav__item">
907
+ <a href="../administration/security/index.html" class="md-nav__link">
908
+ Nautobot Security
909
+ </a>
910
+ </li>
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+ <li class="md-nav__item">
921
+ <a href="../administration/security/notices.html" class="md-nav__link">
922
+ Notices
923
+ </a>
924
+ </li>
925
+
926
+
927
+
928
+
929
+ </ul>
930
+ </nav>
931
+ </li>
932
+
933
+
934
+
935
+
874
936
  </ul>
875
937
  </nav>
876
938
  </li>
@@ -871,6 +871,68 @@
871
871
 
872
872
 
873
873
 
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <li class="md-nav__item md-nav__item--nested">
881
+
882
+
883
+
884
+
885
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
886
+
887
+
888
+
889
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
890
+ Security
891
+ <span class="md-nav__icon md-icon"></span>
892
+ </label>
893
+
894
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
895
+ <label class="md-nav__title" for="__nav_2_5_7">
896
+ <span class="md-nav__icon md-icon"></span>
897
+ Security
898
+ </label>
899
+ <ul class="md-nav__list" data-md-scrollfix>
900
+
901
+
902
+
903
+
904
+
905
+
906
+ <li class="md-nav__item">
907
+ <a href="../administration/security/index.html" class="md-nav__link">
908
+ Nautobot Security
909
+ </a>
910
+ </li>
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+ <li class="md-nav__item">
921
+ <a href="../administration/security/notices.html" class="md-nav__link">
922
+ Notices
923
+ </a>
924
+ </li>
925
+
926
+
927
+
928
+
929
+ </ul>
930
+ </nav>
931
+ </li>
932
+
933
+
934
+
935
+
874
936
  </ul>
875
937
  </nav>
876
938
  </li>
@@ -871,6 +871,68 @@
871
871
 
872
872
 
873
873
 
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <li class="md-nav__item md-nav__item--nested">
881
+
882
+
883
+
884
+
885
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
886
+
887
+
888
+
889
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
890
+ Security
891
+ <span class="md-nav__icon md-icon"></span>
892
+ </label>
893
+
894
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
895
+ <label class="md-nav__title" for="__nav_2_5_7">
896
+ <span class="md-nav__icon md-icon"></span>
897
+ Security
898
+ </label>
899
+ <ul class="md-nav__list" data-md-scrollfix>
900
+
901
+
902
+
903
+
904
+
905
+
906
+ <li class="md-nav__item">
907
+ <a href="../administration/security/index.html" class="md-nav__link">
908
+ Nautobot Security
909
+ </a>
910
+ </li>
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+ <li class="md-nav__item">
921
+ <a href="../administration/security/notices.html" class="md-nav__link">
922
+ Notices
923
+ </a>
924
+ </li>
925
+
926
+
927
+
928
+
929
+ </ul>
930
+ </nav>
931
+ </li>
932
+
933
+
934
+
935
+
874
936
  </ul>
875
937
  </nav>
876
938
  </li>
@@ -871,6 +871,68 @@
871
871
 
872
872
 
873
873
 
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <li class="md-nav__item md-nav__item--nested">
881
+
882
+
883
+
884
+
885
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
886
+
887
+
888
+
889
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
890
+ Security
891
+ <span class="md-nav__icon md-icon"></span>
892
+ </label>
893
+
894
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
895
+ <label class="md-nav__title" for="__nav_2_5_7">
896
+ <span class="md-nav__icon md-icon"></span>
897
+ Security
898
+ </label>
899
+ <ul class="md-nav__list" data-md-scrollfix>
900
+
901
+
902
+
903
+
904
+
905
+
906
+ <li class="md-nav__item">
907
+ <a href="../administration/security/index.html" class="md-nav__link">
908
+ Nautobot Security
909
+ </a>
910
+ </li>
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+ <li class="md-nav__item">
921
+ <a href="../administration/security/notices.html" class="md-nav__link">
922
+ Notices
923
+ </a>
924
+ </li>
925
+
926
+
927
+
928
+
929
+ </ul>
930
+ </nav>
931
+ </li>
932
+
933
+
934
+
935
+
874
936
  </ul>
875
937
  </nav>
876
938
  </li>
@@ -871,6 +871,68 @@
871
871
 
872
872
 
873
873
 
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <li class="md-nav__item md-nav__item--nested">
881
+
882
+
883
+
884
+
885
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
886
+
887
+
888
+
889
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
890
+ Security
891
+ <span class="md-nav__icon md-icon"></span>
892
+ </label>
893
+
894
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
895
+ <label class="md-nav__title" for="__nav_2_5_7">
896
+ <span class="md-nav__icon md-icon"></span>
897
+ Security
898
+ </label>
899
+ <ul class="md-nav__list" data-md-scrollfix>
900
+
901
+
902
+
903
+
904
+
905
+
906
+ <li class="md-nav__item">
907
+ <a href="../administration/security/index.html" class="md-nav__link">
908
+ Nautobot Security
909
+ </a>
910
+ </li>
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+ <li class="md-nav__item">
921
+ <a href="../administration/security/notices.html" class="md-nav__link">
922
+ Notices
923
+ </a>
924
+ </li>
925
+
926
+
927
+
928
+
929
+ </ul>
930
+ </nav>
931
+ </li>
932
+
933
+
934
+
935
+
874
936
  </ul>
875
937
  </nav>
876
938
  </li>
@@ -4155,7 +4217,7 @@
4155
4217
  <p>Jobs can be scheduled through the UI or the API.</p>
4156
4218
  <div class="admonition warning">
4157
4219
  <p class="admonition-title">Warning</p>
4158
- <p>A Job <strong>must</strong> be <a href="jobs.html#enabling-jobs-for-running">enabled</a> and cannot have <a href="jobs.html#hassensitivevariables">has_sensitive_variables</a> set to <code>True</code> in order to be scheduled. If these requirements are not met, a warning banner will appear on the run Job view with the reason why Job Scheduling is not an option.</p>
4220
+ <p>A Job <strong>must</strong> be <a href="jobs.html#enabling-jobs-for-running">enabled</a> and cannot have <a href="jobs.html#has_sensitive_variables">has_sensitive_variables</a> set to <code>True</code> in order to be scheduled. If these requirements are not met, a warning banner will appear on the run Job view with the reason why Job Scheduling is not an option.</p>
4159
4221
  </div>
4160
4222
  <h3 id="scheduling-via-the-ui">Scheduling via the UI<a class="headerlink" href="#scheduling-via-the-ui" title="Permanent link">&para;</a></h3>
4161
4223
  <p>The Job Scheduling views can be accessed via the navigation at <code>Jobs &gt; Jobs</code>, selecting a Job as appropriate.</p>
@@ -871,6 +871,68 @@
871
871
 
872
872
 
873
873
 
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <li class="md-nav__item md-nav__item--nested">
881
+
882
+
883
+
884
+
885
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
886
+
887
+
888
+
889
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
890
+ Security
891
+ <span class="md-nav__icon md-icon"></span>
892
+ </label>
893
+
894
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
895
+ <label class="md-nav__title" for="__nav_2_5_7">
896
+ <span class="md-nav__icon md-icon"></span>
897
+ Security
898
+ </label>
899
+ <ul class="md-nav__list" data-md-scrollfix>
900
+
901
+
902
+
903
+
904
+
905
+
906
+ <li class="md-nav__item">
907
+ <a href="../administration/security/index.html" class="md-nav__link">
908
+ Nautobot Security
909
+ </a>
910
+ </li>
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+ <li class="md-nav__item">
921
+ <a href="../administration/security/notices.html" class="md-nav__link">
922
+ Notices
923
+ </a>
924
+ </li>
925
+
926
+
927
+
928
+
929
+ </ul>
930
+ </nav>
931
+ </li>
932
+
933
+
934
+
935
+
874
936
  </ul>
875
937
  </nav>
876
938
  </li>
@@ -871,6 +871,68 @@
871
871
 
872
872
 
873
873
 
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <li class="md-nav__item md-nav__item--nested">
881
+
882
+
883
+
884
+
885
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
886
+
887
+
888
+
889
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
890
+ Security
891
+ <span class="md-nav__icon md-icon"></span>
892
+ </label>
893
+
894
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
895
+ <label class="md-nav__title" for="__nav_2_5_7">
896
+ <span class="md-nav__icon md-icon"></span>
897
+ Security
898
+ </label>
899
+ <ul class="md-nav__list" data-md-scrollfix>
900
+
901
+
902
+
903
+
904
+
905
+
906
+ <li class="md-nav__item">
907
+ <a href="../administration/security/index.html" class="md-nav__link">
908
+ Nautobot Security
909
+ </a>
910
+ </li>
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+ <li class="md-nav__item">
921
+ <a href="../administration/security/notices.html" class="md-nav__link">
922
+ Notices
923
+ </a>
924
+ </li>
925
+
926
+
927
+
928
+
929
+ </ul>
930
+ </nav>
931
+ </li>
932
+
933
+
934
+
935
+
874
936
  </ul>
875
937
  </nav>
876
938
  </li>