nautobot 2.0.4__py3-none-any.whl → 2.1.0b1__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/circuits/navigation.py +0 -25
- nautobot/circuits/templates/circuits/circuit_retrieve.html +0 -9
- nautobot/circuits/templates/circuits/providernetwork_retrieve.html +0 -2
- nautobot/circuits/tests/test_api.py +79 -2
- nautobot/circuits/tests/test_filters.py +1 -0
- nautobot/core/api/serializers.py +15 -5
- nautobot/core/api/views.py +18 -19
- nautobot/core/choices.py +1 -1
- nautobot/core/filters.py +12 -4
- nautobot/core/jobs/__init__.py +125 -3
- nautobot/core/management/commands/generate_test_data.py +6 -1
- nautobot/core/middleware.py +12 -4
- nautobot/core/models/fields.py +12 -2
- nautobot/core/settings.py +9 -8
- nautobot/core/tables.py +26 -31
- nautobot/core/templates/base_django.html +2 -2
- nautobot/core/templates/buttons/export.html +57 -30
- nautobot/core/templates/generic/object_list.html +2 -2
- nautobot/core/templates/generic/object_retrieve.html +8 -1
- nautobot/core/templates/home.html +5 -5
- nautobot/core/templates/inc/created_updated.html +2 -2
- nautobot/core/templates/inc/footer.html +2 -2
- nautobot/core/templates/inc/javascript.html +0 -10
- nautobot/core/templates/inc/media.html +2 -0
- nautobot/core/templates/inc/nav_menu.html +66 -68
- nautobot/core/templates/inc/object_details_advanced_panel.html +19 -0
- nautobot/core/templates/nautobot_config.py.j2 +10 -4
- nautobot/core/templates/panel_table.html +1 -1
- nautobot/core/templates/template.css +89 -0
- nautobot/core/templates/utilities/templatetags/table_config_form.html +1 -0
- nautobot/core/templatetags/buttons.py +7 -2
- nautobot/core/templatetags/helpers.py +9 -9
- nautobot/core/testing/views.py +34 -4
- nautobot/core/tests/integration/test_home.py +1 -43
- nautobot/core/tests/integration/test_navbar.py +10 -64
- nautobot/core/tests/integration/test_plugin_home.py +4 -5
- nautobot/core/tests/integration/test_plugin_navbar.py +20 -16
- nautobot/core/tests/integration/test_theme.py +4 -0
- nautobot/core/tests/test_api.py +14 -66
- nautobot/core/tests/test_filters.py +127 -0
- nautobot/core/tests/test_forms.py +4 -4
- nautobot/core/tests/test_graphql.py +165 -2
- nautobot/core/tests/test_jobs.py +112 -0
- nautobot/core/tests/test_openapi.py +6 -0
- nautobot/core/tests/test_utils.py +23 -20
- nautobot/core/tests/test_views.py +11 -85
- nautobot/core/urls.py +6 -1
- nautobot/core/utils/data.py +5 -1
- nautobot/core/utils/filtering.py +6 -4
- nautobot/core/utils/lookup.py +28 -0
- nautobot/core/utils/requests.py +2 -3
- nautobot/core/views/__init__.py +3 -4
- nautobot/core/views/generic.py +15 -11
- nautobot/core/views/mixins.py +9 -8
- nautobot/core/views/renderers.py +5 -0
- nautobot/core/views/utils.py +23 -24
- nautobot/dcim/api/serializers.py +8 -4
- nautobot/dcim/models/device_components.py +1 -0
- nautobot/dcim/models/devices.py +7 -6
- nautobot/dcim/navigation.py +10 -165
- nautobot/dcim/templates/dcim/location.html +1 -1
- nautobot/dcim/tests/features/locations.feature +143 -0
- nautobot/dcim/tests/test_api.py +8 -1
- nautobot/dcim/tests/test_filters.py +11 -3
- nautobot/dcim/views.py +5 -6
- nautobot/extras/admin.py +1 -1
- nautobot/extras/api/serializers.py +33 -0
- nautobot/extras/api/urls.py +6 -0
- nautobot/extras/api/views.py +45 -6
- nautobot/extras/context_managers.py +34 -8
- nautobot/extras/factory.py +28 -2
- nautobot/extras/filters/__init__.py +52 -0
- nautobot/extras/filters/mixins.py +4 -29
- nautobot/extras/forms/forms.py +43 -0
- nautobot/extras/jobs.py +39 -17
- nautobot/extras/migrations/0100_fileproxy_job_result.py +32 -0
- nautobot/extras/migrations/0101_externalintegration.py +61 -0
- nautobot/extras/migrations/0102_set_null_objectchange_contenttype.py +32 -0
- nautobot/extras/models/__init__.py +2 -0
- nautobot/extras/models/change_logging.py +2 -2
- nautobot/extras/models/customfields.py +2 -2
- nautobot/extras/models/models.py +101 -18
- nautobot/extras/models/relationships.py +13 -8
- nautobot/extras/navigation.py +17 -29
- nautobot/extras/signals.py +80 -59
- nautobot/extras/tables.py +28 -2
- nautobot/extras/templates/extras/externalintegration_retrieve.html +37 -0
- nautobot/extras/templates/extras/inc/jobresult.html +24 -0
- nautobot/extras/templates/extras/jobresult.html +24 -0
- nautobot/extras/templatetags/computed_fields.py +6 -13
- nautobot/extras/templatetags/custom_links.py +19 -12
- nautobot/extras/templatetags/job_buttons.py +34 -19
- nautobot/extras/templatetags/plugins.py +1 -1
- nautobot/extras/test_jobs/file_output.py +16 -0
- nautobot/extras/tests/test_api.py +92 -0
- nautobot/extras/tests/test_context_managers.py +94 -4
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_filters.py +64 -2
- nautobot/extras/tests/test_jobs.py +75 -22
- nautobot/extras/tests/test_models.py +34 -0
- nautobot/extras/tests/test_relationships.py +2 -2
- nautobot/extras/tests/test_views.py +204 -4
- nautobot/extras/tests/test_webhooks.py +61 -25
- nautobot/extras/urls.py +1 -0
- nautobot/extras/views.py +27 -13
- nautobot/extras/webhooks.py +16 -25
- nautobot/ipam/fields.py +5 -0
- nautobot/ipam/forms.py +16 -0
- nautobot/ipam/models.py +13 -2
- nautobot/ipam/navigation.py +2 -59
- nautobot/ipam/tables.py +1 -1
- nautobot/ipam/templates/ipam/ipaddress.html +0 -9
- nautobot/ipam/templates/ipam/prefix.html +0 -9
- nautobot/ipam/tests/features/prefixes.feature +134 -0
- nautobot/ipam/tests/test_filters.py +5 -10
- nautobot/ipam/tests/test_models.py +7 -0
- nautobot/ipam/tests/test_views.py +8 -1
- nautobot/ipam/views.py +99 -58
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css +191 -191
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +874 -881
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/css/base.css +138 -99
- nautobot/project-static/css/dark.css +65 -6
- nautobot/project-static/docs/404.html +45 -17
- nautobot/project-static/docs/apps/index.html +45 -17
- nautobot/project-static/docs/apps/nautobot-apps.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1598 -1458
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +229 -152
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +46 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +354 -433
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +67 -39
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2083 -2234
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +1389 -1247
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +129 -111
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3601 -3457
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +320 -284
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +3863 -3801
- nautobot/project-static/docs/development/apps/api/configuration-view.html +45 -17
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/global-search.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/graphql.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +45 -17
- nautobot/project-static/docs/development/apps/api/prometheus.html +45 -17
- nautobot/project-static/docs/development/apps/api/setup.html +45 -17
- nautobot/project-static/docs/development/apps/api/testing.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/base-template.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/notes.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/urls.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/view-overrides.html +45 -17
- nautobot/project-static/docs/development/apps/index.html +45 -17
- nautobot/project-static/docs/development/apps/migration/code-updates.html +45 -17
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +45 -17
- nautobot/project-static/docs/development/apps/migration/from-v1.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +45 -17
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +45 -17
- nautobot/project-static/docs/development/core/application-registry.html +45 -17
- nautobot/project-static/docs/development/core/best-practices.html +45 -17
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +45 -17
- nautobot/project-static/docs/development/core/extending-models.html +45 -17
- nautobot/project-static/docs/development/core/generic-views.html +45 -17
- nautobot/project-static/docs/development/core/getting-started.html +45 -17
- nautobot/project-static/docs/development/core/homepage.html +45 -17
- nautobot/project-static/docs/development/core/index.html +45 -17
- nautobot/project-static/docs/development/core/model-features.html +45 -17
- nautobot/project-static/docs/development/core/natural-keys.html +45 -17
- nautobot/project-static/docs/development/core/navigation-menu.html +45 -22
- nautobot/project-static/docs/development/core/react-ui.html +45 -17
- nautobot/project-static/docs/development/core/release-checklist.html +46 -18
- nautobot/project-static/docs/development/core/role-internals.html +45 -17
- nautobot/project-static/docs/development/core/style-guide.html +45 -17
- nautobot/project-static/docs/development/core/templates.html +45 -17
- nautobot/project-static/docs/development/core/testing.html +45 -17
- nautobot/project-static/docs/development/core/user-preferences.html +45 -17
- nautobot/project-static/docs/development/index.html +45 -17
- nautobot/project-static/docs/development/jobs/index.html +281 -235
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +45 -17
- nautobot/project-static/docs/index.html +45 -17
- nautobot/project-static/docs/media/nautobot_application_stack_low_level.png +0 -0
- nautobot/project-static/docs/media/nautobot_application_stack_low_level.txt +1 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +48 -20
- nautobot/project-static/docs/release-notes/version-1.0.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.1.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.2.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.3.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.4.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.5.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.6.html +46 -18
- nautobot/project-static/docs/release-notes/version-2.0.html +372 -199
- nautobot/project-static/docs/release-notes/version-2.1.html +5724 -0
- nautobot/project-static/docs/requirements.txt +1 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +247 -237
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/node-configuration.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +110 -44
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +48 -20
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +49 -20
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/index.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/services.html +45 -17
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +45 -17
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +45 -17
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +45 -17
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +45 -17
- nautobot/project-static/docs/user-guide/index.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +111 -17
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +48 -20
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +5359 -0
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +48 -20
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +114 -45
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +45 -17
- nautobot/project-static/fonts/UFL.txt +96 -0
- nautobot/project-static/fonts/Ubuntu-Bold.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-BoldItalic.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-Italic.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-Medium.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-MediumItalic.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-Regular.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-Bold.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-BoldItalic.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-Italic.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-Regular.woff2 +0 -0
- nautobot/project-static/img/dark-theme.png +0 -0
- nautobot/project-static/img/light-theme.png +0 -0
- nautobot/project-static/img/nautobot_chevron.svg +5 -0
- nautobot/project-static/img/nautobot_chevron_header.svg +5 -0
- nautobot/project-static/img/system-theme.png +0 -0
- nautobot/tenancy/navigation.py +0 -13
- nautobot/ui/package-lock.json +2 -2
- nautobot/ui/package.json +1 -1
- nautobot/users/admin.py +44 -0
- nautobot/users/migrations/0007_alter_objectpermission_object_types.py +33 -0
- nautobot/users/models.py +3 -2
- nautobot/virtualization/navigation.py +1 -33
- nautobot/virtualization/tests/test_api.py +1 -1
- nautobot/virtualization/tests/test_filters.py +1 -1
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/METADATA +2 -2
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/RECORD +405 -786
- CHANGELOG.md +0 -3
- CONTRIBUTING.md +0 -3
- NOTICE +0 -8
- nautobot/docs/apps/index.md +0 -22
- nautobot/docs/apps/nautobot-apps.md +0 -10
- nautobot/docs/assets/app-icons/icon-ChatOps.png +0 -0
- nautobot/docs/assets/app-icons/icon-DataValidationEngine.png +0 -0
- nautobot/docs/assets/app-icons/icon-DeviceLifecycle.png +0 -0
- nautobot/docs/assets/app-icons/icon-DeviceOnboarding.png +0 -0
- nautobot/docs/assets/app-icons/icon-FirewallModels.png +0 -0
- nautobot/docs/assets/app-icons/icon-GoldenConfiguration.png +0 -0
- nautobot/docs/assets/app-icons/icon-NautobotPluginNornir.png +0 -0
- nautobot/docs/assets/app-icons/icon-SSoT.png +0 -0
- nautobot/docs/assets/extra.css +0 -139
- nautobot/docs/assets/favicon.ico +0 -0
- nautobot/docs/assets/nautobot_logo.png +0 -0
- nautobot/docs/assets/nautobot_logo.svg +0 -131
- nautobot/docs/assets/networktocode_bw.png +0 -0
- nautobot/docs/assets/overrides/partials/copyright.html +0 -20
- nautobot/docs/development/apps/api/configuration-view.md +0 -35
- nautobot/docs/development/apps/api/database-backend-config.md +0 -26
- nautobot/docs/development/apps/api/models/django-admin.md +0 -20
- nautobot/docs/development/apps/api/models/global-search.md +0 -11
- nautobot/docs/development/apps/api/models/graphql.md +0 -97
- nautobot/docs/development/apps/api/models/index.md +0 -81
- nautobot/docs/development/apps/api/nautobot-app-config.md +0 -84
- nautobot/docs/development/apps/api/platform-features/custom-validators.md +0 -30
- nautobot/docs/development/apps/api/platform-features/filter-extensions.md +0 -49
- nautobot/docs/development/apps/api/platform-features/git-repository-content.md +0 -62
- nautobot/docs/development/apps/api/platform-features/index.md +0 -1
- nautobot/docs/development/apps/api/platform-features/jinja2-filters.md +0 -28
- nautobot/docs/development/apps/api/platform-features/jobs.md +0 -29
- nautobot/docs/development/apps/api/platform-features/populating-extensibility-features.md +0 -58
- nautobot/docs/development/apps/api/platform-features/secrets-providers.md +0 -64
- nautobot/docs/development/apps/api/platform-features/uniquely-identify-objects.md +0 -63
- nautobot/docs/development/apps/api/prometheus.md +0 -25
- nautobot/docs/development/apps/api/setup.md +0 -132
- nautobot/docs/development/apps/api/testing.md +0 -55
- nautobot/docs/development/apps/api/ui-extensions/banners.md +0 -26
- nautobot/docs/development/apps/api/ui-extensions/home-page.md +0 -9
- nautobot/docs/development/apps/api/ui-extensions/index.md +0 -1
- nautobot/docs/development/apps/api/ui-extensions/navigation.md +0 -15
- nautobot/docs/development/apps/api/ui-extensions/object-detail-views.md +0 -74
- nautobot/docs/development/apps/api/ui-extensions/tabs.md +0 -52
- nautobot/docs/development/apps/api/views/base-template.md +0 -38
- nautobot/docs/development/apps/api/views/core-view-overrides.md +0 -26
- nautobot/docs/development/apps/api/views/django-generic-views.md +0 -23
- nautobot/docs/development/apps/api/views/help-documentation.md +0 -16
- nautobot/docs/development/apps/api/views/index.md +0 -3
- nautobot/docs/development/apps/api/views/nautobot-generic-views.md +0 -35
- nautobot/docs/development/apps/api/views/nautobotuiviewset.md +0 -147
- nautobot/docs/development/apps/api/views/nautobotuiviewsetrouter.md +0 -41
- nautobot/docs/development/apps/api/views/notes.md +0 -25
- nautobot/docs/development/apps/api/views/rest-api.md +0 -64
- nautobot/docs/development/apps/api/views/urls.md +0 -26
- nautobot/docs/development/apps/api/views/view-overrides.md +0 -50
- nautobot/docs/development/apps/index.md +0 -75
- nautobot/docs/development/apps/migration/code-updates.md +0 -160
- nautobot/docs/development/apps/migration/dependency-updates.md +0 -13
- nautobot/docs/development/apps/migration/from-v1.md +0 -56
- nautobot/docs/development/apps/migration/model-updates/dcim.md +0 -285
- nautobot/docs/development/apps/migration/model-updates/extras.md +0 -30
- nautobot/docs/development/apps/migration/model-updates/global.md +0 -5
- nautobot/docs/development/apps/migration/model-updates/ipam.md +0 -22
- nautobot/docs/development/apps/porting-from-netbox.md +0 -23
- nautobot/docs/development/core/application-registry.md +0 -216
- nautobot/docs/development/core/best-practices.md +0 -469
- nautobot/docs/development/core/docker-compose-advanced-use-cases.md +0 -228
- nautobot/docs/development/core/extending-models.md +0 -93
- nautobot/docs/development/core/generic-views.md +0 -65
- nautobot/docs/development/core/getting-started.md +0 -859
- nautobot/docs/development/core/homepage.md +0 -63
- nautobot/docs/development/core/index.md +0 -334
- nautobot/docs/development/core/model-features.md +0 -44
- nautobot/docs/development/core/natural-keys.md +0 -121
- nautobot/docs/development/core/navigation-menu.md +0 -142
- nautobot/docs/development/core/react-ui.md +0 -137
- nautobot/docs/development/core/release-checklist.md +0 -312
- nautobot/docs/development/core/role-internals.md +0 -28
- nautobot/docs/development/core/style-guide.md +0 -200
- nautobot/docs/development/core/templates.md +0 -101
- nautobot/docs/development/core/testing.md +0 -238
- nautobot/docs/development/core/user-preferences.md +0 -11
- nautobot/docs/development/index.md +0 -1
- nautobot/docs/development/jobs/index.md +0 -835
- nautobot/docs/development/jobs/migration/from-v1.md +0 -160
- nautobot/docs/generate_code_reference_pages.py +0 -20
- nautobot/docs/img/edge_dev_circuit_relationship.png +0 -0
- nautobot/docs/img/leaf_dev_no_circuit_relationship.png +0 -0
- nautobot/docs/img/relationship_w_json_filter.png +0 -0
- nautobot/docs/index.md +0 -105
- nautobot/docs/media/admin_ui_run_permission.png +0 -0
- nautobot/docs/media/development/homepage_changelog_panel.png +0 -0
- nautobot/docs/media/development/homepage_dcim_panel.png +0 -0
- nautobot/docs/media/development/index_bug_wf.jpg +0 -0
- nautobot/docs/media/development/index_feature_request_wf.jpg +0 -0
- nautobot/docs/media/development/index_release_cadence.drawio +0 -90
- nautobot/docs/media/development/index_release_cadence.jpg +0 -0
- nautobot/docs/media/installation/nautobot_ui_admin.png +0 -0
- nautobot/docs/media/installation/nautobot_ui_guest.png +0 -0
- nautobot/docs/media/models/dcim_cable_trace.png +0 -0
- nautobot/docs/media/models/dcim_cable_trace_circuit.png +0 -0
- nautobot/docs/media/models/dynamicgroup_filtering_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_02.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_03.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_04.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_05.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_02.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_03.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_04.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_05.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_06.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_07.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_basic_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_basic_02.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_basic_03.png +0 -0
- nautobot/docs/media/models/jobbutton_form.png +0 -0
- nautobot/docs/media/models/site_jobbuttons.png +0 -0
- nautobot/docs/media/nautobot_application_stack_high_level.drawio +0 -1
- nautobot/docs/media/nautobot_application_stack_high_level.png +0 -0
- nautobot/docs/media/nautobot_application_stack_low_level.drawio +0 -1
- nautobot/docs/media/nautobot_application_stack_low_level.png +0 -0
- nautobot/docs/media/nautobot_chatops.gif +0 -0
- nautobot/docs/media/nautobot_config_context.gif +0 -0
- nautobot/docs/media/nautobot_golden_config.gif +0 -0
- nautobot/docs/media/nautobot_graphql.gif +0 -0
- nautobot/docs/media/nautobot_mainpage.gif +0 -0
- nautobot/docs/media/nautobot_prefix_hierarchy.gif +0 -0
- nautobot/docs/media/plugins/plugin_admin_config.png +0 -0
- nautobot/docs/media/plugins/plugin_admin_ui.png +0 -0
- nautobot/docs/media/plugins/plugin_rest_api_endpoint.png +0 -0
- nautobot/docs/media/power_distribution.png +0 -0
- nautobot/docs/media/ss_config_contexts.png +0 -0
- nautobot/docs/media/ss_graphiql.png +0 -0
- nautobot/docs/media/ss_main_page.png +0 -0
- nautobot/docs/media/ss_plugin_chatops.png +0 -0
- nautobot/docs/media/ss_plugin_golden_config.png +0 -0
- nautobot/docs/media/ss_prefix_hierarchy.png +0 -0
- nautobot/docs/media/user-guide/administration/guides/s3-django-storage/user-guide-s3-1.png +0 -0
- nautobot/docs/media/user-guide/administration/guides/s3-django-storage/user-guide-s3-2.png +0 -0
- nautobot/docs/media/user-guide/administration/upgrading/from-v1/ipam/tenant-affinity.png +0 -0
- nautobot/docs/nautobot_logo.png +0 -0
- nautobot/docs/nautobot_logo.svg +0 -131
- nautobot/docs/release-notes/index.md +0 -3
- nautobot/docs/release-notes/version-1.0.md +0 -530
- nautobot/docs/release-notes/version-1.1.md +0 -337
- nautobot/docs/release-notes/version-1.2.md +0 -509
- nautobot/docs/release-notes/version-1.3.md +0 -554
- nautobot/docs/release-notes/version-1.4.md +0 -677
- nautobot/docs/release-notes/version-1.5.md +0 -840
- nautobot/docs/release-notes/version-1.6.md +0 -290
- nautobot/docs/release-notes/version-2.0.md +0 -1359
- nautobot/docs/requirements.txt +0 -12
- nautobot/docs/user-guide/administration/configuration/authentication/ldap.md +0 -286
- nautobot/docs/user-guide/administration/configuration/authentication/remote.md +0 -46
- nautobot/docs/user-guide/administration/configuration/authentication/sso.md +0 -528
- nautobot/docs/user-guide/administration/configuration/index.md +0 -190
- nautobot/docs/user-guide/administration/configuration/node-configuration.md +0 -31
- nautobot/docs/user-guide/administration/configuration/optional-settings.md +0 -1302
- nautobot/docs/user-guide/administration/configuration/required-settings.md +0 -244
- nautobot/docs/user-guide/administration/guides/caching.md +0 -108
- nautobot/docs/user-guide/administration/guides/celery-queues.md +0 -42
- nautobot/docs/user-guide/administration/guides/healthcheck.md +0 -11
- nautobot/docs/user-guide/administration/guides/permissions.md +0 -98
- nautobot/docs/user-guide/administration/guides/prometheus-metrics.md +0 -55
- nautobot/docs/user-guide/administration/guides/replicating-nautobot.md +0 -70
- nautobot/docs/user-guide/administration/guides/s3-django-storage.md +0 -145
- nautobot/docs/user-guide/administration/installation/app-install.md +0 -94
- nautobot/docs/user-guide/administration/installation/docker.md +0 -286
- nautobot/docs/user-guide/administration/installation/external-authentication.md +0 -9
- nautobot/docs/user-guide/administration/installation/http-server.md +0 -279
- nautobot/docs/user-guide/administration/installation/index.md +0 -101
- nautobot/docs/user-guide/administration/installation/install_system.md +0 -493
- nautobot/docs/user-guide/administration/installation/nautobot.md +0 -367
- nautobot/docs/user-guide/administration/installation/selinux-troubleshooting.md +0 -194
- nautobot/docs/user-guide/administration/installation/services.md +0 -340
- nautobot/docs/user-guide/administration/migration/migrating-from-netbox.md +0 -336
- nautobot/docs/user-guide/administration/migration/migrating-from-postgresql.md +0 -122
- nautobot/docs/user-guide/administration/tools/nautobot-server.md +0 -858
- nautobot/docs/user-guide/administration/tools/nautobot-shell.md +0 -263
- nautobot/docs/user-guide/administration/upgrading/database-backup.md +0 -11
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.md +0 -55
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.md +0 -73
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.md +0 -211
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/index.md +0 -16
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.md +0 -157
- nautobot/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.md +0 -153
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-behavior-changes.yaml +0 -82
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-removed-fields.yaml +0 -175
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-renamed-fields.yaml +0 -124
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +0 -241
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-removals.yaml +0 -57
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-renames.yaml +0 -5
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-behavior-changes.yaml +0 -76
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-removed-fields.yaml +0 -202
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-renamed-fields.yaml +0 -343
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-corrected-fields.yaml +0 -31
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-enhanced-fields.yaml +0 -244
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-removed-fields.yaml +0 -595
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-renamed-fields.yaml +0 -253
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-logging-renamed-loggers.yaml +0 -23
- nautobot/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.md +0 -574
- nautobot/docs/user-guide/administration/upgrading/upgrading.md +0 -127
- nautobot/docs/user-guide/core-data-model/circuits/circuit.md +0 -19
- nautobot/docs/user-guide/core-data-model/circuits/circuittermination.md +0 -10
- nautobot/docs/user-guide/core-data-model/circuits/circuittype.md +0 -8
- nautobot/docs/user-guide/core-data-model/circuits/provider.md +0 -5
- nautobot/docs/user-guide/core-data-model/circuits/providernetwork.md +0 -7
- nautobot/docs/user-guide/core-data-model/dcim/cable.md +0 -43
- nautobot/docs/user-guide/core-data-model/dcim/consoleport.md +0 -8
- nautobot/docs/user-guide/core-data-model/dcim/consoleporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/consoleserverport.md +0 -8
- nautobot/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/device.md +0 -29
- nautobot/docs/user-guide/core-data-model/dcim/devicebay.md +0 -11
- nautobot/docs/user-guide/core-data-model/dcim/devicebaytemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/deviceredundancygroup.md +0 -279
- nautobot/docs/user-guide/core-data-model/dcim/devicetype.md +0 -44
- nautobot/docs/user-guide/core-data-model/dcim/frontport.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/frontporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/interface.md +0 -34
- nautobot/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.md +0 -24
- nautobot/docs/user-guide/core-data-model/dcim/interfacetemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/inventoryitem.md +0 -10
- nautobot/docs/user-guide/core-data-model/dcim/location.md +0 -15
- nautobot/docs/user-guide/core-data-model/dcim/locationtype.md +0 -43
- nautobot/docs/user-guide/core-data-model/dcim/manufacturer.md +0 -3
- nautobot/docs/user-guide/core-data-model/dcim/platform.md +0 -19
- nautobot/docs/user-guide/core-data-model/dcim/powerfeed.md +0 -25
- nautobot/docs/user-guide/core-data-model/dcim/poweroutlet.md +0 -14
- nautobot/docs/user-guide/core-data-model/dcim/poweroutlettemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/powerpanel.md +0 -12
- nautobot/docs/user-guide/core-data-model/dcim/powerport.md +0 -15
- nautobot/docs/user-guide/core-data-model/dcim/powerporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/rack.md +0 -41
- nautobot/docs/user-guide/core-data-model/dcim/rackgroup.md +0 -7
- nautobot/docs/user-guide/core-data-model/dcim/rackreservation.md +0 -3
- nautobot/docs/user-guide/core-data-model/dcim/rearport.md +0 -9
- nautobot/docs/user-guide/core-data-model/dcim/rearporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/virtualchassis.md +0 -8
- nautobot/docs/user-guide/core-data-model/extras/configcontext.md +0 -78
- nautobot/docs/user-guide/core-data-model/extras/configcontextschema.md +0 -73
- nautobot/docs/user-guide/core-data-model/ipam/ipaddress.md +0 -69
- nautobot/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio +0 -1
- nautobot/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio.svg +0 -4
- nautobot/docs/user-guide/core-data-model/ipam/namespace.md +0 -18
- nautobot/docs/user-guide/core-data-model/ipam/prefix.md +0 -65
- nautobot/docs/user-guide/core-data-model/ipam/rir.md +0 -10
- nautobot/docs/user-guide/core-data-model/ipam/routetarget.md +0 -5
- nautobot/docs/user-guide/core-data-model/ipam/service.md +0 -8
- nautobot/docs/user-guide/core-data-model/ipam/vlan.md +0 -17
- nautobot/docs/user-guide/core-data-model/ipam/vlangroup.md +0 -5
- nautobot/docs/user-guide/core-data-model/ipam/vrf.md +0 -15
- nautobot/docs/user-guide/core-data-model/tenancy/tenant.md +0 -20
- nautobot/docs/user-guide/core-data-model/tenancy/tenantgroup.md +0 -5
- nautobot/docs/user-guide/core-data-model/virtualization/cluster.md +0 -5
- nautobot/docs/user-guide/core-data-model/virtualization/clustergroup.md +0 -3
- nautobot/docs/user-guide/core-data-model/virtualization/clustertype.md +0 -3
- nautobot/docs/user-guide/core-data-model/virtualization/virtualmachine.md +0 -17
- nautobot/docs/user-guide/core-data-model/virtualization/vminterface.md +0 -19
- nautobot/docs/user-guide/feature-guides/custom-fields.md +0 -350
- nautobot/docs/user-guide/feature-guides/getting-started/creating-devices.md +0 -130
- nautobot/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.md +0 -113
- nautobot/docs/user-guide/feature-guides/getting-started/index.md +0 -29
- nautobot/docs/user-guide/feature-guides/getting-started/interfaces.md +0 -100
- nautobot/docs/user-guide/feature-guides/getting-started/ipam.md +0 -104
- nautobot/docs/user-guide/feature-guides/getting-started/platforms.md +0 -78
- nautobot/docs/user-guide/feature-guides/getting-started/search-bar.md +0 -40
- nautobot/docs/user-guide/feature-guides/getting-started/tenants.md +0 -40
- nautobot/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.md +0 -87
- nautobot/docs/user-guide/feature-guides/git-data-source.md +0 -307
- nautobot/docs/user-guide/feature-guides/graphql.md +0 -342
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_choices.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_grouped.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_label.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_edit.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_select.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/1-create-location-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/10-add-platform.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/11-platforms-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/12-add-tenant.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/13-assign-tenant-to-device.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/14-assign-tenant-to-device-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/15-create-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/16-interface-templates.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/17-templated-interfaces.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/18-assign-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/19-edit-ints-for-lag.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/2-create-manufacturer.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/20-ints-int-lag.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/21-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/22-create-vlans.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/23-create-vlans-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/24-vlan-main-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/25-add-vlan-to-interface.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/26-add-vlan-to-interface-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/27-add-rir.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/3-create-role.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/30-add-prefix.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/32-add-ip-addr.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/33-assign-address.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/34-assign-address-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/35-assign-address-3.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/36-verify-address.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/37-verify-prefix.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/38-verify-prefix2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/39-address-search.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/4-create-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/40-addr-main-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/41-device-search-results.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/42-address-search-v2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/43-get-to-device-main-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/44-add-platform.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/5-create-device.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/6-create-location.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/7-location-type-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/8-location-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/01-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/02-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/03-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/04-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/05-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/06-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/07-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/08-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/09-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/10-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/11-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/12-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/13-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/14-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/15-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/16-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/17-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/18-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/00-graphiql.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/01-graphiql-explorer.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/02-graphiql-explorer-device-query.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/03-graphiql-explorer-device-attributes.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/04-graphql-query-01.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/05-graphiql-autocomplete.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/06-graphql-query-02.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/07-graphql-query-03.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/08-graphql-query-04.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/09-graphql-query-05.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/10-graphql-swagger.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/11-graphql-query-06.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/ip_merge_button.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_button.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_view.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/no_more_dup_ips.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/skip_button.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/unselect_ips.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/01-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/02-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/03-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/04-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/05-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/06-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/07-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/08-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/09-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/10-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/11-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/ip-address-merge-tool.md +0 -63
- nautobot/docs/user-guide/feature-guides/relationships.md +0 -125
- nautobot/docs/user-guide/index.md +0 -1
- nautobot/docs/user-guide/platform-functionality/change-logging.md +0 -21
- nautobot/docs/user-guide/platform-functionality/computedfield.md +0 -89
- nautobot/docs/user-guide/platform-functionality/customfield.md +0 -123
- nautobot/docs/user-guide/platform-functionality/customlink.md +0 -59
- nautobot/docs/user-guide/platform-functionality/dynamicgroup.md +0 -660
- nautobot/docs/user-guide/platform-functionality/exporttemplate.md +0 -55
- nautobot/docs/user-guide/platform-functionality/gitrepository.md +0 -353
- nautobot/docs/user-guide/platform-functionality/graphql.md +0 -259
- nautobot/docs/user-guide/platform-functionality/graphqlquery.md +0 -28
- nautobot/docs/user-guide/platform-functionality/imageattachment.md +0 -10
- nautobot/docs/user-guide/platform-functionality/jobs/index.md +0 -193
- nautobot/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.md +0 -78
- nautobot/docs/user-guide/platform-functionality/jobs/jobbutton.md +0 -79
- nautobot/docs/user-guide/platform-functionality/jobs/jobhook.md +0 -15
- nautobot/docs/user-guide/platform-functionality/jobs/models.md +0 -65
- nautobot/docs/user-guide/platform-functionality/napalm.md +0 -85
- nautobot/docs/user-guide/platform-functionality/note.md +0 -7
- nautobot/docs/user-guide/platform-functionality/relationship.md +0 -158
- nautobot/docs/user-guide/platform-functionality/rest-api/authentication.md +0 -67
- nautobot/docs/user-guide/platform-functionality/rest-api/filtering.md +0 -142
- nautobot/docs/user-guide/platform-functionality/rest-api/overview.md +0 -1045
- nautobot/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.md +0 -9
- nautobot/docs/user-guide/platform-functionality/role.md +0 -17
- nautobot/docs/user-guide/platform-functionality/secret.md +0 -136
- nautobot/docs/user-guide/platform-functionality/status.md +0 -92
- nautobot/docs/user-guide/platform-functionality/tag.md +0 -62
- nautobot/docs/user-guide/platform-functionality/template-filters.md +0 -306
- nautobot/docs/user-guide/platform-functionality/users/objectpermission.md +0 -56
- nautobot/docs/user-guide/platform-functionality/users/token.md +0 -21
- nautobot/docs/user-guide/platform-functionality/webhook.md +0 -137
- nautobot/project-static/docs/media/nautobot_application_stack_low_level.drawio +0 -1
- nautobot/project-static/docs/media/nautobot_chatops.gif +0 -0
- nautobot/project-static/docs/media/nautobot_config_context.gif +0 -0
- nautobot/project-static/docs/media/nautobot_golden_config.gif +0 -0
- nautobot/project-static/docs/media/nautobot_graphql.gif +0 -0
- nautobot/project-static/docs/media/nautobot_mainpage.gif +0 -0
- nautobot/project-static/docs/media/nautobot_prefix_hierarchy.gif +0 -0
- nautobot-2.0.4.dist-info/LICENSE.txt +0 -177
- /LICENSE.txt → /nautobot-2.1.0b1.dist-info/LICENSE.txt +0 -0
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/WHEEL +0 -0
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/entry_points.txt +0 -0
|
@@ -2,1187 +2,1197 @@
|
|
|
2
2
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
3
3
|
<url>
|
|
4
4
|
<loc>https://docs.nautobot.com/projects/core/en/stable/index.html</loc>
|
|
5
|
-
<lastmod>2023-11-
|
|
5
|
+
<lastmod>2023-11-30</lastmod>
|
|
6
6
|
<changefreq>daily</changefreq>
|
|
7
7
|
</url>
|
|
8
8
|
<url>
|
|
9
9
|
<loc>https://docs.nautobot.com/projects/core/en/stable/apps/index.html</loc>
|
|
10
|
-
<lastmod>2023-11-
|
|
10
|
+
<lastmod>2023-11-30</lastmod>
|
|
11
11
|
<changefreq>daily</changefreq>
|
|
12
12
|
</url>
|
|
13
13
|
<url>
|
|
14
14
|
<loc>https://docs.nautobot.com/projects/core/en/stable/apps/nautobot-apps.html</loc>
|
|
15
|
-
<lastmod>2023-11-
|
|
15
|
+
<lastmod>2023-11-30</lastmod>
|
|
16
16
|
<changefreq>daily</changefreq>
|
|
17
17
|
</url>
|
|
18
18
|
<url>
|
|
19
19
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/__init__.html</loc>
|
|
20
|
-
<lastmod>2023-11-
|
|
20
|
+
<lastmod>2023-11-30</lastmod>
|
|
21
21
|
<changefreq>daily</changefreq>
|
|
22
22
|
</url>
|
|
23
23
|
<url>
|
|
24
24
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/admin.html</loc>
|
|
25
|
-
<lastmod>2023-11-
|
|
25
|
+
<lastmod>2023-11-30</lastmod>
|
|
26
26
|
<changefreq>daily</changefreq>
|
|
27
27
|
</url>
|
|
28
28
|
<url>
|
|
29
29
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/api.html</loc>
|
|
30
|
-
<lastmod>2023-11-
|
|
30
|
+
<lastmod>2023-11-30</lastmod>
|
|
31
31
|
<changefreq>daily</changefreq>
|
|
32
32
|
</url>
|
|
33
33
|
<url>
|
|
34
34
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/change_logging.html</loc>
|
|
35
|
-
<lastmod>2023-11-
|
|
35
|
+
<lastmod>2023-11-30</lastmod>
|
|
36
36
|
<changefreq>daily</changefreq>
|
|
37
37
|
</url>
|
|
38
38
|
<url>
|
|
39
39
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/choices.html</loc>
|
|
40
|
-
<lastmod>2023-11-
|
|
40
|
+
<lastmod>2023-11-30</lastmod>
|
|
41
41
|
<changefreq>daily</changefreq>
|
|
42
42
|
</url>
|
|
43
43
|
<url>
|
|
44
44
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/config.html</loc>
|
|
45
|
-
<lastmod>2023-11-
|
|
45
|
+
<lastmod>2023-11-30</lastmod>
|
|
46
46
|
<changefreq>daily</changefreq>
|
|
47
47
|
</url>
|
|
48
48
|
<url>
|
|
49
49
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/datasources.html</loc>
|
|
50
|
-
<lastmod>2023-11-
|
|
50
|
+
<lastmod>2023-11-30</lastmod>
|
|
51
51
|
<changefreq>daily</changefreq>
|
|
52
52
|
</url>
|
|
53
53
|
<url>
|
|
54
54
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/exceptions.html</loc>
|
|
55
|
-
<lastmod>2023-11-
|
|
55
|
+
<lastmod>2023-11-30</lastmod>
|
|
56
56
|
<changefreq>daily</changefreq>
|
|
57
57
|
</url>
|
|
58
58
|
<url>
|
|
59
59
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/factory.html</loc>
|
|
60
|
-
<lastmod>2023-11-
|
|
60
|
+
<lastmod>2023-11-30</lastmod>
|
|
61
61
|
<changefreq>daily</changefreq>
|
|
62
62
|
</url>
|
|
63
63
|
<url>
|
|
64
64
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/filters.html</loc>
|
|
65
|
-
<lastmod>2023-11-
|
|
65
|
+
<lastmod>2023-11-30</lastmod>
|
|
66
66
|
<changefreq>daily</changefreq>
|
|
67
67
|
</url>
|
|
68
68
|
<url>
|
|
69
69
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/forms.html</loc>
|
|
70
|
-
<lastmod>2023-11-
|
|
70
|
+
<lastmod>2023-11-30</lastmod>
|
|
71
71
|
<changefreq>daily</changefreq>
|
|
72
72
|
</url>
|
|
73
73
|
<url>
|
|
74
74
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/graphql.html</loc>
|
|
75
|
-
<lastmod>2023-11-
|
|
75
|
+
<lastmod>2023-11-30</lastmod>
|
|
76
76
|
<changefreq>daily</changefreq>
|
|
77
77
|
</url>
|
|
78
78
|
<url>
|
|
79
79
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/jobs.html</loc>
|
|
80
|
-
<lastmod>2023-11-
|
|
80
|
+
<lastmod>2023-11-30</lastmod>
|
|
81
81
|
<changefreq>daily</changefreq>
|
|
82
82
|
</url>
|
|
83
83
|
<url>
|
|
84
84
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/models.html</loc>
|
|
85
|
-
<lastmod>2023-11-
|
|
85
|
+
<lastmod>2023-11-30</lastmod>
|
|
86
86
|
<changefreq>daily</changefreq>
|
|
87
87
|
</url>
|
|
88
88
|
<url>
|
|
89
89
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/querysets.html</loc>
|
|
90
|
-
<lastmod>2023-11-
|
|
90
|
+
<lastmod>2023-11-30</lastmod>
|
|
91
91
|
<changefreq>daily</changefreq>
|
|
92
92
|
</url>
|
|
93
93
|
<url>
|
|
94
94
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/secrets.html</loc>
|
|
95
|
-
<lastmod>2023-11-
|
|
95
|
+
<lastmod>2023-11-30</lastmod>
|
|
96
96
|
<changefreq>daily</changefreq>
|
|
97
97
|
</url>
|
|
98
98
|
<url>
|
|
99
99
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/tables.html</loc>
|
|
100
|
-
<lastmod>2023-11-
|
|
100
|
+
<lastmod>2023-11-30</lastmod>
|
|
101
101
|
<changefreq>daily</changefreq>
|
|
102
102
|
</url>
|
|
103
103
|
<url>
|
|
104
104
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/testing.html</loc>
|
|
105
|
-
<lastmod>2023-11-
|
|
105
|
+
<lastmod>2023-11-30</lastmod>
|
|
106
106
|
<changefreq>daily</changefreq>
|
|
107
107
|
</url>
|
|
108
108
|
<url>
|
|
109
109
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/ui.html</loc>
|
|
110
|
-
<lastmod>2023-11-
|
|
110
|
+
<lastmod>2023-11-30</lastmod>
|
|
111
111
|
<changefreq>daily</changefreq>
|
|
112
112
|
</url>
|
|
113
113
|
<url>
|
|
114
114
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/urls.html</loc>
|
|
115
|
-
<lastmod>2023-11-
|
|
115
|
+
<lastmod>2023-11-30</lastmod>
|
|
116
116
|
<changefreq>daily</changefreq>
|
|
117
117
|
</url>
|
|
118
118
|
<url>
|
|
119
119
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/utils.html</loc>
|
|
120
|
-
<lastmod>2023-11-
|
|
120
|
+
<lastmod>2023-11-30</lastmod>
|
|
121
121
|
<changefreq>daily</changefreq>
|
|
122
122
|
</url>
|
|
123
123
|
<url>
|
|
124
124
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/views.html</loc>
|
|
125
|
-
<lastmod>2023-11-
|
|
125
|
+
<lastmod>2023-11-30</lastmod>
|
|
126
126
|
<changefreq>daily</changefreq>
|
|
127
127
|
</url>
|
|
128
128
|
<url>
|
|
129
129
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/index.html</loc>
|
|
130
|
-
<lastmod>2023-11-
|
|
130
|
+
<lastmod>2023-11-30</lastmod>
|
|
131
131
|
<changefreq>daily</changefreq>
|
|
132
132
|
</url>
|
|
133
133
|
<url>
|
|
134
134
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/index.html</loc>
|
|
135
|
-
<lastmod>2023-11-
|
|
135
|
+
<lastmod>2023-11-30</lastmod>
|
|
136
136
|
<changefreq>daily</changefreq>
|
|
137
137
|
</url>
|
|
138
138
|
<url>
|
|
139
139
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/porting-from-netbox.html</loc>
|
|
140
|
-
<lastmod>2023-11-
|
|
140
|
+
<lastmod>2023-11-30</lastmod>
|
|
141
141
|
<changefreq>daily</changefreq>
|
|
142
142
|
</url>
|
|
143
143
|
<url>
|
|
144
144
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/configuration-view.html</loc>
|
|
145
|
-
<lastmod>2023-11-
|
|
145
|
+
<lastmod>2023-11-30</lastmod>
|
|
146
146
|
<changefreq>daily</changefreq>
|
|
147
147
|
</url>
|
|
148
148
|
<url>
|
|
149
149
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/database-backend-config.html</loc>
|
|
150
|
-
<lastmod>2023-11-
|
|
150
|
+
<lastmod>2023-11-30</lastmod>
|
|
151
151
|
<changefreq>daily</changefreq>
|
|
152
152
|
</url>
|
|
153
153
|
<url>
|
|
154
154
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/nautobot-app-config.html</loc>
|
|
155
|
-
<lastmod>2023-11-
|
|
155
|
+
<lastmod>2023-11-30</lastmod>
|
|
156
156
|
<changefreq>daily</changefreq>
|
|
157
157
|
</url>
|
|
158
158
|
<url>
|
|
159
159
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/prometheus.html</loc>
|
|
160
|
-
<lastmod>2023-11-
|
|
160
|
+
<lastmod>2023-11-30</lastmod>
|
|
161
161
|
<changefreq>daily</changefreq>
|
|
162
162
|
</url>
|
|
163
163
|
<url>
|
|
164
164
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/setup.html</loc>
|
|
165
|
-
<lastmod>2023-11-
|
|
165
|
+
<lastmod>2023-11-30</lastmod>
|
|
166
166
|
<changefreq>daily</changefreq>
|
|
167
167
|
</url>
|
|
168
168
|
<url>
|
|
169
169
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/testing.html</loc>
|
|
170
|
-
<lastmod>2023-11-
|
|
170
|
+
<lastmod>2023-11-30</lastmod>
|
|
171
171
|
<changefreq>daily</changefreq>
|
|
172
172
|
</url>
|
|
173
173
|
<url>
|
|
174
174
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/models/index.html</loc>
|
|
175
|
-
<lastmod>2023-11-
|
|
175
|
+
<lastmod>2023-11-30</lastmod>
|
|
176
176
|
<changefreq>daily</changefreq>
|
|
177
177
|
</url>
|
|
178
178
|
<url>
|
|
179
179
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/models/django-admin.html</loc>
|
|
180
|
-
<lastmod>2023-11-
|
|
180
|
+
<lastmod>2023-11-30</lastmod>
|
|
181
181
|
<changefreq>daily</changefreq>
|
|
182
182
|
</url>
|
|
183
183
|
<url>
|
|
184
184
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/models/global-search.html</loc>
|
|
185
|
-
<lastmod>2023-11-
|
|
185
|
+
<lastmod>2023-11-30</lastmod>
|
|
186
186
|
<changefreq>daily</changefreq>
|
|
187
187
|
</url>
|
|
188
188
|
<url>
|
|
189
189
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/models/graphql.html</loc>
|
|
190
|
-
<lastmod>2023-11-
|
|
190
|
+
<lastmod>2023-11-30</lastmod>
|
|
191
191
|
<changefreq>daily</changefreq>
|
|
192
192
|
</url>
|
|
193
193
|
<url>
|
|
194
194
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/index.html</loc>
|
|
195
|
-
<lastmod>2023-11-
|
|
195
|
+
<lastmod>2023-11-30</lastmod>
|
|
196
196
|
<changefreq>daily</changefreq>
|
|
197
197
|
</url>
|
|
198
198
|
<url>
|
|
199
199
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/custom-validators.html</loc>
|
|
200
|
-
<lastmod>2023-11-
|
|
200
|
+
<lastmod>2023-11-30</lastmod>
|
|
201
201
|
<changefreq>daily</changefreq>
|
|
202
202
|
</url>
|
|
203
203
|
<url>
|
|
204
204
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/filter-extensions.html</loc>
|
|
205
|
-
<lastmod>2023-11-
|
|
205
|
+
<lastmod>2023-11-30</lastmod>
|
|
206
206
|
<changefreq>daily</changefreq>
|
|
207
207
|
</url>
|
|
208
208
|
<url>
|
|
209
209
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/git-repository-content.html</loc>
|
|
210
|
-
<lastmod>2023-11-
|
|
210
|
+
<lastmod>2023-11-30</lastmod>
|
|
211
211
|
<changefreq>daily</changefreq>
|
|
212
212
|
</url>
|
|
213
213
|
<url>
|
|
214
214
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/jinja2-filters.html</loc>
|
|
215
|
-
<lastmod>2023-11-
|
|
215
|
+
<lastmod>2023-11-30</lastmod>
|
|
216
216
|
<changefreq>daily</changefreq>
|
|
217
217
|
</url>
|
|
218
218
|
<url>
|
|
219
219
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/jobs.html</loc>
|
|
220
|
-
<lastmod>2023-11-
|
|
220
|
+
<lastmod>2023-11-30</lastmod>
|
|
221
221
|
<changefreq>daily</changefreq>
|
|
222
222
|
</url>
|
|
223
223
|
<url>
|
|
224
224
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/populating-extensibility-features.html</loc>
|
|
225
|
-
<lastmod>2023-11-
|
|
225
|
+
<lastmod>2023-11-30</lastmod>
|
|
226
226
|
<changefreq>daily</changefreq>
|
|
227
227
|
</url>
|
|
228
228
|
<url>
|
|
229
229
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/secrets-providers.html</loc>
|
|
230
|
-
<lastmod>2023-11-
|
|
230
|
+
<lastmod>2023-11-30</lastmod>
|
|
231
231
|
<changefreq>daily</changefreq>
|
|
232
232
|
</url>
|
|
233
233
|
<url>
|
|
234
234
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/uniquely-identify-objects.html</loc>
|
|
235
|
-
<lastmod>2023-11-
|
|
235
|
+
<lastmod>2023-11-30</lastmod>
|
|
236
236
|
<changefreq>daily</changefreq>
|
|
237
237
|
</url>
|
|
238
238
|
<url>
|
|
239
239
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/index.html</loc>
|
|
240
|
-
<lastmod>2023-11-
|
|
240
|
+
<lastmod>2023-11-30</lastmod>
|
|
241
241
|
<changefreq>daily</changefreq>
|
|
242
242
|
</url>
|
|
243
243
|
<url>
|
|
244
244
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/banners.html</loc>
|
|
245
|
-
<lastmod>2023-11-
|
|
245
|
+
<lastmod>2023-11-30</lastmod>
|
|
246
246
|
<changefreq>daily</changefreq>
|
|
247
247
|
</url>
|
|
248
248
|
<url>
|
|
249
249
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/home-page.html</loc>
|
|
250
|
-
<lastmod>2023-11-
|
|
250
|
+
<lastmod>2023-11-30</lastmod>
|
|
251
251
|
<changefreq>daily</changefreq>
|
|
252
252
|
</url>
|
|
253
253
|
<url>
|
|
254
254
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/navigation.html</loc>
|
|
255
|
-
<lastmod>2023-11-
|
|
255
|
+
<lastmod>2023-11-30</lastmod>
|
|
256
256
|
<changefreq>daily</changefreq>
|
|
257
257
|
</url>
|
|
258
258
|
<url>
|
|
259
259
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/object-detail-views.html</loc>
|
|
260
|
-
<lastmod>2023-11-
|
|
260
|
+
<lastmod>2023-11-30</lastmod>
|
|
261
261
|
<changefreq>daily</changefreq>
|
|
262
262
|
</url>
|
|
263
263
|
<url>
|
|
264
264
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/tabs.html</loc>
|
|
265
|
-
<lastmod>2023-11-
|
|
265
|
+
<lastmod>2023-11-30</lastmod>
|
|
266
266
|
<changefreq>daily</changefreq>
|
|
267
267
|
</url>
|
|
268
268
|
<url>
|
|
269
269
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/index.html</loc>
|
|
270
|
-
<lastmod>2023-11-
|
|
270
|
+
<lastmod>2023-11-30</lastmod>
|
|
271
271
|
<changefreq>daily</changefreq>
|
|
272
272
|
</url>
|
|
273
273
|
<url>
|
|
274
274
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/base-template.html</loc>
|
|
275
|
-
<lastmod>2023-11-
|
|
275
|
+
<lastmod>2023-11-30</lastmod>
|
|
276
276
|
<changefreq>daily</changefreq>
|
|
277
277
|
</url>
|
|
278
278
|
<url>
|
|
279
279
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/core-view-overrides.html</loc>
|
|
280
|
-
<lastmod>2023-11-
|
|
280
|
+
<lastmod>2023-11-30</lastmod>
|
|
281
281
|
<changefreq>daily</changefreq>
|
|
282
282
|
</url>
|
|
283
283
|
<url>
|
|
284
284
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/django-generic-views.html</loc>
|
|
285
|
-
<lastmod>2023-11-
|
|
285
|
+
<lastmod>2023-11-30</lastmod>
|
|
286
286
|
<changefreq>daily</changefreq>
|
|
287
287
|
</url>
|
|
288
288
|
<url>
|
|
289
289
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/help-documentation.html</loc>
|
|
290
|
-
<lastmod>2023-11-
|
|
290
|
+
<lastmod>2023-11-30</lastmod>
|
|
291
291
|
<changefreq>daily</changefreq>
|
|
292
292
|
</url>
|
|
293
293
|
<url>
|
|
294
294
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/nautobot-generic-views.html</loc>
|
|
295
|
-
<lastmod>2023-11-
|
|
295
|
+
<lastmod>2023-11-30</lastmod>
|
|
296
296
|
<changefreq>daily</changefreq>
|
|
297
297
|
</url>
|
|
298
298
|
<url>
|
|
299
299
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/nautobotuiviewset.html</loc>
|
|
300
|
-
<lastmod>2023-11-
|
|
300
|
+
<lastmod>2023-11-30</lastmod>
|
|
301
301
|
<changefreq>daily</changefreq>
|
|
302
302
|
</url>
|
|
303
303
|
<url>
|
|
304
304
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/nautobotuiviewsetrouter.html</loc>
|
|
305
|
-
<lastmod>2023-11-
|
|
305
|
+
<lastmod>2023-11-30</lastmod>
|
|
306
306
|
<changefreq>daily</changefreq>
|
|
307
307
|
</url>
|
|
308
308
|
<url>
|
|
309
309
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/notes.html</loc>
|
|
310
|
-
<lastmod>2023-11-
|
|
310
|
+
<lastmod>2023-11-30</lastmod>
|
|
311
311
|
<changefreq>daily</changefreq>
|
|
312
312
|
</url>
|
|
313
313
|
<url>
|
|
314
314
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/rest-api.html</loc>
|
|
315
|
-
<lastmod>2023-11-
|
|
315
|
+
<lastmod>2023-11-30</lastmod>
|
|
316
316
|
<changefreq>daily</changefreq>
|
|
317
317
|
</url>
|
|
318
318
|
<url>
|
|
319
319
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/urls.html</loc>
|
|
320
|
-
<lastmod>2023-11-
|
|
320
|
+
<lastmod>2023-11-30</lastmod>
|
|
321
321
|
<changefreq>daily</changefreq>
|
|
322
322
|
</url>
|
|
323
323
|
<url>
|
|
324
324
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/view-overrides.html</loc>
|
|
325
|
-
<lastmod>2023-11-
|
|
325
|
+
<lastmod>2023-11-30</lastmod>
|
|
326
326
|
<changefreq>daily</changefreq>
|
|
327
327
|
</url>
|
|
328
328
|
<url>
|
|
329
329
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/code-updates.html</loc>
|
|
330
|
-
<lastmod>2023-11-
|
|
330
|
+
<lastmod>2023-11-30</lastmod>
|
|
331
331
|
<changefreq>daily</changefreq>
|
|
332
332
|
</url>
|
|
333
333
|
<url>
|
|
334
334
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/dependency-updates.html</loc>
|
|
335
|
-
<lastmod>2023-11-
|
|
335
|
+
<lastmod>2023-11-30</lastmod>
|
|
336
336
|
<changefreq>daily</changefreq>
|
|
337
337
|
</url>
|
|
338
338
|
<url>
|
|
339
339
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/from-v1.html</loc>
|
|
340
|
-
<lastmod>2023-11-
|
|
340
|
+
<lastmod>2023-11-30</lastmod>
|
|
341
341
|
<changefreq>daily</changefreq>
|
|
342
342
|
</url>
|
|
343
343
|
<url>
|
|
344
344
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/model-updates/dcim.html</loc>
|
|
345
|
-
<lastmod>2023-11-
|
|
345
|
+
<lastmod>2023-11-30</lastmod>
|
|
346
346
|
<changefreq>daily</changefreq>
|
|
347
347
|
</url>
|
|
348
348
|
<url>
|
|
349
349
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/model-updates/extras.html</loc>
|
|
350
|
-
<lastmod>2023-11-
|
|
350
|
+
<lastmod>2023-11-30</lastmod>
|
|
351
351
|
<changefreq>daily</changefreq>
|
|
352
352
|
</url>
|
|
353
353
|
<url>
|
|
354
354
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/model-updates/global.html</loc>
|
|
355
|
-
<lastmod>2023-11-
|
|
355
|
+
<lastmod>2023-11-30</lastmod>
|
|
356
356
|
<changefreq>daily</changefreq>
|
|
357
357
|
</url>
|
|
358
358
|
<url>
|
|
359
359
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/model-updates/ipam.html</loc>
|
|
360
|
-
<lastmod>2023-11-
|
|
360
|
+
<lastmod>2023-11-30</lastmod>
|
|
361
361
|
<changefreq>daily</changefreq>
|
|
362
362
|
</url>
|
|
363
363
|
<url>
|
|
364
364
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/index.html</loc>
|
|
365
|
-
<lastmod>2023-11-
|
|
365
|
+
<lastmod>2023-11-30</lastmod>
|
|
366
366
|
<changefreq>daily</changefreq>
|
|
367
367
|
</url>
|
|
368
368
|
<url>
|
|
369
369
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/application-registry.html</loc>
|
|
370
|
-
<lastmod>2023-11-
|
|
370
|
+
<lastmod>2023-11-30</lastmod>
|
|
371
371
|
<changefreq>daily</changefreq>
|
|
372
372
|
</url>
|
|
373
373
|
<url>
|
|
374
374
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/best-practices.html</loc>
|
|
375
|
-
<lastmod>2023-11-
|
|
375
|
+
<lastmod>2023-11-30</lastmod>
|
|
376
376
|
<changefreq>daily</changefreq>
|
|
377
377
|
</url>
|
|
378
378
|
<url>
|
|
379
379
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/docker-compose-advanced-use-cases.html</loc>
|
|
380
|
-
<lastmod>2023-11-
|
|
380
|
+
<lastmod>2023-11-30</lastmod>
|
|
381
381
|
<changefreq>daily</changefreq>
|
|
382
382
|
</url>
|
|
383
383
|
<url>
|
|
384
384
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/extending-models.html</loc>
|
|
385
|
-
<lastmod>2023-11-
|
|
385
|
+
<lastmod>2023-11-30</lastmod>
|
|
386
386
|
<changefreq>daily</changefreq>
|
|
387
387
|
</url>
|
|
388
388
|
<url>
|
|
389
389
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/generic-views.html</loc>
|
|
390
|
-
<lastmod>2023-11-
|
|
390
|
+
<lastmod>2023-11-30</lastmod>
|
|
391
391
|
<changefreq>daily</changefreq>
|
|
392
392
|
</url>
|
|
393
393
|
<url>
|
|
394
394
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/getting-started.html</loc>
|
|
395
|
-
<lastmod>2023-11-
|
|
395
|
+
<lastmod>2023-11-30</lastmod>
|
|
396
396
|
<changefreq>daily</changefreq>
|
|
397
397
|
</url>
|
|
398
398
|
<url>
|
|
399
399
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/homepage.html</loc>
|
|
400
|
-
<lastmod>2023-11-
|
|
400
|
+
<lastmod>2023-11-30</lastmod>
|
|
401
401
|
<changefreq>daily</changefreq>
|
|
402
402
|
</url>
|
|
403
403
|
<url>
|
|
404
404
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/model-features.html</loc>
|
|
405
|
-
<lastmod>2023-11-
|
|
405
|
+
<lastmod>2023-11-30</lastmod>
|
|
406
406
|
<changefreq>daily</changefreq>
|
|
407
407
|
</url>
|
|
408
408
|
<url>
|
|
409
409
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/natural-keys.html</loc>
|
|
410
|
-
<lastmod>2023-11-
|
|
410
|
+
<lastmod>2023-11-30</lastmod>
|
|
411
411
|
<changefreq>daily</changefreq>
|
|
412
412
|
</url>
|
|
413
413
|
<url>
|
|
414
414
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/navigation-menu.html</loc>
|
|
415
|
-
<lastmod>2023-11-
|
|
415
|
+
<lastmod>2023-11-30</lastmod>
|
|
416
416
|
<changefreq>daily</changefreq>
|
|
417
417
|
</url>
|
|
418
418
|
<url>
|
|
419
419
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/react-ui.html</loc>
|
|
420
|
-
<lastmod>2023-11-
|
|
420
|
+
<lastmod>2023-11-30</lastmod>
|
|
421
421
|
<changefreq>daily</changefreq>
|
|
422
422
|
</url>
|
|
423
423
|
<url>
|
|
424
424
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/release-checklist.html</loc>
|
|
425
|
-
<lastmod>2023-11-
|
|
425
|
+
<lastmod>2023-11-30</lastmod>
|
|
426
426
|
<changefreq>daily</changefreq>
|
|
427
427
|
</url>
|
|
428
428
|
<url>
|
|
429
429
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/role-internals.html</loc>
|
|
430
|
-
<lastmod>2023-11-
|
|
430
|
+
<lastmod>2023-11-30</lastmod>
|
|
431
431
|
<changefreq>daily</changefreq>
|
|
432
432
|
</url>
|
|
433
433
|
<url>
|
|
434
434
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/style-guide.html</loc>
|
|
435
|
-
<lastmod>2023-11-
|
|
435
|
+
<lastmod>2023-11-30</lastmod>
|
|
436
436
|
<changefreq>daily</changefreq>
|
|
437
437
|
</url>
|
|
438
438
|
<url>
|
|
439
439
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/templates.html</loc>
|
|
440
|
-
<lastmod>2023-11-
|
|
440
|
+
<lastmod>2023-11-30</lastmod>
|
|
441
441
|
<changefreq>daily</changefreq>
|
|
442
442
|
</url>
|
|
443
443
|
<url>
|
|
444
444
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/testing.html</loc>
|
|
445
|
-
<lastmod>2023-11-
|
|
445
|
+
<lastmod>2023-11-30</lastmod>
|
|
446
446
|
<changefreq>daily</changefreq>
|
|
447
447
|
</url>
|
|
448
448
|
<url>
|
|
449
449
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/user-preferences.html</loc>
|
|
450
|
-
<lastmod>2023-11-
|
|
450
|
+
<lastmod>2023-11-30</lastmod>
|
|
451
451
|
<changefreq>daily</changefreq>
|
|
452
452
|
</url>
|
|
453
453
|
<url>
|
|
454
454
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/jobs/index.html</loc>
|
|
455
|
-
<lastmod>2023-11-
|
|
455
|
+
<lastmod>2023-11-30</lastmod>
|
|
456
456
|
<changefreq>daily</changefreq>
|
|
457
457
|
</url>
|
|
458
458
|
<url>
|
|
459
459
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/jobs/migration/from-v1.html</loc>
|
|
460
|
-
<lastmod>2023-11-
|
|
460
|
+
<lastmod>2023-11-30</lastmod>
|
|
461
461
|
<changefreq>daily</changefreq>
|
|
462
462
|
</url>
|
|
463
463
|
<url>
|
|
464
464
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/index.html</loc>
|
|
465
|
-
<lastmod>2023-11-
|
|
465
|
+
<lastmod>2023-11-30</lastmod>
|
|
466
466
|
<changefreq>daily</changefreq>
|
|
467
467
|
</url>
|
|
468
468
|
<url>
|
|
469
469
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.0.html</loc>
|
|
470
|
-
<lastmod>2023-11-
|
|
470
|
+
<lastmod>2023-11-30</lastmod>
|
|
471
471
|
<changefreq>daily</changefreq>
|
|
472
472
|
</url>
|
|
473
473
|
<url>
|
|
474
474
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.1.html</loc>
|
|
475
|
-
<lastmod>2023-11-
|
|
475
|
+
<lastmod>2023-11-30</lastmod>
|
|
476
476
|
<changefreq>daily</changefreq>
|
|
477
477
|
</url>
|
|
478
478
|
<url>
|
|
479
479
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.2.html</loc>
|
|
480
|
-
<lastmod>2023-11-
|
|
480
|
+
<lastmod>2023-11-30</lastmod>
|
|
481
481
|
<changefreq>daily</changefreq>
|
|
482
482
|
</url>
|
|
483
483
|
<url>
|
|
484
484
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.3.html</loc>
|
|
485
|
-
<lastmod>2023-11-
|
|
485
|
+
<lastmod>2023-11-30</lastmod>
|
|
486
486
|
<changefreq>daily</changefreq>
|
|
487
487
|
</url>
|
|
488
488
|
<url>
|
|
489
489
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.4.html</loc>
|
|
490
|
-
<lastmod>2023-11-
|
|
490
|
+
<lastmod>2023-11-30</lastmod>
|
|
491
491
|
<changefreq>daily</changefreq>
|
|
492
492
|
</url>
|
|
493
493
|
<url>
|
|
494
494
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.5.html</loc>
|
|
495
|
-
<lastmod>2023-11-
|
|
495
|
+
<lastmod>2023-11-30</lastmod>
|
|
496
496
|
<changefreq>daily</changefreq>
|
|
497
497
|
</url>
|
|
498
498
|
<url>
|
|
499
499
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.6.html</loc>
|
|
500
|
-
<lastmod>2023-11-
|
|
500
|
+
<lastmod>2023-11-30</lastmod>
|
|
501
501
|
<changefreq>daily</changefreq>
|
|
502
502
|
</url>
|
|
503
503
|
<url>
|
|
504
504
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-2.0.html</loc>
|
|
505
|
-
<lastmod>2023-11-
|
|
505
|
+
<lastmod>2023-11-30</lastmod>
|
|
506
|
+
<changefreq>daily</changefreq>
|
|
507
|
+
</url>
|
|
508
|
+
<url>
|
|
509
|
+
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-2.1.html</loc>
|
|
510
|
+
<lastmod>2023-11-30</lastmod>
|
|
506
511
|
<changefreq>daily</changefreq>
|
|
507
512
|
</url>
|
|
508
513
|
<url>
|
|
509
514
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/index.html</loc>
|
|
510
|
-
<lastmod>2023-11-
|
|
515
|
+
<lastmod>2023-11-30</lastmod>
|
|
511
516
|
<changefreq>daily</changefreq>
|
|
512
517
|
</url>
|
|
513
518
|
<url>
|
|
514
519
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/index.html</loc>
|
|
515
|
-
<lastmod>2023-11-
|
|
520
|
+
<lastmod>2023-11-30</lastmod>
|
|
516
521
|
<changefreq>daily</changefreq>
|
|
517
522
|
</url>
|
|
518
523
|
<url>
|
|
519
524
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/node-configuration.html</loc>
|
|
520
|
-
<lastmod>2023-11-
|
|
525
|
+
<lastmod>2023-11-30</lastmod>
|
|
521
526
|
<changefreq>daily</changefreq>
|
|
522
527
|
</url>
|
|
523
528
|
<url>
|
|
524
529
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/optional-settings.html</loc>
|
|
525
|
-
<lastmod>2023-11-
|
|
530
|
+
<lastmod>2023-11-30</lastmod>
|
|
526
531
|
<changefreq>daily</changefreq>
|
|
527
532
|
</url>
|
|
528
533
|
<url>
|
|
529
534
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/required-settings.html</loc>
|
|
530
|
-
<lastmod>2023-11-
|
|
535
|
+
<lastmod>2023-11-30</lastmod>
|
|
531
536
|
<changefreq>daily</changefreq>
|
|
532
537
|
</url>
|
|
533
538
|
<url>
|
|
534
539
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/authentication/ldap.html</loc>
|
|
535
|
-
<lastmod>2023-11-
|
|
540
|
+
<lastmod>2023-11-30</lastmod>
|
|
536
541
|
<changefreq>daily</changefreq>
|
|
537
542
|
</url>
|
|
538
543
|
<url>
|
|
539
544
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/authentication/remote.html</loc>
|
|
540
|
-
<lastmod>2023-11-
|
|
545
|
+
<lastmod>2023-11-30</lastmod>
|
|
541
546
|
<changefreq>daily</changefreq>
|
|
542
547
|
</url>
|
|
543
548
|
<url>
|
|
544
549
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/authentication/sso.html</loc>
|
|
545
|
-
<lastmod>2023-11-
|
|
550
|
+
<lastmod>2023-11-30</lastmod>
|
|
546
551
|
<changefreq>daily</changefreq>
|
|
547
552
|
</url>
|
|
548
553
|
<url>
|
|
549
554
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/caching.html</loc>
|
|
550
|
-
<lastmod>2023-11-
|
|
555
|
+
<lastmod>2023-11-30</lastmod>
|
|
551
556
|
<changefreq>daily</changefreq>
|
|
552
557
|
</url>
|
|
553
558
|
<url>
|
|
554
559
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/celery-queues.html</loc>
|
|
555
|
-
<lastmod>2023-11-
|
|
560
|
+
<lastmod>2023-11-30</lastmod>
|
|
556
561
|
<changefreq>daily</changefreq>
|
|
557
562
|
</url>
|
|
558
563
|
<url>
|
|
559
564
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/healthcheck.html</loc>
|
|
560
|
-
<lastmod>2023-11-
|
|
565
|
+
<lastmod>2023-11-30</lastmod>
|
|
561
566
|
<changefreq>daily</changefreq>
|
|
562
567
|
</url>
|
|
563
568
|
<url>
|
|
564
569
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/permissions.html</loc>
|
|
565
|
-
<lastmod>2023-11-
|
|
570
|
+
<lastmod>2023-11-30</lastmod>
|
|
566
571
|
<changefreq>daily</changefreq>
|
|
567
572
|
</url>
|
|
568
573
|
<url>
|
|
569
574
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/prometheus-metrics.html</loc>
|
|
570
|
-
<lastmod>2023-11-
|
|
575
|
+
<lastmod>2023-11-30</lastmod>
|
|
571
576
|
<changefreq>daily</changefreq>
|
|
572
577
|
</url>
|
|
573
578
|
<url>
|
|
574
579
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/replicating-nautobot.html</loc>
|
|
575
|
-
<lastmod>2023-11-
|
|
580
|
+
<lastmod>2023-11-30</lastmod>
|
|
576
581
|
<changefreq>daily</changefreq>
|
|
577
582
|
</url>
|
|
578
583
|
<url>
|
|
579
584
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/s3-django-storage.html</loc>
|
|
580
|
-
<lastmod>2023-11-
|
|
585
|
+
<lastmod>2023-11-30</lastmod>
|
|
581
586
|
<changefreq>daily</changefreq>
|
|
582
587
|
</url>
|
|
583
588
|
<url>
|
|
584
589
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/index.html</loc>
|
|
585
|
-
<lastmod>2023-11-
|
|
590
|
+
<lastmod>2023-11-30</lastmod>
|
|
586
591
|
<changefreq>daily</changefreq>
|
|
587
592
|
</url>
|
|
588
593
|
<url>
|
|
589
594
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/app-install.html</loc>
|
|
590
|
-
<lastmod>2023-11-
|
|
595
|
+
<lastmod>2023-11-30</lastmod>
|
|
591
596
|
<changefreq>daily</changefreq>
|
|
592
597
|
</url>
|
|
593
598
|
<url>
|
|
594
599
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/docker.html</loc>
|
|
595
|
-
<lastmod>2023-11-
|
|
600
|
+
<lastmod>2023-11-30</lastmod>
|
|
596
601
|
<changefreq>daily</changefreq>
|
|
597
602
|
</url>
|
|
598
603
|
<url>
|
|
599
604
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/external-authentication.html</loc>
|
|
600
|
-
<lastmod>2023-11-
|
|
605
|
+
<lastmod>2023-11-30</lastmod>
|
|
601
606
|
<changefreq>daily</changefreq>
|
|
602
607
|
</url>
|
|
603
608
|
<url>
|
|
604
609
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/http-server.html</loc>
|
|
605
|
-
<lastmod>2023-11-
|
|
610
|
+
<lastmod>2023-11-30</lastmod>
|
|
606
611
|
<changefreq>daily</changefreq>
|
|
607
612
|
</url>
|
|
608
613
|
<url>
|
|
609
614
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/install_system.html</loc>
|
|
610
|
-
<lastmod>2023-11-
|
|
615
|
+
<lastmod>2023-11-30</lastmod>
|
|
611
616
|
<changefreq>daily</changefreq>
|
|
612
617
|
</url>
|
|
613
618
|
<url>
|
|
614
619
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/nautobot.html</loc>
|
|
615
|
-
<lastmod>2023-11-
|
|
620
|
+
<lastmod>2023-11-30</lastmod>
|
|
616
621
|
<changefreq>daily</changefreq>
|
|
617
622
|
</url>
|
|
618
623
|
<url>
|
|
619
624
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/selinux-troubleshooting.html</loc>
|
|
620
|
-
<lastmod>2023-11-
|
|
625
|
+
<lastmod>2023-11-30</lastmod>
|
|
621
626
|
<changefreq>daily</changefreq>
|
|
622
627
|
</url>
|
|
623
628
|
<url>
|
|
624
629
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/services.html</loc>
|
|
625
|
-
<lastmod>2023-11-
|
|
630
|
+
<lastmod>2023-11-30</lastmod>
|
|
626
631
|
<changefreq>daily</changefreq>
|
|
627
632
|
</url>
|
|
628
633
|
<url>
|
|
629
634
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/migration/migrating-from-netbox.html</loc>
|
|
630
|
-
<lastmod>2023-11-
|
|
635
|
+
<lastmod>2023-11-30</lastmod>
|
|
631
636
|
<changefreq>daily</changefreq>
|
|
632
637
|
</url>
|
|
633
638
|
<url>
|
|
634
639
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/migration/migrating-from-postgresql.html</loc>
|
|
635
|
-
<lastmod>2023-11-
|
|
640
|
+
<lastmod>2023-11-30</lastmod>
|
|
636
641
|
<changefreq>daily</changefreq>
|
|
637
642
|
</url>
|
|
638
643
|
<url>
|
|
639
644
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/tools/nautobot-server.html</loc>
|
|
640
|
-
<lastmod>2023-11-
|
|
645
|
+
<lastmod>2023-11-30</lastmod>
|
|
641
646
|
<changefreq>daily</changefreq>
|
|
642
647
|
</url>
|
|
643
648
|
<url>
|
|
644
649
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/tools/nautobot-shell.html</loc>
|
|
645
|
-
<lastmod>2023-11-
|
|
650
|
+
<lastmod>2023-11-30</lastmod>
|
|
646
651
|
<changefreq>daily</changefreq>
|
|
647
652
|
</url>
|
|
648
653
|
<url>
|
|
649
654
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/database-backup.html</loc>
|
|
650
|
-
<lastmod>2023-11-
|
|
655
|
+
<lastmod>2023-11-30</lastmod>
|
|
651
656
|
<changefreq>daily</changefreq>
|
|
652
657
|
</url>
|
|
653
658
|
<url>
|
|
654
659
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/upgrading.html</loc>
|
|
655
|
-
<lastmod>2023-11-
|
|
660
|
+
<lastmod>2023-11-30</lastmod>
|
|
656
661
|
<changefreq>daily</changefreq>
|
|
657
662
|
</url>
|
|
658
663
|
<url>
|
|
659
664
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html</loc>
|
|
660
|
-
<lastmod>2023-11-
|
|
665
|
+
<lastmod>2023-11-30</lastmod>
|
|
661
666
|
<changefreq>daily</changefreq>
|
|
662
667
|
</url>
|
|
663
668
|
<url>
|
|
664
669
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html</loc>
|
|
665
|
-
<lastmod>2023-11-
|
|
670
|
+
<lastmod>2023-11-30</lastmod>
|
|
666
671
|
<changefreq>daily</changefreq>
|
|
667
672
|
</url>
|
|
668
673
|
<url>
|
|
669
674
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/index.html</loc>
|
|
670
|
-
<lastmod>2023-11-
|
|
675
|
+
<lastmod>2023-11-30</lastmod>
|
|
671
676
|
<changefreq>daily</changefreq>
|
|
672
677
|
</url>
|
|
673
678
|
<url>
|
|
674
679
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html</loc>
|
|
675
|
-
<lastmod>2023-11-
|
|
680
|
+
<lastmod>2023-11-30</lastmod>
|
|
676
681
|
<changefreq>daily</changefreq>
|
|
677
682
|
</url>
|
|
678
683
|
<url>
|
|
679
684
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html</loc>
|
|
680
|
-
<lastmod>2023-11-
|
|
685
|
+
<lastmod>2023-11-30</lastmod>
|
|
681
686
|
<changefreq>daily</changefreq>
|
|
682
687
|
</url>
|
|
683
688
|
<url>
|
|
684
689
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/for-developers.html</loc>
|
|
685
|
-
<lastmod>2023-11-
|
|
690
|
+
<lastmod>2023-11-30</lastmod>
|
|
686
691
|
<changefreq>daily</changefreq>
|
|
687
692
|
</url>
|
|
688
693
|
<url>
|
|
689
694
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html</loc>
|
|
690
|
-
<lastmod>2023-11-
|
|
695
|
+
<lastmod>2023-11-30</lastmod>
|
|
691
696
|
<changefreq>daily</changefreq>
|
|
692
697
|
</url>
|
|
693
698
|
<url>
|
|
694
699
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/circuit.html</loc>
|
|
695
|
-
<lastmod>2023-11-
|
|
700
|
+
<lastmod>2023-11-30</lastmod>
|
|
696
701
|
<changefreq>daily</changefreq>
|
|
697
702
|
</url>
|
|
698
703
|
<url>
|
|
699
704
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/circuittermination.html</loc>
|
|
700
|
-
<lastmod>2023-11-
|
|
705
|
+
<lastmod>2023-11-30</lastmod>
|
|
701
706
|
<changefreq>daily</changefreq>
|
|
702
707
|
</url>
|
|
703
708
|
<url>
|
|
704
709
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/circuittype.html</loc>
|
|
705
|
-
<lastmod>2023-11-
|
|
710
|
+
<lastmod>2023-11-30</lastmod>
|
|
706
711
|
<changefreq>daily</changefreq>
|
|
707
712
|
</url>
|
|
708
713
|
<url>
|
|
709
714
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/provider.html</loc>
|
|
710
|
-
<lastmod>2023-11-
|
|
715
|
+
<lastmod>2023-11-30</lastmod>
|
|
711
716
|
<changefreq>daily</changefreq>
|
|
712
717
|
</url>
|
|
713
718
|
<url>
|
|
714
719
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/providernetwork.html</loc>
|
|
715
|
-
<lastmod>2023-11-
|
|
720
|
+
<lastmod>2023-11-30</lastmod>
|
|
716
721
|
<changefreq>daily</changefreq>
|
|
717
722
|
</url>
|
|
718
723
|
<url>
|
|
719
724
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/cable.html</loc>
|
|
720
|
-
<lastmod>2023-11-
|
|
725
|
+
<lastmod>2023-11-30</lastmod>
|
|
721
726
|
<changefreq>daily</changefreq>
|
|
722
727
|
</url>
|
|
723
728
|
<url>
|
|
724
729
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/consoleport.html</loc>
|
|
725
|
-
<lastmod>2023-11-
|
|
730
|
+
<lastmod>2023-11-30</lastmod>
|
|
726
731
|
<changefreq>daily</changefreq>
|
|
727
732
|
</url>
|
|
728
733
|
<url>
|
|
729
734
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/consoleporttemplate.html</loc>
|
|
730
|
-
<lastmod>2023-11-
|
|
735
|
+
<lastmod>2023-11-30</lastmod>
|
|
731
736
|
<changefreq>daily</changefreq>
|
|
732
737
|
</url>
|
|
733
738
|
<url>
|
|
734
739
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/consoleserverport.html</loc>
|
|
735
|
-
<lastmod>2023-11-
|
|
740
|
+
<lastmod>2023-11-30</lastmod>
|
|
736
741
|
<changefreq>daily</changefreq>
|
|
737
742
|
</url>
|
|
738
743
|
<url>
|
|
739
744
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/consoleserverporttemplate.html</loc>
|
|
740
|
-
<lastmod>2023-11-
|
|
745
|
+
<lastmod>2023-11-30</lastmod>
|
|
741
746
|
<changefreq>daily</changefreq>
|
|
742
747
|
</url>
|
|
743
748
|
<url>
|
|
744
749
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/device.html</loc>
|
|
745
|
-
<lastmod>2023-11-
|
|
750
|
+
<lastmod>2023-11-30</lastmod>
|
|
746
751
|
<changefreq>daily</changefreq>
|
|
747
752
|
</url>
|
|
748
753
|
<url>
|
|
749
754
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/devicebay.html</loc>
|
|
750
|
-
<lastmod>2023-11-
|
|
755
|
+
<lastmod>2023-11-30</lastmod>
|
|
751
756
|
<changefreq>daily</changefreq>
|
|
752
757
|
</url>
|
|
753
758
|
<url>
|
|
754
759
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/devicebaytemplate.html</loc>
|
|
755
|
-
<lastmod>2023-11-
|
|
760
|
+
<lastmod>2023-11-30</lastmod>
|
|
756
761
|
<changefreq>daily</changefreq>
|
|
757
762
|
</url>
|
|
758
763
|
<url>
|
|
759
764
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/deviceredundancygroup.html</loc>
|
|
760
|
-
<lastmod>2023-11-
|
|
765
|
+
<lastmod>2023-11-30</lastmod>
|
|
761
766
|
<changefreq>daily</changefreq>
|
|
762
767
|
</url>
|
|
763
768
|
<url>
|
|
764
769
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/devicetype.html</loc>
|
|
765
|
-
<lastmod>2023-11-
|
|
770
|
+
<lastmod>2023-11-30</lastmod>
|
|
766
771
|
<changefreq>daily</changefreq>
|
|
767
772
|
</url>
|
|
768
773
|
<url>
|
|
769
774
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/frontport.html</loc>
|
|
770
|
-
<lastmod>2023-11-
|
|
775
|
+
<lastmod>2023-11-30</lastmod>
|
|
771
776
|
<changefreq>daily</changefreq>
|
|
772
777
|
</url>
|
|
773
778
|
<url>
|
|
774
779
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/frontporttemplate.html</loc>
|
|
775
|
-
<lastmod>2023-11-
|
|
780
|
+
<lastmod>2023-11-30</lastmod>
|
|
776
781
|
<changefreq>daily</changefreq>
|
|
777
782
|
</url>
|
|
778
783
|
<url>
|
|
779
784
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/interface.html</loc>
|
|
780
|
-
<lastmod>2023-11-
|
|
785
|
+
<lastmod>2023-11-30</lastmod>
|
|
781
786
|
<changefreq>daily</changefreq>
|
|
782
787
|
</url>
|
|
783
788
|
<url>
|
|
784
789
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/interfaceredundancygroup.html</loc>
|
|
785
|
-
<lastmod>2023-11-
|
|
790
|
+
<lastmod>2023-11-30</lastmod>
|
|
786
791
|
<changefreq>daily</changefreq>
|
|
787
792
|
</url>
|
|
788
793
|
<url>
|
|
789
794
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/interfacetemplate.html</loc>
|
|
790
|
-
<lastmod>2023-11-
|
|
795
|
+
<lastmod>2023-11-30</lastmod>
|
|
791
796
|
<changefreq>daily</changefreq>
|
|
792
797
|
</url>
|
|
793
798
|
<url>
|
|
794
799
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/inventoryitem.html</loc>
|
|
795
|
-
<lastmod>2023-11-
|
|
800
|
+
<lastmod>2023-11-30</lastmod>
|
|
796
801
|
<changefreq>daily</changefreq>
|
|
797
802
|
</url>
|
|
798
803
|
<url>
|
|
799
804
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/location.html</loc>
|
|
800
|
-
<lastmod>2023-11-
|
|
805
|
+
<lastmod>2023-11-30</lastmod>
|
|
801
806
|
<changefreq>daily</changefreq>
|
|
802
807
|
</url>
|
|
803
808
|
<url>
|
|
804
809
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/locationtype.html</loc>
|
|
805
|
-
<lastmod>2023-11-
|
|
810
|
+
<lastmod>2023-11-30</lastmod>
|
|
806
811
|
<changefreq>daily</changefreq>
|
|
807
812
|
</url>
|
|
808
813
|
<url>
|
|
809
814
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/manufacturer.html</loc>
|
|
810
|
-
<lastmod>2023-11-
|
|
815
|
+
<lastmod>2023-11-30</lastmod>
|
|
811
816
|
<changefreq>daily</changefreq>
|
|
812
817
|
</url>
|
|
813
818
|
<url>
|
|
814
819
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/platform.html</loc>
|
|
815
|
-
<lastmod>2023-11-
|
|
820
|
+
<lastmod>2023-11-30</lastmod>
|
|
816
821
|
<changefreq>daily</changefreq>
|
|
817
822
|
</url>
|
|
818
823
|
<url>
|
|
819
824
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/powerfeed.html</loc>
|
|
820
|
-
<lastmod>2023-11-
|
|
825
|
+
<lastmod>2023-11-30</lastmod>
|
|
821
826
|
<changefreq>daily</changefreq>
|
|
822
827
|
</url>
|
|
823
828
|
<url>
|
|
824
829
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/poweroutlet.html</loc>
|
|
825
|
-
<lastmod>2023-11-
|
|
830
|
+
<lastmod>2023-11-30</lastmod>
|
|
826
831
|
<changefreq>daily</changefreq>
|
|
827
832
|
</url>
|
|
828
833
|
<url>
|
|
829
834
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/poweroutlettemplate.html</loc>
|
|
830
|
-
<lastmod>2023-11-
|
|
835
|
+
<lastmod>2023-11-30</lastmod>
|
|
831
836
|
<changefreq>daily</changefreq>
|
|
832
837
|
</url>
|
|
833
838
|
<url>
|
|
834
839
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/powerpanel.html</loc>
|
|
835
|
-
<lastmod>2023-11-
|
|
840
|
+
<lastmod>2023-11-30</lastmod>
|
|
836
841
|
<changefreq>daily</changefreq>
|
|
837
842
|
</url>
|
|
838
843
|
<url>
|
|
839
844
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/powerport.html</loc>
|
|
840
|
-
<lastmod>2023-11-
|
|
845
|
+
<lastmod>2023-11-30</lastmod>
|
|
841
846
|
<changefreq>daily</changefreq>
|
|
842
847
|
</url>
|
|
843
848
|
<url>
|
|
844
849
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/powerporttemplate.html</loc>
|
|
845
|
-
<lastmod>2023-11-
|
|
850
|
+
<lastmod>2023-11-30</lastmod>
|
|
846
851
|
<changefreq>daily</changefreq>
|
|
847
852
|
</url>
|
|
848
853
|
<url>
|
|
849
854
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rack.html</loc>
|
|
850
|
-
<lastmod>2023-11-
|
|
855
|
+
<lastmod>2023-11-30</lastmod>
|
|
851
856
|
<changefreq>daily</changefreq>
|
|
852
857
|
</url>
|
|
853
858
|
<url>
|
|
854
859
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rackgroup.html</loc>
|
|
855
|
-
<lastmod>2023-11-
|
|
860
|
+
<lastmod>2023-11-30</lastmod>
|
|
856
861
|
<changefreq>daily</changefreq>
|
|
857
862
|
</url>
|
|
858
863
|
<url>
|
|
859
864
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rackreservation.html</loc>
|
|
860
|
-
<lastmod>2023-11-
|
|
865
|
+
<lastmod>2023-11-30</lastmod>
|
|
861
866
|
<changefreq>daily</changefreq>
|
|
862
867
|
</url>
|
|
863
868
|
<url>
|
|
864
869
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rearport.html</loc>
|
|
865
|
-
<lastmod>2023-11-
|
|
870
|
+
<lastmod>2023-11-30</lastmod>
|
|
866
871
|
<changefreq>daily</changefreq>
|
|
867
872
|
</url>
|
|
868
873
|
<url>
|
|
869
874
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rearporttemplate.html</loc>
|
|
870
|
-
<lastmod>2023-11-
|
|
875
|
+
<lastmod>2023-11-30</lastmod>
|
|
871
876
|
<changefreq>daily</changefreq>
|
|
872
877
|
</url>
|
|
873
878
|
<url>
|
|
874
879
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/virtualchassis.html</loc>
|
|
875
|
-
<lastmod>2023-11-
|
|
880
|
+
<lastmod>2023-11-30</lastmod>
|
|
876
881
|
<changefreq>daily</changefreq>
|
|
877
882
|
</url>
|
|
878
883
|
<url>
|
|
879
884
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/extras/configcontext.html</loc>
|
|
880
|
-
<lastmod>2023-11-
|
|
885
|
+
<lastmod>2023-11-30</lastmod>
|
|
881
886
|
<changefreq>daily</changefreq>
|
|
882
887
|
</url>
|
|
883
888
|
<url>
|
|
884
889
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/extras/configcontextschema.html</loc>
|
|
885
|
-
<lastmod>2023-11-
|
|
890
|
+
<lastmod>2023-11-30</lastmod>
|
|
886
891
|
<changefreq>daily</changefreq>
|
|
887
892
|
</url>
|
|
888
893
|
<url>
|
|
889
894
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/ipaddress.html</loc>
|
|
890
|
-
<lastmod>2023-11-
|
|
895
|
+
<lastmod>2023-11-30</lastmod>
|
|
891
896
|
<changefreq>daily</changefreq>
|
|
892
897
|
</url>
|
|
893
898
|
<url>
|
|
894
899
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/namespace.html</loc>
|
|
895
|
-
<lastmod>2023-11-
|
|
900
|
+
<lastmod>2023-11-30</lastmod>
|
|
896
901
|
<changefreq>daily</changefreq>
|
|
897
902
|
</url>
|
|
898
903
|
<url>
|
|
899
904
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/prefix.html</loc>
|
|
900
|
-
<lastmod>2023-11-
|
|
905
|
+
<lastmod>2023-11-30</lastmod>
|
|
901
906
|
<changefreq>daily</changefreq>
|
|
902
907
|
</url>
|
|
903
908
|
<url>
|
|
904
909
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/rir.html</loc>
|
|
905
|
-
<lastmod>2023-11-
|
|
910
|
+
<lastmod>2023-11-30</lastmod>
|
|
906
911
|
<changefreq>daily</changefreq>
|
|
907
912
|
</url>
|
|
908
913
|
<url>
|
|
909
914
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/routetarget.html</loc>
|
|
910
|
-
<lastmod>2023-11-
|
|
915
|
+
<lastmod>2023-11-30</lastmod>
|
|
911
916
|
<changefreq>daily</changefreq>
|
|
912
917
|
</url>
|
|
913
918
|
<url>
|
|
914
919
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/service.html</loc>
|
|
915
|
-
<lastmod>2023-11-
|
|
920
|
+
<lastmod>2023-11-30</lastmod>
|
|
916
921
|
<changefreq>daily</changefreq>
|
|
917
922
|
</url>
|
|
918
923
|
<url>
|
|
919
924
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/vlan.html</loc>
|
|
920
|
-
<lastmod>2023-11-
|
|
925
|
+
<lastmod>2023-11-30</lastmod>
|
|
921
926
|
<changefreq>daily</changefreq>
|
|
922
927
|
</url>
|
|
923
928
|
<url>
|
|
924
929
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/vlangroup.html</loc>
|
|
925
|
-
<lastmod>2023-11-
|
|
930
|
+
<lastmod>2023-11-30</lastmod>
|
|
926
931
|
<changefreq>daily</changefreq>
|
|
927
932
|
</url>
|
|
928
933
|
<url>
|
|
929
934
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/vrf.html</loc>
|
|
930
|
-
<lastmod>2023-11-
|
|
935
|
+
<lastmod>2023-11-30</lastmod>
|
|
931
936
|
<changefreq>daily</changefreq>
|
|
932
937
|
</url>
|
|
933
938
|
<url>
|
|
934
939
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/tenancy/tenant.html</loc>
|
|
935
|
-
<lastmod>2023-11-
|
|
940
|
+
<lastmod>2023-11-30</lastmod>
|
|
936
941
|
<changefreq>daily</changefreq>
|
|
937
942
|
</url>
|
|
938
943
|
<url>
|
|
939
944
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/tenancy/tenantgroup.html</loc>
|
|
940
|
-
<lastmod>2023-11-
|
|
945
|
+
<lastmod>2023-11-30</lastmod>
|
|
941
946
|
<changefreq>daily</changefreq>
|
|
942
947
|
</url>
|
|
943
948
|
<url>
|
|
944
949
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/cluster.html</loc>
|
|
945
|
-
<lastmod>2023-11-
|
|
950
|
+
<lastmod>2023-11-30</lastmod>
|
|
946
951
|
<changefreq>daily</changefreq>
|
|
947
952
|
</url>
|
|
948
953
|
<url>
|
|
949
954
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/clustergroup.html</loc>
|
|
950
|
-
<lastmod>2023-11-
|
|
955
|
+
<lastmod>2023-11-30</lastmod>
|
|
951
956
|
<changefreq>daily</changefreq>
|
|
952
957
|
</url>
|
|
953
958
|
<url>
|
|
954
959
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/clustertype.html</loc>
|
|
955
|
-
<lastmod>2023-11-
|
|
960
|
+
<lastmod>2023-11-30</lastmod>
|
|
956
961
|
<changefreq>daily</changefreq>
|
|
957
962
|
</url>
|
|
958
963
|
<url>
|
|
959
964
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/virtualmachine.html</loc>
|
|
960
|
-
<lastmod>2023-11-
|
|
965
|
+
<lastmod>2023-11-30</lastmod>
|
|
961
966
|
<changefreq>daily</changefreq>
|
|
962
967
|
</url>
|
|
963
968
|
<url>
|
|
964
969
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/vminterface.html</loc>
|
|
965
|
-
<lastmod>2023-11-
|
|
970
|
+
<lastmod>2023-11-30</lastmod>
|
|
966
971
|
<changefreq>daily</changefreq>
|
|
967
972
|
</url>
|
|
968
973
|
<url>
|
|
969
974
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/custom-fields.html</loc>
|
|
970
|
-
<lastmod>2023-11-
|
|
975
|
+
<lastmod>2023-11-30</lastmod>
|
|
971
976
|
<changefreq>daily</changefreq>
|
|
972
977
|
</url>
|
|
973
978
|
<url>
|
|
974
979
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/git-data-source.html</loc>
|
|
975
|
-
<lastmod>2023-11-
|
|
980
|
+
<lastmod>2023-11-30</lastmod>
|
|
976
981
|
<changefreq>daily</changefreq>
|
|
977
982
|
</url>
|
|
978
983
|
<url>
|
|
979
984
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/graphql.html</loc>
|
|
980
|
-
<lastmod>2023-11-
|
|
985
|
+
<lastmod>2023-11-30</lastmod>
|
|
981
986
|
<changefreq>daily</changefreq>
|
|
982
987
|
</url>
|
|
983
988
|
<url>
|
|
984
989
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/ip-address-merge-tool.html</loc>
|
|
985
|
-
<lastmod>2023-11-
|
|
990
|
+
<lastmod>2023-11-30</lastmod>
|
|
986
991
|
<changefreq>daily</changefreq>
|
|
987
992
|
</url>
|
|
988
993
|
<url>
|
|
989
994
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/relationships.html</loc>
|
|
990
|
-
<lastmod>2023-11-
|
|
995
|
+
<lastmod>2023-11-30</lastmod>
|
|
991
996
|
<changefreq>daily</changefreq>
|
|
992
997
|
</url>
|
|
993
998
|
<url>
|
|
994
999
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/index.html</loc>
|
|
995
|
-
<lastmod>2023-11-
|
|
1000
|
+
<lastmod>2023-11-30</lastmod>
|
|
996
1001
|
<changefreq>daily</changefreq>
|
|
997
1002
|
</url>
|
|
998
1003
|
<url>
|
|
999
1004
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/creating-devices.html</loc>
|
|
1000
|
-
<lastmod>2023-11-
|
|
1005
|
+
<lastmod>2023-11-30</lastmod>
|
|
1001
1006
|
<changefreq>daily</changefreq>
|
|
1002
1007
|
</url>
|
|
1003
1008
|
<url>
|
|
1004
1009
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html</loc>
|
|
1005
|
-
<lastmod>2023-11-
|
|
1010
|
+
<lastmod>2023-11-30</lastmod>
|
|
1006
1011
|
<changefreq>daily</changefreq>
|
|
1007
1012
|
</url>
|
|
1008
1013
|
<url>
|
|
1009
1014
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/interfaces.html</loc>
|
|
1010
|
-
<lastmod>2023-11-
|
|
1015
|
+
<lastmod>2023-11-30</lastmod>
|
|
1011
1016
|
<changefreq>daily</changefreq>
|
|
1012
1017
|
</url>
|
|
1013
1018
|
<url>
|
|
1014
1019
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/ipam.html</loc>
|
|
1015
|
-
<lastmod>2023-11-
|
|
1020
|
+
<lastmod>2023-11-30</lastmod>
|
|
1016
1021
|
<changefreq>daily</changefreq>
|
|
1017
1022
|
</url>
|
|
1018
1023
|
<url>
|
|
1019
1024
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/platforms.html</loc>
|
|
1020
|
-
<lastmod>2023-11-
|
|
1025
|
+
<lastmod>2023-11-30</lastmod>
|
|
1021
1026
|
<changefreq>daily</changefreq>
|
|
1022
1027
|
</url>
|
|
1023
1028
|
<url>
|
|
1024
1029
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/search-bar.html</loc>
|
|
1025
|
-
<lastmod>2023-11-
|
|
1030
|
+
<lastmod>2023-11-30</lastmod>
|
|
1026
1031
|
<changefreq>daily</changefreq>
|
|
1027
1032
|
</url>
|
|
1028
1033
|
<url>
|
|
1029
1034
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/tenants.html</loc>
|
|
1030
|
-
<lastmod>2023-11-
|
|
1035
|
+
<lastmod>2023-11-30</lastmod>
|
|
1031
1036
|
<changefreq>daily</changefreq>
|
|
1032
1037
|
</url>
|
|
1033
1038
|
<url>
|
|
1034
1039
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html</loc>
|
|
1035
|
-
<lastmod>2023-11-
|
|
1040
|
+
<lastmod>2023-11-30</lastmod>
|
|
1036
1041
|
<changefreq>daily</changefreq>
|
|
1037
1042
|
</url>
|
|
1038
1043
|
<url>
|
|
1039
1044
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/change-logging.html</loc>
|
|
1040
|
-
<lastmod>2023-11-
|
|
1045
|
+
<lastmod>2023-11-30</lastmod>
|
|
1041
1046
|
<changefreq>daily</changefreq>
|
|
1042
1047
|
</url>
|
|
1043
1048
|
<url>
|
|
1044
1049
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/computedfield.html</loc>
|
|
1045
|
-
<lastmod>2023-11-
|
|
1050
|
+
<lastmod>2023-11-30</lastmod>
|
|
1046
1051
|
<changefreq>daily</changefreq>
|
|
1047
1052
|
</url>
|
|
1048
1053
|
<url>
|
|
1049
1054
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/customfield.html</loc>
|
|
1050
|
-
<lastmod>2023-11-
|
|
1055
|
+
<lastmod>2023-11-30</lastmod>
|
|
1051
1056
|
<changefreq>daily</changefreq>
|
|
1052
1057
|
</url>
|
|
1053
1058
|
<url>
|
|
1054
1059
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/customlink.html</loc>
|
|
1055
|
-
<lastmod>2023-11-
|
|
1060
|
+
<lastmod>2023-11-30</lastmod>
|
|
1056
1061
|
<changefreq>daily</changefreq>
|
|
1057
1062
|
</url>
|
|
1058
1063
|
<url>
|
|
1059
1064
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/dynamicgroup.html</loc>
|
|
1060
|
-
<lastmod>2023-11-
|
|
1065
|
+
<lastmod>2023-11-30</lastmod>
|
|
1061
1066
|
<changefreq>daily</changefreq>
|
|
1062
1067
|
</url>
|
|
1063
1068
|
<url>
|
|
1064
1069
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/exporttemplate.html</loc>
|
|
1065
|
-
<lastmod>2023-11-
|
|
1070
|
+
<lastmod>2023-11-30</lastmod>
|
|
1071
|
+
<changefreq>daily</changefreq>
|
|
1072
|
+
</url>
|
|
1073
|
+
<url>
|
|
1074
|
+
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/externalintegration.html</loc>
|
|
1075
|
+
<lastmod>2023-11-30</lastmod>
|
|
1066
1076
|
<changefreq>daily</changefreq>
|
|
1067
1077
|
</url>
|
|
1068
1078
|
<url>
|
|
1069
1079
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/gitrepository.html</loc>
|
|
1070
|
-
<lastmod>2023-11-
|
|
1080
|
+
<lastmod>2023-11-30</lastmod>
|
|
1071
1081
|
<changefreq>daily</changefreq>
|
|
1072
1082
|
</url>
|
|
1073
1083
|
<url>
|
|
1074
1084
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/graphql.html</loc>
|
|
1075
|
-
<lastmod>2023-11-
|
|
1085
|
+
<lastmod>2023-11-30</lastmod>
|
|
1076
1086
|
<changefreq>daily</changefreq>
|
|
1077
1087
|
</url>
|
|
1078
1088
|
<url>
|
|
1079
1089
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/graphqlquery.html</loc>
|
|
1080
|
-
<lastmod>2023-11-
|
|
1090
|
+
<lastmod>2023-11-30</lastmod>
|
|
1081
1091
|
<changefreq>daily</changefreq>
|
|
1082
1092
|
</url>
|
|
1083
1093
|
<url>
|
|
1084
1094
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/imageattachment.html</loc>
|
|
1085
|
-
<lastmod>2023-11-
|
|
1095
|
+
<lastmod>2023-11-30</lastmod>
|
|
1086
1096
|
<changefreq>daily</changefreq>
|
|
1087
1097
|
</url>
|
|
1088
1098
|
<url>
|
|
1089
1099
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/napalm.html</loc>
|
|
1090
|
-
<lastmod>2023-11-
|
|
1100
|
+
<lastmod>2023-11-30</lastmod>
|
|
1091
1101
|
<changefreq>daily</changefreq>
|
|
1092
1102
|
</url>
|
|
1093
1103
|
<url>
|
|
1094
1104
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/note.html</loc>
|
|
1095
|
-
<lastmod>2023-11-
|
|
1105
|
+
<lastmod>2023-11-30</lastmod>
|
|
1096
1106
|
<changefreq>daily</changefreq>
|
|
1097
1107
|
</url>
|
|
1098
1108
|
<url>
|
|
1099
1109
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/relationship.html</loc>
|
|
1100
|
-
<lastmod>2023-11-
|
|
1110
|
+
<lastmod>2023-11-30</lastmod>
|
|
1101
1111
|
<changefreq>daily</changefreq>
|
|
1102
1112
|
</url>
|
|
1103
1113
|
<url>
|
|
1104
1114
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/role.html</loc>
|
|
1105
|
-
<lastmod>2023-11-
|
|
1115
|
+
<lastmod>2023-11-30</lastmod>
|
|
1106
1116
|
<changefreq>daily</changefreq>
|
|
1107
1117
|
</url>
|
|
1108
1118
|
<url>
|
|
1109
1119
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/secret.html</loc>
|
|
1110
|
-
<lastmod>2023-11-
|
|
1120
|
+
<lastmod>2023-11-30</lastmod>
|
|
1111
1121
|
<changefreq>daily</changefreq>
|
|
1112
1122
|
</url>
|
|
1113
1123
|
<url>
|
|
1114
1124
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/status.html</loc>
|
|
1115
|
-
<lastmod>2023-11-
|
|
1125
|
+
<lastmod>2023-11-30</lastmod>
|
|
1116
1126
|
<changefreq>daily</changefreq>
|
|
1117
1127
|
</url>
|
|
1118
1128
|
<url>
|
|
1119
1129
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/tag.html</loc>
|
|
1120
|
-
<lastmod>2023-11-
|
|
1130
|
+
<lastmod>2023-11-30</lastmod>
|
|
1121
1131
|
<changefreq>daily</changefreq>
|
|
1122
1132
|
</url>
|
|
1123
1133
|
<url>
|
|
1124
1134
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/template-filters.html</loc>
|
|
1125
|
-
<lastmod>2023-11-
|
|
1135
|
+
<lastmod>2023-11-30</lastmod>
|
|
1126
1136
|
<changefreq>daily</changefreq>
|
|
1127
1137
|
</url>
|
|
1128
1138
|
<url>
|
|
1129
1139
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/webhook.html</loc>
|
|
1130
|
-
<lastmod>2023-11-
|
|
1140
|
+
<lastmod>2023-11-30</lastmod>
|
|
1131
1141
|
<changefreq>daily</changefreq>
|
|
1132
1142
|
</url>
|
|
1133
1143
|
<url>
|
|
1134
1144
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/index.html</loc>
|
|
1135
|
-
<lastmod>2023-11-
|
|
1145
|
+
<lastmod>2023-11-30</lastmod>
|
|
1136
1146
|
<changefreq>daily</changefreq>
|
|
1137
1147
|
</url>
|
|
1138
1148
|
<url>
|
|
1139
1149
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html</loc>
|
|
1140
|
-
<lastmod>2023-11-
|
|
1150
|
+
<lastmod>2023-11-30</lastmod>
|
|
1141
1151
|
<changefreq>daily</changefreq>
|
|
1142
1152
|
</url>
|
|
1143
1153
|
<url>
|
|
1144
1154
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/jobbutton.html</loc>
|
|
1145
|
-
<lastmod>2023-11-
|
|
1155
|
+
<lastmod>2023-11-30</lastmod>
|
|
1146
1156
|
<changefreq>daily</changefreq>
|
|
1147
1157
|
</url>
|
|
1148
1158
|
<url>
|
|
1149
1159
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/jobhook.html</loc>
|
|
1150
|
-
<lastmod>2023-11-
|
|
1160
|
+
<lastmod>2023-11-30</lastmod>
|
|
1151
1161
|
<changefreq>daily</changefreq>
|
|
1152
1162
|
</url>
|
|
1153
1163
|
<url>
|
|
1154
1164
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/models.html</loc>
|
|
1155
|
-
<lastmod>2023-11-
|
|
1165
|
+
<lastmod>2023-11-30</lastmod>
|
|
1156
1166
|
<changefreq>daily</changefreq>
|
|
1157
1167
|
</url>
|
|
1158
1168
|
<url>
|
|
1159
1169
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/rest-api/authentication.html</loc>
|
|
1160
|
-
<lastmod>2023-11-
|
|
1170
|
+
<lastmod>2023-11-30</lastmod>
|
|
1161
1171
|
<changefreq>daily</changefreq>
|
|
1162
1172
|
</url>
|
|
1163
1173
|
<url>
|
|
1164
1174
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/rest-api/filtering.html</loc>
|
|
1165
|
-
<lastmod>2023-11-
|
|
1175
|
+
<lastmod>2023-11-30</lastmod>
|
|
1166
1176
|
<changefreq>daily</changefreq>
|
|
1167
1177
|
</url>
|
|
1168
1178
|
<url>
|
|
1169
1179
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/rest-api/overview.html</loc>
|
|
1170
|
-
<lastmod>2023-11-
|
|
1180
|
+
<lastmod>2023-11-30</lastmod>
|
|
1171
1181
|
<changefreq>daily</changefreq>
|
|
1172
1182
|
</url>
|
|
1173
1183
|
<url>
|
|
1174
1184
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/rest-api/ui-related-endpoints.html</loc>
|
|
1175
|
-
<lastmod>2023-11-
|
|
1185
|
+
<lastmod>2023-11-30</lastmod>
|
|
1176
1186
|
<changefreq>daily</changefreq>
|
|
1177
1187
|
</url>
|
|
1178
1188
|
<url>
|
|
1179
1189
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/users/objectpermission.html</loc>
|
|
1180
|
-
<lastmod>2023-11-
|
|
1190
|
+
<lastmod>2023-11-30</lastmod>
|
|
1181
1191
|
<changefreq>daily</changefreq>
|
|
1182
1192
|
</url>
|
|
1183
1193
|
<url>
|
|
1184
1194
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/users/token.html</loc>
|
|
1185
|
-
<lastmod>2023-11-
|
|
1195
|
+
<lastmod>2023-11-30</lastmod>
|
|
1186
1196
|
<changefreq>daily</changefreq>
|
|
1187
1197
|
</url>
|
|
1188
1198
|
</urlset>
|