nautobot 2.4.14__py3-none-any.whl → 2.4.15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/choices.py +8 -0
- nautobot/apps/ui.py +14 -0
- nautobot/core/api/views.py +2 -0
- nautobot/core/choices.py +4 -0
- nautobot/core/filters.py +21 -41
- nautobot/core/management/commands/check_job_approval_status.py +47 -0
- nautobot/core/management/commands/generate_test_data.py +1 -1
- nautobot/core/management/commands/migrate.py +1 -1
- nautobot/core/models/tree_queries.py +17 -0
- nautobot/core/settings.py +2 -2
- nautobot/core/tables.py +25 -2
- nautobot/core/templates/base_django.html +1 -1
- nautobot/core/templates/components/panel/header_extra_content_table.html +1 -1
- nautobot/core/templates/generic/object_list.html +17 -20
- nautobot/core/templates/inc/breadcrumbs.html +14 -0
- nautobot/core/templatetags/buttons.py +2 -4
- nautobot/core/templatetags/helpers.py +29 -6
- nautobot/core/templatetags/ui_framework.py +21 -0
- nautobot/core/testing/filters.py +20 -3
- nautobot/core/testing/forms.py +1 -1
- nautobot/core/tests/integration/test_filters.py +2 -2
- nautobot/core/tests/test_breadcrumbs.py +366 -0
- nautobot/core/tests/test_commands.py +40 -0
- nautobot/core/tests/test_filters.py +51 -1
- nautobot/core/tests/test_forms.py +1 -1
- nautobot/core/tests/test_graphql.py +4 -4
- nautobot/core/tests/test_titles.py +183 -0
- nautobot/core/tests/test_tree_queries.py +30 -0
- nautobot/core/tests/test_views.py +2 -2
- nautobot/core/tests/test_views_utils.py +1 -1
- nautobot/core/ui/breadcrumbs.py +538 -0
- nautobot/core/ui/bulk_buttons.py +53 -0
- nautobot/core/ui/object_detail.py +31 -8
- nautobot/core/ui/titles.py +127 -0
- nautobot/core/ui/utils.py +25 -0
- nautobot/core/utils/migrations.py +1 -1
- nautobot/core/views/__init__.py +1 -1
- nautobot/core/views/mixins.py +26 -1
- nautobot/core/views/renderers.py +20 -2
- nautobot/core/views/utils.py +13 -12
- nautobot/dcim/api/serializers.py +9 -0
- nautobot/dcim/choices.py +53 -0
- nautobot/dcim/filters/__init__.py +15 -3
- nautobot/dcim/forms.py +120 -7
- nautobot/dcim/management/commands/trace_paths.py +1 -1
- nautobot/dcim/migrations/0072_alter_powerfeed_options_and_more.py +97 -0
- nautobot/dcim/models/device_component_templates.py +8 -0
- nautobot/dcim/models/device_components.py +31 -12
- nautobot/dcim/models/devices.py +1 -1
- nautobot/dcim/models/power.py +171 -10
- nautobot/dcim/models/racks.py +7 -4
- nautobot/dcim/tables/devices.py +2 -0
- nautobot/dcim/tables/devicetypes.py +1 -0
- nautobot/dcim/tables/power.py +30 -2
- nautobot/dcim/templates/dcim/device.html +2 -2
- nautobot/dcim/templates/dcim/devicetype_retrieve.html +1 -214
- nautobot/dcim/templates/dcim/location_retrieve.html +2 -2
- nautobot/dcim/templates/dcim/powerfeed_edit.html +8 -0
- nautobot/dcim/templates/dcim/powerfeed_retrieve.html +1 -1
- nautobot/dcim/tests/integration/test_device_bulk_operations.py +61 -0
- nautobot/dcim/tests/test_api.py +24 -4
- nautobot/dcim/tests/test_filters.py +91 -13
- nautobot/dcim/tests/test_models.py +262 -0
- nautobot/dcim/tests/test_views.py +20 -12
- nautobot/dcim/utils.py +9 -0
- nautobot/dcim/views.py +390 -77
- nautobot/extras/factory.py +19 -20
- nautobot/extras/filters/__init__.py +3 -2
- nautobot/extras/filters/mixins.py +15 -1
- nautobot/extras/forms/__init__.py +2 -1
- nautobot/extras/forms/forms.py +62 -0
- nautobot/extras/managers.py +4 -1
- nautobot/extras/migrations/0125_jobresult_date_started.py +18 -0
- nautobot/extras/models/customfields.py +1 -2
- nautobot/extras/models/datasources.py +1 -2
- nautobot/extras/models/jobs.py +7 -3
- nautobot/extras/plugins/views.py +24 -1
- nautobot/extras/secrets/__init__.py +1 -1
- nautobot/extras/tables.py +9 -0
- nautobot/extras/templates/extras/customfield.html +2 -129
- nautobot/extras/templates/extras/customfield_edit.html +2 -108
- nautobot/extras/templates/extras/customfield_retrieve.html +129 -0
- nautobot/extras/templates/extras/customfield_update.html +108 -0
- nautobot/extras/templates/extras/inc/jobresult.html +7 -3
- nautobot/extras/templates/extras/jobresult.html +2 -155
- nautobot/extras/templates/extras/jobresult_retrieve.html +155 -0
- nautobot/extras/templates/extras/marketplace.html +5 -6
- nautobot/extras/templates/extras/note.html +2 -53
- nautobot/extras/templates/extras/note_retrieve.html +53 -0
- nautobot/extras/templates/extras/plugins_list.html +5 -6
- nautobot/extras/templatetags/custom_links.py +2 -2
- nautobot/extras/templatetags/job_buttons.py +1 -1
- nautobot/extras/templatetags/plugins.py +1 -1
- nautobot/extras/tests/integration/test_computedfields.py +2 -2
- nautobot/extras/tests/integration/test_customfields.py +14 -11
- nautobot/extras/tests/integration/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/integration/test_notes.py +1 -1
- nautobot/extras/tests/integration/test_plugins.py +6 -6
- nautobot/extras/tests/integration/test_relationships.py +2 -2
- nautobot/extras/tests/test_filters.py +9 -0
- nautobot/extras/tests/test_forms.py +2 -2
- nautobot/extras/tests/test_plugins.py +2 -3
- nautobot/extras/tests/test_relationships.py +7 -7
- nautobot/extras/tests/test_views.py +172 -1
- nautobot/extras/urls.py +3 -59
- nautobot/extras/utils.py +1 -1
- nautobot/extras/views.py +77 -178
- nautobot/ipam/tables.py +8 -15
- nautobot/ipam/tests/migration/test_migrations.py +8 -8
- nautobot/ipam/tests/test_api.py +2 -2
- nautobot/ipam/tests/test_models.py +1 -1
- nautobot/project-static/docs/404.html +23 -0
- nautobot/project-static/docs/apps/index.html +23 -0
- nautobot/project-static/docs/apps/nautobot-apps.html +23 -0
- nautobot/project-static/docs/assets/_mkdocstrings.css +44 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +28 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +25 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +128 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +37 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +39 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +25 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +24 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +32 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +41 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +39 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +43 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +74 -59
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +143 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +43 -12
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +135 -53
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +229 -36
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +27 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +30 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +162 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +258 -51
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +5987 -2620
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +25 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +154 -55
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +150 -35
- nautobot/project-static/docs/development/apps/api/configuration-view.html +23 -0
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +23 -0
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +23 -0
- nautobot/project-static/docs/development/apps/api/models/global-search.html +23 -0
- nautobot/project-static/docs/development/apps/api/models/graphql.html +23 -0
- nautobot/project-static/docs/development/apps/api/models/index.html +23 -0
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +23 -0
- nautobot/project-static/docs/development/apps/api/prometheus.html +23 -0
- nautobot/project-static/docs/development/apps/api/setup.html +23 -0
- nautobot/project-static/docs/development/apps/api/testing.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/base-template.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/index.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +31 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/notes.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/urls.html +23 -0
- nautobot/project-static/docs/development/apps/index.html +23 -0
- nautobot/project-static/docs/development/apps/migration/code-updates.html +23 -0
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +23 -0
- nautobot/project-static/docs/development/apps/migration/from-v1.html +23 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +23 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +23 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +23 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +23 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +26 -3
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/breadcrumbs-titles.html +10544 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +23 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +23 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +23 -0
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +26 -3
- nautobot/project-static/docs/development/core/application-registry.html +23 -0
- nautobot/project-static/docs/development/core/best-practices.html +23 -0
- nautobot/project-static/docs/development/core/bootstrap-ui.html +23 -0
- nautobot/project-static/docs/development/core/caching.html +23 -0
- nautobot/project-static/docs/development/core/controllers.html +23 -0
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +23 -0
- nautobot/project-static/docs/development/core/generic-views.html +23 -0
- nautobot/project-static/docs/development/core/getting-started.html +23 -0
- nautobot/project-static/docs/development/core/homepage.html +23 -0
- nautobot/project-static/docs/development/core/index.html +23 -0
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +23 -0
- nautobot/project-static/docs/development/core/model-checklist.html +23 -0
- nautobot/project-static/docs/development/core/model-features.html +23 -0
- nautobot/project-static/docs/development/core/natural-keys.html +23 -0
- nautobot/project-static/docs/development/core/navigation-menu.html +23 -0
- nautobot/project-static/docs/development/core/release-checklist.html +23 -0
- nautobot/project-static/docs/development/core/role-internals.html +23 -0
- nautobot/project-static/docs/development/core/settings.html +23 -0
- nautobot/project-static/docs/development/core/style-guide.html +23 -0
- nautobot/project-static/docs/development/core/templates.html +23 -0
- nautobot/project-static/docs/development/core/testing.html +23 -0
- nautobot/project-static/docs/development/core/ui-component-framework.html +713 -255
- nautobot/project-static/docs/development/core/user-preferences.html +23 -0
- nautobot/project-static/docs/development/index.html +23 -0
- nautobot/project-static/docs/development/jobs/getting-started.html +23 -0
- nautobot/project-static/docs/development/jobs/index.html +23 -0
- nautobot/project-static/docs/development/jobs/installation.html +23 -0
- nautobot/project-static/docs/development/jobs/job-extensions.html +23 -0
- nautobot/project-static/docs/development/jobs/job-logging.html +23 -0
- nautobot/project-static/docs/development/jobs/job-patterns.html +23 -0
- nautobot/project-static/docs/development/jobs/job-structure.html +23 -0
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +23 -0
- nautobot/project-static/docs/development/jobs/testing.html +23 -0
- nautobot/project-static/docs/index.html +23 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/breadcrumbs-titles-data-flow.png +0 -0
- nautobot/project-static/docs/media/power_distribution.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +23 -0
- nautobot/project-static/docs/overview/design_philosophy.html +23 -0
- nautobot/project-static/docs/release-notes/index.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.0.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.1.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.2.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.3.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.4.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.5.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.6.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.0.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.1.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.2.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.3.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.4.html +231 -0
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +303 -299
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/index.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/services.html +23 -0
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +23 -0
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +23 -0
- nautobot/project-static/docs/user-guide/administration/security/index.html +23 -0
- nautobot/project-static/docs/user-guide/administration/security/notices.html +23 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +284 -219
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulefamily.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +305 -5
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +24 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +136 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +41 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +40 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +23 -0
- nautobot/project-static/docs/user-guide/index.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +24 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/managing-jobs.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +23 -0
- nautobot/users/tests/test_api.py +2 -2
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -252
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -75
- nautobot/virtualization/templates/virtualization/virtualmachine_retrieve.html +252 -0
- nautobot/virtualization/templates/virtualization/virtualmachine_update.html +75 -0
- nautobot/virtualization/urls.py +3 -61
- nautobot/virtualization/views.py +48 -72
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/METADATA +24 -24
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/RECORD +433 -416
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/NOTICE +0 -0
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/WHEEL +0 -0
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/entry_points.txt +0 -0
|
@@ -9265,6 +9265,29 @@
|
|
|
9265
9265
|
|
|
9266
9266
|
|
|
9267
9267
|
|
|
9268
|
+
|
|
9269
|
+
|
|
9270
|
+
|
|
9271
|
+
|
|
9272
|
+
|
|
9273
|
+
|
|
9274
|
+
<li class="md-nav__item">
|
|
9275
|
+
<a href="../../../development/apps/migration/ui-component-framework/breadcrumbs-titles.html" class="md-nav__link">
|
|
9276
|
+
|
|
9277
|
+
|
|
9278
|
+
|
|
9279
|
+
<span class="md-ellipsis">
|
|
9280
|
+
Breadcrumbs and titles
|
|
9281
|
+
|
|
9282
|
+
</span>
|
|
9283
|
+
|
|
9284
|
+
|
|
9285
|
+
</a>
|
|
9286
|
+
</li>
|
|
9287
|
+
|
|
9288
|
+
|
|
9289
|
+
|
|
9290
|
+
|
|
9268
9291
|
</ul>
|
|
9269
9292
|
</nav>
|
|
9270
9293
|
|
|
@@ -11229,6 +11252,7 @@
|
|
|
11229
11252
|
|
|
11230
11253
|
|
|
11231
11254
|
|
|
11255
|
+
|
|
11232
11256
|
<div class="doc doc-children">
|
|
11233
11257
|
|
|
11234
11258
|
|
|
@@ -11265,6 +11289,7 @@ with shared functionality; if no such sharing is required, use Job class instead
|
|
|
11265
11289
|
|
|
11266
11290
|
|
|
11267
11291
|
|
|
11292
|
+
|
|
11268
11293
|
<div class="doc doc-children">
|
|
11269
11294
|
|
|
11270
11295
|
|
|
@@ -11310,6 +11335,7 @@ with shared functionality; if no such sharing is required, use Job class instead
|
|
|
11310
11335
|
|
|
11311
11336
|
|
|
11312
11337
|
|
|
11338
|
+
|
|
11313
11339
|
</div>
|
|
11314
11340
|
|
|
11315
11341
|
</div>
|
|
@@ -11345,7 +11371,7 @@ with shared functionality; if no such sharing is required, use Job class instead
|
|
|
11345
11371
|
<code>status</code>
|
|
11346
11372
|
</td>
|
|
11347
11373
|
<td>
|
|
11348
|
-
<code>str</code>
|
|
11374
|
+
<code><span title="str">str</span></code>
|
|
11349
11375
|
</td>
|
|
11350
11376
|
<td>
|
|
11351
11377
|
<div class="doc-md-description">
|
|
@@ -11361,7 +11387,7 @@ with shared functionality; if no such sharing is required, use Job class instead
|
|
|
11361
11387
|
<code>retval</code>
|
|
11362
11388
|
</td>
|
|
11363
11389
|
<td>
|
|
11364
|
-
<code>Any</code>
|
|
11390
|
+
<code><span title="Any">Any</span></code>
|
|
11365
11391
|
</td>
|
|
11366
11392
|
<td>
|
|
11367
11393
|
<div class="doc-md-description">
|
|
@@ -11377,7 +11403,7 @@ with shared functionality; if no such sharing is required, use Job class instead
|
|
|
11377
11403
|
<code>task_id</code>
|
|
11378
11404
|
</td>
|
|
11379
11405
|
<td>
|
|
11380
|
-
<code>str</code>
|
|
11406
|
+
<code><span title="str">str</span></code>
|
|
11381
11407
|
</td>
|
|
11382
11408
|
<td>
|
|
11383
11409
|
<div class="doc-md-description">
|
|
@@ -11393,7 +11419,7 @@ with shared functionality; if no such sharing is required, use Job class instead
|
|
|
11393
11419
|
<code>args</code>
|
|
11394
11420
|
</td>
|
|
11395
11421
|
<td>
|
|
11396
|
-
<code>tuple</code>
|
|
11422
|
+
<code><span title="tuple">tuple</span></code>
|
|
11397
11423
|
</td>
|
|
11398
11424
|
<td>
|
|
11399
11425
|
<div class="doc-md-description">
|
|
@@ -11409,7 +11435,7 @@ with shared functionality; if no such sharing is required, use Job class instead
|
|
|
11409
11435
|
<code>kwargs</code>
|
|
11410
11436
|
</td>
|
|
11411
11437
|
<td>
|
|
11412
|
-
<code>dict</code>
|
|
11438
|
+
<code><span title="dict">dict</span></code>
|
|
11413
11439
|
</td>
|
|
11414
11440
|
<td>
|
|
11415
11441
|
<div class="doc-md-description">
|
|
@@ -11462,6 +11488,7 @@ with shared functionality; if no such sharing is required, use Job class instead
|
|
|
11462
11488
|
</tbody>
|
|
11463
11489
|
</table>
|
|
11464
11490
|
|
|
11491
|
+
|
|
11465
11492
|
</div>
|
|
11466
11493
|
|
|
11467
11494
|
</div>
|
|
@@ -11485,6 +11512,7 @@ with shared functionality; if no such sharing is required, use Job class instead
|
|
|
11485
11512
|
<p><code>approval_view</code> will disable all fields from modification and is used to display the form
|
|
11486
11513
|
during a approval review workflow.</p>
|
|
11487
11514
|
|
|
11515
|
+
|
|
11488
11516
|
</div>
|
|
11489
11517
|
|
|
11490
11518
|
</div>
|
|
@@ -11507,6 +11535,7 @@ during a approval review workflow.</p>
|
|
|
11507
11535
|
<p>Dynamically generate a Django form class corresponding to the variables in this Job.</p>
|
|
11508
11536
|
<p>In most cases you should use <code>.as_form()</code> instead of calling this method directly.</p>
|
|
11509
11537
|
|
|
11538
|
+
|
|
11510
11539
|
</div>
|
|
11511
11540
|
|
|
11512
11541
|
</div>
|
|
@@ -11541,7 +11570,7 @@ during a approval review workflow.</p>
|
|
|
11541
11570
|
<code>task_id</code>
|
|
11542
11571
|
</td>
|
|
11543
11572
|
<td>
|
|
11544
|
-
<code>str</code>
|
|
11573
|
+
<code><span title="str">str</span></code>
|
|
11545
11574
|
</td>
|
|
11546
11575
|
<td>
|
|
11547
11576
|
<div class="doc-md-description">
|
|
@@ -11557,7 +11586,7 @@ during a approval review workflow.</p>
|
|
|
11557
11586
|
<code>args</code>
|
|
11558
11587
|
</td>
|
|
11559
11588
|
<td>
|
|
11560
|
-
<code>Tuple</code>
|
|
11589
|
+
<code><span title="Tuple">Tuple</span></code>
|
|
11561
11590
|
</td>
|
|
11562
11591
|
<td>
|
|
11563
11592
|
<div class="doc-md-description">
|
|
@@ -11573,7 +11602,7 @@ during a approval review workflow.</p>
|
|
|
11573
11602
|
<code>kwargs</code>
|
|
11574
11603
|
</td>
|
|
11575
11604
|
<td>
|
|
11576
|
-
<code>Dict</code>
|
|
11605
|
+
<code><span title="Dict">Dict</span></code>
|
|
11577
11606
|
</td>
|
|
11578
11607
|
<td>
|
|
11579
11608
|
<div class="doc-md-description">
|
|
@@ -11599,7 +11628,7 @@ during a approval review workflow.</p>
|
|
|
11599
11628
|
<tbody>
|
|
11600
11629
|
<tr class="doc-section-item">
|
|
11601
11630
|
<td>
|
|
11602
|
-
<code>Any</code>
|
|
11631
|
+
<code><span title="Any">Any</span></code>
|
|
11603
11632
|
</td>
|
|
11604
11633
|
<td>
|
|
11605
11634
|
<div class="doc-md-description">
|
|
@@ -11612,6 +11641,7 @@ since <code>self.run()</code> will <strong>not</strong> be called in such a case
|
|
|
11612
11641
|
</tbody>
|
|
11613
11642
|
</table>
|
|
11614
11643
|
|
|
11644
|
+
|
|
11615
11645
|
</div>
|
|
11616
11646
|
|
|
11617
11647
|
</div>
|
|
@@ -11634,6 +11664,7 @@ since <code>self.run()</code> will <strong>not</strong> be called in such a case
|
|
|
11634
11664
|
- my_plugin.jobs.MyPluginJob - App-provided Job
|
|
11635
11665
|
- git_repository.jobs.myjob.MyJob - GitRepository Job</p>
|
|
11636
11666
|
|
|
11667
|
+
|
|
11637
11668
|
</div>
|
|
11638
11669
|
|
|
11639
11670
|
</div>
|
|
@@ -11652,6 +11683,7 @@ since <code>self.run()</code> will <strong>not</strong> be called in such a case
|
|
|
11652
11683
|
<p>Dotted class_path, suitable for use in things like Python logger names.</p>
|
|
11653
11684
|
<p>Deprecated as of Nautobot 2.0: just use .class_path instead.</p>
|
|
11654
11685
|
|
|
11686
|
+
|
|
11655
11687
|
</div>
|
|
11656
11688
|
|
|
11657
11689
|
</div>
|
|
@@ -11669,6 +11701,7 @@ since <code>self.run()</code> will <strong>not</strong> be called in such a case
|
|
|
11669
11701
|
|
|
11670
11702
|
<p>Escape various characters so that the class_path can be used as a jQuery selector.</p>
|
|
11671
11703
|
|
|
11704
|
+
|
|
11672
11705
|
</div>
|
|
11673
11706
|
|
|
11674
11707
|
</div>
|
|
@@ -11703,7 +11736,7 @@ since <code>self.run()</code> will <strong>not</strong> be called in such a case
|
|
|
11703
11736
|
<code>filename</code>
|
|
11704
11737
|
</td>
|
|
11705
11738
|
<td>
|
|
11706
|
-
<code>str</code>
|
|
11739
|
+
<code><span title="str">str</span></code>
|
|
11707
11740
|
</td>
|
|
11708
11741
|
<td>
|
|
11709
11742
|
<div class="doc-md-description">
|
|
@@ -11719,7 +11752,7 @@ since <code>self.run()</code> will <strong>not</strong> be called in such a case
|
|
|
11719
11752
|
<code>content</code>
|
|
11720
11753
|
</td>
|
|
11721
11754
|
<td>
|
|
11722
|
-
<code>(str
|
|
11755
|
+
<code>(<span title="str">str</span>, <span title="bytes">bytes</span>)</code>
|
|
11723
11756
|
</td>
|
|
11724
11757
|
<td>
|
|
11725
11758
|
<div class="doc-md-description">
|
|
@@ -11745,7 +11778,7 @@ since <code>self.run()</code> will <strong>not</strong> be called in such a case
|
|
|
11745
11778
|
<tbody>
|
|
11746
11779
|
<tr class="doc-section-item">
|
|
11747
11780
|
<td>
|
|
11748
|
-
<code>ValueError</code>
|
|
11781
|
+
<code><span title="ValueError">ValueError</span></code>
|
|
11749
11782
|
</td>
|
|
11750
11783
|
<td>
|
|
11751
11784
|
<div class="doc-md-description">
|
|
@@ -11779,6 +11812,7 @@ since <code>self.run()</code> will <strong>not</strong> be called in such a case
|
|
|
11779
11812
|
</tbody>
|
|
11780
11813
|
</table>
|
|
11781
11814
|
|
|
11815
|
+
|
|
11782
11816
|
</div>
|
|
11783
11817
|
|
|
11784
11818
|
</div>
|
|
@@ -11805,6 +11839,7 @@ model instances for ObjectVar.</p>
|
|
|
11805
11839
|
exceptions here, we leave it up the caller to handle those cases. The normal job execution code
|
|
11806
11840
|
path would consider this a failure of the job execution, as described in <code>nautobot.extras.jobs.run_job</code>.</p>
|
|
11807
11841
|
|
|
11842
|
+
|
|
11808
11843
|
</div>
|
|
11809
11844
|
|
|
11810
11845
|
</div>
|
|
@@ -11822,6 +11857,7 @@ path would consider this a failure of the job execution, as described in <code>n
|
|
|
11822
11857
|
|
|
11823
11858
|
<p>Mark this job as failed without immediately raising an exception and aborting.</p>
|
|
11824
11859
|
|
|
11860
|
+
|
|
11825
11861
|
</div>
|
|
11826
11862
|
|
|
11827
11863
|
</div>
|
|
@@ -11839,6 +11875,7 @@ path would consider this a failure of the job execution, as described in <code>n
|
|
|
11839
11875
|
|
|
11840
11876
|
<p>Deprecated as of Nautobot 2.2.3.</p>
|
|
11841
11877
|
|
|
11878
|
+
|
|
11842
11879
|
</div>
|
|
11843
11880
|
|
|
11844
11881
|
</div>
|
|
@@ -11856,6 +11893,7 @@ path would consider this a failure of the job execution, as described in <code>n
|
|
|
11856
11893
|
|
|
11857
11894
|
<p>Return data from a JSON file</p>
|
|
11858
11895
|
|
|
11896
|
+
|
|
11859
11897
|
</div>
|
|
11860
11898
|
|
|
11861
11899
|
</div>
|
|
@@ -11873,6 +11911,7 @@ path would consider this a failure of the job execution, as described in <code>n
|
|
|
11873
11911
|
|
|
11874
11912
|
<p>Return data from a YAML file</p>
|
|
11875
11913
|
|
|
11914
|
+
|
|
11876
11915
|
</div>
|
|
11877
11916
|
|
|
11878
11917
|
</div>
|
|
@@ -11908,7 +11947,7 @@ path would consider this a failure of the job execution, as described in <code>n
|
|
|
11908
11947
|
<code>exc</code>
|
|
11909
11948
|
</td>
|
|
11910
11949
|
<td>
|
|
11911
|
-
<code>Any</code>
|
|
11950
|
+
<code><span title="Any">Any</span></code>
|
|
11912
11951
|
</td>
|
|
11913
11952
|
<td>
|
|
11914
11953
|
<div class="doc-md-description">
|
|
@@ -11925,7 +11964,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
11925
11964
|
<code>task_id</code>
|
|
11926
11965
|
</td>
|
|
11927
11966
|
<td>
|
|
11928
|
-
<code>str</code>
|
|
11967
|
+
<code><span title="str">str</span></code>
|
|
11929
11968
|
</td>
|
|
11930
11969
|
<td>
|
|
11931
11970
|
<div class="doc-md-description">
|
|
@@ -11941,7 +11980,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
11941
11980
|
<code>args</code>
|
|
11942
11981
|
</td>
|
|
11943
11982
|
<td>
|
|
11944
|
-
<code>Tuple</code>
|
|
11983
|
+
<code><span title="Tuple">Tuple</span></code>
|
|
11945
11984
|
</td>
|
|
11946
11985
|
<td>
|
|
11947
11986
|
<div class="doc-md-description">
|
|
@@ -11957,7 +11996,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
11957
11996
|
<code>kwargs</code>
|
|
11958
11997
|
</td>
|
|
11959
11998
|
<td>
|
|
11960
|
-
<code>Dict</code>
|
|
11999
|
+
<code><span title="Dict">Dict</span></code>
|
|
11961
12000
|
</td>
|
|
11962
12001
|
<td>
|
|
11963
12002
|
<div class="doc-md-description">
|
|
@@ -12010,6 +12049,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12010
12049
|
</tbody>
|
|
12011
12050
|
</table>
|
|
12012
12051
|
|
|
12052
|
+
|
|
12013
12053
|
</div>
|
|
12014
12054
|
|
|
12015
12055
|
</div>
|
|
@@ -12045,7 +12085,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12045
12085
|
<code>exc</code>
|
|
12046
12086
|
</td>
|
|
12047
12087
|
<td>
|
|
12048
|
-
<code>Exception</code>
|
|
12088
|
+
<code><span title="Exception">Exception</span></code>
|
|
12049
12089
|
</td>
|
|
12050
12090
|
<td>
|
|
12051
12091
|
<div class="doc-md-description">
|
|
@@ -12061,7 +12101,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12061
12101
|
<code>task_id</code>
|
|
12062
12102
|
</td>
|
|
12063
12103
|
<td>
|
|
12064
|
-
<code>str</code>
|
|
12104
|
+
<code><span title="str">str</span></code>
|
|
12065
12105
|
</td>
|
|
12066
12106
|
<td>
|
|
12067
12107
|
<div class="doc-md-description">
|
|
@@ -12077,7 +12117,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12077
12117
|
<code>args</code>
|
|
12078
12118
|
</td>
|
|
12079
12119
|
<td>
|
|
12080
|
-
<code>Tuple</code>
|
|
12120
|
+
<code><span title="Tuple">Tuple</span></code>
|
|
12081
12121
|
</td>
|
|
12082
12122
|
<td>
|
|
12083
12123
|
<div class="doc-md-description">
|
|
@@ -12093,7 +12133,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12093
12133
|
<code>kwargs</code>
|
|
12094
12134
|
</td>
|
|
12095
12135
|
<td>
|
|
12096
|
-
<code>Dict</code>
|
|
12136
|
+
<code><span title="Dict">Dict</span></code>
|
|
12097
12137
|
</td>
|
|
12098
12138
|
<td>
|
|
12099
12139
|
<div class="doc-md-description">
|
|
@@ -12146,6 +12186,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12146
12186
|
</tbody>
|
|
12147
12187
|
</table>
|
|
12148
12188
|
|
|
12189
|
+
|
|
12149
12190
|
</div>
|
|
12150
12191
|
|
|
12151
12192
|
</div>
|
|
@@ -12181,7 +12222,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12181
12222
|
<code>retval</code>
|
|
12182
12223
|
</td>
|
|
12183
12224
|
<td>
|
|
12184
|
-
<code>Any</code>
|
|
12225
|
+
<code><span title="Any">Any</span></code>
|
|
12185
12226
|
</td>
|
|
12186
12227
|
<td>
|
|
12187
12228
|
<div class="doc-md-description">
|
|
@@ -12197,7 +12238,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12197
12238
|
<code>task_id</code>
|
|
12198
12239
|
</td>
|
|
12199
12240
|
<td>
|
|
12200
|
-
<code>str</code>
|
|
12241
|
+
<code><span title="str">str</span></code>
|
|
12201
12242
|
</td>
|
|
12202
12243
|
<td>
|
|
12203
12244
|
<div class="doc-md-description">
|
|
@@ -12213,7 +12254,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12213
12254
|
<code>args</code>
|
|
12214
12255
|
</td>
|
|
12215
12256
|
<td>
|
|
12216
|
-
<code>Tuple</code>
|
|
12257
|
+
<code><span title="Tuple">Tuple</span></code>
|
|
12217
12258
|
</td>
|
|
12218
12259
|
<td>
|
|
12219
12260
|
<div class="doc-md-description">
|
|
@@ -12229,7 +12270,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12229
12270
|
<code>kwargs</code>
|
|
12230
12271
|
</td>
|
|
12231
12272
|
<td>
|
|
12232
|
-
<code>Dict</code>
|
|
12273
|
+
<code><span title="Dict">Dict</span></code>
|
|
12233
12274
|
</td>
|
|
12234
12275
|
<td>
|
|
12235
12276
|
<div class="doc-md-description">
|
|
@@ -12266,6 +12307,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12266
12307
|
</tbody>
|
|
12267
12308
|
</table>
|
|
12268
12309
|
|
|
12310
|
+
|
|
12269
12311
|
</div>
|
|
12270
12312
|
|
|
12271
12313
|
</div>
|
|
@@ -12287,6 +12329,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12287
12329
|
|
|
12288
12330
|
<p>Process dict and return kwargs that exist as ScriptVariables on this job.</p>
|
|
12289
12331
|
|
|
12332
|
+
|
|
12290
12333
|
</div>
|
|
12291
12334
|
|
|
12292
12335
|
</div>
|
|
@@ -12305,6 +12348,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12305
12348
|
<p>Return all relevant classproperties as a dict.</p>
|
|
12306
12349
|
<p>Used for convenient rendering into job_edit.html via the <code>json_script</code> template tag.</p>
|
|
12307
12350
|
|
|
12351
|
+
|
|
12308
12352
|
</div>
|
|
12309
12353
|
|
|
12310
12354
|
</div>
|
|
@@ -12322,6 +12366,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12322
12366
|
|
|
12323
12367
|
<p>Deprecated - use class_path classproperty instead.</p>
|
|
12324
12368
|
|
|
12369
|
+
|
|
12325
12370
|
</div>
|
|
12326
12371
|
|
|
12327
12372
|
</div>
|
|
@@ -12339,6 +12384,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12339
12384
|
|
|
12340
12385
|
<p>Method invoked when this Job is run.</p>
|
|
12341
12386
|
|
|
12387
|
+
|
|
12342
12388
|
</div>
|
|
12343
12389
|
|
|
12344
12390
|
</div>
|
|
@@ -12363,6 +12409,7 @@ such as if the Job called <code>self.fail()</code> rather than raising an except
|
|
|
12363
12409
|
of an ObjectVar into the pk value.</p>
|
|
12364
12410
|
<p>These are converted back during job execution.</p>
|
|
12365
12411
|
|
|
12412
|
+
|
|
12366
12413
|
</div>
|
|
12367
12414
|
|
|
12368
12415
|
</div>
|
|
@@ -12380,6 +12427,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12380
12427
|
|
|
12381
12428
|
<p>Cache key for singleton jobs.</p>
|
|
12382
12429
|
|
|
12430
|
+
|
|
12383
12431
|
</div>
|
|
12384
12432
|
|
|
12385
12433
|
</div>
|
|
@@ -12405,7 +12453,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12405
12453
|
|
|
12406
12454
|
<div class="doc doc-contents ">
|
|
12407
12455
|
<p class="doc doc-class-bases">
|
|
12408
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12456
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12409
12457
|
|
|
12410
12458
|
|
|
12411
12459
|
<p>Boolean representation (true/false). Renders as a checkbox.</p>
|
|
@@ -12418,6 +12466,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12418
12466
|
|
|
12419
12467
|
|
|
12420
12468
|
|
|
12469
|
+
|
|
12421
12470
|
<div class="doc doc-children">
|
|
12422
12471
|
|
|
12423
12472
|
|
|
@@ -12449,7 +12498,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12449
12498
|
|
|
12450
12499
|
<div class="doc doc-contents ">
|
|
12451
12500
|
<p class="doc doc-class-bases">
|
|
12452
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12501
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12453
12502
|
|
|
12454
12503
|
|
|
12455
12504
|
<p>Select one of several predefined static choices, passed as a list of two-tuples. Example:</p>
|
|
@@ -12470,6 +12519,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12470
12519
|
|
|
12471
12520
|
|
|
12472
12521
|
|
|
12522
|
+
|
|
12473
12523
|
<div class="doc doc-children">
|
|
12474
12524
|
|
|
12475
12525
|
|
|
@@ -12514,6 +12564,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12514
12564
|
|
|
12515
12565
|
|
|
12516
12566
|
|
|
12567
|
+
|
|
12517
12568
|
<div class="doc doc-children">
|
|
12518
12569
|
|
|
12519
12570
|
|
|
@@ -12545,7 +12596,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12545
12596
|
|
|
12546
12597
|
<div class="doc doc-contents ">
|
|
12547
12598
|
<p class="doc doc-class-bases">
|
|
12548
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.BooleanVar" href="#nautobot.apps.jobs.BooleanVar">BooleanVar</a></code></p>
|
|
12599
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.BooleanVar (nautobot.extras.jobs.BooleanVar)" href="#nautobot.apps.jobs.BooleanVar">BooleanVar</a></code></p>
|
|
12549
12600
|
|
|
12550
12601
|
|
|
12551
12602
|
<p>Special boolean variable that bypasses approval requirements if this is set to True on job execution.</p>
|
|
@@ -12558,6 +12609,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12558
12609
|
|
|
12559
12610
|
|
|
12560
12611
|
|
|
12612
|
+
|
|
12561
12613
|
<div class="doc doc-children">
|
|
12562
12614
|
|
|
12563
12615
|
|
|
@@ -12589,7 +12641,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12589
12641
|
|
|
12590
12642
|
<div class="doc doc-contents ">
|
|
12591
12643
|
<p class="doc doc-class-bases">
|
|
12592
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12644
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12593
12645
|
|
|
12594
12646
|
|
|
12595
12647
|
<p>An uploaded file.</p>
|
|
@@ -12602,6 +12654,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12602
12654
|
|
|
12603
12655
|
|
|
12604
12656
|
|
|
12657
|
+
|
|
12605
12658
|
<div class="doc doc-children">
|
|
12606
12659
|
|
|
12607
12660
|
|
|
@@ -12633,7 +12686,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12633
12686
|
|
|
12634
12687
|
<div class="doc doc-contents ">
|
|
12635
12688
|
<p class="doc doc-class-bases">
|
|
12636
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.Job" href="#nautobot.apps.jobs.Job">Job</a></code></p>
|
|
12689
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.Job (nautobot.extras.jobs.Job)" href="#nautobot.apps.jobs.Job">Job</a></code></p>
|
|
12637
12690
|
|
|
12638
12691
|
|
|
12639
12692
|
<p>System Job to perform a dry run on a Git repository.</p>
|
|
@@ -12646,6 +12699,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12646
12699
|
|
|
12647
12700
|
|
|
12648
12701
|
|
|
12702
|
+
|
|
12649
12703
|
<div class="doc doc-children">
|
|
12650
12704
|
|
|
12651
12705
|
|
|
@@ -12677,7 +12731,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12677
12731
|
|
|
12678
12732
|
<div class="doc doc-contents ">
|
|
12679
12733
|
<p class="doc doc-class-bases">
|
|
12680
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.Job" href="#nautobot.apps.jobs.Job">Job</a></code></p>
|
|
12734
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.Job (nautobot.extras.jobs.Job)" href="#nautobot.apps.jobs.Job">Job</a></code></p>
|
|
12681
12735
|
|
|
12682
12736
|
|
|
12683
12737
|
<p>System job to clone and/or pull a Git repository, then invoke <code>refresh_datasource_content()</code>.</p>
|
|
@@ -12690,6 +12744,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12690
12744
|
|
|
12691
12745
|
|
|
12692
12746
|
|
|
12747
|
+
|
|
12693
12748
|
<div class="doc doc-children">
|
|
12694
12749
|
|
|
12695
12750
|
|
|
@@ -12721,7 +12776,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12721
12776
|
|
|
12722
12777
|
<div class="doc doc-contents ">
|
|
12723
12778
|
<p class="doc doc-class-bases">
|
|
12724
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12779
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12725
12780
|
|
|
12726
12781
|
|
|
12727
12782
|
<p>An IPv4 or IPv6 address without a mask.</p>
|
|
@@ -12734,6 +12789,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12734
12789
|
|
|
12735
12790
|
|
|
12736
12791
|
|
|
12792
|
+
|
|
12737
12793
|
<div class="doc doc-children">
|
|
12738
12794
|
|
|
12739
12795
|
|
|
@@ -12765,7 +12821,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12765
12821
|
|
|
12766
12822
|
<div class="doc doc-contents ">
|
|
12767
12823
|
<p class="doc doc-class-bases">
|
|
12768
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12824
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12769
12825
|
|
|
12770
12826
|
|
|
12771
12827
|
<p>An IPv4 or IPv6 address with a mask.</p>
|
|
@@ -12778,6 +12834,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12778
12834
|
|
|
12779
12835
|
|
|
12780
12836
|
|
|
12837
|
+
|
|
12781
12838
|
<div class="doc doc-children">
|
|
12782
12839
|
|
|
12783
12840
|
|
|
@@ -12809,7 +12866,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12809
12866
|
|
|
12810
12867
|
<div class="doc doc-contents ">
|
|
12811
12868
|
<p class="doc doc-class-bases">
|
|
12812
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12869
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12813
12870
|
|
|
12814
12871
|
|
|
12815
12872
|
<p>An IPv4 or IPv6 prefix.</p>
|
|
@@ -12822,6 +12879,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12822
12879
|
|
|
12823
12880
|
|
|
12824
12881
|
|
|
12882
|
+
|
|
12825
12883
|
<div class="doc doc-children">
|
|
12826
12884
|
|
|
12827
12885
|
|
|
@@ -12853,7 +12911,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12853
12911
|
|
|
12854
12912
|
<div class="doc doc-contents ">
|
|
12855
12913
|
<p class="doc doc-class-bases">
|
|
12856
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12914
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12857
12915
|
|
|
12858
12916
|
|
|
12859
12917
|
<p>Integer representation. Can enforce minimum/maximum values.</p>
|
|
@@ -12866,6 +12924,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12866
12924
|
|
|
12867
12925
|
|
|
12868
12926
|
|
|
12927
|
+
|
|
12869
12928
|
<div class="doc doc-children">
|
|
12870
12929
|
|
|
12871
12930
|
|
|
@@ -12897,7 +12956,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12897
12956
|
|
|
12898
12957
|
<div class="doc doc-contents ">
|
|
12899
12958
|
<p class="doc doc-class-bases">
|
|
12900
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12959
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
12901
12960
|
|
|
12902
12961
|
|
|
12903
12962
|
<p>Like TextVar but with native serializing of JSON data.</p>
|
|
@@ -12910,6 +12969,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12910
12969
|
|
|
12911
12970
|
|
|
12912
12971
|
|
|
12972
|
+
|
|
12913
12973
|
<div class="doc doc-children">
|
|
12914
12974
|
|
|
12915
12975
|
|
|
@@ -12941,7 +13001,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12941
13001
|
|
|
12942
13002
|
<div class="doc doc-contents ">
|
|
12943
13003
|
<p class="doc doc-class-bases">
|
|
12944
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.BaseJob" href="#nautobot.apps.jobs.BaseJob">BaseJob</a></code></p>
|
|
13004
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.BaseJob (nautobot.extras.jobs.BaseJob)" href="#nautobot.apps.jobs.BaseJob">BaseJob</a></code></p>
|
|
12945
13005
|
|
|
12946
13006
|
|
|
12947
13007
|
<p>Classes which inherit from this model will appear in the list of available jobs.</p>
|
|
@@ -12954,6 +13014,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12954
13014
|
|
|
12955
13015
|
|
|
12956
13016
|
|
|
13017
|
+
|
|
12957
13018
|
<div class="doc doc-children">
|
|
12958
13019
|
|
|
12959
13020
|
|
|
@@ -12985,7 +13046,7 @@ of an ObjectVar into the pk value.</p>
|
|
|
12985
13046
|
|
|
12986
13047
|
<div class="doc doc-contents ">
|
|
12987
13048
|
<p class="doc doc-class-bases">
|
|
12988
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.Job" href="#nautobot.apps.jobs.Job">Job</a></code></p>
|
|
13049
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.Job (nautobot.extras.jobs.Job)" href="#nautobot.apps.jobs.Job">Job</a></code></p>
|
|
12989
13050
|
|
|
12990
13051
|
|
|
12991
13052
|
<p>Base class for job button receivers. Job button receivers are jobs that are initiated
|
|
@@ -12999,6 +13060,7 @@ from UI buttons and are not intended to be run from the job form UI or API like
|
|
|
12999
13060
|
|
|
13000
13061
|
|
|
13001
13062
|
|
|
13063
|
+
|
|
13002
13064
|
<div class="doc doc-children">
|
|
13003
13065
|
|
|
13004
13066
|
|
|
@@ -13053,6 +13115,7 @@ from UI buttons and are not intended to be run from the job form UI or API like
|
|
|
13053
13115
|
</tbody>
|
|
13054
13116
|
</table>
|
|
13055
13117
|
|
|
13118
|
+
|
|
13056
13119
|
</div>
|
|
13057
13120
|
|
|
13058
13121
|
</div>
|
|
@@ -13070,6 +13133,7 @@ from UI buttons and are not intended to be run from the job form UI or API like
|
|
|
13070
13133
|
|
|
13071
13134
|
<p>JobButtonReceiver subclasses generally shouldn't need to override this method.</p>
|
|
13072
13135
|
|
|
13136
|
+
|
|
13073
13137
|
</div>
|
|
13074
13138
|
|
|
13075
13139
|
</div>
|
|
@@ -13095,7 +13159,7 @@ from UI buttons and are not intended to be run from the job form UI or API like
|
|
|
13095
13159
|
|
|
13096
13160
|
<div class="doc doc-contents ">
|
|
13097
13161
|
<p class="doc doc-class-bases">
|
|
13098
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.Job" href="#nautobot.apps.jobs.Job">Job</a></code></p>
|
|
13162
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.Job (nautobot.extras.jobs.Job)" href="#nautobot.apps.jobs.Job">Job</a></code></p>
|
|
13099
13163
|
|
|
13100
13164
|
|
|
13101
13165
|
<p>Base class for job hook receivers. Job hook receivers are jobs that are initiated
|
|
@@ -13109,6 +13173,7 @@ from object changes and are not intended to be run from the UI or API like stand
|
|
|
13109
13173
|
|
|
13110
13174
|
|
|
13111
13175
|
|
|
13176
|
+
|
|
13112
13177
|
<div class="doc doc-children">
|
|
13113
13178
|
|
|
13114
13179
|
|
|
@@ -13165,7 +13230,7 @@ from object changes and are not intended to be run from the UI or API like stand
|
|
|
13165
13230
|
<code>action</code>
|
|
13166
13231
|
</td>
|
|
13167
13232
|
<td>
|
|
13168
|
-
<code>str</code>
|
|
13233
|
+
<code><span title="str">str</span></code>
|
|
13169
13234
|
</td>
|
|
13170
13235
|
<td>
|
|
13171
13236
|
<div class="doc-md-description">
|
|
@@ -13195,6 +13260,7 @@ from object changes and are not intended to be run from the UI or API like stand
|
|
|
13195
13260
|
</tbody>
|
|
13196
13261
|
</table>
|
|
13197
13262
|
|
|
13263
|
+
|
|
13198
13264
|
</div>
|
|
13199
13265
|
|
|
13200
13266
|
</div>
|
|
@@ -13212,6 +13278,7 @@ from object changes and are not intended to be run from the UI or API like stand
|
|
|
13212
13278
|
|
|
13213
13279
|
<p>JobHookReceiver subclasses generally shouldn't need to override this method.</p>
|
|
13214
13280
|
|
|
13281
|
+
|
|
13215
13282
|
</div>
|
|
13216
13283
|
|
|
13217
13284
|
</div>
|
|
@@ -13237,7 +13304,7 @@ from object changes and are not intended to be run from the UI or API like stand
|
|
|
13237
13304
|
|
|
13238
13305
|
<div class="doc doc-contents ">
|
|
13239
13306
|
<p class="doc doc-class-bases">
|
|
13240
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ChoiceVar" href="#nautobot.apps.jobs.ChoiceVar">ChoiceVar</a></code></p>
|
|
13307
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ChoiceVar (nautobot.extras.jobs.ChoiceVar)" href="#nautobot.apps.jobs.ChoiceVar">ChoiceVar</a></code></p>
|
|
13241
13308
|
|
|
13242
13309
|
|
|
13243
13310
|
<p>Like ChoiceVar, but allows for the selection of multiple choices.</p>
|
|
@@ -13250,6 +13317,7 @@ from object changes and are not intended to be run from the UI or API like stand
|
|
|
13250
13317
|
|
|
13251
13318
|
|
|
13252
13319
|
|
|
13320
|
+
|
|
13253
13321
|
<div class="doc doc-children">
|
|
13254
13322
|
|
|
13255
13323
|
|
|
@@ -13281,7 +13349,7 @@ from object changes and are not intended to be run from the UI or API like stand
|
|
|
13281
13349
|
|
|
13282
13350
|
<div class="doc doc-contents ">
|
|
13283
13351
|
<p class="doc doc-class-bases">
|
|
13284
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ObjectVar" href="#nautobot.apps.jobs.ObjectVar">ObjectVar</a></code></p>
|
|
13352
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ObjectVar (nautobot.extras.jobs.ObjectVar)" href="#nautobot.apps.jobs.ObjectVar">ObjectVar</a></code></p>
|
|
13285
13353
|
|
|
13286
13354
|
|
|
13287
13355
|
<p>Like ObjectVar, but can represent one or more objects.</p>
|
|
@@ -13294,6 +13362,7 @@ from object changes and are not intended to be run from the UI or API like stand
|
|
|
13294
13362
|
|
|
13295
13363
|
|
|
13296
13364
|
|
|
13365
|
+
|
|
13297
13366
|
<div class="doc doc-children">
|
|
13298
13367
|
|
|
13299
13368
|
|
|
@@ -13349,6 +13418,7 @@ an actual instance of the class.</p>
|
|
|
13349
13418
|
|
|
13350
13419
|
|
|
13351
13420
|
|
|
13421
|
+
|
|
13352
13422
|
<div class="doc doc-children">
|
|
13353
13423
|
|
|
13354
13424
|
|
|
@@ -13380,7 +13450,7 @@ an actual instance of the class.</p>
|
|
|
13380
13450
|
|
|
13381
13451
|
<div class="doc doc-contents ">
|
|
13382
13452
|
<p class="doc doc-class-bases">
|
|
13383
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
13453
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
13384
13454
|
|
|
13385
13455
|
|
|
13386
13456
|
<p>A single object within Nautobot.</p>
|
|
@@ -13418,7 +13488,7 @@ an actual instance of the class.</p>
|
|
|
13418
13488
|
<code>display_field</code>
|
|
13419
13489
|
</td>
|
|
13420
13490
|
<td>
|
|
13421
|
-
<code>str</code>
|
|
13491
|
+
<code><span title="str">str</span></code>
|
|
13422
13492
|
</td>
|
|
13423
13493
|
<td>
|
|
13424
13494
|
<div class="doc-md-description">
|
|
@@ -13434,7 +13504,7 @@ an actual instance of the class.</p>
|
|
|
13434
13504
|
<code>query_params</code>
|
|
13435
13505
|
</td>
|
|
13436
13506
|
<td>
|
|
13437
|
-
<code>dict</code>
|
|
13507
|
+
<code><span title="dict">dict</span></code>
|
|
13438
13508
|
</td>
|
|
13439
13509
|
<td>
|
|
13440
13510
|
<div class="doc-md-description">
|
|
@@ -13450,7 +13520,7 @@ an actual instance of the class.</p>
|
|
|
13450
13520
|
<code>null_option</code>
|
|
13451
13521
|
</td>
|
|
13452
13522
|
<td>
|
|
13453
|
-
<code>str</code>
|
|
13523
|
+
<code><span title="str">str</span></code>
|
|
13454
13524
|
</td>
|
|
13455
13525
|
<td>
|
|
13456
13526
|
<div class="doc-md-description">
|
|
@@ -13472,6 +13542,7 @@ an actual instance of the class.</p>
|
|
|
13472
13542
|
|
|
13473
13543
|
|
|
13474
13544
|
|
|
13545
|
+
|
|
13475
13546
|
<div class="doc doc-children">
|
|
13476
13547
|
|
|
13477
13548
|
|
|
@@ -13503,7 +13574,7 @@ an actual instance of the class.</p>
|
|
|
13503
13574
|
|
|
13504
13575
|
<div class="doc doc-contents ">
|
|
13505
13576
|
<p class="doc doc-class-bases">
|
|
13506
|
-
Bases: <code>Exception</code></p>
|
|
13577
|
+
Bases: <code><span title="Exception">Exception</span></code></p>
|
|
13507
13578
|
|
|
13508
13579
|
|
|
13509
13580
|
<p>Celery task failed for some reason.</p>
|
|
@@ -13514,6 +13585,7 @@ an actual instance of the class.</p>
|
|
|
13514
13585
|
|
|
13515
13586
|
|
|
13516
13587
|
|
|
13588
|
+
|
|
13517
13589
|
</div>
|
|
13518
13590
|
|
|
13519
13591
|
</div>
|
|
@@ -13542,6 +13614,7 @@ an actual instance of the class.</p>
|
|
|
13542
13614
|
|
|
13543
13615
|
|
|
13544
13616
|
|
|
13617
|
+
|
|
13545
13618
|
<div class="doc doc-children">
|
|
13546
13619
|
|
|
13547
13620
|
|
|
@@ -13565,6 +13638,7 @@ an actual instance of the class.</p>
|
|
|
13565
13638
|
|
|
13566
13639
|
<p>Render the variable as a Django form field.</p>
|
|
13567
13640
|
|
|
13641
|
+
|
|
13568
13642
|
</div>
|
|
13569
13643
|
|
|
13570
13644
|
</div>
|
|
@@ -13590,7 +13664,7 @@ an actual instance of the class.</p>
|
|
|
13590
13664
|
|
|
13591
13665
|
<div class="doc doc-contents ">
|
|
13592
13666
|
<p class="doc doc-class-bases">
|
|
13593
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
13667
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
13594
13668
|
|
|
13595
13669
|
|
|
13596
13670
|
<p>Character string representation. Can enforce minimum/maximum length and/or regex validation.</p>
|
|
@@ -13603,6 +13677,7 @@ an actual instance of the class.</p>
|
|
|
13603
13677
|
|
|
13604
13678
|
|
|
13605
13679
|
|
|
13680
|
+
|
|
13606
13681
|
<div class="doc doc-children">
|
|
13607
13682
|
|
|
13608
13683
|
|
|
@@ -13634,7 +13709,7 @@ an actual instance of the class.</p>
|
|
|
13634
13709
|
|
|
13635
13710
|
<div class="doc doc-contents ">
|
|
13636
13711
|
<p class="doc doc-class-bases">
|
|
13637
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.extras.jobs.ScriptVariable" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
13712
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.jobs.ScriptVariable (nautobot.extras.jobs.ScriptVariable)" href="#nautobot.apps.jobs.ScriptVariable">ScriptVariable</a></code></p>
|
|
13638
13713
|
|
|
13639
13714
|
|
|
13640
13715
|
<p>Free-form text data. Renders as a <code><textarea></code>.</p>
|
|
@@ -13647,6 +13722,7 @@ an actual instance of the class.</p>
|
|
|
13647
13722
|
|
|
13648
13723
|
|
|
13649
13724
|
|
|
13725
|
+
|
|
13650
13726
|
<div class="doc doc-children">
|
|
13651
13727
|
|
|
13652
13728
|
|
|
@@ -13712,7 +13788,7 @@ an actual instance of the class.</p>
|
|
|
13712
13788
|
<code>may_reload_jobs</code>
|
|
13713
13789
|
</td>
|
|
13714
13790
|
<td>
|
|
13715
|
-
<code>bool</code>
|
|
13791
|
+
<code><span title="bool">bool</span></code>
|
|
13716
13792
|
</td>
|
|
13717
13793
|
<td>
|
|
13718
13794
|
<div class="doc-md-description">
|
|
@@ -13754,7 +13830,7 @@ an actual instance of the class.</p>
|
|
|
13754
13830
|
<tbody>
|
|
13755
13831
|
<tr class="doc-section-item">
|
|
13756
13832
|
<td><code>result</code></td> <td>
|
|
13757
|
-
<code>tuple[bool
|
|
13833
|
+
<code><span title="tuple">tuple</span>[<span title="bool">bool</span>, <span title="django.db.models.query.QuerySet">QuerySet</span>]</code>
|
|
13758
13834
|
</td>
|
|
13759
13835
|
<td>
|
|
13760
13836
|
<div class="doc-md-description">
|
|
@@ -13765,6 +13841,7 @@ an actual instance of the class.</p>
|
|
|
13765
13841
|
</tbody>
|
|
13766
13842
|
</table>
|
|
13767
13843
|
|
|
13844
|
+
|
|
13768
13845
|
</div>
|
|
13769
13846
|
|
|
13770
13847
|
</div>
|
|
@@ -13800,7 +13877,7 @@ an actual instance of the class.</p>
|
|
|
13800
13877
|
<code>reload</code>
|
|
13801
13878
|
</td>
|
|
13802
13879
|
<td>
|
|
13803
|
-
<code>bool</code>
|
|
13880
|
+
<code><span title="bool">bool</span></code>
|
|
13804
13881
|
</td>
|
|
13805
13882
|
<td>
|
|
13806
13883
|
<div class="doc-md-description">
|
|
@@ -13815,6 +13892,7 @@ then refresh <strong>all</strong> such Jobs before retrieving the job class.</p>
|
|
|
13815
13892
|
</tbody>
|
|
13816
13893
|
</table>
|
|
13817
13894
|
|
|
13895
|
+
|
|
13818
13896
|
</div>
|
|
13819
13897
|
|
|
13820
13898
|
</div>
|
|
@@ -13849,7 +13927,7 @@ then refresh <strong>all</strong> such Jobs before retrieving the job class.</p>
|
|
|
13849
13927
|
<code>reload</code>
|
|
13850
13928
|
</td>
|
|
13851
13929
|
<td>
|
|
13852
|
-
<code>bool</code>
|
|
13930
|
+
<code><span title="bool">bool</span></code>
|
|
13853
13931
|
</td>
|
|
13854
13932
|
<td>
|
|
13855
13933
|
<div class="doc-md-description">
|
|
@@ -13875,7 +13953,7 @@ then refresh <strong>all</strong> such Jobs before retrieving the job class.</p>
|
|
|
13875
13953
|
<tbody>
|
|
13876
13954
|
<tr class="doc-section-item">
|
|
13877
13955
|
<td>
|
|
13878
|
-
<code>dict</code>
|
|
13956
|
+
<code><span title="dict">dict</span></code>
|
|
13879
13957
|
</td>
|
|
13880
13958
|
<td>
|
|
13881
13959
|
<div class="doc-md-description">
|
|
@@ -13886,6 +13964,7 @@ then refresh <strong>all</strong> such Jobs before retrieving the job class.</p>
|
|
|
13886
13964
|
</tbody>
|
|
13887
13965
|
</table>
|
|
13888
13966
|
|
|
13967
|
+
|
|
13889
13968
|
</div>
|
|
13890
13969
|
|
|
13891
13970
|
</div>
|
|
@@ -13903,6 +13982,7 @@ then refresh <strong>all</strong> such Jobs before retrieving the job class.</p>
|
|
|
13903
13982
|
|
|
13904
13983
|
<p>Returns True if the given object is a Job subclass.</p>
|
|
13905
13984
|
|
|
13985
|
+
|
|
13906
13986
|
</div>
|
|
13907
13987
|
|
|
13908
13988
|
</div>
|
|
@@ -13920,6 +14000,7 @@ then refresh <strong>all</strong> such Jobs before retrieving the job class.</p>
|
|
|
13920
14000
|
|
|
13921
14001
|
<p>Returns True if the object is a ScriptVariable instance.</p>
|
|
13922
14002
|
|
|
14003
|
+
|
|
13923
14004
|
</div>
|
|
13924
14005
|
|
|
13925
14006
|
</div>
|
|
@@ -13937,6 +14018,7 @@ then refresh <strong>all</strong> such Jobs before retrieving the job class.</p>
|
|
|
13937
14018
|
|
|
13938
14019
|
<p>Method to register jobs - with Celery in Nautobot 2.0 through 2.2.2, with Nautobot itself in 2.2.3 and later.</p>
|
|
13939
14020
|
|
|
14021
|
+
|
|
13940
14022
|
</div>
|
|
13941
14023
|
|
|
13942
14024
|
</div>
|