nautobot 2.2.4__py3-none-any.whl → 2.2.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.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/api.py +2 -0
- nautobot/apps/models.py +2 -0
- nautobot/circuits/forms.py +15 -0
- nautobot/circuits/navigation.py +9 -1
- nautobot/circuits/views.py +2 -0
- nautobot/core/api/fields.py +13 -0
- nautobot/core/api/serializers.py +7 -1
- nautobot/core/filters.py +11 -0
- nautobot/core/management/commands/generate_test_data.py +128 -158
- nautobot/core/models/fields.py +15 -0
- nautobot/core/settings.yaml +3 -3
- nautobot/core/testing/filters.py +24 -1
- nautobot/core/testing/views.py +13 -1
- nautobot/core/tests/test_utils.py +48 -1
- nautobot/core/utils/git.py +121 -49
- nautobot/core/utils/module_loading.py +10 -2
- nautobot/core/views/utils.py +18 -1
- nautobot/dcim/factory.py +1 -1
- nautobot/dcim/filters/__init__.py +1 -1
- nautobot/dcim/forms.py +23 -4
- nautobot/dcim/tables/devicetypes.py +15 -4
- nautobot/dcim/tests/test_models.py +2 -0
- nautobot/dcim/tests/test_views.py +84 -0
- nautobot/dcim/views.py +3 -0
- nautobot/extras/api/views.py +2 -2
- nautobot/extras/context_managers.py +3 -0
- nautobot/extras/datasources/git.py +133 -135
- nautobot/extras/datasources/utils.py +3 -0
- nautobot/extras/filters/__init__.py +16 -1
- nautobot/extras/forms/forms.py +49 -3
- nautobot/extras/forms/mixins.py +0 -6
- nautobot/extras/jobs.py +9 -1
- nautobot/extras/migrations/0107_laxurlfield.py +28 -0
- nautobot/extras/migrations/0108_jobbutton_enabled.py +17 -0
- nautobot/extras/models/datasources.py +6 -4
- nautobot/extras/models/jobs.py +30 -0
- nautobot/extras/models/models.py +2 -4
- nautobot/extras/signals.py +6 -1
- nautobot/extras/tables.py +3 -0
- nautobot/extras/templates/extras/jobbutton_retrieve.html +6 -2
- nautobot/extras/templatetags/job_buttons.py +2 -2
- nautobot/extras/tests/git_data/01-valid-files/__init__.py +0 -0
- nautobot/extras/tests/git_data/01-valid-files/config_context_schemas/schema-1.yaml +18 -0
- nautobot/extras/tests/git_data/01-valid-files/config_contexts/context.yaml +12 -0
- nautobot/extras/tests/git_data/01-valid-files/config_contexts/devices/test-device.json +3 -0
- nautobot/extras/tests/git_data/01-valid-files/config_contexts/locations/Test Location.json +7 -0
- nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template.j2 +3 -0
- nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template2.html +4 -0
- nautobot/extras/tests/git_data/01-valid-files/export_templates/ipam/vlan/template.j2 +3 -0
- nautobot/extras/tests/git_data/01-valid-files/jobs/__init__.py +5 -0
- nautobot/extras/tests/git_data/01-valid-files/jobs/my_job.py +16 -0
- nautobot/extras/tests/git_data/02-invalid-files/__init__.py +0 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema1.json +2 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema2.json +1 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext1.json +2 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext2.json +1 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext3.json +3 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_contexts/devices/nosuchdevice.json +1 -0
- nautobot/extras/tests/git_data/02-invalid-files/dcim/template.j2 +0 -0
- nautobot/extras/tests/git_data/02-invalid-files/devices/template.j2 +0 -0
- nautobot/extras/tests/git_data/02-invalid-files/export_templates/dcim/nosuchmodel/template.j2 +3 -0
- nautobot/extras/tests/git_data/02-invalid-files/export_templates/nosuchapp/device/template.j2 +3 -0
- nautobot/extras/tests/git_data/02-invalid-files/jobs/__init__.py +2 -0
- nautobot/extras/tests/git_data/02-invalid-files/jobs/importerror.py +1 -0
- nautobot/extras/tests/git_data/02-invalid-files/jobs/syntaxerror.py +1 -0
- nautobot/extras/tests/git_helper.py +76 -0
- nautobot/extras/tests/test_api.py +52 -13
- nautobot/extras/tests/test_context_managers.py +33 -1
- nautobot/extras/tests/test_datasources.py +94 -276
- nautobot/extras/tests/test_filters.py +69 -0
- nautobot/extras/tests/test_forms.py +0 -3
- nautobot/extras/tests/test_models.py +8 -3
- nautobot/extras/tests/test_views.py +69 -11
- nautobot/extras/views.py +12 -10
- nautobot/ipam/filters.py +9 -1
- nautobot/ipam/forms.py +26 -0
- nautobot/ipam/tables.py +1 -1
- nautobot/ipam/tests/test_filters.py +15 -0
- nautobot/ipam/tests/test_views.py +9 -2
- nautobot/ipam/views.py +11 -0
- nautobot/project-static/docs/404.html +84 -9
- nautobot/project-static/docs/apps/index.html +97 -11
- nautobot/project-static/docs/apps/nautobot-apps.html +97 -11
- nautobot/project-static/docs/assets/app-icons/icon-CapacityMetrics.svg +1 -0
- nautobot/project-static/docs/assets/app-icons/icon-CircuitMaintenance.png +0 -0
- nautobot/project-static/docs/assets/javascripts/{bundle.3220b9d7.min.js → bundle.ad660dcc.min.js} +6 -6
- nautobot/project-static/docs/assets/javascripts/{bundle.3220b9d7.min.js.map → bundle.ad660dcc.min.js.map} +3 -3
- nautobot/project-static/docs/assets/javascripts/glightbox.min.js +1 -0
- nautobot/project-static/docs/assets/stylesheets/glightbox.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/{main.66ac8b77.min.css → main.6543a935.min.css} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.66ac8b77.min.css.map → main.6543a935.min.css.map} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +157 -13
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +107 -12
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +97 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +144 -12
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +97 -11
- nautobot/project-static/docs/development/apps/api/configuration-view.html +97 -11
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +97 -11
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +97 -11
- nautobot/project-static/docs/development/apps/api/models/global-search.html +97 -11
- nautobot/project-static/docs/development/apps/api/models/graphql.html +97 -11
- nautobot/project-static/docs/development/apps/api/models/index.html +97 -11
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +97 -11
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +97 -11
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +98 -12
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +97 -11
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +97 -11
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +97 -11
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +97 -11
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +97 -11
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +97 -11
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +97 -11
- nautobot/project-static/docs/development/apps/api/prometheus.html +97 -11
- nautobot/project-static/docs/development/apps/api/setup.html +97 -11
- nautobot/project-static/docs/development/apps/api/testing.html +97 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +97 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +97 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +97 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +97 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/base-template.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/index.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/notes.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +97 -11
- nautobot/project-static/docs/development/apps/api/views/urls.html +97 -11
- nautobot/project-static/docs/development/apps/index.html +97 -11
- nautobot/project-static/docs/development/apps/migration/code-updates.html +98 -12
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +97 -11
- nautobot/project-static/docs/development/apps/migration/from-v1.html +99 -13
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +97 -11
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +97 -11
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +97 -11
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +97 -11
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +97 -11
- nautobot/project-static/docs/development/core/application-registry.html +98 -12
- nautobot/project-static/docs/development/core/best-practices.html +97 -11
- nautobot/project-static/docs/development/core/bootstrap-ui.html +97 -11
- nautobot/project-static/docs/development/core/caching.html +97 -11
- nautobot/project-static/docs/development/core/controllers.html +97 -11
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +97 -11
- nautobot/project-static/docs/development/core/generic-views.html +97 -11
- nautobot/project-static/docs/development/core/getting-started.html +99 -13
- nautobot/project-static/docs/development/core/homepage.html +97 -11
- nautobot/project-static/docs/development/core/index.html +97 -11
- nautobot/project-static/docs/development/core/model-checklist.html +97 -11
- nautobot/project-static/docs/development/core/model-features.html +97 -11
- nautobot/project-static/docs/development/core/natural-keys.html +97 -11
- nautobot/project-static/docs/development/core/navigation-menu.html +97 -11
- nautobot/project-static/docs/development/core/release-checklist.html +97 -11
- nautobot/project-static/docs/development/core/role-internals.html +97 -11
- nautobot/project-static/docs/development/core/settings.html +97 -11
- nautobot/project-static/docs/development/core/style-guide.html +97 -11
- nautobot/project-static/docs/development/core/templates.html +97 -11
- nautobot/project-static/docs/development/core/testing.html +98 -12
- nautobot/project-static/docs/development/core/user-preferences.html +97 -11
- nautobot/project-static/docs/development/index.html +97 -11
- nautobot/project-static/docs/development/jobs/index.html +97 -11
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +97 -11
- nautobot/project-static/docs/index.html +13 -8362
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +8229 -0
- nautobot/project-static/docs/overview/design_philosophy.html +8158 -0
- nautobot/project-static/docs/overview/index.html +8230 -0
- nautobot/project-static/docs/release-notes/index.html +97 -11
- nautobot/project-static/docs/release-notes/version-1.0.html +98 -12
- nautobot/project-static/docs/release-notes/version-1.1.html +97 -11
- nautobot/project-static/docs/release-notes/version-1.2.html +99 -13
- nautobot/project-static/docs/release-notes/version-1.3.html +98 -12
- nautobot/project-static/docs/release-notes/version-1.4.html +99 -13
- nautobot/project-static/docs/release-notes/version-1.5.html +99 -13
- nautobot/project-static/docs/release-notes/version-1.6.html +626 -160
- nautobot/project-static/docs/release-notes/version-2.0.html +100 -14
- nautobot/project-static/docs/release-notes/version-2.1.html +97 -11
- nautobot/project-static/docs/release-notes/version-2.2.html +546 -107
- nautobot/project-static/docs/requirements.txt +3 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +268 -258
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +97 -11
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +97 -11
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +99 -13
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +98 -12
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +100 -14
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +97 -11
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +97 -11
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +97 -11
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +97 -11
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +97 -11
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +97 -11
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +97 -11
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +98 -12
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +97 -11
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +97 -11
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +97 -11
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +97 -11
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +97 -11
- nautobot/project-static/docs/user-guide/administration/installation/index.html +97 -11
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +97 -11
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +101 -15
- nautobot/project-static/docs/user-guide/administration/installation/services.html +98 -12
- nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +97 -11
- nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +97 -11
- nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +97 -11
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +97 -11
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +97 -11
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +97 -11
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +97 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +97 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +97 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +97 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +98 -12
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +97 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +97 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +97 -30
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +100 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +99 -13
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +98 -12
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +97 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +100 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +98 -12
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +98 -12
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +97 -11
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +97 -11
- nautobot/project-static/docs/user-guide/index.html +100 -14
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +98 -12
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +98 -12
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +102 -15
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +99 -13
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +99 -13
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +98 -44
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +97 -11
- nautobot/project-static/js/forms.js +2 -1
- nautobot/tenancy/forms.py +9 -0
- nautobot/tenancy/views.py +1 -0
- nautobot/virtualization/forms.py +18 -6
- nautobot/virtualization/templates/virtualization/clustertype.html +2 -2
- nautobot/virtualization/views.py +2 -0
- {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/METADATA +1 -1
- {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/RECORD +364 -331
- nautobot/extras/tests/test_git.py +0 -23
- {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/NOTICE +0 -0
- {nautobot-2.2.4.dist-info → nautobot-2.2.6.dist-info}/WHEEL +0 -0
- {nautobot-2.2.4.dist-info → nautobot-2.2.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.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.26">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../../assets/stylesheets/main.6543a935.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -67,7 +67,16 @@
|
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
<link href="../../../assets/stylesheets/glightbox.min.css" rel="stylesheet"/><style>
|
|
71
|
+
html.glightbox-open { overflow: initial; height: 100%; }
|
|
72
|
+
.gslide-title { margin-top: 0px; user-select: text; }
|
|
73
|
+
.gslide-desc { color: #666; user-select: text; }
|
|
74
|
+
.gslide-image img { background: white; }
|
|
75
|
+
.gscrollbar-fixer { padding-right: 15px; }
|
|
76
|
+
.gdesc-inner { font-size: 0.75rem; }
|
|
77
|
+
body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);}
|
|
78
|
+
body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);}
|
|
79
|
+
body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}</style> <script src="../../../assets/javascripts/glightbox.min.js"></script></head>
|
|
71
80
|
|
|
72
81
|
|
|
73
82
|
|
|
@@ -102,7 +111,7 @@
|
|
|
102
111
|
|
|
103
112
|
<header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
|
|
104
113
|
<nav class="md-header__inner md-grid" aria-label="Header">
|
|
105
|
-
<a href="
|
|
114
|
+
<a href="../../.." title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
106
115
|
|
|
107
116
|
<img src="../../../assets/nautobot_logo.svg" alt="logo">
|
|
108
117
|
|
|
@@ -191,7 +200,7 @@
|
|
|
191
200
|
|
|
192
201
|
</form>
|
|
193
202
|
<div class="md-search__output">
|
|
194
|
-
<div class="md-search__scrollwrap" data-md-scrollfix>
|
|
203
|
+
<div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
|
|
195
204
|
<div class="md-search-result" data-md-component="search-result">
|
|
196
205
|
<div class="md-search-result__meta">
|
|
197
206
|
Initializing search
|
|
@@ -229,7 +238,7 @@
|
|
|
229
238
|
|
|
230
239
|
|
|
231
240
|
<li class="md-tabs__item">
|
|
232
|
-
<a href="../../../index.html" class="md-tabs__link">
|
|
241
|
+
<a href="../../../overview/index.html" class="md-tabs__link">
|
|
233
242
|
|
|
234
243
|
|
|
235
244
|
|
|
@@ -356,7 +365,7 @@
|
|
|
356
365
|
|
|
357
366
|
<nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
|
|
358
367
|
<label class="md-nav__title" for="__drawer">
|
|
359
|
-
<a href="
|
|
368
|
+
<a href="../../.." title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
360
369
|
|
|
361
370
|
<img src="../../../assets/nautobot_logo.svg" alt="logo">
|
|
362
371
|
|
|
@@ -384,17 +393,92 @@
|
|
|
384
393
|
|
|
385
394
|
|
|
386
395
|
|
|
387
|
-
|
|
388
|
-
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_1" >
|
|
389
408
|
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
<div class="md-nav__link md-nav__container">
|
|
412
|
+
<a href="../../../overview/index.html" class="md-nav__link ">
|
|
413
|
+
|
|
390
414
|
|
|
391
415
|
<span class="md-ellipsis">
|
|
392
416
|
Overview
|
|
393
417
|
</span>
|
|
394
418
|
|
|
395
419
|
|
|
420
|
+
</a>
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
<label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
|
|
424
|
+
<span class="md-nav__icon md-icon"></span>
|
|
425
|
+
</label>
|
|
426
|
+
|
|
427
|
+
</div>
|
|
428
|
+
|
|
429
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
|
|
430
|
+
<label class="md-nav__title" for="__nav_1">
|
|
431
|
+
<span class="md-nav__icon md-icon"></span>
|
|
432
|
+
Overview
|
|
433
|
+
</label>
|
|
434
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
<li class="md-nav__item">
|
|
443
|
+
<a href="../../../overview/design_philosophy.html" class="md-nav__link">
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
<span class="md-ellipsis">
|
|
447
|
+
Design Philosophy
|
|
448
|
+
</span>
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
</a>
|
|
452
|
+
</li>
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<li class="md-nav__item">
|
|
464
|
+
<a href="../../../overview/application_stack.html" class="md-nav__link">
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
<span class="md-ellipsis">
|
|
468
|
+
Application Stack
|
|
469
|
+
</span>
|
|
470
|
+
|
|
471
|
+
|
|
396
472
|
</a>
|
|
397
473
|
</li>
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
</ul>
|
|
479
|
+
</nav>
|
|
480
|
+
|
|
481
|
+
</li>
|
|
398
482
|
|
|
399
483
|
|
|
400
484
|
|
|
@@ -7949,7 +8033,7 @@
|
|
|
7949
8033
|
</ul>
|
|
7950
8034
|
<p>This is done by setting the corresponding "override" flag (<code>grouping_override</code>, <code>name_override</code>, etc.) to <code>True</code> then providing a new value for the attribute in question. An overridden attribute will remain set to its overridden value even if the underlying Job class definition changes and <code>nautobot-server <migrate|post_upgrade></code> gets run again. Conversely, clearing the "override" flag for an attribute and saving the database record will revert the attribute to the underlying value defined within the Job class source code.</p>
|
|
7951
8035
|
<h3 id="deleting-jobs">Deleting Jobs<a class="headerlink" href="#deleting-jobs" title="Permanent link">¶</a></h3>
|
|
7952
|
-
<p>When a previously installed Job class is removed, after running <code>nautobot-server <migrate|post_upgrade></code> or refreshing the providing Git repository, the Job database record will <em>not</em> be automatically deleted, but <em>will</em> be flagged as <code>installed = False</code> and can no longer be run or scheduled.</p>
|
|
8036
|
+
<p>When a previously installed Job class is removed, after running <code>nautobot-server <migrate|post_upgrade></code> or refreshing the providing Git repository, the Job database record will <em>not</em> be automatically deleted, but <em>will</em> be flagged as <code>installed = False</code> and can no longer be run or scheduled. Any <a href="jobbutton.html">Job Buttons</a>, <a href="jobhook.html">Job Hooks</a>, and <a href="job-scheduling-and-approvals.html">scheduled Jobs</a> corresponding to the no-longer-installed Job will automatically be disabled as well.</p>
|
|
7953
8037
|
<div class="admonition note">
|
|
7954
8038
|
<p class="admonition-title">Note</p>
|
|
7955
8039
|
<p>The Job list view hides by default any Jobs that are not installed. To view non-installed Job records, you need to select the "Filter" button in the list view and explicitly specify the filter "Installed: No".</p>
|
|
@@ -8200,10 +8284,12 @@
|
|
|
8200
8284
|
<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.b8dbb3d2.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>
|
|
8201
8285
|
|
|
8202
8286
|
|
|
8203
|
-
<script src="../../../assets/javascripts/bundle.
|
|
8287
|
+
<script src="../../../assets/javascripts/bundle.ad660dcc.min.js"></script>
|
|
8204
8288
|
|
|
8205
8289
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8206
8290
|
|
|
8207
8291
|
|
|
8208
|
-
|
|
8292
|
+
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
8293
|
+
document$.subscribe(() => { lightbox.reload() });
|
|
8294
|
+
</script></body>
|
|
8209
8295
|
</html>
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../../../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.26">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../../assets/stylesheets/main.6543a935.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -67,7 +67,16 @@
|
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
<link href="../../../assets/stylesheets/glightbox.min.css" rel="stylesheet"/><style>
|
|
71
|
+
html.glightbox-open { overflow: initial; height: 100%; }
|
|
72
|
+
.gslide-title { margin-top: 0px; user-select: text; }
|
|
73
|
+
.gslide-desc { color: #666; user-select: text; }
|
|
74
|
+
.gslide-image img { background: white; }
|
|
75
|
+
.gscrollbar-fixer { padding-right: 15px; }
|
|
76
|
+
.gdesc-inner { font-size: 0.75rem; }
|
|
77
|
+
body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);}
|
|
78
|
+
body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);}
|
|
79
|
+
body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}</style> <script src="../../../assets/javascripts/glightbox.min.js"></script></head>
|
|
71
80
|
|
|
72
81
|
|
|
73
82
|
|
|
@@ -102,7 +111,7 @@
|
|
|
102
111
|
|
|
103
112
|
<header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
|
|
104
113
|
<nav class="md-header__inner md-grid" aria-label="Header">
|
|
105
|
-
<a href="
|
|
114
|
+
<a href="../../.." title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
106
115
|
|
|
107
116
|
<img src="../../../assets/nautobot_logo.svg" alt="logo">
|
|
108
117
|
|
|
@@ -191,7 +200,7 @@
|
|
|
191
200
|
|
|
192
201
|
</form>
|
|
193
202
|
<div class="md-search__output">
|
|
194
|
-
<div class="md-search__scrollwrap" data-md-scrollfix>
|
|
203
|
+
<div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
|
|
195
204
|
<div class="md-search-result" data-md-component="search-result">
|
|
196
205
|
<div class="md-search-result__meta">
|
|
197
206
|
Initializing search
|
|
@@ -229,7 +238,7 @@
|
|
|
229
238
|
|
|
230
239
|
|
|
231
240
|
<li class="md-tabs__item">
|
|
232
|
-
<a href="../../../index.html" class="md-tabs__link">
|
|
241
|
+
<a href="../../../overview/index.html" class="md-tabs__link">
|
|
233
242
|
|
|
234
243
|
|
|
235
244
|
|
|
@@ -356,7 +365,7 @@
|
|
|
356
365
|
|
|
357
366
|
<nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
|
|
358
367
|
<label class="md-nav__title" for="__drawer">
|
|
359
|
-
<a href="
|
|
368
|
+
<a href="../../.." title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
360
369
|
|
|
361
370
|
<img src="../../../assets/nautobot_logo.svg" alt="logo">
|
|
362
371
|
|
|
@@ -384,17 +393,92 @@
|
|
|
384
393
|
|
|
385
394
|
|
|
386
395
|
|
|
387
|
-
|
|
388
|
-
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_1" >
|
|
389
408
|
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
<div class="md-nav__link md-nav__container">
|
|
412
|
+
<a href="../../../overview/index.html" class="md-nav__link ">
|
|
413
|
+
|
|
390
414
|
|
|
391
415
|
<span class="md-ellipsis">
|
|
392
416
|
Overview
|
|
393
417
|
</span>
|
|
394
418
|
|
|
395
419
|
|
|
420
|
+
</a>
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
<label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
|
|
424
|
+
<span class="md-nav__icon md-icon"></span>
|
|
425
|
+
</label>
|
|
426
|
+
|
|
427
|
+
</div>
|
|
428
|
+
|
|
429
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
|
|
430
|
+
<label class="md-nav__title" for="__nav_1">
|
|
431
|
+
<span class="md-nav__icon md-icon"></span>
|
|
432
|
+
Overview
|
|
433
|
+
</label>
|
|
434
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
<li class="md-nav__item">
|
|
443
|
+
<a href="../../../overview/design_philosophy.html" class="md-nav__link">
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
<span class="md-ellipsis">
|
|
447
|
+
Design Philosophy
|
|
448
|
+
</span>
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
</a>
|
|
452
|
+
</li>
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<li class="md-nav__item">
|
|
464
|
+
<a href="../../../overview/application_stack.html" class="md-nav__link">
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
<span class="md-ellipsis">
|
|
468
|
+
Application Stack
|
|
469
|
+
</span>
|
|
470
|
+
|
|
471
|
+
|
|
396
472
|
</a>
|
|
397
473
|
</li>
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
</ul>
|
|
479
|
+
</nav>
|
|
480
|
+
|
|
481
|
+
</li>
|
|
398
482
|
|
|
399
483
|
|
|
400
484
|
|
|
@@ -7961,7 +8045,7 @@
|
|
|
7961
8045
|
<p>Jobs can be scheduled through the UI or the API.</p>
|
|
7962
8046
|
<div class="admonition warning">
|
|
7963
8047
|
<p class="admonition-title">Warning</p>
|
|
7964
|
-
<p>A Job <strong>must</strong> be <a href="index.html#enabling-jobs-for-running">enabled</a> and cannot have <a href="index.html#
|
|
8048
|
+
<p>A Job <strong>must</strong> be <a href="index.html#enabling-jobs-for-running">enabled</a> and cannot have <a href="../../../development/jobs/index.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>
|
|
7965
8049
|
</div>
|
|
7966
8050
|
<h3 id="scheduling-via-the-ui">Scheduling via the UI<a class="headerlink" href="#scheduling-via-the-ui" title="Permanent link">¶</a></h3>
|
|
7967
8051
|
<p>The Job Scheduling views can be accessed via the navigation at <code>Jobs > Jobs</code>, selecting a Job as appropriate.</p>
|
|
@@ -8153,10 +8237,12 @@
|
|
|
8153
8237
|
<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.b8dbb3d2.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>
|
|
8154
8238
|
|
|
8155
8239
|
|
|
8156
|
-
<script src="../../../assets/javascripts/bundle.
|
|
8240
|
+
<script src="../../../assets/javascripts/bundle.ad660dcc.min.js"></script>
|
|
8157
8241
|
|
|
8158
8242
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8159
8243
|
|
|
8160
8244
|
|
|
8161
|
-
|
|
8245
|
+
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
8246
|
+
document$.subscribe(() => { lightbox.reload() });
|
|
8247
|
+
</script></body>
|
|
8162
8248
|
</html>
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../../../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.26">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../../assets/stylesheets/main.6543a935.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -67,7 +67,16 @@
|
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
<link href="../../../assets/stylesheets/glightbox.min.css" rel="stylesheet"/><style>
|
|
71
|
+
html.glightbox-open { overflow: initial; height: 100%; }
|
|
72
|
+
.gslide-title { margin-top: 0px; user-select: text; }
|
|
73
|
+
.gslide-desc { color: #666; user-select: text; }
|
|
74
|
+
.gslide-image img { background: white; }
|
|
75
|
+
.gscrollbar-fixer { padding-right: 15px; }
|
|
76
|
+
.gdesc-inner { font-size: 0.75rem; }
|
|
77
|
+
body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);}
|
|
78
|
+
body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);}
|
|
79
|
+
body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}</style> <script src="../../../assets/javascripts/glightbox.min.js"></script></head>
|
|
71
80
|
|
|
72
81
|
|
|
73
82
|
|
|
@@ -102,7 +111,7 @@
|
|
|
102
111
|
|
|
103
112
|
<header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
|
|
104
113
|
<nav class="md-header__inner md-grid" aria-label="Header">
|
|
105
|
-
<a href="
|
|
114
|
+
<a href="../../.." title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
106
115
|
|
|
107
116
|
<img src="../../../assets/nautobot_logo.svg" alt="logo">
|
|
108
117
|
|
|
@@ -191,7 +200,7 @@
|
|
|
191
200
|
|
|
192
201
|
</form>
|
|
193
202
|
<div class="md-search__output">
|
|
194
|
-
<div class="md-search__scrollwrap" data-md-scrollfix>
|
|
203
|
+
<div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
|
|
195
204
|
<div class="md-search-result" data-md-component="search-result">
|
|
196
205
|
<div class="md-search-result__meta">
|
|
197
206
|
Initializing search
|
|
@@ -229,7 +238,7 @@
|
|
|
229
238
|
|
|
230
239
|
|
|
231
240
|
<li class="md-tabs__item">
|
|
232
|
-
<a href="../../../index.html" class="md-tabs__link">
|
|
241
|
+
<a href="../../../overview/index.html" class="md-tabs__link">
|
|
233
242
|
|
|
234
243
|
|
|
235
244
|
|
|
@@ -356,7 +365,7 @@
|
|
|
356
365
|
|
|
357
366
|
<nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
|
|
358
367
|
<label class="md-nav__title" for="__drawer">
|
|
359
|
-
<a href="
|
|
368
|
+
<a href="../../.." title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
360
369
|
|
|
361
370
|
<img src="../../../assets/nautobot_logo.svg" alt="logo">
|
|
362
371
|
|
|
@@ -384,17 +393,92 @@
|
|
|
384
393
|
|
|
385
394
|
|
|
386
395
|
|
|
387
|
-
|
|
388
|
-
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_1" >
|
|
389
408
|
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
<div class="md-nav__link md-nav__container">
|
|
412
|
+
<a href="../../../overview/index.html" class="md-nav__link ">
|
|
413
|
+
|
|
390
414
|
|
|
391
415
|
<span class="md-ellipsis">
|
|
392
416
|
Overview
|
|
393
417
|
</span>
|
|
394
418
|
|
|
395
419
|
|
|
420
|
+
</a>
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
<label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
|
|
424
|
+
<span class="md-nav__icon md-icon"></span>
|
|
425
|
+
</label>
|
|
426
|
+
|
|
427
|
+
</div>
|
|
428
|
+
|
|
429
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
|
|
430
|
+
<label class="md-nav__title" for="__nav_1">
|
|
431
|
+
<span class="md-nav__icon md-icon"></span>
|
|
432
|
+
Overview
|
|
433
|
+
</label>
|
|
434
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
<li class="md-nav__item">
|
|
443
|
+
<a href="../../../overview/design_philosophy.html" class="md-nav__link">
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
<span class="md-ellipsis">
|
|
447
|
+
Design Philosophy
|
|
448
|
+
</span>
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
</a>
|
|
452
|
+
</li>
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<li class="md-nav__item">
|
|
464
|
+
<a href="../../../overview/application_stack.html" class="md-nav__link">
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
<span class="md-ellipsis">
|
|
468
|
+
Application Stack
|
|
469
|
+
</span>
|
|
470
|
+
|
|
471
|
+
|
|
396
472
|
</a>
|
|
397
473
|
</li>
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
</ul>
|
|
479
|
+
</nav>
|
|
480
|
+
|
|
481
|
+
</li>
|
|
398
482
|
|
|
399
483
|
|
|
400
484
|
|
|
@@ -7904,15 +7988,16 @@
|
|
|
7904
7988
|
<li><strong>Object type(s)</strong> - The type or types of Nautobot object that the button will be associated to.</li>
|
|
7905
7989
|
<li><strong>Text</strong> - The text that will be displayed on the button.</li>
|
|
7906
7990
|
<li><strong>Job</strong> - The <a href="../../../development/jobs/index.html#job-button-receivers">Job Button Receiver</a> that this button will run.</li>
|
|
7991
|
+
<li><strong>Enabled</strong> - Whether this Job Button will appear in relevant UI. A Job Button may be disabled if, for example, the underlying Job Button Receiver is uninstalled or temporarily disabled.</li>
|
|
7907
7992
|
<li><strong>Weight</strong> - The number used for determining the order the buttons will appear.</li>
|
|
7908
7993
|
<li><strong>Group</strong> - The name of the dropdown group to add this button into (optional).</li>
|
|
7909
7994
|
<li><strong>Button Class</strong> - The button CSS class, which dictates the color.</li>
|
|
7910
7995
|
<li><strong>Confirmation</strong> - Should the button pop up a confirmation dialog before running.</li>
|
|
7911
7996
|
</ul>
|
|
7912
|
-
<
|
|
7913
|
-
<
|
|
7914
|
-
<p>
|
|
7915
|
-
</
|
|
7997
|
+
<details class="version-added">
|
|
7998
|
+
<summary>Added in version 2.2.6</summary>
|
|
7999
|
+
<p>The <code>enabled</code> field was added to Job Buttons to allow them to be temporarily disabled.</p>
|
|
8000
|
+
</details>
|
|
7916
8001
|
<p><img alt="Job Button Form" src="../../../media/models/jobbutton_form.png" title="Job Button Form" /></p>
|
|
7917
8002
|
<p>For any Job that is loaded into Nautobot, the Job must be enabled to run. See <a href="index.html#enabling-jobs-for-running">Enabling Jobs for Running</a> for more details.</p>
|
|
7918
8003
|
<h2 id="required-permissions">Required Permissions<a class="headerlink" href="#required-permissions" title="Permanent link">¶</a></h2>
|
|
@@ -8122,10 +8207,12 @@
|
|
|
8122
8207
|
<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.b8dbb3d2.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>
|
|
8123
8208
|
|
|
8124
8209
|
|
|
8125
|
-
<script src="../../../assets/javascripts/bundle.
|
|
8210
|
+
<script src="../../../assets/javascripts/bundle.ad660dcc.min.js"></script>
|
|
8126
8211
|
|
|
8127
8212
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8128
8213
|
|
|
8129
8214
|
|
|
8130
|
-
|
|
8215
|
+
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
8216
|
+
document$.subscribe(() => { lightbox.reload() });
|
|
8217
|
+
</script></body>
|
|
8131
8218
|
</html>
|