nautobot 2.2.0b1__py3-none-any.whl → 2.2.1__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/__init__.py +31 -0
- nautobot/apps/api.py +1 -2
- nautobot/apps/utils.py +4 -0
- nautobot/apps/views.py +2 -0
- nautobot/circuits/api/urls.py +1 -2
- nautobot/circuits/api/views.py +0 -12
- nautobot/circuits/apps.py +1 -1
- nautobot/circuits/tests/test_filters.py +1 -1
- nautobot/core/api/routers.py +50 -3
- nautobot/core/api/utils.py +4 -0
- nautobot/core/api/views.py +21 -15
- nautobot/core/cli/__init__.py +18 -11
- nautobot/core/constants.py +85 -0
- nautobot/core/filters.py +7 -1
- nautobot/core/forms/widgets.py +1 -2
- nautobot/core/graphql/schema.py +1 -0
- nautobot/core/management/commands/generate_test_data.py +4 -4
- nautobot/core/models/__init__.py +1 -0
- nautobot/core/settings.py +24 -3
- nautobot/core/settings.yaml +20 -0
- nautobot/core/signals.py +1 -0
- nautobot/core/tables.py +2 -1
- nautobot/core/templates/admin/base.html +23 -94
- nautobot/core/templates/generic/object_retrieve.html +2 -2
- nautobot/core/templates/graphene/graphiql.html +18 -47
- nautobot/core/templates/inc/footer.html +5 -5
- nautobot/core/templates/inc/javascript.html +4 -4
- nautobot/core/templates/inc/media.html +2 -2
- nautobot/core/templates/inc/nav_menu.html +0 -7
- nautobot/core/templates/nautobot_config.py.j2 +14 -1
- nautobot/core/templates/rest_framework/api.html +12 -5
- nautobot/core/templatetags/helpers.py +2 -2
- nautobot/core/testing/__init__.py +1 -1
- nautobot/core/testing/filters.py +1 -1
- nautobot/core/testing/views.py +30 -0
- nautobot/core/tests/integration/test_view_authentication.py +68 -0
- nautobot/core/tests/test_api.py +13 -6
- nautobot/core/tests/test_csv.py +5 -4
- nautobot/core/tests/test_filters.py +2 -1
- nautobot/core/tests/test_graphql.py +4 -14
- nautobot/core/tests/test_navigations.py +3 -0
- nautobot/core/tests/test_views.py +44 -16
- nautobot/core/utils/data.py +1 -2
- nautobot/core/utils/lookup.py +126 -0
- nautobot/core/views/__init__.py +3 -7
- nautobot/core/views/generic.py +20 -6
- nautobot/core/views/mixins.py +7 -1
- nautobot/core/views/renderers.py +11 -6
- nautobot/dcim/api/serializers.py +4 -4
- nautobot/dcim/api/urls.py +2 -3
- nautobot/dcim/api/views.py +7 -18
- nautobot/dcim/apps.py +8 -4
- nautobot/dcim/elevations.py +5 -1
- nautobot/dcim/factory.py +7 -7
- nautobot/dcim/filters/__init__.py +16 -17
- nautobot/dcim/forms.py +61 -45
- nautobot/dcim/homepage.py +11 -3
- nautobot/dcim/management/commands/migrate_location_contacts.py +218 -0
- nautobot/dcim/migrations/0057_controller_models.py +11 -70
- nautobot/dcim/models/__init__.py +2 -2
- nautobot/dcim/models/devices.py +14 -16
- nautobot/dcim/models/racks.py +1 -3
- nautobot/dcim/navigation.py +23 -31
- nautobot/dcim/signals.py +6 -6
- nautobot/dcim/tables/__init__.py +2 -2
- nautobot/dcim/tables/devices.py +13 -16
- nautobot/dcim/tables/template_code.py +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +70 -0
- nautobot/dcim/templates/dcim/controller_retrieve.html +35 -18
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +88 -0
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +75 -43
- nautobot/dcim/templates/dcim/device.html +11 -3
- nautobot/dcim/templates/dcim/device_edit.html +1 -1
- nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
- nautobot/dcim/tests/test_api.py +47 -6
- nautobot/dcim/tests/test_filters.py +92 -81
- nautobot/dcim/tests/test_graphql.py +11 -1
- nautobot/dcim/tests/test_models.py +15 -15
- nautobot/dcim/tests/test_signals.py +3 -1
- nautobot/dcim/tests/test_views.py +24 -12
- nautobot/dcim/urls.py +1 -1
- nautobot/dcim/views.py +25 -15
- nautobot/extras/api/serializers.py +20 -1
- nautobot/extras/api/urls.py +1 -2
- nautobot/extras/api/views.py +0 -10
- nautobot/extras/apps.py +7 -0
- nautobot/extras/context_managers.py +15 -4
- nautobot/extras/filters/__init__.py +53 -2
- nautobot/extras/filters/customfields.py +14 -9
- nautobot/extras/filters/mixins.py +6 -1
- nautobot/extras/forms/contacts.py +7 -0
- nautobot/extras/health_checks.py +1 -0
- nautobot/extras/jobs.py +1 -0
- nautobot/extras/managers.py +15 -2
- nautobot/extras/models/contacts.py +1 -0
- nautobot/extras/models/customfields.py +25 -2
- nautobot/extras/models/datasources.py +1 -0
- nautobot/extras/models/mixins.py +1 -0
- nautobot/extras/navigation.py +71 -65
- nautobot/extras/plugins/__init__.py +2 -1
- nautobot/extras/plugins/views.py +7 -11
- nautobot/extras/querysets.py +1 -2
- nautobot/extras/secrets/providers.py +1 -0
- nautobot/extras/signals.py +15 -5
- nautobot/extras/tasks.py +70 -17
- nautobot/extras/tests/test_api.py +2 -4
- nautobot/extras/tests/test_customfields.py +72 -9
- nautobot/extras/tests/test_dynamicgroups.py +2 -0
- nautobot/extras/tests/test_filters.py +89 -4
- nautobot/extras/tests/test_models.py +9 -0
- nautobot/extras/tests/test_relationships.py +10 -1
- nautobot/extras/tests/test_views.py +112 -1
- nautobot/extras/views.py +18 -17
- nautobot/ipam/api/serializers.py +10 -0
- nautobot/ipam/api/urls.py +1 -2
- nautobot/ipam/api/views.py +0 -11
- nautobot/ipam/apps.py +3 -2
- nautobot/ipam/tables.py +2 -22
- nautobot/ipam/tests/test_graphql.py +2 -3
- nautobot/ipam/tests/test_tables.py +42 -0
- nautobot/ipam/tests/test_views.py +1 -0
- nautobot/ipam/views.py +9 -9
- nautobot/project-static/css/base.css +1 -0
- nautobot/project-static/docs/404.html +126 -73
- nautobot/project-static/docs/apps/index.html +127 -71
- nautobot/project-static/docs/apps/nautobot-apps.html +127 -71
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +167 -73
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +165 -72
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +128 -72
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +345 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +172 -73
- nautobot/project-static/docs/development/apps/api/configuration-view.html +127 -71
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +127 -71
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +127 -71
- nautobot/project-static/docs/development/apps/api/models/global-search.html +127 -71
- nautobot/project-static/docs/development/apps/api/models/graphql.html +127 -71
- nautobot/project-static/docs/development/apps/api/models/index.html +127 -71
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +127 -71
- nautobot/project-static/docs/development/apps/api/prometheus.html +127 -71
- nautobot/project-static/docs/development/apps/api/setup.html +127 -71
- nautobot/project-static/docs/development/apps/api/testing.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/base-template.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +141 -80
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +144 -83
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/index.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/notes.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/urls.html +127 -71
- nautobot/project-static/docs/development/apps/index.html +127 -71
- nautobot/project-static/docs/development/apps/migration/code-updates.html +127 -71
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +127 -71
- nautobot/project-static/docs/development/apps/migration/from-v1.html +127 -71
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +127 -71
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +127 -71
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +127 -71
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +127 -71
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +127 -71
- nautobot/project-static/docs/development/core/application-registry.html +127 -71
- nautobot/project-static/docs/development/core/best-practices.html +145 -79
- nautobot/project-static/docs/development/core/bootstrap-ui.html +127 -71
- nautobot/project-static/docs/development/core/caching.html +127 -71
- nautobot/project-static/docs/development/core/controllers.html +141 -275
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +127 -71
- nautobot/project-static/docs/development/core/extending-models.html +13 -8166
- nautobot/project-static/docs/development/core/generic-views.html +142 -86
- nautobot/project-static/docs/development/core/getting-started.html +146 -81
- nautobot/project-static/docs/development/core/homepage.html +145 -89
- nautobot/project-static/docs/development/core/index.html +127 -71
- nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
- nautobot/project-static/docs/development/core/model-features.html +130 -74
- nautobot/project-static/docs/development/core/natural-keys.html +127 -71
- nautobot/project-static/docs/development/core/navigation-menu.html +127 -71
- nautobot/project-static/docs/development/core/release-checklist.html +127 -71
- nautobot/project-static/docs/development/core/role-internals.html +127 -71
- nautobot/project-static/docs/development/core/settings.html +127 -71
- nautobot/project-static/docs/development/core/style-guide.html +127 -71
- nautobot/project-static/docs/development/core/templates.html +127 -71
- nautobot/project-static/docs/development/core/testing.html +127 -71
- nautobot/project-static/docs/development/core/user-preferences.html +127 -71
- nautobot/project-static/docs/development/extending-models.html +3 -3
- nautobot/project-static/docs/development/index.html +127 -71
- nautobot/project-static/docs/development/jobs/index.html +128 -72
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +127 -71
- nautobot/project-static/docs/index.html +126 -73
- nautobot/project-static/docs/models/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +3 -3
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.0.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.1.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.2.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.3.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.4.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.5.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.6.html +127 -71
- nautobot/project-static/docs/release-notes/version-2.0.html +127 -71
- nautobot/project-static/docs/release-notes/version-2.1.html +538 -254
- nautobot/project-static/docs/release-notes/version-2.2.html +520 -101
- nautobot/project-static/docs/requirements.txt +3 -3
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +264 -259
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +192 -71
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -71
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +130 -74
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +134 -74
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +8616 -0
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/index.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +130 -74
- nautobot/project-static/docs/user-guide/administration/installation/services.html +127 -71
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +127 -71
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +127 -71
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +127 -71
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +362 -79
- nautobot/project-static/docs/user-guide/core-data-model/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +210 -85
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +130 -74
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +138 -71
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +138 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/{contact-and-team.html → contacts-and-teams.html} +128 -72
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +129 -73
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +129 -73
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +127 -71
- nautobot/project-static/docs/user-guide/index.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +127 -71
- nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
- nautobot/tenancy/api/urls.py +1 -2
- nautobot/tenancy/api/views.py +0 -12
- nautobot/tenancy/tables.py +1 -1
- nautobot/tenancy/tests/test_views.py +1 -0
- nautobot/users/api/urls.py +1 -2
- nautobot/users/api/views.py +2 -65
- nautobot/users/views.py +8 -8
- nautobot/virtualization/api/urls.py +1 -2
- nautobot/virtualization/api/views.py +0 -12
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/METADATA +24 -24
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/RECORD +418 -412
- nautobot/dcim/templates/dcim/controllerdevicegroup_create.html +0 -43
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
- nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
- /nautobot/dcim/templates/dcim/{controllerdevicegroup_retrieve.html → controllermanageddevicegroup_retrieve.html} +0 -0
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/NOTICE +0 -0
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/WHEEL +0 -0
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/entry_points.txt +0 -0
nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../../../../../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../../../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../../../../assets/stylesheets/main.bcfcd587.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../../../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -401,16 +401,17 @@
|
|
|
401
401
|
|
|
402
402
|
|
|
403
403
|
|
|
404
|
-
|
|
405
|
-
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
406
407
|
|
|
407
408
|
|
|
409
|
+
|
|
408
410
|
|
|
409
411
|
<li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
|
|
410
412
|
|
|
411
413
|
|
|
412
414
|
|
|
413
|
-
|
|
414
415
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
|
|
415
416
|
|
|
416
417
|
|
|
@@ -451,13 +452,14 @@
|
|
|
451
452
|
|
|
452
453
|
|
|
453
454
|
|
|
455
|
+
|
|
456
|
+
|
|
454
457
|
|
|
455
458
|
|
|
456
459
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
457
460
|
|
|
458
461
|
|
|
459
462
|
|
|
460
|
-
|
|
461
463
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" checked>
|
|
462
464
|
|
|
463
465
|
|
|
@@ -488,13 +490,14 @@
|
|
|
488
490
|
|
|
489
491
|
|
|
490
492
|
|
|
493
|
+
|
|
494
|
+
|
|
491
495
|
|
|
492
496
|
|
|
493
497
|
<li class="md-nav__item md-nav__item--nested">
|
|
494
498
|
|
|
495
499
|
|
|
496
500
|
|
|
497
|
-
|
|
498
501
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
|
|
499
502
|
|
|
500
503
|
|
|
@@ -690,6 +693,27 @@
|
|
|
690
693
|
|
|
691
694
|
|
|
692
695
|
|
|
696
|
+
<li class="md-nav__item">
|
|
697
|
+
<a href="../../../installation/health-checks.html" class="md-nav__link">
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
<span class="md-ellipsis">
|
|
701
|
+
Health Checks
|
|
702
|
+
</span>
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
</a>
|
|
706
|
+
</li>
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
|
|
693
717
|
<li class="md-nav__item">
|
|
694
718
|
<a href="../../../installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
695
719
|
|
|
@@ -724,13 +748,14 @@
|
|
|
724
748
|
|
|
725
749
|
|
|
726
750
|
|
|
751
|
+
|
|
752
|
+
|
|
727
753
|
|
|
728
754
|
|
|
729
755
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
730
756
|
|
|
731
757
|
|
|
732
758
|
|
|
733
|
-
|
|
734
759
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" checked>
|
|
735
760
|
|
|
736
761
|
|
|
@@ -805,13 +830,14 @@
|
|
|
805
830
|
|
|
806
831
|
|
|
807
832
|
|
|
833
|
+
|
|
834
|
+
|
|
808
835
|
|
|
809
836
|
|
|
810
837
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
811
838
|
|
|
812
839
|
|
|
813
840
|
|
|
814
|
-
|
|
815
841
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" checked>
|
|
816
842
|
|
|
817
843
|
|
|
@@ -873,13 +899,14 @@
|
|
|
873
899
|
|
|
874
900
|
|
|
875
901
|
|
|
902
|
+
|
|
903
|
+
|
|
876
904
|
|
|
877
905
|
|
|
878
906
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
879
907
|
|
|
880
908
|
|
|
881
909
|
|
|
882
|
-
|
|
883
910
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" checked>
|
|
884
911
|
|
|
885
912
|
|
|
@@ -1126,13 +1153,14 @@
|
|
|
1126
1153
|
|
|
1127
1154
|
|
|
1128
1155
|
|
|
1156
|
+
|
|
1157
|
+
|
|
1129
1158
|
|
|
1130
1159
|
|
|
1131
1160
|
<li class="md-nav__item md-nav__item--nested">
|
|
1132
1161
|
|
|
1133
1162
|
|
|
1134
1163
|
|
|
1135
|
-
|
|
1136
1164
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1137
1165
|
|
|
1138
1166
|
|
|
@@ -1213,13 +1241,14 @@
|
|
|
1213
1241
|
|
|
1214
1242
|
|
|
1215
1243
|
|
|
1244
|
+
|
|
1245
|
+
|
|
1216
1246
|
|
|
1217
1247
|
|
|
1218
1248
|
<li class="md-nav__item md-nav__item--nested">
|
|
1219
1249
|
|
|
1220
1250
|
|
|
1221
1251
|
|
|
1222
|
-
|
|
1223
1252
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1224
1253
|
|
|
1225
1254
|
|
|
@@ -1321,13 +1350,14 @@
|
|
|
1321
1350
|
|
|
1322
1351
|
|
|
1323
1352
|
|
|
1353
|
+
|
|
1354
|
+
|
|
1324
1355
|
|
|
1325
1356
|
|
|
1326
1357
|
<li class="md-nav__item md-nav__item--nested">
|
|
1327
1358
|
|
|
1328
1359
|
|
|
1329
1360
|
|
|
1330
|
-
|
|
1331
1361
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1332
1362
|
|
|
1333
1363
|
|
|
@@ -1437,13 +1467,14 @@
|
|
|
1437
1467
|
|
|
1438
1468
|
|
|
1439
1469
|
|
|
1470
|
+
|
|
1471
|
+
|
|
1440
1472
|
|
|
1441
1473
|
|
|
1442
1474
|
<li class="md-nav__item md-nav__item--nested">
|
|
1443
1475
|
|
|
1444
1476
|
|
|
1445
1477
|
|
|
1446
|
-
|
|
1447
1478
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1448
1479
|
|
|
1449
1480
|
|
|
@@ -1524,13 +1555,14 @@
|
|
|
1524
1555
|
|
|
1525
1556
|
|
|
1526
1557
|
|
|
1558
|
+
|
|
1559
|
+
|
|
1527
1560
|
|
|
1528
1561
|
|
|
1529
1562
|
<li class="md-nav__item md-nav__item--nested">
|
|
1530
1563
|
|
|
1531
1564
|
|
|
1532
1565
|
|
|
1533
|
-
|
|
1534
1566
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1535
1567
|
|
|
1536
1568
|
|
|
@@ -1745,13 +1777,14 @@
|
|
|
1745
1777
|
|
|
1746
1778
|
|
|
1747
1779
|
|
|
1780
|
+
|
|
1781
|
+
|
|
1748
1782
|
|
|
1749
1783
|
|
|
1750
1784
|
<li class="md-nav__item md-nav__item--nested">
|
|
1751
1785
|
|
|
1752
1786
|
|
|
1753
1787
|
|
|
1754
|
-
|
|
1755
1788
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1756
1789
|
|
|
1757
1790
|
|
|
@@ -1782,13 +1815,14 @@
|
|
|
1782
1815
|
|
|
1783
1816
|
|
|
1784
1817
|
|
|
1818
|
+
|
|
1819
|
+
|
|
1785
1820
|
|
|
1786
1821
|
|
|
1787
1822
|
<li class="md-nav__item md-nav__item--nested">
|
|
1788
1823
|
|
|
1789
1824
|
|
|
1790
1825
|
|
|
1791
|
-
|
|
1792
1826
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1793
1827
|
|
|
1794
1828
|
|
|
@@ -2001,7 +2035,7 @@
|
|
|
2001
2035
|
|
|
2002
2036
|
|
|
2003
2037
|
<li class="md-nav__item">
|
|
2004
|
-
<a href="../../../../feature-guides/
|
|
2038
|
+
<a href="../../../../feature-guides/contacts-and-teams.html" class="md-nav__link">
|
|
2005
2039
|
|
|
2006
2040
|
|
|
2007
2041
|
<span class="md-ellipsis">
|
|
@@ -2158,13 +2192,14 @@
|
|
|
2158
2192
|
|
|
2159
2193
|
|
|
2160
2194
|
|
|
2195
|
+
|
|
2196
|
+
|
|
2161
2197
|
|
|
2162
2198
|
|
|
2163
2199
|
<li class="md-nav__item md-nav__item--nested">
|
|
2164
2200
|
|
|
2165
2201
|
|
|
2166
2202
|
|
|
2167
|
-
|
|
2168
2203
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2169
2204
|
|
|
2170
2205
|
|
|
@@ -2195,13 +2230,14 @@
|
|
|
2195
2230
|
|
|
2196
2231
|
|
|
2197
2232
|
|
|
2233
|
+
|
|
2234
|
+
|
|
2198
2235
|
|
|
2199
2236
|
|
|
2200
2237
|
<li class="md-nav__item md-nav__item--nested">
|
|
2201
2238
|
|
|
2202
2239
|
|
|
2203
2240
|
|
|
2204
|
-
|
|
2205
2241
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2206
2242
|
|
|
2207
2243
|
|
|
@@ -2261,13 +2297,14 @@
|
|
|
2261
2297
|
|
|
2262
2298
|
|
|
2263
2299
|
|
|
2300
|
+
|
|
2301
|
+
|
|
2264
2302
|
|
|
2265
2303
|
|
|
2266
2304
|
<li class="md-nav__item md-nav__item--nested">
|
|
2267
2305
|
|
|
2268
2306
|
|
|
2269
2307
|
|
|
2270
|
-
|
|
2271
2308
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2272
2309
|
|
|
2273
2310
|
|
|
@@ -2411,13 +2448,14 @@
|
|
|
2411
2448
|
|
|
2412
2449
|
|
|
2413
2450
|
|
|
2451
|
+
|
|
2452
|
+
|
|
2414
2453
|
|
|
2415
2454
|
|
|
2416
2455
|
<li class="md-nav__item md-nav__item--nested">
|
|
2417
2456
|
|
|
2418
2457
|
|
|
2419
2458
|
|
|
2420
|
-
|
|
2421
2459
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2422
2460
|
|
|
2423
2461
|
|
|
@@ -2595,13 +2633,14 @@
|
|
|
2595
2633
|
|
|
2596
2634
|
|
|
2597
2635
|
|
|
2636
|
+
|
|
2637
|
+
|
|
2598
2638
|
|
|
2599
2639
|
|
|
2600
2640
|
<li class="md-nav__item md-nav__item--nested">
|
|
2601
2641
|
|
|
2602
2642
|
|
|
2603
2643
|
|
|
2604
|
-
|
|
2605
2644
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2606
2645
|
|
|
2607
2646
|
|
|
@@ -2816,13 +2855,14 @@
|
|
|
2816
2855
|
|
|
2817
2856
|
|
|
2818
2857
|
|
|
2858
|
+
|
|
2859
|
+
|
|
2819
2860
|
|
|
2820
2861
|
|
|
2821
2862
|
<li class="md-nav__item md-nav__item--nested">
|
|
2822
2863
|
|
|
2823
2864
|
|
|
2824
2865
|
|
|
2825
|
-
|
|
2826
2866
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2827
2867
|
|
|
2828
2868
|
|
|
@@ -3266,11 +3306,11 @@
|
|
|
3266
3306
|
|
|
3267
3307
|
|
|
3268
3308
|
<li class="md-nav__item">
|
|
3269
|
-
<a href="../../../../core-data-model/dcim/
|
|
3309
|
+
<a href="../../../../core-data-model/dcim/controllermanageddevicegroup.html" class="md-nav__link">
|
|
3270
3310
|
|
|
3271
3311
|
|
|
3272
3312
|
<span class="md-ellipsis">
|
|
3273
|
-
Controller Device Group
|
|
3313
|
+
Controller Managed Device Group
|
|
3274
3314
|
</span>
|
|
3275
3315
|
|
|
3276
3316
|
|
|
@@ -3297,13 +3337,14 @@
|
|
|
3297
3337
|
|
|
3298
3338
|
|
|
3299
3339
|
|
|
3340
|
+
|
|
3341
|
+
|
|
3300
3342
|
|
|
3301
3343
|
|
|
3302
3344
|
<li class="md-nav__item md-nav__item--nested">
|
|
3303
3345
|
|
|
3304
3346
|
|
|
3305
3347
|
|
|
3306
|
-
|
|
3307
3348
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3308
3349
|
|
|
3309
3350
|
|
|
@@ -3426,13 +3467,14 @@
|
|
|
3426
3467
|
|
|
3427
3468
|
|
|
3428
3469
|
|
|
3470
|
+
|
|
3471
|
+
|
|
3429
3472
|
|
|
3430
3473
|
|
|
3431
3474
|
<li class="md-nav__item md-nav__item--nested">
|
|
3432
3475
|
|
|
3433
3476
|
|
|
3434
3477
|
|
|
3435
|
-
|
|
3436
3478
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3437
3479
|
|
|
3438
3480
|
|
|
@@ -3660,13 +3702,14 @@
|
|
|
3660
3702
|
|
|
3661
3703
|
|
|
3662
3704
|
|
|
3705
|
+
|
|
3706
|
+
|
|
3663
3707
|
|
|
3664
3708
|
|
|
3665
3709
|
<li class="md-nav__item md-nav__item--nested">
|
|
3666
3710
|
|
|
3667
3711
|
|
|
3668
3712
|
|
|
3669
|
-
|
|
3670
3713
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3671
3714
|
|
|
3672
3715
|
|
|
@@ -3747,13 +3790,14 @@
|
|
|
3747
3790
|
|
|
3748
3791
|
|
|
3749
3792
|
|
|
3793
|
+
|
|
3794
|
+
|
|
3750
3795
|
|
|
3751
3796
|
|
|
3752
3797
|
<li class="md-nav__item md-nav__item--nested">
|
|
3753
3798
|
|
|
3754
3799
|
|
|
3755
3800
|
|
|
3756
|
-
|
|
3757
3801
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3758
3802
|
|
|
3759
3803
|
|
|
@@ -3905,13 +3949,14 @@
|
|
|
3905
3949
|
|
|
3906
3950
|
|
|
3907
3951
|
|
|
3952
|
+
|
|
3953
|
+
|
|
3908
3954
|
|
|
3909
3955
|
|
|
3910
3956
|
<li class="md-nav__item md-nav__item--nested">
|
|
3911
3957
|
|
|
3912
3958
|
|
|
3913
3959
|
|
|
3914
|
-
|
|
3915
3960
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
3916
3961
|
|
|
3917
3962
|
|
|
@@ -4110,13 +4155,14 @@
|
|
|
4110
4155
|
|
|
4111
4156
|
|
|
4112
4157
|
|
|
4158
|
+
|
|
4159
|
+
|
|
4113
4160
|
|
|
4114
4161
|
|
|
4115
4162
|
<li class="md-nav__item md-nav__item--nested">
|
|
4116
4163
|
|
|
4117
4164
|
|
|
4118
4165
|
|
|
4119
|
-
|
|
4120
4166
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4121
4167
|
|
|
4122
4168
|
|
|
@@ -4205,13 +4251,14 @@
|
|
|
4205
4251
|
|
|
4206
4252
|
|
|
4207
4253
|
|
|
4254
|
+
|
|
4255
|
+
|
|
4208
4256
|
|
|
4209
4257
|
|
|
4210
4258
|
<li class="md-nav__item md-nav__item--nested">
|
|
4211
4259
|
|
|
4212
4260
|
|
|
4213
4261
|
|
|
4214
|
-
|
|
4215
4262
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4216
4263
|
|
|
4217
4264
|
|
|
@@ -4405,13 +4452,14 @@
|
|
|
4405
4452
|
|
|
4406
4453
|
|
|
4407
4454
|
|
|
4455
|
+
|
|
4456
|
+
|
|
4408
4457
|
|
|
4409
4458
|
|
|
4410
4459
|
<li class="md-nav__item md-nav__item--nested">
|
|
4411
4460
|
|
|
4412
4461
|
|
|
4413
4462
|
|
|
4414
|
-
|
|
4415
4463
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4416
4464
|
|
|
4417
4465
|
|
|
@@ -4626,13 +4674,14 @@
|
|
|
4626
4674
|
|
|
4627
4675
|
|
|
4628
4676
|
|
|
4677
|
+
|
|
4678
|
+
|
|
4629
4679
|
|
|
4630
4680
|
|
|
4631
4681
|
<li class="md-nav__item md-nav__item--nested">
|
|
4632
4682
|
|
|
4633
4683
|
|
|
4634
4684
|
|
|
4635
|
-
|
|
4636
4685
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4637
4686
|
|
|
4638
4687
|
|
|
@@ -4749,16 +4798,14 @@
|
|
|
4749
4798
|
|
|
4750
4799
|
|
|
4751
4800
|
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
4801
|
|
|
4755
4802
|
|
|
4756
4803
|
|
|
4757
|
-
|
|
4804
|
+
|
|
4805
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4758
4806
|
|
|
4759
4807
|
|
|
4760
4808
|
|
|
4761
|
-
|
|
4762
4809
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4763
4810
|
|
|
4764
4811
|
|
|
@@ -4775,7 +4822,7 @@
|
|
|
4775
4822
|
</a>
|
|
4776
4823
|
|
|
4777
4824
|
|
|
4778
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4825
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4779
4826
|
<span class="md-nav__icon md-icon"></span>
|
|
4780
4827
|
</label>
|
|
4781
4828
|
|
|
@@ -4797,13 +4844,14 @@
|
|
|
4797
4844
|
|
|
4798
4845
|
|
|
4799
4846
|
|
|
4847
|
+
|
|
4848
|
+
|
|
4800
4849
|
|
|
4801
4850
|
|
|
4802
4851
|
<li class="md-nav__item md-nav__item--nested">
|
|
4803
4852
|
|
|
4804
4853
|
|
|
4805
4854
|
|
|
4806
|
-
|
|
4807
4855
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4808
4856
|
|
|
4809
4857
|
|
|
@@ -4871,13 +4919,14 @@
|
|
|
4871
4919
|
|
|
4872
4920
|
|
|
4873
4921
|
|
|
4922
|
+
|
|
4923
|
+
|
|
4874
4924
|
|
|
4875
4925
|
|
|
4876
4926
|
<li class="md-nav__item md-nav__item--nested">
|
|
4877
4927
|
|
|
4878
4928
|
|
|
4879
4929
|
|
|
4880
|
-
|
|
4881
4930
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4882
4931
|
|
|
4883
4932
|
|
|
@@ -4958,13 +5007,14 @@
|
|
|
4958
5007
|
|
|
4959
5008
|
|
|
4960
5009
|
|
|
5010
|
+
|
|
5011
|
+
|
|
4961
5012
|
|
|
4962
5013
|
|
|
4963
5014
|
<li class="md-nav__item md-nav__item--nested">
|
|
4964
5015
|
|
|
4965
5016
|
|
|
4966
5017
|
|
|
4967
|
-
|
|
4968
5018
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
4969
5019
|
|
|
4970
5020
|
|
|
@@ -5074,13 +5124,14 @@
|
|
|
5074
5124
|
|
|
5075
5125
|
|
|
5076
5126
|
|
|
5127
|
+
|
|
5128
|
+
|
|
5077
5129
|
|
|
5078
5130
|
|
|
5079
5131
|
<li class="md-nav__item md-nav__item--nested">
|
|
5080
5132
|
|
|
5081
5133
|
|
|
5082
5134
|
|
|
5083
|
-
|
|
5084
5135
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5085
5136
|
|
|
5086
5137
|
|
|
@@ -5266,13 +5317,14 @@
|
|
|
5266
5317
|
|
|
5267
5318
|
|
|
5268
5319
|
|
|
5320
|
+
|
|
5321
|
+
|
|
5269
5322
|
|
|
5270
5323
|
|
|
5271
5324
|
<li class="md-nav__item md-nav__item--nested">
|
|
5272
5325
|
|
|
5273
5326
|
|
|
5274
5327
|
|
|
5275
|
-
|
|
5276
5328
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5277
5329
|
|
|
5278
5330
|
|
|
@@ -5382,13 +5434,14 @@
|
|
|
5382
5434
|
|
|
5383
5435
|
|
|
5384
5436
|
|
|
5437
|
+
|
|
5438
|
+
|
|
5385
5439
|
|
|
5386
5440
|
|
|
5387
5441
|
<li class="md-nav__item md-nav__item--nested">
|
|
5388
5442
|
|
|
5389
5443
|
|
|
5390
5444
|
|
|
5391
|
-
|
|
5392
5445
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5393
5446
|
|
|
5394
5447
|
|
|
@@ -5645,13 +5698,14 @@
|
|
|
5645
5698
|
|
|
5646
5699
|
|
|
5647
5700
|
|
|
5701
|
+
|
|
5702
|
+
|
|
5648
5703
|
|
|
5649
5704
|
|
|
5650
5705
|
<li class="md-nav__item md-nav__item--nested">
|
|
5651
5706
|
|
|
5652
5707
|
|
|
5653
5708
|
|
|
5654
|
-
|
|
5655
5709
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5656
5710
|
|
|
5657
5711
|
|
|
@@ -5824,13 +5878,14 @@
|
|
|
5824
5878
|
|
|
5825
5879
|
|
|
5826
5880
|
|
|
5881
|
+
|
|
5882
|
+
|
|
5827
5883
|
|
|
5828
5884
|
|
|
5829
5885
|
<li class="md-nav__item md-nav__item--nested">
|
|
5830
5886
|
|
|
5831
5887
|
|
|
5832
5888
|
|
|
5833
|
-
|
|
5834
5889
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5835
5890
|
|
|
5836
5891
|
|
|
@@ -6352,13 +6407,14 @@
|
|
|
6352
6407
|
|
|
6353
6408
|
|
|
6354
6409
|
|
|
6410
|
+
|
|
6411
|
+
|
|
6355
6412
|
|
|
6356
6413
|
|
|
6357
6414
|
<li class="md-nav__item md-nav__item--nested">
|
|
6358
6415
|
|
|
6359
6416
|
|
|
6360
6417
|
|
|
6361
|
-
|
|
6362
6418
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6363
6419
|
|
|
6364
6420
|
|
|
@@ -6452,13 +6508,14 @@
|
|
|
6452
6508
|
|
|
6453
6509
|
|
|
6454
6510
|
|
|
6511
|
+
|
|
6512
|
+
|
|
6455
6513
|
|
|
6456
6514
|
|
|
6457
6515
|
<li class="md-nav__item md-nav__item--nested">
|
|
6458
6516
|
|
|
6459
6517
|
|
|
6460
6518
|
|
|
6461
|
-
|
|
6462
6519
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6463
6520
|
|
|
6464
6521
|
|
|
@@ -6589,13 +6646,14 @@
|
|
|
6589
6646
|
|
|
6590
6647
|
|
|
6591
6648
|
|
|
6649
|
+
|
|
6650
|
+
|
|
6592
6651
|
|
|
6593
6652
|
|
|
6594
6653
|
<li class="md-nav__item md-nav__item--nested">
|
|
6595
6654
|
|
|
6596
6655
|
|
|
6597
6656
|
|
|
6598
|
-
|
|
6599
6657
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6600
6658
|
|
|
6601
6659
|
|
|
@@ -6663,13 +6721,14 @@
|
|
|
6663
6721
|
|
|
6664
6722
|
|
|
6665
6723
|
|
|
6724
|
+
|
|
6725
|
+
|
|
6666
6726
|
|
|
6667
6727
|
|
|
6668
6728
|
<li class="md-nav__item md-nav__item--nested">
|
|
6669
6729
|
|
|
6670
6730
|
|
|
6671
6731
|
|
|
6672
|
-
|
|
6673
6732
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6674
6733
|
|
|
6675
6734
|
|
|
@@ -6874,11 +6933,11 @@
|
|
|
6874
6933
|
|
|
6875
6934
|
|
|
6876
6935
|
<li class="md-nav__item">
|
|
6877
|
-
<a href="../../../../../development/core/
|
|
6936
|
+
<a href="../../../../../development/core/generic-views.html" class="md-nav__link">
|
|
6878
6937
|
|
|
6879
6938
|
|
|
6880
6939
|
<span class="md-ellipsis">
|
|
6881
|
-
|
|
6940
|
+
Generic Views
|
|
6882
6941
|
</span>
|
|
6883
6942
|
|
|
6884
6943
|
|
|
@@ -6895,11 +6954,11 @@
|
|
|
6895
6954
|
|
|
6896
6955
|
|
|
6897
6956
|
<li class="md-nav__item">
|
|
6898
|
-
<a href="../../../../../development/core/
|
|
6957
|
+
<a href="../../../../../development/core/homepage.html" class="md-nav__link">
|
|
6899
6958
|
|
|
6900
6959
|
|
|
6901
6960
|
<span class="md-ellipsis">
|
|
6902
|
-
|
|
6961
|
+
Home Page Panels
|
|
6903
6962
|
</span>
|
|
6904
6963
|
|
|
6905
6964
|
|
|
@@ -6916,11 +6975,11 @@
|
|
|
6916
6975
|
|
|
6917
6976
|
|
|
6918
6977
|
<li class="md-nav__item">
|
|
6919
|
-
<a href="../../../../../development/core/
|
|
6978
|
+
<a href="../../../../../development/core/model-checklist.html" class="md-nav__link">
|
|
6920
6979
|
|
|
6921
6980
|
|
|
6922
6981
|
<span class="md-ellipsis">
|
|
6923
|
-
|
|
6982
|
+
Model Development Checklist
|
|
6924
6983
|
</span>
|
|
6925
6984
|
|
|
6926
6985
|
|
|
@@ -7143,16 +7202,14 @@
|
|
|
7143
7202
|
|
|
7144
7203
|
|
|
7145
7204
|
|
|
7146
|
-
|
|
7147
|
-
|
|
7148
7205
|
|
|
7149
7206
|
|
|
7150
7207
|
|
|
7151
|
-
|
|
7208
|
+
|
|
7209
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7152
7210
|
|
|
7153
7211
|
|
|
7154
7212
|
|
|
7155
|
-
|
|
7156
7213
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7157
7214
|
|
|
7158
7215
|
|
|
@@ -7169,7 +7226,7 @@
|
|
|
7169
7226
|
</a>
|
|
7170
7227
|
|
|
7171
7228
|
|
|
7172
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7229
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7173
7230
|
<span class="md-nav__icon md-icon"></span>
|
|
7174
7231
|
</label>
|
|
7175
7232
|
|
|
@@ -7408,16 +7465,14 @@
|
|
|
7408
7465
|
|
|
7409
7466
|
|
|
7410
7467
|
|
|
7411
|
-
|
|
7412
|
-
|
|
7413
7468
|
|
|
7414
7469
|
|
|
7415
7470
|
|
|
7416
|
-
|
|
7471
|
+
|
|
7472
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7417
7473
|
|
|
7418
7474
|
|
|
7419
7475
|
|
|
7420
|
-
|
|
7421
7476
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7422
7477
|
|
|
7423
7478
|
|
|
@@ -7434,7 +7489,7 @@
|
|
|
7434
7489
|
</a>
|
|
7435
7490
|
|
|
7436
7491
|
|
|
7437
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7492
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7438
7493
|
<span class="md-nav__icon md-icon"></span>
|
|
7439
7494
|
</label>
|
|
7440
7495
|
|
|
@@ -7456,13 +7511,14 @@
|
|
|
7456
7511
|
|
|
7457
7512
|
|
|
7458
7513
|
|
|
7514
|
+
|
|
7515
|
+
|
|
7459
7516
|
|
|
7460
7517
|
|
|
7461
7518
|
<li class="md-nav__item md-nav__item--nested">
|
|
7462
7519
|
|
|
7463
7520
|
|
|
7464
7521
|
|
|
7465
|
-
|
|
7466
7522
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7467
7523
|
|
|
7468
7524
|
|
|
@@ -8024,9 +8080,9 @@
|
|
|
8024
8080
|
<script id="__config" type="application/json">{"base": "../../../../..", "features": ["content.code.copy", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
8025
8081
|
|
|
8026
8082
|
|
|
8027
|
-
<script src="../../../../../assets/javascripts/bundle.
|
|
8083
|
+
<script src="../../../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8028
8084
|
|
|
8029
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8085
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8030
8086
|
|
|
8031
8087
|
|
|
8032
8088
|
</body>
|