nautobot 2.2.7__py3-none-any.whl → 2.2.9__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/core/filters.py +15 -1
- nautobot/core/graphql/generators.py +4 -4
- nautobot/core/graphql/schema.py +9 -7
- nautobot/core/jobs/__init__.py +4 -1
- nautobot/core/settings.py +13 -2
- nautobot/core/settings.yaml +14 -0
- nautobot/core/templates/nautobot_config.py.j2 +15 -0
- nautobot/core/tests/integration/test_general_functionality.py +36 -0
- nautobot/core/tests/test_graphql.py +51 -5
- nautobot/core/tests/test_jobs.py +82 -2
- nautobot/core/tests/test_templatetags_netutils.py +3 -3
- nautobot/dcim/models/device_components.py +7 -0
- nautobot/dcim/models/devices.py +14 -3
- nautobot/dcim/tables/devices.py +19 -4
- nautobot/dcim/templates/dcim/deviceredundancygroup_retrieve.html +6 -0
- nautobot/dcim/tests/test_models.py +106 -0
- nautobot/dcim/tests/test_views.py +13 -0
- nautobot/dcim/views.py +8 -2
- nautobot/extras/api/views.py +7 -59
- nautobot/extras/homepage.py +12 -2
- nautobot/extras/jobs.py +2 -2
- nautobot/extras/models/jobs.py +81 -0
- nautobot/extras/models/relationships.py +12 -0
- nautobot/extras/signals.py +14 -1
- nautobot/extras/tables.py +36 -5
- nautobot/extras/templates/extras/job_detail.html +11 -0
- nautobot/extras/tests/integration/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_relationships.py +221 -1
- nautobot/extras/tests/test_views.py +21 -0
- nautobot/extras/utils.py +34 -5
- nautobot/extras/views.py +20 -46
- nautobot/ipam/models.py +9 -12
- nautobot/ipam/tests/test_models.py +3 -2
- nautobot/ipam/views.py +2 -8
- nautobot/project-static/css/base.css +1 -0
- nautobot/project-static/docs/404.html +4 -4
- nautobot/project-static/docs/apps/index.html +4 -4
- nautobot/project-static/docs/apps/nautobot-apps.html +4 -4
- nautobot/project-static/docs/assets/stylesheets/{main.6543a935.min.css → main.76a95c52.min.css} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.6543a935.min.css.map → main.76a95c52.min.css.map} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +6 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +4 -4
- nautobot/project-static/docs/development/apps/api/configuration-view.html +4 -4
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +4 -4
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +4 -4
- nautobot/project-static/docs/development/apps/api/models/global-search.html +4 -4
- nautobot/project-static/docs/development/apps/api/models/graphql.html +4 -4
- nautobot/project-static/docs/development/apps/api/models/index.html +4 -4
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +4 -4
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +4 -4
- nautobot/project-static/docs/development/apps/api/prometheus.html +4 -4
- nautobot/project-static/docs/development/apps/api/setup.html +4 -4
- nautobot/project-static/docs/development/apps/api/testing.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +4 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/base-template.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/index.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/notes.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +4 -4
- nautobot/project-static/docs/development/apps/api/views/urls.html +4 -4
- nautobot/project-static/docs/development/apps/index.html +4 -4
- nautobot/project-static/docs/development/apps/migration/code-updates.html +4 -4
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +4 -4
- nautobot/project-static/docs/development/apps/migration/from-v1.html +4 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +4 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +4 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +4 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +4 -4
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +4 -4
- nautobot/project-static/docs/development/core/application-registry.html +4 -4
- nautobot/project-static/docs/development/core/best-practices.html +4 -4
- nautobot/project-static/docs/development/core/bootstrap-ui.html +4 -4
- nautobot/project-static/docs/development/core/caching.html +4 -4
- nautobot/project-static/docs/development/core/controllers.html +4 -4
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +4 -4
- nautobot/project-static/docs/development/core/generic-views.html +4 -4
- nautobot/project-static/docs/development/core/getting-started.html +4 -4
- nautobot/project-static/docs/development/core/homepage.html +4 -4
- nautobot/project-static/docs/development/core/index.html +15 -4
- nautobot/project-static/docs/development/core/model-checklist.html +4 -4
- nautobot/project-static/docs/development/core/model-features.html +4 -4
- nautobot/project-static/docs/development/core/natural-keys.html +4 -4
- nautobot/project-static/docs/development/core/navigation-menu.html +4 -4
- nautobot/project-static/docs/development/core/release-checklist.html +4 -4
- nautobot/project-static/docs/development/core/role-internals.html +4 -4
- nautobot/project-static/docs/development/core/settings.html +4 -4
- nautobot/project-static/docs/development/core/style-guide.html +4 -4
- nautobot/project-static/docs/development/core/templates.html +4 -4
- nautobot/project-static/docs/development/core/testing.html +4 -4
- nautobot/project-static/docs/development/core/user-preferences.html +4 -4
- nautobot/project-static/docs/development/index.html +4 -4
- nautobot/project-static/docs/development/jobs/index.html +379 -365
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +4 -4
- nautobot/project-static/docs/index.html +8228 -13
- nautobot/project-static/docs/overview/application_stack.html +4 -4
- nautobot/project-static/docs/overview/design_philosophy.html +6 -6
- nautobot/project-static/docs/overview/index.html +13 -8228
- nautobot/project-static/docs/release-notes/index.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.0.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.1.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.2.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.3.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.4.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.5.html +4 -4
- nautobot/project-static/docs/release-notes/version-1.6.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.0.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.1.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.2.html +419 -136
- nautobot/project-static/docs/requirements.txt +2 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +260 -260
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +36 -4
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +8 -4
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +8 -8
- nautobot/project-static/docs/user-guide/administration/installation/index.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +9 -5
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation/services.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +4 -4
- nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +4 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +4 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +4 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +62 -10
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +4 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +4 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +4 -4
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +4 -4
- nautobot/project-static/docs/user-guide/index.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +4 -4
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +4 -4
- nautobot/virtualization/tables.py +2 -5
- {nautobot-2.2.7.dist-info → nautobot-2.2.9.dist-info}/METADATA +3 -3
- {nautobot-2.2.7.dist-info → nautobot-2.2.9.dist-info}/RECORD +306 -305
- {nautobot-2.2.7.dist-info → nautobot-2.2.9.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.7.dist-info → nautobot-2.2.9.dist-info}/NOTICE +0 -0
- {nautobot-2.2.7.dist-info → nautobot-2.2.9.dist-info}/WHEEL +0 -0
- {nautobot-2.2.7.dist-info → nautobot-2.2.9.dist-info}/entry_points.txt +0 -0
|
@@ -1,1283 +1,1283 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
3
|
+
<url>
|
|
4
|
+
<loc>https://docs.nautobot.com/projects/core/en/stable/index.html</loc>
|
|
5
|
+
<lastmod>2024-08-05</lastmod>
|
|
6
|
+
<changefreq>daily</changefreq>
|
|
7
|
+
</url>
|
|
3
8
|
<url>
|
|
4
9
|
<loc>https://docs.nautobot.com/projects/core/en/stable/apps/index.html</loc>
|
|
5
|
-
<lastmod>2024-
|
|
10
|
+
<lastmod>2024-08-05</lastmod>
|
|
6
11
|
<changefreq>daily</changefreq>
|
|
7
12
|
</url>
|
|
8
13
|
<url>
|
|
9
14
|
<loc>https://docs.nautobot.com/projects/core/en/stable/apps/nautobot-apps.html</loc>
|
|
10
|
-
<lastmod>2024-
|
|
15
|
+
<lastmod>2024-08-05</lastmod>
|
|
11
16
|
<changefreq>daily</changefreq>
|
|
12
17
|
</url>
|
|
13
18
|
<url>
|
|
14
19
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/__init__.html</loc>
|
|
15
|
-
<lastmod>2024-
|
|
20
|
+
<lastmod>2024-08-05</lastmod>
|
|
16
21
|
<changefreq>daily</changefreq>
|
|
17
22
|
</url>
|
|
18
23
|
<url>
|
|
19
24
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/admin.html</loc>
|
|
20
|
-
<lastmod>2024-
|
|
25
|
+
<lastmod>2024-08-05</lastmod>
|
|
21
26
|
<changefreq>daily</changefreq>
|
|
22
27
|
</url>
|
|
23
28
|
<url>
|
|
24
29
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/api.html</loc>
|
|
25
|
-
<lastmod>2024-
|
|
30
|
+
<lastmod>2024-08-05</lastmod>
|
|
26
31
|
<changefreq>daily</changefreq>
|
|
27
32
|
</url>
|
|
28
33
|
<url>
|
|
29
34
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/change_logging.html</loc>
|
|
30
|
-
<lastmod>2024-
|
|
35
|
+
<lastmod>2024-08-05</lastmod>
|
|
31
36
|
<changefreq>daily</changefreq>
|
|
32
37
|
</url>
|
|
33
38
|
<url>
|
|
34
39
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/choices.html</loc>
|
|
35
|
-
<lastmod>2024-
|
|
40
|
+
<lastmod>2024-08-05</lastmod>
|
|
36
41
|
<changefreq>daily</changefreq>
|
|
37
42
|
</url>
|
|
38
43
|
<url>
|
|
39
44
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/config.html</loc>
|
|
40
|
-
<lastmod>2024-
|
|
45
|
+
<lastmod>2024-08-05</lastmod>
|
|
41
46
|
<changefreq>daily</changefreq>
|
|
42
47
|
</url>
|
|
43
48
|
<url>
|
|
44
49
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/constants.html</loc>
|
|
45
|
-
<lastmod>2024-
|
|
50
|
+
<lastmod>2024-08-05</lastmod>
|
|
46
51
|
<changefreq>daily</changefreq>
|
|
47
52
|
</url>
|
|
48
53
|
<url>
|
|
49
54
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/datasources.html</loc>
|
|
50
|
-
<lastmod>2024-
|
|
55
|
+
<lastmod>2024-08-05</lastmod>
|
|
51
56
|
<changefreq>daily</changefreq>
|
|
52
57
|
</url>
|
|
53
58
|
<url>
|
|
54
59
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/exceptions.html</loc>
|
|
55
|
-
<lastmod>2024-
|
|
60
|
+
<lastmod>2024-08-05</lastmod>
|
|
56
61
|
<changefreq>daily</changefreq>
|
|
57
62
|
</url>
|
|
58
63
|
<url>
|
|
59
64
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/factory.html</loc>
|
|
60
|
-
<lastmod>2024-
|
|
65
|
+
<lastmod>2024-08-05</lastmod>
|
|
61
66
|
<changefreq>daily</changefreq>
|
|
62
67
|
</url>
|
|
63
68
|
<url>
|
|
64
69
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/filters.html</loc>
|
|
65
|
-
<lastmod>2024-
|
|
70
|
+
<lastmod>2024-08-05</lastmod>
|
|
66
71
|
<changefreq>daily</changefreq>
|
|
67
72
|
</url>
|
|
68
73
|
<url>
|
|
69
74
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/forms.html</loc>
|
|
70
|
-
<lastmod>2024-
|
|
75
|
+
<lastmod>2024-08-05</lastmod>
|
|
71
76
|
<changefreq>daily</changefreq>
|
|
72
77
|
</url>
|
|
73
78
|
<url>
|
|
74
79
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/graphql.html</loc>
|
|
75
|
-
<lastmod>2024-
|
|
80
|
+
<lastmod>2024-08-05</lastmod>
|
|
76
81
|
<changefreq>daily</changefreq>
|
|
77
82
|
</url>
|
|
78
83
|
<url>
|
|
79
84
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/jobs.html</loc>
|
|
80
|
-
<lastmod>2024-
|
|
85
|
+
<lastmod>2024-08-05</lastmod>
|
|
81
86
|
<changefreq>daily</changefreq>
|
|
82
87
|
</url>
|
|
83
88
|
<url>
|
|
84
89
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/models.html</loc>
|
|
85
|
-
<lastmod>2024-
|
|
90
|
+
<lastmod>2024-08-05</lastmod>
|
|
86
91
|
<changefreq>daily</changefreq>
|
|
87
92
|
</url>
|
|
88
93
|
<url>
|
|
89
94
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/querysets.html</loc>
|
|
90
|
-
<lastmod>2024-
|
|
95
|
+
<lastmod>2024-08-05</lastmod>
|
|
91
96
|
<changefreq>daily</changefreq>
|
|
92
97
|
</url>
|
|
93
98
|
<url>
|
|
94
99
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/secrets.html</loc>
|
|
95
|
-
<lastmod>2024-
|
|
100
|
+
<lastmod>2024-08-05</lastmod>
|
|
96
101
|
<changefreq>daily</changefreq>
|
|
97
102
|
</url>
|
|
98
103
|
<url>
|
|
99
104
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/tables.html</loc>
|
|
100
|
-
<lastmod>2024-
|
|
105
|
+
<lastmod>2024-08-05</lastmod>
|
|
101
106
|
<changefreq>daily</changefreq>
|
|
102
107
|
</url>
|
|
103
108
|
<url>
|
|
104
109
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/testing.html</loc>
|
|
105
|
-
<lastmod>2024-
|
|
110
|
+
<lastmod>2024-08-05</lastmod>
|
|
106
111
|
<changefreq>daily</changefreq>
|
|
107
112
|
</url>
|
|
108
113
|
<url>
|
|
109
114
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/ui.html</loc>
|
|
110
|
-
<lastmod>2024-
|
|
115
|
+
<lastmod>2024-08-05</lastmod>
|
|
111
116
|
<changefreq>daily</changefreq>
|
|
112
117
|
</url>
|
|
113
118
|
<url>
|
|
114
119
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/urls.html</loc>
|
|
115
|
-
<lastmod>2024-
|
|
120
|
+
<lastmod>2024-08-05</lastmod>
|
|
116
121
|
<changefreq>daily</changefreq>
|
|
117
122
|
</url>
|
|
118
123
|
<url>
|
|
119
124
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/utils.html</loc>
|
|
120
|
-
<lastmod>2024-
|
|
125
|
+
<lastmod>2024-08-05</lastmod>
|
|
121
126
|
<changefreq>daily</changefreq>
|
|
122
127
|
</url>
|
|
123
128
|
<url>
|
|
124
129
|
<loc>https://docs.nautobot.com/projects/core/en/stable/code-reference/nautobot/apps/views.html</loc>
|
|
125
|
-
<lastmod>2024-
|
|
130
|
+
<lastmod>2024-08-05</lastmod>
|
|
126
131
|
<changefreq>daily</changefreq>
|
|
127
132
|
</url>
|
|
128
133
|
<url>
|
|
129
134
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/index.html</loc>
|
|
130
|
-
<lastmod>2024-
|
|
135
|
+
<lastmod>2024-08-05</lastmod>
|
|
131
136
|
<changefreq>daily</changefreq>
|
|
132
137
|
</url>
|
|
133
138
|
<url>
|
|
134
139
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/index.html</loc>
|
|
135
|
-
<lastmod>2024-
|
|
140
|
+
<lastmod>2024-08-05</lastmod>
|
|
136
141
|
<changefreq>daily</changefreq>
|
|
137
142
|
</url>
|
|
138
143
|
<url>
|
|
139
144
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/porting-from-netbox.html</loc>
|
|
140
|
-
<lastmod>2024-
|
|
145
|
+
<lastmod>2024-08-05</lastmod>
|
|
141
146
|
<changefreq>daily</changefreq>
|
|
142
147
|
</url>
|
|
143
148
|
<url>
|
|
144
149
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/configuration-view.html</loc>
|
|
145
|
-
<lastmod>2024-
|
|
150
|
+
<lastmod>2024-08-05</lastmod>
|
|
146
151
|
<changefreq>daily</changefreq>
|
|
147
152
|
</url>
|
|
148
153
|
<url>
|
|
149
154
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/database-backend-config.html</loc>
|
|
150
|
-
<lastmod>2024-
|
|
155
|
+
<lastmod>2024-08-05</lastmod>
|
|
151
156
|
<changefreq>daily</changefreq>
|
|
152
157
|
</url>
|
|
153
158
|
<url>
|
|
154
159
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/nautobot-app-config.html</loc>
|
|
155
|
-
<lastmod>2024-
|
|
160
|
+
<lastmod>2024-08-05</lastmod>
|
|
156
161
|
<changefreq>daily</changefreq>
|
|
157
162
|
</url>
|
|
158
163
|
<url>
|
|
159
164
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/prometheus.html</loc>
|
|
160
|
-
<lastmod>2024-
|
|
165
|
+
<lastmod>2024-08-05</lastmod>
|
|
161
166
|
<changefreq>daily</changefreq>
|
|
162
167
|
</url>
|
|
163
168
|
<url>
|
|
164
169
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/setup.html</loc>
|
|
165
|
-
<lastmod>2024-
|
|
170
|
+
<lastmod>2024-08-05</lastmod>
|
|
166
171
|
<changefreq>daily</changefreq>
|
|
167
172
|
</url>
|
|
168
173
|
<url>
|
|
169
174
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/testing.html</loc>
|
|
170
|
-
<lastmod>2024-
|
|
175
|
+
<lastmod>2024-08-05</lastmod>
|
|
171
176
|
<changefreq>daily</changefreq>
|
|
172
177
|
</url>
|
|
173
178
|
<url>
|
|
174
179
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/models/index.html</loc>
|
|
175
|
-
<lastmod>2024-
|
|
180
|
+
<lastmod>2024-08-05</lastmod>
|
|
176
181
|
<changefreq>daily</changefreq>
|
|
177
182
|
</url>
|
|
178
183
|
<url>
|
|
179
184
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/models/django-admin.html</loc>
|
|
180
|
-
<lastmod>2024-
|
|
185
|
+
<lastmod>2024-08-05</lastmod>
|
|
181
186
|
<changefreq>daily</changefreq>
|
|
182
187
|
</url>
|
|
183
188
|
<url>
|
|
184
189
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/models/global-search.html</loc>
|
|
185
|
-
<lastmod>2024-
|
|
190
|
+
<lastmod>2024-08-05</lastmod>
|
|
186
191
|
<changefreq>daily</changefreq>
|
|
187
192
|
</url>
|
|
188
193
|
<url>
|
|
189
194
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/models/graphql.html</loc>
|
|
190
|
-
<lastmod>2024-
|
|
195
|
+
<lastmod>2024-08-05</lastmod>
|
|
191
196
|
<changefreq>daily</changefreq>
|
|
192
197
|
</url>
|
|
193
198
|
<url>
|
|
194
199
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/index.html</loc>
|
|
195
|
-
<lastmod>2024-
|
|
200
|
+
<lastmod>2024-08-05</lastmod>
|
|
196
201
|
<changefreq>daily</changefreq>
|
|
197
202
|
</url>
|
|
198
203
|
<url>
|
|
199
204
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/custom-validators.html</loc>
|
|
200
|
-
<lastmod>2024-
|
|
205
|
+
<lastmod>2024-08-05</lastmod>
|
|
201
206
|
<changefreq>daily</changefreq>
|
|
202
207
|
</url>
|
|
203
208
|
<url>
|
|
204
209
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/filter-extensions.html</loc>
|
|
205
|
-
<lastmod>2024-
|
|
210
|
+
<lastmod>2024-08-05</lastmod>
|
|
206
211
|
<changefreq>daily</changefreq>
|
|
207
212
|
</url>
|
|
208
213
|
<url>
|
|
209
214
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/git-repository-content.html</loc>
|
|
210
|
-
<lastmod>2024-
|
|
215
|
+
<lastmod>2024-08-05</lastmod>
|
|
211
216
|
<changefreq>daily</changefreq>
|
|
212
217
|
</url>
|
|
213
218
|
<url>
|
|
214
219
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/jinja2-filters.html</loc>
|
|
215
|
-
<lastmod>2024-
|
|
220
|
+
<lastmod>2024-08-05</lastmod>
|
|
216
221
|
<changefreq>daily</changefreq>
|
|
217
222
|
</url>
|
|
218
223
|
<url>
|
|
219
224
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/jobs.html</loc>
|
|
220
|
-
<lastmod>2024-
|
|
225
|
+
<lastmod>2024-08-05</lastmod>
|
|
221
226
|
<changefreq>daily</changefreq>
|
|
222
227
|
</url>
|
|
223
228
|
<url>
|
|
224
229
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/populating-extensibility-features.html</loc>
|
|
225
|
-
<lastmod>2024-
|
|
230
|
+
<lastmod>2024-08-05</lastmod>
|
|
226
231
|
<changefreq>daily</changefreq>
|
|
227
232
|
</url>
|
|
228
233
|
<url>
|
|
229
234
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/secrets-providers.html</loc>
|
|
230
|
-
<lastmod>2024-
|
|
235
|
+
<lastmod>2024-08-05</lastmod>
|
|
231
236
|
<changefreq>daily</changefreq>
|
|
232
237
|
</url>
|
|
233
238
|
<url>
|
|
234
239
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/platform-features/uniquely-identify-objects.html</loc>
|
|
235
|
-
<lastmod>2024-
|
|
240
|
+
<lastmod>2024-08-05</lastmod>
|
|
236
241
|
<changefreq>daily</changefreq>
|
|
237
242
|
</url>
|
|
238
243
|
<url>
|
|
239
244
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/index.html</loc>
|
|
240
|
-
<lastmod>2024-
|
|
245
|
+
<lastmod>2024-08-05</lastmod>
|
|
241
246
|
<changefreq>daily</changefreq>
|
|
242
247
|
</url>
|
|
243
248
|
<url>
|
|
244
249
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/banners.html</loc>
|
|
245
|
-
<lastmod>2024-
|
|
250
|
+
<lastmod>2024-08-05</lastmod>
|
|
246
251
|
<changefreq>daily</changefreq>
|
|
247
252
|
</url>
|
|
248
253
|
<url>
|
|
249
254
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/home-page.html</loc>
|
|
250
|
-
<lastmod>2024-
|
|
255
|
+
<lastmod>2024-08-05</lastmod>
|
|
251
256
|
<changefreq>daily</changefreq>
|
|
252
257
|
</url>
|
|
253
258
|
<url>
|
|
254
259
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/navigation.html</loc>
|
|
255
|
-
<lastmod>2024-
|
|
260
|
+
<lastmod>2024-08-05</lastmod>
|
|
256
261
|
<changefreq>daily</changefreq>
|
|
257
262
|
</url>
|
|
258
263
|
<url>
|
|
259
264
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/ui-extensions/object-views.html</loc>
|
|
260
|
-
<lastmod>2024-
|
|
265
|
+
<lastmod>2024-08-05</lastmod>
|
|
261
266
|
<changefreq>daily</changefreq>
|
|
262
267
|
</url>
|
|
263
268
|
<url>
|
|
264
269
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/index.html</loc>
|
|
265
|
-
<lastmod>2024-
|
|
270
|
+
<lastmod>2024-08-05</lastmod>
|
|
266
271
|
<changefreq>daily</changefreq>
|
|
267
272
|
</url>
|
|
268
273
|
<url>
|
|
269
274
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/base-template.html</loc>
|
|
270
|
-
<lastmod>2024-
|
|
275
|
+
<lastmod>2024-08-05</lastmod>
|
|
271
276
|
<changefreq>daily</changefreq>
|
|
272
277
|
</url>
|
|
273
278
|
<url>
|
|
274
279
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/core-view-overrides.html</loc>
|
|
275
|
-
<lastmod>2024-
|
|
280
|
+
<lastmod>2024-08-05</lastmod>
|
|
276
281
|
<changefreq>daily</changefreq>
|
|
277
282
|
</url>
|
|
278
283
|
<url>
|
|
279
284
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/django-generic-views.html</loc>
|
|
280
|
-
<lastmod>2024-
|
|
285
|
+
<lastmod>2024-08-05</lastmod>
|
|
281
286
|
<changefreq>daily</changefreq>
|
|
282
287
|
</url>
|
|
283
288
|
<url>
|
|
284
289
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/help-documentation.html</loc>
|
|
285
|
-
<lastmod>2024-
|
|
290
|
+
<lastmod>2024-08-05</lastmod>
|
|
286
291
|
<changefreq>daily</changefreq>
|
|
287
292
|
</url>
|
|
288
293
|
<url>
|
|
289
294
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/nautobot-generic-views.html</loc>
|
|
290
|
-
<lastmod>2024-
|
|
295
|
+
<lastmod>2024-08-05</lastmod>
|
|
291
296
|
<changefreq>daily</changefreq>
|
|
292
297
|
</url>
|
|
293
298
|
<url>
|
|
294
299
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/nautobotuiviewset.html</loc>
|
|
295
|
-
<lastmod>2024-
|
|
300
|
+
<lastmod>2024-08-05</lastmod>
|
|
296
301
|
<changefreq>daily</changefreq>
|
|
297
302
|
</url>
|
|
298
303
|
<url>
|
|
299
304
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/nautobotuiviewsetrouter.html</loc>
|
|
300
|
-
<lastmod>2024-
|
|
305
|
+
<lastmod>2024-08-05</lastmod>
|
|
301
306
|
<changefreq>daily</changefreq>
|
|
302
307
|
</url>
|
|
303
308
|
<url>
|
|
304
309
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/notes.html</loc>
|
|
305
|
-
<lastmod>2024-
|
|
310
|
+
<lastmod>2024-08-05</lastmod>
|
|
306
311
|
<changefreq>daily</changefreq>
|
|
307
312
|
</url>
|
|
308
313
|
<url>
|
|
309
314
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/rest-api.html</loc>
|
|
310
|
-
<lastmod>2024-
|
|
315
|
+
<lastmod>2024-08-05</lastmod>
|
|
311
316
|
<changefreq>daily</changefreq>
|
|
312
317
|
</url>
|
|
313
318
|
<url>
|
|
314
319
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/api/views/urls.html</loc>
|
|
315
|
-
<lastmod>2024-
|
|
320
|
+
<lastmod>2024-08-05</lastmod>
|
|
316
321
|
<changefreq>daily</changefreq>
|
|
317
322
|
</url>
|
|
318
323
|
<url>
|
|
319
324
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/code-updates.html</loc>
|
|
320
|
-
<lastmod>2024-
|
|
325
|
+
<lastmod>2024-08-05</lastmod>
|
|
321
326
|
<changefreq>daily</changefreq>
|
|
322
327
|
</url>
|
|
323
328
|
<url>
|
|
324
329
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/dependency-updates.html</loc>
|
|
325
|
-
<lastmod>2024-
|
|
330
|
+
<lastmod>2024-08-05</lastmod>
|
|
326
331
|
<changefreq>daily</changefreq>
|
|
327
332
|
</url>
|
|
328
333
|
<url>
|
|
329
334
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/from-v1.html</loc>
|
|
330
|
-
<lastmod>2024-
|
|
335
|
+
<lastmod>2024-08-05</lastmod>
|
|
331
336
|
<changefreq>daily</changefreq>
|
|
332
337
|
</url>
|
|
333
338
|
<url>
|
|
334
339
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/model-updates/dcim.html</loc>
|
|
335
|
-
<lastmod>2024-
|
|
340
|
+
<lastmod>2024-08-05</lastmod>
|
|
336
341
|
<changefreq>daily</changefreq>
|
|
337
342
|
</url>
|
|
338
343
|
<url>
|
|
339
344
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/model-updates/extras.html</loc>
|
|
340
|
-
<lastmod>2024-
|
|
345
|
+
<lastmod>2024-08-05</lastmod>
|
|
341
346
|
<changefreq>daily</changefreq>
|
|
342
347
|
</url>
|
|
343
348
|
<url>
|
|
344
349
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/model-updates/global.html</loc>
|
|
345
|
-
<lastmod>2024-
|
|
350
|
+
<lastmod>2024-08-05</lastmod>
|
|
346
351
|
<changefreq>daily</changefreq>
|
|
347
352
|
</url>
|
|
348
353
|
<url>
|
|
349
354
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/apps/migration/model-updates/ipam.html</loc>
|
|
350
|
-
<lastmod>2024-
|
|
355
|
+
<lastmod>2024-08-05</lastmod>
|
|
351
356
|
<changefreq>daily</changefreq>
|
|
352
357
|
</url>
|
|
353
358
|
<url>
|
|
354
359
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/index.html</loc>
|
|
355
|
-
<lastmod>2024-
|
|
360
|
+
<lastmod>2024-08-05</lastmod>
|
|
356
361
|
<changefreq>daily</changefreq>
|
|
357
362
|
</url>
|
|
358
363
|
<url>
|
|
359
364
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/application-registry.html</loc>
|
|
360
|
-
<lastmod>2024-
|
|
365
|
+
<lastmod>2024-08-05</lastmod>
|
|
361
366
|
<changefreq>daily</changefreq>
|
|
362
367
|
</url>
|
|
363
368
|
<url>
|
|
364
369
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/best-practices.html</loc>
|
|
365
|
-
<lastmod>2024-
|
|
370
|
+
<lastmod>2024-08-05</lastmod>
|
|
366
371
|
<changefreq>daily</changefreq>
|
|
367
372
|
</url>
|
|
368
373
|
<url>
|
|
369
374
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/bootstrap-ui.html</loc>
|
|
370
|
-
<lastmod>2024-
|
|
375
|
+
<lastmod>2024-08-05</lastmod>
|
|
371
376
|
<changefreq>daily</changefreq>
|
|
372
377
|
</url>
|
|
373
378
|
<url>
|
|
374
379
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/caching.html</loc>
|
|
375
|
-
<lastmod>2024-
|
|
380
|
+
<lastmod>2024-08-05</lastmod>
|
|
376
381
|
<changefreq>daily</changefreq>
|
|
377
382
|
</url>
|
|
378
383
|
<url>
|
|
379
384
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/controllers.html</loc>
|
|
380
|
-
<lastmod>2024-
|
|
385
|
+
<lastmod>2024-08-05</lastmod>
|
|
381
386
|
<changefreq>daily</changefreq>
|
|
382
387
|
</url>
|
|
383
388
|
<url>
|
|
384
389
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/docker-compose-advanced-use-cases.html</loc>
|
|
385
|
-
<lastmod>2024-
|
|
390
|
+
<lastmod>2024-08-05</lastmod>
|
|
386
391
|
<changefreq>daily</changefreq>
|
|
387
392
|
</url>
|
|
388
393
|
<url>
|
|
389
394
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/generic-views.html</loc>
|
|
390
|
-
<lastmod>2024-
|
|
395
|
+
<lastmod>2024-08-05</lastmod>
|
|
391
396
|
<changefreq>daily</changefreq>
|
|
392
397
|
</url>
|
|
393
398
|
<url>
|
|
394
399
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/getting-started.html</loc>
|
|
395
|
-
<lastmod>2024-
|
|
400
|
+
<lastmod>2024-08-05</lastmod>
|
|
396
401
|
<changefreq>daily</changefreq>
|
|
397
402
|
</url>
|
|
398
403
|
<url>
|
|
399
404
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/homepage.html</loc>
|
|
400
|
-
<lastmod>2024-
|
|
405
|
+
<lastmod>2024-08-05</lastmod>
|
|
401
406
|
<changefreq>daily</changefreq>
|
|
402
407
|
</url>
|
|
403
408
|
<url>
|
|
404
409
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/model-checklist.html</loc>
|
|
405
|
-
<lastmod>2024-
|
|
410
|
+
<lastmod>2024-08-05</lastmod>
|
|
406
411
|
<changefreq>daily</changefreq>
|
|
407
412
|
</url>
|
|
408
413
|
<url>
|
|
409
414
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/model-features.html</loc>
|
|
410
|
-
<lastmod>2024-
|
|
415
|
+
<lastmod>2024-08-05</lastmod>
|
|
411
416
|
<changefreq>daily</changefreq>
|
|
412
417
|
</url>
|
|
413
418
|
<url>
|
|
414
419
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/natural-keys.html</loc>
|
|
415
|
-
<lastmod>2024-
|
|
420
|
+
<lastmod>2024-08-05</lastmod>
|
|
416
421
|
<changefreq>daily</changefreq>
|
|
417
422
|
</url>
|
|
418
423
|
<url>
|
|
419
424
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/navigation-menu.html</loc>
|
|
420
|
-
<lastmod>2024-
|
|
425
|
+
<lastmod>2024-08-05</lastmod>
|
|
421
426
|
<changefreq>daily</changefreq>
|
|
422
427
|
</url>
|
|
423
428
|
<url>
|
|
424
429
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/release-checklist.html</loc>
|
|
425
|
-
<lastmod>2024-
|
|
430
|
+
<lastmod>2024-08-05</lastmod>
|
|
426
431
|
<changefreq>daily</changefreq>
|
|
427
432
|
</url>
|
|
428
433
|
<url>
|
|
429
434
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/role-internals.html</loc>
|
|
430
|
-
<lastmod>2024-
|
|
435
|
+
<lastmod>2024-08-05</lastmod>
|
|
431
436
|
<changefreq>daily</changefreq>
|
|
432
437
|
</url>
|
|
433
438
|
<url>
|
|
434
439
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/settings.html</loc>
|
|
435
|
-
<lastmod>2024-
|
|
440
|
+
<lastmod>2024-08-05</lastmod>
|
|
436
441
|
<changefreq>daily</changefreq>
|
|
437
442
|
</url>
|
|
438
443
|
<url>
|
|
439
444
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/style-guide.html</loc>
|
|
440
|
-
<lastmod>2024-
|
|
445
|
+
<lastmod>2024-08-05</lastmod>
|
|
441
446
|
<changefreq>daily</changefreq>
|
|
442
447
|
</url>
|
|
443
448
|
<url>
|
|
444
449
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/templates.html</loc>
|
|
445
|
-
<lastmod>2024-
|
|
450
|
+
<lastmod>2024-08-05</lastmod>
|
|
446
451
|
<changefreq>daily</changefreq>
|
|
447
452
|
</url>
|
|
448
453
|
<url>
|
|
449
454
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/testing.html</loc>
|
|
450
|
-
<lastmod>2024-
|
|
455
|
+
<lastmod>2024-08-05</lastmod>
|
|
451
456
|
<changefreq>daily</changefreq>
|
|
452
457
|
</url>
|
|
453
458
|
<url>
|
|
454
459
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/core/user-preferences.html</loc>
|
|
455
|
-
<lastmod>2024-
|
|
460
|
+
<lastmod>2024-08-05</lastmod>
|
|
456
461
|
<changefreq>daily</changefreq>
|
|
457
462
|
</url>
|
|
458
463
|
<url>
|
|
459
464
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/jobs/index.html</loc>
|
|
460
|
-
<lastmod>2024-
|
|
465
|
+
<lastmod>2024-08-05</lastmod>
|
|
461
466
|
<changefreq>daily</changefreq>
|
|
462
467
|
</url>
|
|
463
468
|
<url>
|
|
464
469
|
<loc>https://docs.nautobot.com/projects/core/en/stable/development/jobs/migration/from-v1.html</loc>
|
|
465
|
-
<lastmod>2024-
|
|
466
|
-
<changefreq>daily</changefreq>
|
|
467
|
-
</url>
|
|
468
|
-
<url>
|
|
469
|
-
<loc>https://docs.nautobot.com/projects/core/en/stable/overview/index.html</loc>
|
|
470
|
-
<lastmod>2024-07-08</lastmod>
|
|
470
|
+
<lastmod>2024-08-05</lastmod>
|
|
471
471
|
<changefreq>daily</changefreq>
|
|
472
472
|
</url>
|
|
473
473
|
<url>
|
|
474
474
|
<loc>https://docs.nautobot.com/projects/core/en/stable/overview/application_stack.html</loc>
|
|
475
|
-
<lastmod>2024-
|
|
475
|
+
<lastmod>2024-08-05</lastmod>
|
|
476
476
|
<changefreq>daily</changefreq>
|
|
477
477
|
</url>
|
|
478
478
|
<url>
|
|
479
479
|
<loc>https://docs.nautobot.com/projects/core/en/stable/overview/design_philosophy.html</loc>
|
|
480
|
-
<lastmod>2024-
|
|
480
|
+
<lastmod>2024-08-05</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/index.html</loc>
|
|
485
|
-
<lastmod>2024-
|
|
485
|
+
<lastmod>2024-08-05</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.0.html</loc>
|
|
490
|
-
<lastmod>2024-
|
|
490
|
+
<lastmod>2024-08-05</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.1.html</loc>
|
|
495
|
-
<lastmod>2024-
|
|
495
|
+
<lastmod>2024-08-05</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.2.html</loc>
|
|
500
|
-
<lastmod>2024-
|
|
500
|
+
<lastmod>2024-08-05</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-1.3.html</loc>
|
|
505
|
-
<lastmod>2024-
|
|
505
|
+
<lastmod>2024-08-05</lastmod>
|
|
506
506
|
<changefreq>daily</changefreq>
|
|
507
507
|
</url>
|
|
508
508
|
<url>
|
|
509
509
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.4.html</loc>
|
|
510
|
-
<lastmod>2024-
|
|
510
|
+
<lastmod>2024-08-05</lastmod>
|
|
511
511
|
<changefreq>daily</changefreq>
|
|
512
512
|
</url>
|
|
513
513
|
<url>
|
|
514
514
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.5.html</loc>
|
|
515
|
-
<lastmod>2024-
|
|
515
|
+
<lastmod>2024-08-05</lastmod>
|
|
516
516
|
<changefreq>daily</changefreq>
|
|
517
517
|
</url>
|
|
518
518
|
<url>
|
|
519
519
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-1.6.html</loc>
|
|
520
|
-
<lastmod>2024-
|
|
520
|
+
<lastmod>2024-08-05</lastmod>
|
|
521
521
|
<changefreq>daily</changefreq>
|
|
522
522
|
</url>
|
|
523
523
|
<url>
|
|
524
524
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-2.0.html</loc>
|
|
525
|
-
<lastmod>2024-
|
|
525
|
+
<lastmod>2024-08-05</lastmod>
|
|
526
526
|
<changefreq>daily</changefreq>
|
|
527
527
|
</url>
|
|
528
528
|
<url>
|
|
529
529
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-2.1.html</loc>
|
|
530
|
-
<lastmod>2024-
|
|
530
|
+
<lastmod>2024-08-05</lastmod>
|
|
531
531
|
<changefreq>daily</changefreq>
|
|
532
532
|
</url>
|
|
533
533
|
<url>
|
|
534
534
|
<loc>https://docs.nautobot.com/projects/core/en/stable/release-notes/version-2.2.html</loc>
|
|
535
|
-
<lastmod>2024-
|
|
535
|
+
<lastmod>2024-08-05</lastmod>
|
|
536
536
|
<changefreq>daily</changefreq>
|
|
537
537
|
</url>
|
|
538
538
|
<url>
|
|
539
539
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/index.html</loc>
|
|
540
|
-
<lastmod>2024-
|
|
540
|
+
<lastmod>2024-08-05</lastmod>
|
|
541
541
|
<changefreq>daily</changefreq>
|
|
542
542
|
</url>
|
|
543
543
|
<url>
|
|
544
544
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/index.html</loc>
|
|
545
|
-
<lastmod>2024-
|
|
545
|
+
<lastmod>2024-08-05</lastmod>
|
|
546
546
|
<changefreq>daily</changefreq>
|
|
547
547
|
</url>
|
|
548
548
|
<url>
|
|
549
549
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/optional-settings.html</loc>
|
|
550
|
-
<lastmod>2024-
|
|
550
|
+
<lastmod>2024-08-05</lastmod>
|
|
551
551
|
<changefreq>daily</changefreq>
|
|
552
552
|
</url>
|
|
553
553
|
<url>
|
|
554
554
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/required-settings.html</loc>
|
|
555
|
-
<lastmod>2024-
|
|
555
|
+
<lastmod>2024-08-05</lastmod>
|
|
556
556
|
<changefreq>daily</changefreq>
|
|
557
557
|
</url>
|
|
558
558
|
<url>
|
|
559
559
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/time-zones.html</loc>
|
|
560
|
-
<lastmod>2024-
|
|
560
|
+
<lastmod>2024-08-05</lastmod>
|
|
561
561
|
<changefreq>daily</changefreq>
|
|
562
562
|
</url>
|
|
563
563
|
<url>
|
|
564
564
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/authentication/ldap.html</loc>
|
|
565
|
-
<lastmod>2024-
|
|
565
|
+
<lastmod>2024-08-05</lastmod>
|
|
566
566
|
<changefreq>daily</changefreq>
|
|
567
567
|
</url>
|
|
568
568
|
<url>
|
|
569
569
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/authentication/remote.html</loc>
|
|
570
|
-
<lastmod>2024-
|
|
570
|
+
<lastmod>2024-08-05</lastmod>
|
|
571
571
|
<changefreq>daily</changefreq>
|
|
572
572
|
</url>
|
|
573
573
|
<url>
|
|
574
574
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/configuration/authentication/sso.html</loc>
|
|
575
|
-
<lastmod>2024-
|
|
575
|
+
<lastmod>2024-08-05</lastmod>
|
|
576
576
|
<changefreq>daily</changefreq>
|
|
577
577
|
</url>
|
|
578
578
|
<url>
|
|
579
579
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/caching.html</loc>
|
|
580
|
-
<lastmod>2024-
|
|
580
|
+
<lastmod>2024-08-05</lastmod>
|
|
581
581
|
<changefreq>daily</changefreq>
|
|
582
582
|
</url>
|
|
583
583
|
<url>
|
|
584
584
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/celery-queues.html</loc>
|
|
585
|
-
<lastmod>2024-
|
|
585
|
+
<lastmod>2024-08-05</lastmod>
|
|
586
586
|
<changefreq>daily</changefreq>
|
|
587
587
|
</url>
|
|
588
588
|
<url>
|
|
589
589
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/healthcheck.html</loc>
|
|
590
|
-
<lastmod>2024-
|
|
590
|
+
<lastmod>2024-08-05</lastmod>
|
|
591
591
|
<changefreq>daily</changefreq>
|
|
592
592
|
</url>
|
|
593
593
|
<url>
|
|
594
594
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/permissions.html</loc>
|
|
595
|
-
<lastmod>2024-
|
|
595
|
+
<lastmod>2024-08-05</lastmod>
|
|
596
596
|
<changefreq>daily</changefreq>
|
|
597
597
|
</url>
|
|
598
598
|
<url>
|
|
599
599
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/prometheus-metrics.html</loc>
|
|
600
|
-
<lastmod>2024-
|
|
600
|
+
<lastmod>2024-08-05</lastmod>
|
|
601
601
|
<changefreq>daily</changefreq>
|
|
602
602
|
</url>
|
|
603
603
|
<url>
|
|
604
604
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/replicating-nautobot.html</loc>
|
|
605
|
-
<lastmod>2024-
|
|
605
|
+
<lastmod>2024-08-05</lastmod>
|
|
606
606
|
<changefreq>daily</changefreq>
|
|
607
607
|
</url>
|
|
608
608
|
<url>
|
|
609
609
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/request-profiling.html</loc>
|
|
610
|
-
<lastmod>2024-
|
|
610
|
+
<lastmod>2024-08-05</lastmod>
|
|
611
611
|
<changefreq>daily</changefreq>
|
|
612
612
|
</url>
|
|
613
613
|
<url>
|
|
614
614
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/guides/s3-django-storage.html</loc>
|
|
615
|
-
<lastmod>2024-
|
|
615
|
+
<lastmod>2024-08-05</lastmod>
|
|
616
616
|
<changefreq>daily</changefreq>
|
|
617
617
|
</url>
|
|
618
618
|
<url>
|
|
619
619
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/index.html</loc>
|
|
620
|
-
<lastmod>2024-
|
|
620
|
+
<lastmod>2024-08-05</lastmod>
|
|
621
621
|
<changefreq>daily</changefreq>
|
|
622
622
|
</url>
|
|
623
623
|
<url>
|
|
624
624
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/app-install.html</loc>
|
|
625
|
-
<lastmod>2024-
|
|
625
|
+
<lastmod>2024-08-05</lastmod>
|
|
626
626
|
<changefreq>daily</changefreq>
|
|
627
627
|
</url>
|
|
628
628
|
<url>
|
|
629
629
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/external-authentication.html</loc>
|
|
630
|
-
<lastmod>2024-
|
|
630
|
+
<lastmod>2024-08-05</lastmod>
|
|
631
631
|
<changefreq>daily</changefreq>
|
|
632
632
|
</url>
|
|
633
633
|
<url>
|
|
634
634
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/http-server.html</loc>
|
|
635
|
-
<lastmod>2024-
|
|
635
|
+
<lastmod>2024-08-05</lastmod>
|
|
636
636
|
<changefreq>daily</changefreq>
|
|
637
637
|
</url>
|
|
638
638
|
<url>
|
|
639
639
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/install_system.html</loc>
|
|
640
|
-
<lastmod>2024-
|
|
640
|
+
<lastmod>2024-08-05</lastmod>
|
|
641
641
|
<changefreq>daily</changefreq>
|
|
642
642
|
</url>
|
|
643
643
|
<url>
|
|
644
644
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/nautobot.html</loc>
|
|
645
|
-
<lastmod>2024-
|
|
645
|
+
<lastmod>2024-08-05</lastmod>
|
|
646
646
|
<changefreq>daily</changefreq>
|
|
647
647
|
</url>
|
|
648
648
|
<url>
|
|
649
649
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/services.html</loc>
|
|
650
|
-
<lastmod>2024-
|
|
650
|
+
<lastmod>2024-08-05</lastmod>
|
|
651
651
|
<changefreq>daily</changefreq>
|
|
652
652
|
</url>
|
|
653
653
|
<url>
|
|
654
654
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation-extras/docker.html</loc>
|
|
655
|
-
<lastmod>2024-
|
|
655
|
+
<lastmod>2024-08-05</lastmod>
|
|
656
656
|
<changefreq>daily</changefreq>
|
|
657
657
|
</url>
|
|
658
658
|
<url>
|
|
659
659
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation-extras/health-checks.html</loc>
|
|
660
|
-
<lastmod>2024-
|
|
660
|
+
<lastmod>2024-08-05</lastmod>
|
|
661
661
|
<changefreq>daily</changefreq>
|
|
662
662
|
</url>
|
|
663
663
|
<url>
|
|
664
664
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation-extras/selinux-troubleshooting.html</loc>
|
|
665
|
-
<lastmod>2024-
|
|
665
|
+
<lastmod>2024-08-05</lastmod>
|
|
666
666
|
<changefreq>daily</changefreq>
|
|
667
667
|
</url>
|
|
668
668
|
<url>
|
|
669
669
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/migration/migrating-from-netbox.html</loc>
|
|
670
|
-
<lastmod>2024-
|
|
670
|
+
<lastmod>2024-08-05</lastmod>
|
|
671
671
|
<changefreq>daily</changefreq>
|
|
672
672
|
</url>
|
|
673
673
|
<url>
|
|
674
674
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/migration/migrating-from-postgresql.html</loc>
|
|
675
|
-
<lastmod>2024-
|
|
675
|
+
<lastmod>2024-08-05</lastmod>
|
|
676
676
|
<changefreq>daily</changefreq>
|
|
677
677
|
</url>
|
|
678
678
|
<url>
|
|
679
679
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/tools/nautobot-server.html</loc>
|
|
680
|
-
<lastmod>2024-
|
|
680
|
+
<lastmod>2024-08-05</lastmod>
|
|
681
681
|
<changefreq>daily</changefreq>
|
|
682
682
|
</url>
|
|
683
683
|
<url>
|
|
684
684
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/tools/nautobot-shell.html</loc>
|
|
685
|
-
<lastmod>2024-
|
|
685
|
+
<lastmod>2024-08-05</lastmod>
|
|
686
686
|
<changefreq>daily</changefreq>
|
|
687
687
|
</url>
|
|
688
688
|
<url>
|
|
689
689
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/database-backup.html</loc>
|
|
690
|
-
<lastmod>2024-
|
|
690
|
+
<lastmod>2024-08-05</lastmod>
|
|
691
691
|
<changefreq>daily</changefreq>
|
|
692
692
|
</url>
|
|
693
693
|
<url>
|
|
694
694
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/upgrading.html</loc>
|
|
695
|
-
<lastmod>2024-
|
|
695
|
+
<lastmod>2024-08-05</lastmod>
|
|
696
696
|
<changefreq>daily</changefreq>
|
|
697
697
|
</url>
|
|
698
698
|
<url>
|
|
699
699
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html</loc>
|
|
700
|
-
<lastmod>2024-
|
|
700
|
+
<lastmod>2024-08-05</lastmod>
|
|
701
701
|
<changefreq>daily</changefreq>
|
|
702
702
|
</url>
|
|
703
703
|
<url>
|
|
704
704
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html</loc>
|
|
705
|
-
<lastmod>2024-
|
|
705
|
+
<lastmod>2024-08-05</lastmod>
|
|
706
706
|
<changefreq>daily</changefreq>
|
|
707
707
|
</url>
|
|
708
708
|
<url>
|
|
709
709
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/index.html</loc>
|
|
710
|
-
<lastmod>2024-
|
|
710
|
+
<lastmod>2024-08-05</lastmod>
|
|
711
711
|
<changefreq>daily</changefreq>
|
|
712
712
|
</url>
|
|
713
713
|
<url>
|
|
714
714
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html</loc>
|
|
715
|
-
<lastmod>2024-
|
|
715
|
+
<lastmod>2024-08-05</lastmod>
|
|
716
716
|
<changefreq>daily</changefreq>
|
|
717
717
|
</url>
|
|
718
718
|
<url>
|
|
719
719
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html</loc>
|
|
720
|
-
<lastmod>2024-
|
|
720
|
+
<lastmod>2024-08-05</lastmod>
|
|
721
721
|
<changefreq>daily</changefreq>
|
|
722
722
|
</url>
|
|
723
723
|
<url>
|
|
724
724
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/for-developers.html</loc>
|
|
725
|
-
<lastmod>2024-
|
|
725
|
+
<lastmod>2024-08-05</lastmod>
|
|
726
726
|
<changefreq>daily</changefreq>
|
|
727
727
|
</url>
|
|
728
728
|
<url>
|
|
729
729
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html</loc>
|
|
730
|
-
<lastmod>2024-
|
|
730
|
+
<lastmod>2024-08-05</lastmod>
|
|
731
731
|
<changefreq>daily</changefreq>
|
|
732
732
|
</url>
|
|
733
733
|
<url>
|
|
734
734
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/circuit.html</loc>
|
|
735
|
-
<lastmod>2024-
|
|
735
|
+
<lastmod>2024-08-05</lastmod>
|
|
736
736
|
<changefreq>daily</changefreq>
|
|
737
737
|
</url>
|
|
738
738
|
<url>
|
|
739
739
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/circuittermination.html</loc>
|
|
740
|
-
<lastmod>2024-
|
|
740
|
+
<lastmod>2024-08-05</lastmod>
|
|
741
741
|
<changefreq>daily</changefreq>
|
|
742
742
|
</url>
|
|
743
743
|
<url>
|
|
744
744
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/circuittype.html</loc>
|
|
745
|
-
<lastmod>2024-
|
|
745
|
+
<lastmod>2024-08-05</lastmod>
|
|
746
746
|
<changefreq>daily</changefreq>
|
|
747
747
|
</url>
|
|
748
748
|
<url>
|
|
749
749
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/provider.html</loc>
|
|
750
|
-
<lastmod>2024-
|
|
750
|
+
<lastmod>2024-08-05</lastmod>
|
|
751
751
|
<changefreq>daily</changefreq>
|
|
752
752
|
</url>
|
|
753
753
|
<url>
|
|
754
754
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/circuits/providernetwork.html</loc>
|
|
755
|
-
<lastmod>2024-
|
|
755
|
+
<lastmod>2024-08-05</lastmod>
|
|
756
756
|
<changefreq>daily</changefreq>
|
|
757
757
|
</url>
|
|
758
758
|
<url>
|
|
759
759
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/cable.html</loc>
|
|
760
|
-
<lastmod>2024-
|
|
760
|
+
<lastmod>2024-08-05</lastmod>
|
|
761
761
|
<changefreq>daily</changefreq>
|
|
762
762
|
</url>
|
|
763
763
|
<url>
|
|
764
764
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/consoleport.html</loc>
|
|
765
|
-
<lastmod>2024-
|
|
765
|
+
<lastmod>2024-08-05</lastmod>
|
|
766
766
|
<changefreq>daily</changefreq>
|
|
767
767
|
</url>
|
|
768
768
|
<url>
|
|
769
769
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/consoleporttemplate.html</loc>
|
|
770
|
-
<lastmod>2024-
|
|
770
|
+
<lastmod>2024-08-05</lastmod>
|
|
771
771
|
<changefreq>daily</changefreq>
|
|
772
772
|
</url>
|
|
773
773
|
<url>
|
|
774
774
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/consoleserverport.html</loc>
|
|
775
|
-
<lastmod>2024-
|
|
775
|
+
<lastmod>2024-08-05</lastmod>
|
|
776
776
|
<changefreq>daily</changefreq>
|
|
777
777
|
</url>
|
|
778
778
|
<url>
|
|
779
779
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/consoleserverporttemplate.html</loc>
|
|
780
|
-
<lastmod>2024-
|
|
780
|
+
<lastmod>2024-08-05</lastmod>
|
|
781
781
|
<changefreq>daily</changefreq>
|
|
782
782
|
</url>
|
|
783
783
|
<url>
|
|
784
784
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/controller.html</loc>
|
|
785
|
-
<lastmod>2024-
|
|
785
|
+
<lastmod>2024-08-05</lastmod>
|
|
786
786
|
<changefreq>daily</changefreq>
|
|
787
787
|
</url>
|
|
788
788
|
<url>
|
|
789
789
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/controllermanageddevicegroup.html</loc>
|
|
790
|
-
<lastmod>2024-
|
|
790
|
+
<lastmod>2024-08-05</lastmod>
|
|
791
791
|
<changefreq>daily</changefreq>
|
|
792
792
|
</url>
|
|
793
793
|
<url>
|
|
794
794
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/device.html</loc>
|
|
795
|
-
<lastmod>2024-
|
|
795
|
+
<lastmod>2024-08-05</lastmod>
|
|
796
796
|
<changefreq>daily</changefreq>
|
|
797
797
|
</url>
|
|
798
798
|
<url>
|
|
799
799
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/devicebay.html</loc>
|
|
800
|
-
<lastmod>2024-
|
|
800
|
+
<lastmod>2024-08-05</lastmod>
|
|
801
801
|
<changefreq>daily</changefreq>
|
|
802
802
|
</url>
|
|
803
803
|
<url>
|
|
804
804
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/devicebaytemplate.html</loc>
|
|
805
|
-
<lastmod>2024-
|
|
805
|
+
<lastmod>2024-08-05</lastmod>
|
|
806
806
|
<changefreq>daily</changefreq>
|
|
807
807
|
</url>
|
|
808
808
|
<url>
|
|
809
809
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/devicefamily.html</loc>
|
|
810
|
-
<lastmod>2024-
|
|
810
|
+
<lastmod>2024-08-05</lastmod>
|
|
811
811
|
<changefreq>daily</changefreq>
|
|
812
812
|
</url>
|
|
813
813
|
<url>
|
|
814
814
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/deviceredundancygroup.html</loc>
|
|
815
|
-
<lastmod>2024-
|
|
815
|
+
<lastmod>2024-08-05</lastmod>
|
|
816
816
|
<changefreq>daily</changefreq>
|
|
817
817
|
</url>
|
|
818
818
|
<url>
|
|
819
819
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/devicetype.html</loc>
|
|
820
|
-
<lastmod>2024-
|
|
820
|
+
<lastmod>2024-08-05</lastmod>
|
|
821
821
|
<changefreq>daily</changefreq>
|
|
822
822
|
</url>
|
|
823
823
|
<url>
|
|
824
824
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/frontport.html</loc>
|
|
825
|
-
<lastmod>2024-
|
|
825
|
+
<lastmod>2024-08-05</lastmod>
|
|
826
826
|
<changefreq>daily</changefreq>
|
|
827
827
|
</url>
|
|
828
828
|
<url>
|
|
829
829
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/frontporttemplate.html</loc>
|
|
830
|
-
<lastmod>2024-
|
|
830
|
+
<lastmod>2024-08-05</lastmod>
|
|
831
831
|
<changefreq>daily</changefreq>
|
|
832
832
|
</url>
|
|
833
833
|
<url>
|
|
834
834
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/interface.html</loc>
|
|
835
|
-
<lastmod>2024-
|
|
835
|
+
<lastmod>2024-08-05</lastmod>
|
|
836
836
|
<changefreq>daily</changefreq>
|
|
837
837
|
</url>
|
|
838
838
|
<url>
|
|
839
839
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/interfaceredundancygroup.html</loc>
|
|
840
|
-
<lastmod>2024-
|
|
840
|
+
<lastmod>2024-08-05</lastmod>
|
|
841
841
|
<changefreq>daily</changefreq>
|
|
842
842
|
</url>
|
|
843
843
|
<url>
|
|
844
844
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/interfacetemplate.html</loc>
|
|
845
|
-
<lastmod>2024-
|
|
845
|
+
<lastmod>2024-08-05</lastmod>
|
|
846
846
|
<changefreq>daily</changefreq>
|
|
847
847
|
</url>
|
|
848
848
|
<url>
|
|
849
849
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/inventoryitem.html</loc>
|
|
850
|
-
<lastmod>2024-
|
|
850
|
+
<lastmod>2024-08-05</lastmod>
|
|
851
851
|
<changefreq>daily</changefreq>
|
|
852
852
|
</url>
|
|
853
853
|
<url>
|
|
854
854
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/location.html</loc>
|
|
855
|
-
<lastmod>2024-
|
|
855
|
+
<lastmod>2024-08-05</lastmod>
|
|
856
856
|
<changefreq>daily</changefreq>
|
|
857
857
|
</url>
|
|
858
858
|
<url>
|
|
859
859
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/locationtype.html</loc>
|
|
860
|
-
<lastmod>2024-
|
|
860
|
+
<lastmod>2024-08-05</lastmod>
|
|
861
861
|
<changefreq>daily</changefreq>
|
|
862
862
|
</url>
|
|
863
863
|
<url>
|
|
864
864
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/manufacturer.html</loc>
|
|
865
|
-
<lastmod>2024-
|
|
865
|
+
<lastmod>2024-08-05</lastmod>
|
|
866
866
|
<changefreq>daily</changefreq>
|
|
867
867
|
</url>
|
|
868
868
|
<url>
|
|
869
869
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/platform.html</loc>
|
|
870
|
-
<lastmod>2024-
|
|
870
|
+
<lastmod>2024-08-05</lastmod>
|
|
871
871
|
<changefreq>daily</changefreq>
|
|
872
872
|
</url>
|
|
873
873
|
<url>
|
|
874
874
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/powerfeed.html</loc>
|
|
875
|
-
<lastmod>2024-
|
|
875
|
+
<lastmod>2024-08-05</lastmod>
|
|
876
876
|
<changefreq>daily</changefreq>
|
|
877
877
|
</url>
|
|
878
878
|
<url>
|
|
879
879
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/poweroutlet.html</loc>
|
|
880
|
-
<lastmod>2024-
|
|
880
|
+
<lastmod>2024-08-05</lastmod>
|
|
881
881
|
<changefreq>daily</changefreq>
|
|
882
882
|
</url>
|
|
883
883
|
<url>
|
|
884
884
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/poweroutlettemplate.html</loc>
|
|
885
|
-
<lastmod>2024-
|
|
885
|
+
<lastmod>2024-08-05</lastmod>
|
|
886
886
|
<changefreq>daily</changefreq>
|
|
887
887
|
</url>
|
|
888
888
|
<url>
|
|
889
889
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/powerpanel.html</loc>
|
|
890
|
-
<lastmod>2024-
|
|
890
|
+
<lastmod>2024-08-05</lastmod>
|
|
891
891
|
<changefreq>daily</changefreq>
|
|
892
892
|
</url>
|
|
893
893
|
<url>
|
|
894
894
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/powerport.html</loc>
|
|
895
|
-
<lastmod>2024-
|
|
895
|
+
<lastmod>2024-08-05</lastmod>
|
|
896
896
|
<changefreq>daily</changefreq>
|
|
897
897
|
</url>
|
|
898
898
|
<url>
|
|
899
899
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/powerporttemplate.html</loc>
|
|
900
|
-
<lastmod>2024-
|
|
900
|
+
<lastmod>2024-08-05</lastmod>
|
|
901
901
|
<changefreq>daily</changefreq>
|
|
902
902
|
</url>
|
|
903
903
|
<url>
|
|
904
904
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rack.html</loc>
|
|
905
|
-
<lastmod>2024-
|
|
905
|
+
<lastmod>2024-08-05</lastmod>
|
|
906
906
|
<changefreq>daily</changefreq>
|
|
907
907
|
</url>
|
|
908
908
|
<url>
|
|
909
909
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rackgroup.html</loc>
|
|
910
|
-
<lastmod>2024-
|
|
910
|
+
<lastmod>2024-08-05</lastmod>
|
|
911
911
|
<changefreq>daily</changefreq>
|
|
912
912
|
</url>
|
|
913
913
|
<url>
|
|
914
914
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rackreservation.html</loc>
|
|
915
|
-
<lastmod>2024-
|
|
915
|
+
<lastmod>2024-08-05</lastmod>
|
|
916
916
|
<changefreq>daily</changefreq>
|
|
917
917
|
</url>
|
|
918
918
|
<url>
|
|
919
919
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rearport.html</loc>
|
|
920
|
-
<lastmod>2024-
|
|
920
|
+
<lastmod>2024-08-05</lastmod>
|
|
921
921
|
<changefreq>daily</changefreq>
|
|
922
922
|
</url>
|
|
923
923
|
<url>
|
|
924
924
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/rearporttemplate.html</loc>
|
|
925
|
-
<lastmod>2024-
|
|
925
|
+
<lastmod>2024-08-05</lastmod>
|
|
926
926
|
<changefreq>daily</changefreq>
|
|
927
927
|
</url>
|
|
928
928
|
<url>
|
|
929
929
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/softwareimagefile.html</loc>
|
|
930
|
-
<lastmod>2024-
|
|
930
|
+
<lastmod>2024-08-05</lastmod>
|
|
931
931
|
<changefreq>daily</changefreq>
|
|
932
932
|
</url>
|
|
933
933
|
<url>
|
|
934
934
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/softwareversion.html</loc>
|
|
935
|
-
<lastmod>2024-
|
|
935
|
+
<lastmod>2024-08-05</lastmod>
|
|
936
936
|
<changefreq>daily</changefreq>
|
|
937
937
|
</url>
|
|
938
938
|
<url>
|
|
939
939
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/dcim/virtualchassis.html</loc>
|
|
940
|
-
<lastmod>2024-
|
|
940
|
+
<lastmod>2024-08-05</lastmod>
|
|
941
941
|
<changefreq>daily</changefreq>
|
|
942
942
|
</url>
|
|
943
943
|
<url>
|
|
944
944
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/extras/configcontext.html</loc>
|
|
945
|
-
<lastmod>2024-
|
|
945
|
+
<lastmod>2024-08-05</lastmod>
|
|
946
946
|
<changefreq>daily</changefreq>
|
|
947
947
|
</url>
|
|
948
948
|
<url>
|
|
949
949
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/extras/configcontextschema.html</loc>
|
|
950
|
-
<lastmod>2024-
|
|
950
|
+
<lastmod>2024-08-05</lastmod>
|
|
951
951
|
<changefreq>daily</changefreq>
|
|
952
952
|
</url>
|
|
953
953
|
<url>
|
|
954
954
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/extras/contact.html</loc>
|
|
955
|
-
<lastmod>2024-
|
|
955
|
+
<lastmod>2024-08-05</lastmod>
|
|
956
956
|
<changefreq>daily</changefreq>
|
|
957
957
|
</url>
|
|
958
958
|
<url>
|
|
959
959
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/extras/team.html</loc>
|
|
960
|
-
<lastmod>2024-
|
|
960
|
+
<lastmod>2024-08-05</lastmod>
|
|
961
961
|
<changefreq>daily</changefreq>
|
|
962
962
|
</url>
|
|
963
963
|
<url>
|
|
964
964
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/ipaddress.html</loc>
|
|
965
|
-
<lastmod>2024-
|
|
965
|
+
<lastmod>2024-08-05</lastmod>
|
|
966
966
|
<changefreq>daily</changefreq>
|
|
967
967
|
</url>
|
|
968
968
|
<url>
|
|
969
969
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/namespace.html</loc>
|
|
970
|
-
<lastmod>2024-
|
|
970
|
+
<lastmod>2024-08-05</lastmod>
|
|
971
971
|
<changefreq>daily</changefreq>
|
|
972
972
|
</url>
|
|
973
973
|
<url>
|
|
974
974
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/prefix.html</loc>
|
|
975
|
-
<lastmod>2024-
|
|
975
|
+
<lastmod>2024-08-05</lastmod>
|
|
976
976
|
<changefreq>daily</changefreq>
|
|
977
977
|
</url>
|
|
978
978
|
<url>
|
|
979
979
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/rir.html</loc>
|
|
980
|
-
<lastmod>2024-
|
|
980
|
+
<lastmod>2024-08-05</lastmod>
|
|
981
981
|
<changefreq>daily</changefreq>
|
|
982
982
|
</url>
|
|
983
983
|
<url>
|
|
984
984
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/routetarget.html</loc>
|
|
985
|
-
<lastmod>2024-
|
|
985
|
+
<lastmod>2024-08-05</lastmod>
|
|
986
986
|
<changefreq>daily</changefreq>
|
|
987
987
|
</url>
|
|
988
988
|
<url>
|
|
989
989
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/service.html</loc>
|
|
990
|
-
<lastmod>2024-
|
|
990
|
+
<lastmod>2024-08-05</lastmod>
|
|
991
991
|
<changefreq>daily</changefreq>
|
|
992
992
|
</url>
|
|
993
993
|
<url>
|
|
994
994
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/vlan.html</loc>
|
|
995
|
-
<lastmod>2024-
|
|
995
|
+
<lastmod>2024-08-05</lastmod>
|
|
996
996
|
<changefreq>daily</changefreq>
|
|
997
997
|
</url>
|
|
998
998
|
<url>
|
|
999
999
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/vlangroup.html</loc>
|
|
1000
|
-
<lastmod>2024-
|
|
1000
|
+
<lastmod>2024-08-05</lastmod>
|
|
1001
1001
|
<changefreq>daily</changefreq>
|
|
1002
1002
|
</url>
|
|
1003
1003
|
<url>
|
|
1004
1004
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/ipam/vrf.html</loc>
|
|
1005
|
-
<lastmod>2024-
|
|
1005
|
+
<lastmod>2024-08-05</lastmod>
|
|
1006
1006
|
<changefreq>daily</changefreq>
|
|
1007
1007
|
</url>
|
|
1008
1008
|
<url>
|
|
1009
1009
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/overview/introduction.html</loc>
|
|
1010
|
-
<lastmod>2024-
|
|
1010
|
+
<lastmod>2024-08-05</lastmod>
|
|
1011
1011
|
<changefreq>daily</changefreq>
|
|
1012
1012
|
</url>
|
|
1013
1013
|
<url>
|
|
1014
1014
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/tenancy/tenant.html</loc>
|
|
1015
|
-
<lastmod>2024-
|
|
1015
|
+
<lastmod>2024-08-05</lastmod>
|
|
1016
1016
|
<changefreq>daily</changefreq>
|
|
1017
1017
|
</url>
|
|
1018
1018
|
<url>
|
|
1019
1019
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/tenancy/tenantgroup.html</loc>
|
|
1020
|
-
<lastmod>2024-
|
|
1020
|
+
<lastmod>2024-08-05</lastmod>
|
|
1021
1021
|
<changefreq>daily</changefreq>
|
|
1022
1022
|
</url>
|
|
1023
1023
|
<url>
|
|
1024
1024
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/cluster.html</loc>
|
|
1025
|
-
<lastmod>2024-
|
|
1025
|
+
<lastmod>2024-08-05</lastmod>
|
|
1026
1026
|
<changefreq>daily</changefreq>
|
|
1027
1027
|
</url>
|
|
1028
1028
|
<url>
|
|
1029
1029
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/clustergroup.html</loc>
|
|
1030
|
-
<lastmod>2024-
|
|
1030
|
+
<lastmod>2024-08-05</lastmod>
|
|
1031
1031
|
<changefreq>daily</changefreq>
|
|
1032
1032
|
</url>
|
|
1033
1033
|
<url>
|
|
1034
1034
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/clustertype.html</loc>
|
|
1035
|
-
<lastmod>2024-
|
|
1035
|
+
<lastmod>2024-08-05</lastmod>
|
|
1036
1036
|
<changefreq>daily</changefreq>
|
|
1037
1037
|
</url>
|
|
1038
1038
|
<url>
|
|
1039
1039
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/virtualmachine.html</loc>
|
|
1040
|
-
<lastmod>2024-
|
|
1040
|
+
<lastmod>2024-08-05</lastmod>
|
|
1041
1041
|
<changefreq>daily</changefreq>
|
|
1042
1042
|
</url>
|
|
1043
1043
|
<url>
|
|
1044
1044
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/core-data-model/virtualization/vminterface.html</loc>
|
|
1045
|
-
<lastmod>2024-
|
|
1045
|
+
<lastmod>2024-08-05</lastmod>
|
|
1046
1046
|
<changefreq>daily</changefreq>
|
|
1047
1047
|
</url>
|
|
1048
1048
|
<url>
|
|
1049
1049
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/contacts-and-teams.html</loc>
|
|
1050
|
-
<lastmod>2024-
|
|
1050
|
+
<lastmod>2024-08-05</lastmod>
|
|
1051
1051
|
<changefreq>daily</changefreq>
|
|
1052
1052
|
</url>
|
|
1053
1053
|
<url>
|
|
1054
1054
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/custom-fields.html</loc>
|
|
1055
|
-
<lastmod>2024-
|
|
1055
|
+
<lastmod>2024-08-05</lastmod>
|
|
1056
1056
|
<changefreq>daily</changefreq>
|
|
1057
1057
|
</url>
|
|
1058
1058
|
<url>
|
|
1059
1059
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/git-data-source.html</loc>
|
|
1060
|
-
<lastmod>2024-
|
|
1060
|
+
<lastmod>2024-08-05</lastmod>
|
|
1061
1061
|
<changefreq>daily</changefreq>
|
|
1062
1062
|
</url>
|
|
1063
1063
|
<url>
|
|
1064
1064
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/graphql.html</loc>
|
|
1065
|
-
<lastmod>2024-
|
|
1065
|
+
<lastmod>2024-08-05</lastmod>
|
|
1066
1066
|
<changefreq>daily</changefreq>
|
|
1067
1067
|
</url>
|
|
1068
1068
|
<url>
|
|
1069
1069
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/ip-address-merge-tool.html</loc>
|
|
1070
|
-
<lastmod>2024-
|
|
1070
|
+
<lastmod>2024-08-05</lastmod>
|
|
1071
1071
|
<changefreq>daily</changefreq>
|
|
1072
1072
|
</url>
|
|
1073
1073
|
<url>
|
|
1074
1074
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/relationships.html</loc>
|
|
1075
|
-
<lastmod>2024-
|
|
1075
|
+
<lastmod>2024-08-05</lastmod>
|
|
1076
1076
|
<changefreq>daily</changefreq>
|
|
1077
1077
|
</url>
|
|
1078
1078
|
<url>
|
|
1079
1079
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/software-image-files-and-versions.html</loc>
|
|
1080
|
-
<lastmod>2024-
|
|
1080
|
+
<lastmod>2024-08-05</lastmod>
|
|
1081
1081
|
<changefreq>daily</changefreq>
|
|
1082
1082
|
</url>
|
|
1083
1083
|
<url>
|
|
1084
1084
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/index.html</loc>
|
|
1085
|
-
<lastmod>2024-
|
|
1085
|
+
<lastmod>2024-08-05</lastmod>
|
|
1086
1086
|
<changefreq>daily</changefreq>
|
|
1087
1087
|
</url>
|
|
1088
1088
|
<url>
|
|
1089
1089
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/creating-devices.html</loc>
|
|
1090
|
-
<lastmod>2024-
|
|
1090
|
+
<lastmod>2024-08-05</lastmod>
|
|
1091
1091
|
<changefreq>daily</changefreq>
|
|
1092
1092
|
</url>
|
|
1093
1093
|
<url>
|
|
1094
1094
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html</loc>
|
|
1095
|
-
<lastmod>2024-
|
|
1095
|
+
<lastmod>2024-08-05</lastmod>
|
|
1096
1096
|
<changefreq>daily</changefreq>
|
|
1097
1097
|
</url>
|
|
1098
1098
|
<url>
|
|
1099
1099
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/interfaces.html</loc>
|
|
1100
|
-
<lastmod>2024-
|
|
1100
|
+
<lastmod>2024-08-05</lastmod>
|
|
1101
1101
|
<changefreq>daily</changefreq>
|
|
1102
1102
|
</url>
|
|
1103
1103
|
<url>
|
|
1104
1104
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/ipam.html</loc>
|
|
1105
|
-
<lastmod>2024-
|
|
1105
|
+
<lastmod>2024-08-05</lastmod>
|
|
1106
1106
|
<changefreq>daily</changefreq>
|
|
1107
1107
|
</url>
|
|
1108
1108
|
<url>
|
|
1109
1109
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/platforms.html</loc>
|
|
1110
|
-
<lastmod>2024-
|
|
1110
|
+
<lastmod>2024-08-05</lastmod>
|
|
1111
1111
|
<changefreq>daily</changefreq>
|
|
1112
1112
|
</url>
|
|
1113
1113
|
<url>
|
|
1114
1114
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/search-bar.html</loc>
|
|
1115
|
-
<lastmod>2024-
|
|
1115
|
+
<lastmod>2024-08-05</lastmod>
|
|
1116
1116
|
<changefreq>daily</changefreq>
|
|
1117
1117
|
</url>
|
|
1118
1118
|
<url>
|
|
1119
1119
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/tenants.html</loc>
|
|
1120
|
-
<lastmod>2024-
|
|
1120
|
+
<lastmod>2024-08-05</lastmod>
|
|
1121
1121
|
<changefreq>daily</changefreq>
|
|
1122
1122
|
</url>
|
|
1123
1123
|
<url>
|
|
1124
1124
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html</loc>
|
|
1125
|
-
<lastmod>2024-
|
|
1125
|
+
<lastmod>2024-08-05</lastmod>
|
|
1126
1126
|
<changefreq>daily</changefreq>
|
|
1127
1127
|
</url>
|
|
1128
1128
|
<url>
|
|
1129
1129
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/change-logging.html</loc>
|
|
1130
|
-
<lastmod>2024-
|
|
1130
|
+
<lastmod>2024-08-05</lastmod>
|
|
1131
1131
|
<changefreq>daily</changefreq>
|
|
1132
1132
|
</url>
|
|
1133
1133
|
<url>
|
|
1134
1134
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/computedfield.html</loc>
|
|
1135
|
-
<lastmod>2024-
|
|
1135
|
+
<lastmod>2024-08-05</lastmod>
|
|
1136
1136
|
<changefreq>daily</changefreq>
|
|
1137
1137
|
</url>
|
|
1138
1138
|
<url>
|
|
1139
1139
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/customfield.html</loc>
|
|
1140
|
-
<lastmod>2024-
|
|
1140
|
+
<lastmod>2024-08-05</lastmod>
|
|
1141
1141
|
<changefreq>daily</changefreq>
|
|
1142
1142
|
</url>
|
|
1143
1143
|
<url>
|
|
1144
1144
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/customlink.html</loc>
|
|
1145
|
-
<lastmod>2024-
|
|
1145
|
+
<lastmod>2024-08-05</lastmod>
|
|
1146
1146
|
<changefreq>daily</changefreq>
|
|
1147
1147
|
</url>
|
|
1148
1148
|
<url>
|
|
1149
1149
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/dynamicgroup.html</loc>
|
|
1150
|
-
<lastmod>2024-
|
|
1150
|
+
<lastmod>2024-08-05</lastmod>
|
|
1151
1151
|
<changefreq>daily</changefreq>
|
|
1152
1152
|
</url>
|
|
1153
1153
|
<url>
|
|
1154
1154
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/exporttemplate.html</loc>
|
|
1155
|
-
<lastmod>2024-
|
|
1155
|
+
<lastmod>2024-08-05</lastmod>
|
|
1156
1156
|
<changefreq>daily</changefreq>
|
|
1157
1157
|
</url>
|
|
1158
1158
|
<url>
|
|
1159
1159
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/externalintegration.html</loc>
|
|
1160
|
-
<lastmod>2024-
|
|
1160
|
+
<lastmod>2024-08-05</lastmod>
|
|
1161
1161
|
<changefreq>daily</changefreq>
|
|
1162
1162
|
</url>
|
|
1163
1163
|
<url>
|
|
1164
1164
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/gitrepository.html</loc>
|
|
1165
|
-
<lastmod>2024-
|
|
1165
|
+
<lastmod>2024-08-05</lastmod>
|
|
1166
1166
|
<changefreq>daily</changefreq>
|
|
1167
1167
|
</url>
|
|
1168
1168
|
<url>
|
|
1169
1169
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/graphql.html</loc>
|
|
1170
|
-
<lastmod>2024-
|
|
1170
|
+
<lastmod>2024-08-05</lastmod>
|
|
1171
1171
|
<changefreq>daily</changefreq>
|
|
1172
1172
|
</url>
|
|
1173
1173
|
<url>
|
|
1174
1174
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/graphqlquery.html</loc>
|
|
1175
|
-
<lastmod>2024-
|
|
1175
|
+
<lastmod>2024-08-05</lastmod>
|
|
1176
1176
|
<changefreq>daily</changefreq>
|
|
1177
1177
|
</url>
|
|
1178
1178
|
<url>
|
|
1179
1179
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/imageattachment.html</loc>
|
|
1180
|
-
<lastmod>2024-
|
|
1180
|
+
<lastmod>2024-08-05</lastmod>
|
|
1181
1181
|
<changefreq>daily</changefreq>
|
|
1182
1182
|
</url>
|
|
1183
1183
|
<url>
|
|
1184
1184
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/napalm.html</loc>
|
|
1185
|
-
<lastmod>2024-
|
|
1185
|
+
<lastmod>2024-08-05</lastmod>
|
|
1186
1186
|
<changefreq>daily</changefreq>
|
|
1187
1187
|
</url>
|
|
1188
1188
|
<url>
|
|
1189
1189
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/note.html</loc>
|
|
1190
|
-
<lastmod>2024-
|
|
1190
|
+
<lastmod>2024-08-05</lastmod>
|
|
1191
1191
|
<changefreq>daily</changefreq>
|
|
1192
1192
|
</url>
|
|
1193
1193
|
<url>
|
|
1194
1194
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/relationship.html</loc>
|
|
1195
|
-
<lastmod>2024-
|
|
1195
|
+
<lastmod>2024-08-05</lastmod>
|
|
1196
1196
|
<changefreq>daily</changefreq>
|
|
1197
1197
|
</url>
|
|
1198
1198
|
<url>
|
|
1199
1199
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/role.html</loc>
|
|
1200
|
-
<lastmod>2024-
|
|
1200
|
+
<lastmod>2024-08-05</lastmod>
|
|
1201
1201
|
<changefreq>daily</changefreq>
|
|
1202
1202
|
</url>
|
|
1203
1203
|
<url>
|
|
1204
1204
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/secret.html</loc>
|
|
1205
|
-
<lastmod>2024-
|
|
1205
|
+
<lastmod>2024-08-05</lastmod>
|
|
1206
1206
|
<changefreq>daily</changefreq>
|
|
1207
1207
|
</url>
|
|
1208
1208
|
<url>
|
|
1209
1209
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/status.html</loc>
|
|
1210
|
-
<lastmod>2024-
|
|
1210
|
+
<lastmod>2024-08-05</lastmod>
|
|
1211
1211
|
<changefreq>daily</changefreq>
|
|
1212
1212
|
</url>
|
|
1213
1213
|
<url>
|
|
1214
1214
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/tag.html</loc>
|
|
1215
|
-
<lastmod>2024-
|
|
1215
|
+
<lastmod>2024-08-05</lastmod>
|
|
1216
1216
|
<changefreq>daily</changefreq>
|
|
1217
1217
|
</url>
|
|
1218
1218
|
<url>
|
|
1219
1219
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/template-filters.html</loc>
|
|
1220
|
-
<lastmod>2024-
|
|
1220
|
+
<lastmod>2024-08-05</lastmod>
|
|
1221
1221
|
<changefreq>daily</changefreq>
|
|
1222
1222
|
</url>
|
|
1223
1223
|
<url>
|
|
1224
1224
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/webhook.html</loc>
|
|
1225
|
-
<lastmod>2024-
|
|
1225
|
+
<lastmod>2024-08-05</lastmod>
|
|
1226
1226
|
<changefreq>daily</changefreq>
|
|
1227
1227
|
</url>
|
|
1228
1228
|
<url>
|
|
1229
1229
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/index.html</loc>
|
|
1230
|
-
<lastmod>2024-
|
|
1230
|
+
<lastmod>2024-08-05</lastmod>
|
|
1231
1231
|
<changefreq>daily</changefreq>
|
|
1232
1232
|
</url>
|
|
1233
1233
|
<url>
|
|
1234
1234
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html</loc>
|
|
1235
|
-
<lastmod>2024-
|
|
1235
|
+
<lastmod>2024-08-05</lastmod>
|
|
1236
1236
|
<changefreq>daily</changefreq>
|
|
1237
1237
|
</url>
|
|
1238
1238
|
<url>
|
|
1239
1239
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/jobbutton.html</loc>
|
|
1240
|
-
<lastmod>2024-
|
|
1240
|
+
<lastmod>2024-08-05</lastmod>
|
|
1241
1241
|
<changefreq>daily</changefreq>
|
|
1242
1242
|
</url>
|
|
1243
1243
|
<url>
|
|
1244
1244
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/jobhook.html</loc>
|
|
1245
|
-
<lastmod>2024-
|
|
1245
|
+
<lastmod>2024-08-05</lastmod>
|
|
1246
1246
|
<changefreq>daily</changefreq>
|
|
1247
1247
|
</url>
|
|
1248
1248
|
<url>
|
|
1249
1249
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/jobs/models.html</loc>
|
|
1250
|
-
<lastmod>2024-
|
|
1250
|
+
<lastmod>2024-08-05</lastmod>
|
|
1251
1251
|
<changefreq>daily</changefreq>
|
|
1252
1252
|
</url>
|
|
1253
1253
|
<url>
|
|
1254
1254
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/rest-api/authentication.html</loc>
|
|
1255
|
-
<lastmod>2024-
|
|
1255
|
+
<lastmod>2024-08-05</lastmod>
|
|
1256
1256
|
<changefreq>daily</changefreq>
|
|
1257
1257
|
</url>
|
|
1258
1258
|
<url>
|
|
1259
1259
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/rest-api/filtering.html</loc>
|
|
1260
|
-
<lastmod>2024-
|
|
1260
|
+
<lastmod>2024-08-05</lastmod>
|
|
1261
1261
|
<changefreq>daily</changefreq>
|
|
1262
1262
|
</url>
|
|
1263
1263
|
<url>
|
|
1264
1264
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/rest-api/overview.html</loc>
|
|
1265
|
-
<lastmod>2024-
|
|
1265
|
+
<lastmod>2024-08-05</lastmod>
|
|
1266
1266
|
<changefreq>daily</changefreq>
|
|
1267
1267
|
</url>
|
|
1268
1268
|
<url>
|
|
1269
1269
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/rest-api/ui-related-endpoints.html</loc>
|
|
1270
|
-
<lastmod>2024-
|
|
1270
|
+
<lastmod>2024-08-05</lastmod>
|
|
1271
1271
|
<changefreq>daily</changefreq>
|
|
1272
1272
|
</url>
|
|
1273
1273
|
<url>
|
|
1274
1274
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/users/objectpermission.html</loc>
|
|
1275
|
-
<lastmod>2024-
|
|
1275
|
+
<lastmod>2024-08-05</lastmod>
|
|
1276
1276
|
<changefreq>daily</changefreq>
|
|
1277
1277
|
</url>
|
|
1278
1278
|
<url>
|
|
1279
1279
|
<loc>https://docs.nautobot.com/projects/core/en/stable/user-guide/platform-functionality/users/token.html</loc>
|
|
1280
|
-
<lastmod>2024-
|
|
1280
|
+
<lastmod>2024-08-05</lastmod>
|
|
1281
1281
|
<changefreq>daily</changefreq>
|
|
1282
1282
|
</url>
|
|
1283
1283
|
</urlset>
|