nautobot 2.4.0b1__py3-none-any.whl → 2.4.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/__init__.py +1 -1
- nautobot/apps/api.py +8 -8
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/events.py +3 -3
- nautobot/apps/factory.py +2 -2
- nautobot/apps/filters.py +1 -1
- nautobot/apps/forms.py +20 -20
- nautobot/apps/graphql.py +2 -2
- nautobot/apps/jobs.py +8 -8
- nautobot/apps/models.py +19 -19
- nautobot/apps/tables.py +1 -1
- nautobot/apps/testing.py +10 -10
- nautobot/apps/ui.py +2 -2
- nautobot/apps/utils.py +7 -7
- nautobot/apps/views.py +7 -7
- nautobot/circuits/api/serializers.py +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/tables.py +2 -1
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- nautobot/circuits/tests/integration/test_circuits_bulk_operations.py +43 -0
- nautobot/circuits/tests/integration/test_relationships.py +1 -1
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/views.py +0 -16
- nautobot/core/api/constants.py +11 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +3 -9
- nautobot/core/api/schema.py +13 -2
- nautobot/core/api/serializers.py +40 -34
- nautobot/core/api/views.py +56 -4
- nautobot/core/apps/__init__.py +0 -5
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +2 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +67 -35
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +14 -11
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +28 -7
- nautobot/core/jobs/bulk_actions.py +285 -0
- nautobot/core/jobs/cleanup.py +48 -12
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +3 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +6 -3
- nautobot/core/settings.py +29 -2
- nautobot/core/settings.yaml +21 -0
- nautobot/core/tables.py +79 -61
- nautobot/core/templates/about.html +67 -0
- nautobot/core/templates/generic/object_bulk_destroy.html +1 -1
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/inc/nav_menu.html +1 -0
- nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
- nautobot/core/templates/inc/tenant_table_row.html +11 -0
- nautobot/core/templates/nautobot_config.py.j2 +13 -0
- nautobot/core/templates/search.html +7 -0
- nautobot/core/templates/utilities/render_jinja2.html +1 -1
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +7 -0
- nautobot/core/templatetags/helpers.py +11 -2
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +170 -15
- nautobot/core/testing/filters.py +45 -10
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/integration.py +514 -5
- nautobot/core/testing/mixins.py +7 -2
- nautobot/core/testing/views.py +44 -29
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +98 -1
- nautobot/core/tests/test_csv.py +25 -3
- nautobot/core/tests/test_filters.py +209 -246
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jobs.py +492 -1
- nautobot/core/tests/test_models.py +9 -0
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_utils.py +63 -1
- nautobot/core/tests/test_views.py +30 -3
- nautobot/core/ui/nav.py +1 -0
- nautobot/core/ui/object_detail.py +15 -1
- nautobot/core/urls.py +11 -0
- nautobot/core/utils/git.py +7 -2
- nautobot/core/utils/lookup.py +11 -8
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +42 -0
- nautobot/core/views/generic.py +131 -197
- nautobot/core/views/mixins.py +136 -41
- nautobot/core/views/renderers.py +6 -6
- nautobot/core/views/utils.py +2 -2
- nautobot/dcim/api/serializers.py +56 -64
- nautobot/dcim/api/views.py +47 -113
- nautobot/dcim/constants.py +6 -13
- nautobot/dcim/factory.py +6 -1
- nautobot/dcim/filters/__init__.py +31 -2
- nautobot/dcim/forms.py +48 -17
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +10 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +9 -6
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/cable.html +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +1 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
- nautobot/dcim/templates/dcim/device/base.html +1 -1
- nautobot/dcim/templates/dcim/device.html +3 -11
- nautobot/dcim/templates/dcim/device_component.html +1 -1
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/devicetype.html +1 -1
- nautobot/dcim/templates/dcim/location.html +2 -10
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/locationtype.html +1 -1
- nautobot/dcim/templates/dcim/locationtype_retrieve.html +1 -1
- nautobot/dcim/templates/dcim/manufacturer.html +1 -1
- nautobot/dcim/templates/dcim/platform.html +1 -1
- nautobot/dcim/templates/dcim/powerfeed.html +1 -1
- nautobot/dcim/templates/dcim/powerpanel.html +1 -1
- nautobot/dcim/templates/dcim/rack.html +2 -10
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackgroup.html +1 -1
- nautobot/dcim/templates/dcim/rackreservation.html +3 -11
- nautobot/dcim/templates/dcim/virtualchassis.html +1 -1
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/integration/test_device_bulk_operations.py +30 -0
- nautobot/dcim/tests/integration/test_location_bulk_operations.py +43 -0
- nautobot/dcim/tests/test_api.py +16 -5
- nautobot/dcim/tests/test_filters.py +33 -0
- nautobot/dcim/tests/test_forms.py +51 -2
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +52 -9
- nautobot/dcim/tests/test_views.py +30 -84
- nautobot/dcim/views.py +13 -28
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +123 -85
- nautobot/extras/api/views.py +33 -30
- nautobot/extras/constants.py +3 -0
- nautobot/extras/datasources/git.py +125 -0
- nautobot/extras/filters/__init__.py +8 -6
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +139 -31
- nautobot/extras/forms/mixins.py +14 -6
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +85 -18
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
- nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
- nautobot/extras/migrations/0122_add_graphqlquery_owner_content_type.py +34 -0
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +41 -23
- nautobot/extras/models/datasources.py +85 -0
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +23 -4
- nautobot/extras/models/models.py +17 -2
- nautobot/extras/models/relationships.py +17 -5
- nautobot/extras/plugins/__init__.py +13 -2
- nautobot/extras/plugins/marketplace_manifest.yml +84 -79
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/views.py +65 -69
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/signals.py +15 -1
- nautobot/extras/tables.py +7 -5
- nautobot/extras/templates/extras/computedfield.html +1 -1
- nautobot/extras/templates/extras/configcontext.html +1 -1
- nautobot/extras/templates/extras/configcontextschema.html +1 -1
- nautobot/extras/templates/extras/customfield.html +1 -1
- nautobot/extras/templates/extras/customlink.html +1 -1
- nautobot/extras/templates/extras/dynamicgroup.html +2 -10
- nautobot/extras/templates/extras/exporttemplate.html +1 -1
- nautobot/extras/templates/extras/gitrepository.html +1 -1
- nautobot/extras/templates/extras/graphqlquery.html +1 -1
- nautobot/extras/templates/extras/job_detail.html +17 -1
- nautobot/extras/templates/extras/job_edit.html +1 -0
- nautobot/extras/templates/extras/jobbutton_retrieve.html +1 -1
- nautobot/extras/templates/extras/jobhook.html +1 -1
- nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
- nautobot/extras/templates/extras/jobresult.html +1 -1
- nautobot/extras/templates/extras/marketplace.html +29 -11
- nautobot/extras/templates/extras/objectchange.html +1 -1
- nautobot/extras/templates/extras/plugin_detail.html +33 -16
- nautobot/extras/templates/extras/plugins_tiles.html +21 -10
- nautobot/extras/templates/extras/relationship.html +1 -63
- nautobot/extras/templates/extras/role_retrieve.html +1 -1
- nautobot/extras/templates/extras/scheduledjob.html +1 -1
- nautobot/extras/templates/extras/secret.html +1 -1
- nautobot/extras/templates/extras/secretsgroup.html +1 -1
- nautobot/extras/templates/extras/status.html +1 -1
- nautobot/extras/templates/extras/tag.html +1 -1
- nautobot/extras/templates/extras/webhook.html +1 -1
- nautobot/extras/templatetags/job_buttons.py +4 -4
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/singleton.py +16 -0
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_interfaces.gql +8 -0
- nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_names.gql +5 -0
- nautobot/extras/tests/git_data/02-invalid-files/graphql_queries/bad_device_names.gql +5 -0
- nautobot/extras/tests/git_helper.py +9 -1
- nautobot/extras/tests/integration/__init__.py +29 -16
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +19 -13
- nautobot/extras/tests/test_customfields.py +50 -52
- nautobot/extras/tests/test_datasources.py +29 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +33 -1
- nautobot/extras/tests/test_jobs.py +178 -32
- nautobot/extras/tests/test_models.py +299 -10
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +120 -9
- nautobot/extras/tests/test_utils.py +22 -1
- nautobot/extras/tests/test_views.py +56 -194
- nautobot/extras/utils.py +20 -10
- nautobot/extras/views.py +85 -110
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +41 -33
- nautobot/ipam/api/views.py +68 -117
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/lookups.py +101 -62
- nautobot/ipam/models.py +74 -18
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +25 -9
- nautobot/ipam/templates/ipam/ipaddress.html +2 -10
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
- nautobot/ipam/templates/ipam/prefix.html +2 -10
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/rir.html +1 -1
- nautobot/ipam/templates/ipam/routetarget.html +1 -1
- nautobot/ipam/templates/ipam/service.html +1 -1
- nautobot/ipam/templates/ipam/vlan.html +2 -10
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vlangroup.html +1 -1
- nautobot/ipam/templates/ipam/vrf.html +1 -1
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +436 -3
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +119 -34
- nautobot/ipam/tests/test_querysets.py +63 -1
- nautobot/ipam/tests/test_utils.py +41 -2
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/utils/__init__.py +54 -17
- nautobot/ipam/views.py +61 -87
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/docs/404.html +131 -14
- nautobot/project-static/docs/apps/index.html +131 -14
- nautobot/project-static/docs/apps/nautobot-apps.html +132 -16
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.60a45f97.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.60a45f97.min.js.map} +2 -2
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js → search.f8cc74c7.min.js} +1 -1
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js.map → search.f8cc74c7.min.js.map} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css → main.a40c8224.min.css} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +147 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +459 -132
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +175 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +180 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +138 -16
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +137 -15
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +164 -27
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +187 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +193 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +216 -48
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +324 -75
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +666 -175
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +194 -46
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +538 -177
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +578 -221
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +145 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +156 -25
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +492 -65
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +705 -215
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +943 -422
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +619 -200
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +474 -159
- nautobot/project-static/docs/development/apps/api/configuration-view.html +131 -14
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/global-search.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/graphql.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +153 -17
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +131 -14
- nautobot/project-static/docs/development/apps/api/prometheus.html +131 -14
- nautobot/project-static/docs/development/apps/api/setup.html +131 -14
- nautobot/project-static/docs/development/apps/api/testing.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/base-template.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/notes.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +137 -16
- nautobot/project-static/docs/development/apps/api/views/urls.html +131 -14
- nautobot/project-static/docs/development/apps/index.html +131 -14
- nautobot/project-static/docs/development/apps/migration/code-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/from-v1.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +135 -18
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +297 -25
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +131 -14
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +131 -14
- nautobot/project-static/docs/development/core/application-registry.html +131 -14
- nautobot/project-static/docs/development/core/best-practices.html +131 -14
- nautobot/project-static/docs/development/core/bootstrap-ui.html +131 -14
- nautobot/project-static/docs/development/core/caching.html +131 -14
- nautobot/project-static/docs/development/core/controllers.html +131 -14
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +158 -84
- nautobot/project-static/docs/development/core/generic-views.html +131 -14
- nautobot/project-static/docs/development/core/getting-started.html +334 -234
- nautobot/project-static/docs/development/core/homepage.html +134 -17
- nautobot/project-static/docs/development/core/index.html +131 -14
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +9829 -0
- nautobot/project-static/docs/development/core/model-checklist.html +141 -22
- nautobot/project-static/docs/development/core/model-features.html +131 -14
- nautobot/project-static/docs/development/core/natural-keys.html +131 -14
- nautobot/project-static/docs/development/core/navigation-menu.html +131 -14
- nautobot/project-static/docs/development/core/release-checklist.html +134 -17
- nautobot/project-static/docs/development/core/role-internals.html +131 -14
- nautobot/project-static/docs/development/core/settings.html +131 -14
- nautobot/project-static/docs/development/core/style-guide.html +134 -17
- nautobot/project-static/docs/development/core/templates.html +132 -15
- nautobot/project-static/docs/development/core/testing.html +131 -14
- nautobot/project-static/docs/development/core/ui-component-framework.html +454 -283
- nautobot/project-static/docs/development/core/user-preferences.html +131 -14
- nautobot/project-static/docs/development/index.html +131 -14
- nautobot/project-static/docs/development/jobs/index.html +301 -132
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +131 -14
- nautobot/project-static/docs/index.html +139 -33
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +132 -17
- nautobot/project-static/docs/overview/design_philosophy.html +131 -14
- nautobot/project-static/docs/release-notes/index.html +137 -22
- nautobot/project-static/docs/release-notes/version-1.0.html +319 -203
- nautobot/project-static/docs/release-notes/version-1.1.html +316 -200
- nautobot/project-static/docs/release-notes/version-1.2.html +391 -275
- nautobot/project-static/docs/release-notes/version-1.3.html +417 -301
- nautobot/project-static/docs/release-notes/version-1.4.html +502 -387
- nautobot/project-static/docs/release-notes/version-1.5.html +690 -576
- nautobot/project-static/docs/release-notes/version-1.6.html +989 -457
- nautobot/project-static/docs/release-notes/version-2.0.html +613 -499
- nautobot/project-static/docs/release-notes/version-2.1.html +448 -334
- nautobot/project-static/docs/release-notes/version-2.2.html +441 -327
- nautobot/project-static/docs/release-notes/version-2.3.html +1171 -451
- nautobot/project-static/docs/release-notes/version-2.4.html +800 -111
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +303 -287
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +133 -16
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +195 -18
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +134 -17
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +133 -16
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +151 -18
- nautobot/project-static/docs/user-guide/administration/installation/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +132 -15
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/services.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +131 -14
- nautobot/project-static/docs/user-guide/administration/security/index.html +9420 -0
- nautobot/project-static/docs/user-guide/administration/security/notices.html +9843 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +131 -14
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +134 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +135 -22
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +134 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +134 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +236 -34
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +134 -17
- nautobot/project-static/docs/{development/core/local-k8s.html → user-guide/feature-guides/wireless-networks-and-controllers.html} +632 -566
- nautobot/project-static/docs/user-guide/index.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +135 -18
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +451 -16
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +135 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +134 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9797 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +132 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +179 -35
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +159 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +131 -14
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/templates/tenancy/tenant.html +1 -2
- nautobot/tenancy/templates/tenancy/tenantgroup.html +1 -1
- nautobot/tenancy/views.py +4 -2
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +5 -4
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +5 -24
- nautobot/virtualization/filters.py +20 -3
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster.html +1 -1
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/clustergroup.html +1 -1
- nautobot/virtualization/templates/virtualization/clustertype.html +1 -1
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -10
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/templates/virtualization/vminterface.html +1 -1
- nautobot/virtualization/tests/test_filters.py +17 -0
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_filters.py +29 -1
- nautobot/wireless/tests/test_views.py +22 -1
- nautobot/wireless/views.py +0 -10
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/METADATA +9 -9
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/RECORD +667 -610
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- /nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css.map → main.a40c8224.min.css.map} +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/entry_points.txt +0 -0
|
@@ -8,25 +8,25 @@
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
<link rel="canonical" href="https://docs.nautobot.com/projects/core/en/stable/
|
|
11
|
+
<link rel="canonical" href="https://docs.nautobot.com/projects/core/en/stable/user-guide/feature-guides/wireless-networks-and-controllers.html">
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
<link rel="prev" href="
|
|
14
|
+
<link rel="prev" href="software-image-files-and-versions.html">
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
<link rel="next" href="model
|
|
17
|
+
<link rel="next" href="../core-data-model/overview/introduction.html">
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.50">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
<title>
|
|
25
|
+
<title>Wireless Networks and Controllers - Nautobot Documentation</title>
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../assets/stylesheets/main.a40c8224.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
41
|
+
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1"/></svg>');}</style>
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div data-md-component="skip">
|
|
96
96
|
|
|
97
97
|
|
|
98
|
-
<a href="#
|
|
98
|
+
<a href="#wireless-networks-and-controllers" class="md-skip">
|
|
99
99
|
Skip to content
|
|
100
100
|
</a>
|
|
101
101
|
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
<div class="md-header__topic" data-md-component="header-topic">
|
|
131
131
|
<span class="md-ellipsis">
|
|
132
132
|
|
|
133
|
-
|
|
133
|
+
Wireless Networks and Controllers
|
|
134
134
|
|
|
135
135
|
</span>
|
|
136
136
|
</div>
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
218
218
|
<div class="md-source__icon md-icon">
|
|
219
219
|
|
|
220
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
220
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
|
|
221
221
|
</div>
|
|
222
222
|
<div class="md-source__repository">
|
|
223
223
|
GitHub
|
|
@@ -253,9 +253,11 @@
|
|
|
253
253
|
|
|
254
254
|
|
|
255
255
|
|
|
256
|
+
|
|
256
257
|
|
|
257
|
-
|
|
258
|
-
|
|
258
|
+
|
|
259
|
+
<li class="md-tabs__item md-tabs__item--active">
|
|
260
|
+
<a href="../index.html" class="md-tabs__link">
|
|
259
261
|
|
|
260
262
|
|
|
261
263
|
|
|
@@ -270,11 +272,9 @@
|
|
|
270
272
|
|
|
271
273
|
|
|
272
274
|
|
|
273
|
-
|
|
274
|
-
|
|
275
275
|
|
|
276
|
-
<li class="md-tabs__item
|
|
277
|
-
<a href="
|
|
276
|
+
<li class="md-tabs__item">
|
|
277
|
+
<a href="../../development/index.html" class="md-tabs__link">
|
|
278
278
|
|
|
279
279
|
|
|
280
280
|
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
378
378
|
<div class="md-source__icon md-icon">
|
|
379
379
|
|
|
380
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
380
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
|
|
381
381
|
</div>
|
|
382
382
|
<div class="md-source__repository">
|
|
383
383
|
GitHub
|
|
@@ -486,25 +486,30 @@
|
|
|
486
486
|
|
|
487
487
|
|
|
488
488
|
|
|
489
|
+
|
|
490
|
+
|
|
489
491
|
|
|
490
492
|
|
|
491
493
|
|
|
492
494
|
|
|
493
495
|
|
|
494
496
|
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
495
500
|
|
|
496
501
|
|
|
497
502
|
|
|
498
|
-
<li class="md-nav__item md-nav__item--nested">
|
|
503
|
+
<li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
|
|
499
504
|
|
|
500
505
|
|
|
501
506
|
|
|
502
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" >
|
|
507
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
|
|
503
508
|
|
|
504
509
|
|
|
505
510
|
|
|
506
511
|
<div class="md-nav__link md-nav__container">
|
|
507
|
-
<a href="
|
|
512
|
+
<a href="../index.html" class="md-nav__link ">
|
|
508
513
|
|
|
509
514
|
|
|
510
515
|
<span class="md-ellipsis">
|
|
@@ -515,13 +520,13 @@
|
|
|
515
520
|
</a>
|
|
516
521
|
|
|
517
522
|
|
|
518
|
-
<label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="
|
|
523
|
+
<label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="">
|
|
519
524
|
<span class="md-nav__icon md-icon"></span>
|
|
520
525
|
</label>
|
|
521
526
|
|
|
522
527
|
</div>
|
|
523
528
|
|
|
524
|
-
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="
|
|
529
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
|
|
525
530
|
<label class="md-nav__title" for="__nav_2">
|
|
526
531
|
<span class="md-nav__icon md-icon"></span>
|
|
527
532
|
User Guide
|
|
@@ -611,7 +616,7 @@
|
|
|
611
616
|
|
|
612
617
|
|
|
613
618
|
<li class="md-nav__item">
|
|
614
|
-
<a href="
|
|
619
|
+
<a href="../administration/installation/index.html" class="md-nav__link">
|
|
615
620
|
|
|
616
621
|
|
|
617
622
|
<span class="md-ellipsis">
|
|
@@ -632,7 +637,7 @@
|
|
|
632
637
|
|
|
633
638
|
|
|
634
639
|
<li class="md-nav__item">
|
|
635
|
-
<a href="
|
|
640
|
+
<a href="../administration/installation/install_system.html" class="md-nav__link">
|
|
636
641
|
|
|
637
642
|
|
|
638
643
|
<span class="md-ellipsis">
|
|
@@ -653,7 +658,7 @@
|
|
|
653
658
|
|
|
654
659
|
|
|
655
660
|
<li class="md-nav__item">
|
|
656
|
-
<a href="
|
|
661
|
+
<a href="../administration/installation/nautobot.html" class="md-nav__link">
|
|
657
662
|
|
|
658
663
|
|
|
659
664
|
<span class="md-ellipsis">
|
|
@@ -674,7 +679,7 @@
|
|
|
674
679
|
|
|
675
680
|
|
|
676
681
|
<li class="md-nav__item">
|
|
677
|
-
<a href="
|
|
682
|
+
<a href="../administration/installation/services.html" class="md-nav__link">
|
|
678
683
|
|
|
679
684
|
|
|
680
685
|
<span class="md-ellipsis">
|
|
@@ -695,7 +700,7 @@
|
|
|
695
700
|
|
|
696
701
|
|
|
697
702
|
<li class="md-nav__item">
|
|
698
|
-
<a href="
|
|
703
|
+
<a href="../administration/installation/http-server.html" class="md-nav__link">
|
|
699
704
|
|
|
700
705
|
|
|
701
706
|
<span class="md-ellipsis">
|
|
@@ -716,7 +721,7 @@
|
|
|
716
721
|
|
|
717
722
|
|
|
718
723
|
<li class="md-nav__item">
|
|
719
|
-
<a href="
|
|
724
|
+
<a href="../administration/installation/app-install.html" class="md-nav__link">
|
|
720
725
|
|
|
721
726
|
|
|
722
727
|
<span class="md-ellipsis">
|
|
@@ -737,7 +742,7 @@
|
|
|
737
742
|
|
|
738
743
|
|
|
739
744
|
<li class="md-nav__item">
|
|
740
|
-
<a href="
|
|
745
|
+
<a href="../administration/installation/external-authentication.html" class="md-nav__link">
|
|
741
746
|
|
|
742
747
|
|
|
743
748
|
<span class="md-ellipsis">
|
|
@@ -804,7 +809,7 @@
|
|
|
804
809
|
|
|
805
810
|
|
|
806
811
|
<li class="md-nav__item">
|
|
807
|
-
<a href="
|
|
812
|
+
<a href="../administration/upgrading/database-backup.html" class="md-nav__link">
|
|
808
813
|
|
|
809
814
|
|
|
810
815
|
<span class="md-ellipsis">
|
|
@@ -825,7 +830,7 @@
|
|
|
825
830
|
|
|
826
831
|
|
|
827
832
|
<li class="md-nav__item">
|
|
828
|
-
<a href="
|
|
833
|
+
<a href="../administration/upgrading/upgrading.html" class="md-nav__link">
|
|
829
834
|
|
|
830
835
|
|
|
831
836
|
<span class="md-ellipsis">
|
|
@@ -861,7 +866,7 @@
|
|
|
861
866
|
|
|
862
867
|
|
|
863
868
|
<div class="md-nav__link md-nav__container">
|
|
864
|
-
<a href="
|
|
869
|
+
<a href="../administration/upgrading/from-v1/upgrading-from-nautobot-v1.html" class="md-nav__link ">
|
|
865
870
|
|
|
866
871
|
|
|
867
872
|
<span class="md-ellipsis">
|
|
@@ -892,7 +897,7 @@
|
|
|
892
897
|
|
|
893
898
|
|
|
894
899
|
<li class="md-nav__item">
|
|
895
|
-
<a href="
|
|
900
|
+
<a href="../administration/upgrading/from-v1/region-and-site-data-migration-guide.html" class="md-nav__link">
|
|
896
901
|
|
|
897
902
|
|
|
898
903
|
<span class="md-ellipsis">
|
|
@@ -928,7 +933,7 @@
|
|
|
928
933
|
|
|
929
934
|
|
|
930
935
|
<div class="md-nav__link md-nav__container">
|
|
931
|
-
<a href="
|
|
936
|
+
<a href="../administration/upgrading/from-v1/ipam/index.html" class="md-nav__link ">
|
|
932
937
|
|
|
933
938
|
|
|
934
939
|
<span class="md-ellipsis">
|
|
@@ -959,7 +964,7 @@
|
|
|
959
964
|
|
|
960
965
|
|
|
961
966
|
<li class="md-nav__item">
|
|
962
|
-
<a href="
|
|
967
|
+
<a href="../administration/upgrading/from-v1/ipam/whats-changed.html" class="md-nav__link">
|
|
963
968
|
|
|
964
969
|
|
|
965
970
|
<span class="md-ellipsis">
|
|
@@ -980,7 +985,7 @@
|
|
|
980
985
|
|
|
981
986
|
|
|
982
987
|
<li class="md-nav__item">
|
|
983
|
-
<a href="
|
|
988
|
+
<a href="../administration/upgrading/from-v1/ipam/before-you-upgrade.html" class="md-nav__link">
|
|
984
989
|
|
|
985
990
|
|
|
986
991
|
<span class="md-ellipsis">
|
|
@@ -1001,7 +1006,7 @@
|
|
|
1001
1006
|
|
|
1002
1007
|
|
|
1003
1008
|
<li class="md-nav__item">
|
|
1004
|
-
<a href="
|
|
1009
|
+
<a href="../administration/upgrading/from-v1/ipam/after-you-upgrade.html" class="md-nav__link">
|
|
1005
1010
|
|
|
1006
1011
|
|
|
1007
1012
|
<span class="md-ellipsis">
|
|
@@ -1022,7 +1027,7 @@
|
|
|
1022
1027
|
|
|
1023
1028
|
|
|
1024
1029
|
<li class="md-nav__item">
|
|
1025
|
-
<a href="
|
|
1030
|
+
<a href="../administration/upgrading/from-v1/ipam/for-developers.html" class="md-nav__link">
|
|
1026
1031
|
|
|
1027
1032
|
|
|
1028
1033
|
<span class="md-ellipsis">
|
|
@@ -1105,7 +1110,7 @@
|
|
|
1105
1110
|
|
|
1106
1111
|
|
|
1107
1112
|
<li class="md-nav__item">
|
|
1108
|
-
<a href="
|
|
1113
|
+
<a href="../administration/migration/migrating-from-netbox.html" class="md-nav__link">
|
|
1109
1114
|
|
|
1110
1115
|
|
|
1111
1116
|
<span class="md-ellipsis">
|
|
@@ -1126,7 +1131,7 @@
|
|
|
1126
1131
|
|
|
1127
1132
|
|
|
1128
1133
|
<li class="md-nav__item">
|
|
1129
|
-
<a href="
|
|
1134
|
+
<a href="../administration/migration/migrating-from-postgresql.html" class="md-nav__link">
|
|
1130
1135
|
|
|
1131
1136
|
|
|
1132
1137
|
<span class="md-ellipsis">
|
|
@@ -1170,7 +1175,7 @@
|
|
|
1170
1175
|
|
|
1171
1176
|
|
|
1172
1177
|
<div class="md-nav__link md-nav__container">
|
|
1173
|
-
<a href="
|
|
1178
|
+
<a href="../administration/configuration/index.html" class="md-nav__link ">
|
|
1174
1179
|
|
|
1175
1180
|
|
|
1176
1181
|
<span class="md-ellipsis">
|
|
@@ -1201,7 +1206,7 @@
|
|
|
1201
1206
|
|
|
1202
1207
|
|
|
1203
1208
|
<li class="md-nav__item">
|
|
1204
|
-
<a href="
|
|
1209
|
+
<a href="../administration/configuration/settings.html" class="md-nav__link">
|
|
1205
1210
|
|
|
1206
1211
|
|
|
1207
1212
|
<span class="md-ellipsis">
|
|
@@ -1222,7 +1227,7 @@
|
|
|
1222
1227
|
|
|
1223
1228
|
|
|
1224
1229
|
<li class="md-nav__item">
|
|
1225
|
-
<a href="
|
|
1230
|
+
<a href="../administration/configuration/redis.html" class="md-nav__link">
|
|
1226
1231
|
|
|
1227
1232
|
|
|
1228
1233
|
<span class="md-ellipsis">
|
|
@@ -1243,7 +1248,7 @@
|
|
|
1243
1248
|
|
|
1244
1249
|
|
|
1245
1250
|
<li class="md-nav__item">
|
|
1246
|
-
<a href="
|
|
1251
|
+
<a href="../administration/configuration/time-zones.html" class="md-nav__link">
|
|
1247
1252
|
|
|
1248
1253
|
|
|
1249
1254
|
<span class="md-ellipsis">
|
|
@@ -1302,7 +1307,7 @@
|
|
|
1302
1307
|
|
|
1303
1308
|
|
|
1304
1309
|
<li class="md-nav__item">
|
|
1305
|
-
<a href="
|
|
1310
|
+
<a href="../administration/configuration/authentication/ldap.html" class="md-nav__link">
|
|
1306
1311
|
|
|
1307
1312
|
|
|
1308
1313
|
<span class="md-ellipsis">
|
|
@@ -1323,7 +1328,7 @@
|
|
|
1323
1328
|
|
|
1324
1329
|
|
|
1325
1330
|
<li class="md-nav__item">
|
|
1326
|
-
<a href="
|
|
1331
|
+
<a href="../administration/configuration/authentication/sso.html" class="md-nav__link">
|
|
1327
1332
|
|
|
1328
1333
|
|
|
1329
1334
|
<span class="md-ellipsis">
|
|
@@ -1344,7 +1349,7 @@
|
|
|
1344
1349
|
|
|
1345
1350
|
|
|
1346
1351
|
<li class="md-nav__item">
|
|
1347
|
-
<a href="
|
|
1352
|
+
<a href="../administration/configuration/authentication/remote.html" class="md-nav__link">
|
|
1348
1353
|
|
|
1349
1354
|
|
|
1350
1355
|
<span class="md-ellipsis">
|
|
@@ -1419,7 +1424,7 @@
|
|
|
1419
1424
|
|
|
1420
1425
|
|
|
1421
1426
|
<li class="md-nav__item">
|
|
1422
|
-
<a href="
|
|
1427
|
+
<a href="../administration/tools/nautobot-server.html" class="md-nav__link">
|
|
1423
1428
|
|
|
1424
1429
|
|
|
1425
1430
|
<span class="md-ellipsis">
|
|
@@ -1440,7 +1445,7 @@
|
|
|
1440
1445
|
|
|
1441
1446
|
|
|
1442
1447
|
<li class="md-nav__item">
|
|
1443
|
-
<a href="
|
|
1448
|
+
<a href="../administration/tools/nautobot-shell.html" class="md-nav__link">
|
|
1444
1449
|
|
|
1445
1450
|
|
|
1446
1451
|
<span class="md-ellipsis">
|
|
@@ -1507,7 +1512,7 @@
|
|
|
1507
1512
|
|
|
1508
1513
|
|
|
1509
1514
|
<li class="md-nav__item">
|
|
1510
|
-
<a href="
|
|
1515
|
+
<a href="../administration/guides/docker.html" class="md-nav__link">
|
|
1511
1516
|
|
|
1512
1517
|
|
|
1513
1518
|
<span class="md-ellipsis">
|
|
@@ -1528,7 +1533,7 @@
|
|
|
1528
1533
|
|
|
1529
1534
|
|
|
1530
1535
|
<li class="md-nav__item">
|
|
1531
|
-
<a href="
|
|
1536
|
+
<a href="../administration/guides/selinux-troubleshooting.html" class="md-nav__link">
|
|
1532
1537
|
|
|
1533
1538
|
|
|
1534
1539
|
<span class="md-ellipsis">
|
|
@@ -1549,7 +1554,7 @@
|
|
|
1549
1554
|
|
|
1550
1555
|
|
|
1551
1556
|
<li class="md-nav__item">
|
|
1552
|
-
<a href="
|
|
1557
|
+
<a href="../administration/guides/health-checks.html" class="md-nav__link">
|
|
1553
1558
|
|
|
1554
1559
|
|
|
1555
1560
|
<span class="md-ellipsis">
|
|
@@ -1570,7 +1575,7 @@
|
|
|
1570
1575
|
|
|
1571
1576
|
|
|
1572
1577
|
<li class="md-nav__item">
|
|
1573
|
-
<a href="
|
|
1578
|
+
<a href="../administration/guides/permissions.html" class="md-nav__link">
|
|
1574
1579
|
|
|
1575
1580
|
|
|
1576
1581
|
<span class="md-ellipsis">
|
|
@@ -1591,7 +1596,7 @@
|
|
|
1591
1596
|
|
|
1592
1597
|
|
|
1593
1598
|
<li class="md-nav__item">
|
|
1594
|
-
<a href="
|
|
1599
|
+
<a href="../administration/guides/prometheus-metrics.html" class="md-nav__link">
|
|
1595
1600
|
|
|
1596
1601
|
|
|
1597
1602
|
<span class="md-ellipsis">
|
|
@@ -1612,7 +1617,7 @@
|
|
|
1612
1617
|
|
|
1613
1618
|
|
|
1614
1619
|
<li class="md-nav__item">
|
|
1615
|
-
<a href="
|
|
1620
|
+
<a href="../administration/guides/replicating-nautobot.html" class="md-nav__link">
|
|
1616
1621
|
|
|
1617
1622
|
|
|
1618
1623
|
<span class="md-ellipsis">
|
|
@@ -1633,7 +1638,7 @@
|
|
|
1633
1638
|
|
|
1634
1639
|
|
|
1635
1640
|
<li class="md-nav__item">
|
|
1636
|
-
<a href="
|
|
1641
|
+
<a href="../administration/guides/request-profiling.html" class="md-nav__link">
|
|
1637
1642
|
|
|
1638
1643
|
|
|
1639
1644
|
<span class="md-ellipsis">
|
|
@@ -1654,7 +1659,7 @@
|
|
|
1654
1659
|
|
|
1655
1660
|
|
|
1656
1661
|
<li class="md-nav__item">
|
|
1657
|
-
<a href="
|
|
1662
|
+
<a href="../administration/guides/s3-django-storage.html" class="md-nav__link">
|
|
1658
1663
|
|
|
1659
1664
|
|
|
1660
1665
|
<span class="md-ellipsis">
|
|
@@ -1675,7 +1680,7 @@
|
|
|
1675
1680
|
|
|
1676
1681
|
|
|
1677
1682
|
<li class="md-nav__item">
|
|
1678
|
-
<a href="
|
|
1683
|
+
<a href="../administration/guides/celery-queues.html" class="md-nav__link">
|
|
1679
1684
|
|
|
1680
1685
|
|
|
1681
1686
|
<span class="md-ellipsis">
|
|
@@ -1697,6 +1702,81 @@
|
|
|
1697
1702
|
|
|
1698
1703
|
|
|
1699
1704
|
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
|
|
1718
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1719
|
+
|
|
1720
|
+
|
|
1721
|
+
|
|
1722
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_7" >
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
|
|
1726
|
+
<div class="md-nav__link md-nav__container">
|
|
1727
|
+
<a href="../administration/security/index.html" class="md-nav__link ">
|
|
1728
|
+
|
|
1729
|
+
|
|
1730
|
+
<span class="md-ellipsis">
|
|
1731
|
+
Security
|
|
1732
|
+
</span>
|
|
1733
|
+
|
|
1734
|
+
|
|
1735
|
+
</a>
|
|
1736
|
+
|
|
1737
|
+
|
|
1738
|
+
<label class="md-nav__link " for="__nav_2_1_7" id="__nav_2_1_7_label" tabindex="0">
|
|
1739
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1740
|
+
</label>
|
|
1741
|
+
|
|
1742
|
+
</div>
|
|
1743
|
+
|
|
1744
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_7_label" aria-expanded="false">
|
|
1745
|
+
<label class="md-nav__title" for="__nav_2_1_7">
|
|
1746
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1747
|
+
Security
|
|
1748
|
+
</label>
|
|
1749
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
|
|
1753
|
+
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
|
|
1757
|
+
<li class="md-nav__item">
|
|
1758
|
+
<a href="../administration/security/notices.html" class="md-nav__link">
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
<span class="md-ellipsis">
|
|
1762
|
+
Notices
|
|
1763
|
+
</span>
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
</a>
|
|
1767
|
+
</li>
|
|
1768
|
+
|
|
1769
|
+
|
|
1770
|
+
|
|
1771
|
+
|
|
1772
|
+
</ul>
|
|
1773
|
+
</nav>
|
|
1774
|
+
|
|
1775
|
+
</li>
|
|
1776
|
+
|
|
1777
|
+
|
|
1778
|
+
|
|
1779
|
+
|
|
1700
1780
|
</ul>
|
|
1701
1781
|
</nav>
|
|
1702
1782
|
|
|
@@ -1709,6 +1789,8 @@
|
|
|
1709
1789
|
|
|
1710
1790
|
|
|
1711
1791
|
|
|
1792
|
+
|
|
1793
|
+
|
|
1712
1794
|
|
|
1713
1795
|
|
|
1714
1796
|
|
|
@@ -1718,11 +1800,11 @@
|
|
|
1718
1800
|
|
|
1719
1801
|
|
|
1720
1802
|
|
|
1721
|
-
<li class="md-nav__item md-nav__item--nested">
|
|
1803
|
+
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
1722
1804
|
|
|
1723
1805
|
|
|
1724
1806
|
|
|
1725
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1807
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" checked>
|
|
1726
1808
|
|
|
1727
1809
|
|
|
1728
1810
|
<label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
|
|
@@ -1736,7 +1818,7 @@
|
|
|
1736
1818
|
<span class="md-nav__icon md-icon"></span>
|
|
1737
1819
|
</label>
|
|
1738
1820
|
|
|
1739
|
-
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="
|
|
1821
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="true">
|
|
1740
1822
|
<label class="md-nav__title" for="__nav_2_2">
|
|
1741
1823
|
<span class="md-nav__icon md-icon"></span>
|
|
1742
1824
|
Feature Guides
|
|
@@ -1765,7 +1847,7 @@
|
|
|
1765
1847
|
|
|
1766
1848
|
|
|
1767
1849
|
<div class="md-nav__link md-nav__container">
|
|
1768
|
-
<a href="
|
|
1850
|
+
<a href="getting-started/index.html" class="md-nav__link ">
|
|
1769
1851
|
|
|
1770
1852
|
|
|
1771
1853
|
<span class="md-ellipsis">
|
|
@@ -1796,7 +1878,7 @@
|
|
|
1796
1878
|
|
|
1797
1879
|
|
|
1798
1880
|
<li class="md-nav__item">
|
|
1799
|
-
<a href="
|
|
1881
|
+
<a href="getting-started/creating-devices.html" class="md-nav__link">
|
|
1800
1882
|
|
|
1801
1883
|
|
|
1802
1884
|
<span class="md-ellipsis">
|
|
@@ -1817,7 +1899,7 @@
|
|
|
1817
1899
|
|
|
1818
1900
|
|
|
1819
1901
|
<li class="md-nav__item">
|
|
1820
|
-
<a href="
|
|
1902
|
+
<a href="getting-started/creating-location-types-and-locations.html" class="md-nav__link">
|
|
1821
1903
|
|
|
1822
1904
|
|
|
1823
1905
|
<span class="md-ellipsis">
|
|
@@ -1838,7 +1920,7 @@
|
|
|
1838
1920
|
|
|
1839
1921
|
|
|
1840
1922
|
<li class="md-nav__item">
|
|
1841
|
-
<a href="
|
|
1923
|
+
<a href="getting-started/platforms.html" class="md-nav__link">
|
|
1842
1924
|
|
|
1843
1925
|
|
|
1844
1926
|
<span class="md-ellipsis">
|
|
@@ -1859,7 +1941,7 @@
|
|
|
1859
1941
|
|
|
1860
1942
|
|
|
1861
1943
|
<li class="md-nav__item">
|
|
1862
|
-
<a href="
|
|
1944
|
+
<a href="getting-started/tenants.html" class="md-nav__link">
|
|
1863
1945
|
|
|
1864
1946
|
|
|
1865
1947
|
<span class="md-ellipsis">
|
|
@@ -1880,7 +1962,7 @@
|
|
|
1880
1962
|
|
|
1881
1963
|
|
|
1882
1964
|
<li class="md-nav__item">
|
|
1883
|
-
<a href="
|
|
1965
|
+
<a href="getting-started/interfaces.html" class="md-nav__link">
|
|
1884
1966
|
|
|
1885
1967
|
|
|
1886
1968
|
<span class="md-ellipsis">
|
|
@@ -1901,7 +1983,7 @@
|
|
|
1901
1983
|
|
|
1902
1984
|
|
|
1903
1985
|
<li class="md-nav__item">
|
|
1904
|
-
<a href="
|
|
1986
|
+
<a href="getting-started/vlans-and-vlan-groups.html" class="md-nav__link">
|
|
1905
1987
|
|
|
1906
1988
|
|
|
1907
1989
|
<span class="md-ellipsis">
|
|
@@ -1922,7 +2004,7 @@
|
|
|
1922
2004
|
|
|
1923
2005
|
|
|
1924
2006
|
<li class="md-nav__item">
|
|
1925
|
-
<a href="
|
|
2007
|
+
<a href="getting-started/ipam.html" class="md-nav__link">
|
|
1926
2008
|
|
|
1927
2009
|
|
|
1928
2010
|
<span class="md-ellipsis">
|
|
@@ -1943,7 +2025,7 @@
|
|
|
1943
2025
|
|
|
1944
2026
|
|
|
1945
2027
|
<li class="md-nav__item">
|
|
1946
|
-
<a href="
|
|
2028
|
+
<a href="getting-started/search-bar.html" class="md-nav__link">
|
|
1947
2029
|
|
|
1948
2030
|
|
|
1949
2031
|
<span class="md-ellipsis">
|
|
@@ -1972,7 +2054,7 @@
|
|
|
1972
2054
|
|
|
1973
2055
|
|
|
1974
2056
|
<li class="md-nav__item">
|
|
1975
|
-
<a href="
|
|
2057
|
+
<a href="contacts-and-teams.html" class="md-nav__link">
|
|
1976
2058
|
|
|
1977
2059
|
|
|
1978
2060
|
<span class="md-ellipsis">
|
|
@@ -1993,7 +2075,7 @@
|
|
|
1993
2075
|
|
|
1994
2076
|
|
|
1995
2077
|
<li class="md-nav__item">
|
|
1996
|
-
<a href="
|
|
2078
|
+
<a href="custom-fields.html" class="md-nav__link">
|
|
1997
2079
|
|
|
1998
2080
|
|
|
1999
2081
|
<span class="md-ellipsis">
|
|
@@ -2014,7 +2096,7 @@
|
|
|
2014
2096
|
|
|
2015
2097
|
|
|
2016
2098
|
<li class="md-nav__item">
|
|
2017
|
-
<a href="
|
|
2099
|
+
<a href="git-data-source.html" class="md-nav__link">
|
|
2018
2100
|
|
|
2019
2101
|
|
|
2020
2102
|
<span class="md-ellipsis">
|
|
@@ -2035,7 +2117,7 @@
|
|
|
2035
2117
|
|
|
2036
2118
|
|
|
2037
2119
|
<li class="md-nav__item">
|
|
2038
|
-
<a href="
|
|
2120
|
+
<a href="graphql.html" class="md-nav__link">
|
|
2039
2121
|
|
|
2040
2122
|
|
|
2041
2123
|
<span class="md-ellipsis">
|
|
@@ -2056,7 +2138,7 @@
|
|
|
2056
2138
|
|
|
2057
2139
|
|
|
2058
2140
|
<li class="md-nav__item">
|
|
2059
|
-
<a href="
|
|
2141
|
+
<a href="ip-address-merge-tool.html" class="md-nav__link">
|
|
2060
2142
|
|
|
2061
2143
|
|
|
2062
2144
|
<span class="md-ellipsis">
|
|
@@ -2077,7 +2159,7 @@
|
|
|
2077
2159
|
|
|
2078
2160
|
|
|
2079
2161
|
<li class="md-nav__item">
|
|
2080
|
-
<a href="
|
|
2162
|
+
<a href="relationships.html" class="md-nav__link">
|
|
2081
2163
|
|
|
2082
2164
|
|
|
2083
2165
|
<span class="md-ellipsis">
|
|
@@ -2098,7 +2180,7 @@
|
|
|
2098
2180
|
|
|
2099
2181
|
|
|
2100
2182
|
<li class="md-nav__item">
|
|
2101
|
-
<a href="
|
|
2183
|
+
<a href="software-image-files-and-versions.html" class="md-nav__link">
|
|
2102
2184
|
|
|
2103
2185
|
|
|
2104
2186
|
<span class="md-ellipsis">
|
|
@@ -2112,6 +2194,121 @@
|
|
|
2112
2194
|
|
|
2113
2195
|
|
|
2114
2196
|
|
|
2197
|
+
|
|
2198
|
+
|
|
2199
|
+
|
|
2200
|
+
|
|
2201
|
+
|
|
2202
|
+
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
<li class="md-nav__item md-nav__item--active">
|
|
2206
|
+
|
|
2207
|
+
<input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
|
|
2208
|
+
|
|
2209
|
+
|
|
2210
|
+
|
|
2211
|
+
|
|
2212
|
+
|
|
2213
|
+
<label class="md-nav__link md-nav__link--active" for="__toc">
|
|
2214
|
+
|
|
2215
|
+
|
|
2216
|
+
<span class="md-ellipsis">
|
|
2217
|
+
Wireless Networks and Controllers
|
|
2218
|
+
</span>
|
|
2219
|
+
|
|
2220
|
+
|
|
2221
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2222
|
+
</label>
|
|
2223
|
+
|
|
2224
|
+
<a href="wireless-networks-and-controllers.html" class="md-nav__link md-nav__link--active">
|
|
2225
|
+
|
|
2226
|
+
|
|
2227
|
+
<span class="md-ellipsis">
|
|
2228
|
+
Wireless Networks and Controllers
|
|
2229
|
+
</span>
|
|
2230
|
+
|
|
2231
|
+
|
|
2232
|
+
</a>
|
|
2233
|
+
|
|
2234
|
+
|
|
2235
|
+
|
|
2236
|
+
<nav class="md-nav md-nav--secondary" aria-label="Table of contents">
|
|
2237
|
+
|
|
2238
|
+
|
|
2239
|
+
|
|
2240
|
+
|
|
2241
|
+
|
|
2242
|
+
|
|
2243
|
+
<label class="md-nav__title" for="__toc">
|
|
2244
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2245
|
+
Table of contents
|
|
2246
|
+
</label>
|
|
2247
|
+
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
|
|
2248
|
+
|
|
2249
|
+
<li class="md-nav__item">
|
|
2250
|
+
<a href="#optional-preparation" class="md-nav__link">
|
|
2251
|
+
<span class="md-ellipsis">
|
|
2252
|
+
Optional Preparation
|
|
2253
|
+
</span>
|
|
2254
|
+
</a>
|
|
2255
|
+
|
|
2256
|
+
</li>
|
|
2257
|
+
|
|
2258
|
+
<li class="md-nav__item">
|
|
2259
|
+
<a href="#wireless-networks" class="md-nav__link">
|
|
2260
|
+
<span class="md-ellipsis">
|
|
2261
|
+
Wireless Networks
|
|
2262
|
+
</span>
|
|
2263
|
+
</a>
|
|
2264
|
+
|
|
2265
|
+
</li>
|
|
2266
|
+
|
|
2267
|
+
<li class="md-nav__item">
|
|
2268
|
+
<a href="#controllers" class="md-nav__link">
|
|
2269
|
+
<span class="md-ellipsis">
|
|
2270
|
+
Controllers
|
|
2271
|
+
</span>
|
|
2272
|
+
</a>
|
|
2273
|
+
|
|
2274
|
+
</li>
|
|
2275
|
+
|
|
2276
|
+
<li class="md-nav__item">
|
|
2277
|
+
<a href="#device-groups" class="md-nav__link">
|
|
2278
|
+
<span class="md-ellipsis">
|
|
2279
|
+
Device Groups
|
|
2280
|
+
</span>
|
|
2281
|
+
</a>
|
|
2282
|
+
|
|
2283
|
+
</li>
|
|
2284
|
+
|
|
2285
|
+
<li class="md-nav__item">
|
|
2286
|
+
<a href="#supported-data-rates-optional" class="md-nav__link">
|
|
2287
|
+
<span class="md-ellipsis">
|
|
2288
|
+
Supported Data Rates (Optional)
|
|
2289
|
+
</span>
|
|
2290
|
+
</a>
|
|
2291
|
+
|
|
2292
|
+
</li>
|
|
2293
|
+
|
|
2294
|
+
<li class="md-nav__item">
|
|
2295
|
+
<a href="#radio-profiles-optional" class="md-nav__link">
|
|
2296
|
+
<span class="md-ellipsis">
|
|
2297
|
+
Radio Profiles (Optional)
|
|
2298
|
+
</span>
|
|
2299
|
+
</a>
|
|
2300
|
+
|
|
2301
|
+
</li>
|
|
2302
|
+
|
|
2303
|
+
</ul>
|
|
2304
|
+
|
|
2305
|
+
</nav>
|
|
2306
|
+
|
|
2307
|
+
</li>
|
|
2308
|
+
|
|
2309
|
+
|
|
2310
|
+
|
|
2311
|
+
|
|
2115
2312
|
</ul>
|
|
2116
2313
|
</nav>
|
|
2117
2314
|
|
|
@@ -2203,7 +2400,7 @@
|
|
|
2203
2400
|
|
|
2204
2401
|
|
|
2205
2402
|
<li class="md-nav__item">
|
|
2206
|
-
<a href="
|
|
2403
|
+
<a href="../core-data-model/overview/introduction.html" class="md-nav__link">
|
|
2207
2404
|
|
|
2208
2405
|
|
|
2209
2406
|
<span class="md-ellipsis">
|
|
@@ -2270,7 +2467,7 @@
|
|
|
2270
2467
|
|
|
2271
2468
|
|
|
2272
2469
|
<li class="md-nav__item">
|
|
2273
|
-
<a href="
|
|
2470
|
+
<a href="../core-data-model/circuits/circuit.html" class="md-nav__link">
|
|
2274
2471
|
|
|
2275
2472
|
|
|
2276
2473
|
<span class="md-ellipsis">
|
|
@@ -2291,7 +2488,7 @@
|
|
|
2291
2488
|
|
|
2292
2489
|
|
|
2293
2490
|
<li class="md-nav__item">
|
|
2294
|
-
<a href="
|
|
2491
|
+
<a href="../core-data-model/circuits/circuittermination.html" class="md-nav__link">
|
|
2295
2492
|
|
|
2296
2493
|
|
|
2297
2494
|
<span class="md-ellipsis">
|
|
@@ -2312,7 +2509,7 @@
|
|
|
2312
2509
|
|
|
2313
2510
|
|
|
2314
2511
|
<li class="md-nav__item">
|
|
2315
|
-
<a href="
|
|
2512
|
+
<a href="../core-data-model/circuits/circuittype.html" class="md-nav__link">
|
|
2316
2513
|
|
|
2317
2514
|
|
|
2318
2515
|
<span class="md-ellipsis">
|
|
@@ -2333,7 +2530,7 @@
|
|
|
2333
2530
|
|
|
2334
2531
|
|
|
2335
2532
|
<li class="md-nav__item">
|
|
2336
|
-
<a href="
|
|
2533
|
+
<a href="../core-data-model/circuits/provider.html" class="md-nav__link">
|
|
2337
2534
|
|
|
2338
2535
|
|
|
2339
2536
|
<span class="md-ellipsis">
|
|
@@ -2354,7 +2551,7 @@
|
|
|
2354
2551
|
|
|
2355
2552
|
|
|
2356
2553
|
<li class="md-nav__item">
|
|
2357
|
-
<a href="
|
|
2554
|
+
<a href="../core-data-model/circuits/providernetwork.html" class="md-nav__link">
|
|
2358
2555
|
|
|
2359
2556
|
|
|
2360
2557
|
<span class="md-ellipsis">
|
|
@@ -2398,7 +2595,7 @@
|
|
|
2398
2595
|
|
|
2399
2596
|
|
|
2400
2597
|
<div class="md-nav__link md-nav__container">
|
|
2401
|
-
<a href="
|
|
2598
|
+
<a href="../core-data-model/cloud/cloud.html" class="md-nav__link ">
|
|
2402
2599
|
|
|
2403
2600
|
|
|
2404
2601
|
<span class="md-ellipsis">
|
|
@@ -2429,7 +2626,7 @@
|
|
|
2429
2626
|
|
|
2430
2627
|
|
|
2431
2628
|
<li class="md-nav__item">
|
|
2432
|
-
<a href="
|
|
2629
|
+
<a href="../core-data-model/cloud/cloudaccount.html" class="md-nav__link">
|
|
2433
2630
|
|
|
2434
2631
|
|
|
2435
2632
|
<span class="md-ellipsis">
|
|
@@ -2450,7 +2647,7 @@
|
|
|
2450
2647
|
|
|
2451
2648
|
|
|
2452
2649
|
<li class="md-nav__item">
|
|
2453
|
-
<a href="
|
|
2650
|
+
<a href="../core-data-model/cloud/cloudnetwork.html" class="md-nav__link">
|
|
2454
2651
|
|
|
2455
2652
|
|
|
2456
2653
|
<span class="md-ellipsis">
|
|
@@ -2471,7 +2668,7 @@
|
|
|
2471
2668
|
|
|
2472
2669
|
|
|
2473
2670
|
<li class="md-nav__item">
|
|
2474
|
-
<a href="
|
|
2671
|
+
<a href="../core-data-model/cloud/cloudnetworkprefixassignment.html" class="md-nav__link">
|
|
2475
2672
|
|
|
2476
2673
|
|
|
2477
2674
|
<span class="md-ellipsis">
|
|
@@ -2492,7 +2689,7 @@
|
|
|
2492
2689
|
|
|
2493
2690
|
|
|
2494
2691
|
<li class="md-nav__item">
|
|
2495
|
-
<a href="
|
|
2692
|
+
<a href="../core-data-model/cloud/cloudresourcetype.html" class="md-nav__link">
|
|
2496
2693
|
|
|
2497
2694
|
|
|
2498
2695
|
<span class="md-ellipsis">
|
|
@@ -2513,7 +2710,7 @@
|
|
|
2513
2710
|
|
|
2514
2711
|
|
|
2515
2712
|
<li class="md-nav__item">
|
|
2516
|
-
<a href="
|
|
2713
|
+
<a href="../core-data-model/cloud/cloudservice.html" class="md-nav__link">
|
|
2517
2714
|
|
|
2518
2715
|
|
|
2519
2716
|
<span class="md-ellipsis">
|
|
@@ -2534,7 +2731,7 @@
|
|
|
2534
2731
|
|
|
2535
2732
|
|
|
2536
2733
|
<li class="md-nav__item">
|
|
2537
|
-
<a href="
|
|
2734
|
+
<a href="../core-data-model/cloud/cloudservicenetworkassignment.html" class="md-nav__link">
|
|
2538
2735
|
|
|
2539
2736
|
|
|
2540
2737
|
<span class="md-ellipsis">
|
|
@@ -2601,7 +2798,7 @@
|
|
|
2601
2798
|
|
|
2602
2799
|
|
|
2603
2800
|
<li class="md-nav__item">
|
|
2604
|
-
<a href="
|
|
2801
|
+
<a href="../core-data-model/dcim/locationtype.html" class="md-nav__link">
|
|
2605
2802
|
|
|
2606
2803
|
|
|
2607
2804
|
<span class="md-ellipsis">
|
|
@@ -2622,7 +2819,7 @@
|
|
|
2622
2819
|
|
|
2623
2820
|
|
|
2624
2821
|
<li class="md-nav__item">
|
|
2625
|
-
<a href="
|
|
2822
|
+
<a href="../core-data-model/dcim/location.html" class="md-nav__link">
|
|
2626
2823
|
|
|
2627
2824
|
|
|
2628
2825
|
<span class="md-ellipsis">
|
|
@@ -2643,7 +2840,7 @@
|
|
|
2643
2840
|
|
|
2644
2841
|
|
|
2645
2842
|
<li class="md-nav__item">
|
|
2646
|
-
<a href="
|
|
2843
|
+
<a href="../core-data-model/dcim/rackgroup.html" class="md-nav__link">
|
|
2647
2844
|
|
|
2648
2845
|
|
|
2649
2846
|
<span class="md-ellipsis">
|
|
@@ -2664,7 +2861,7 @@
|
|
|
2664
2861
|
|
|
2665
2862
|
|
|
2666
2863
|
<li class="md-nav__item">
|
|
2667
|
-
<a href="
|
|
2864
|
+
<a href="../core-data-model/dcim/rack.html" class="md-nav__link">
|
|
2668
2865
|
|
|
2669
2866
|
|
|
2670
2867
|
<span class="md-ellipsis">
|
|
@@ -2685,7 +2882,7 @@
|
|
|
2685
2882
|
|
|
2686
2883
|
|
|
2687
2884
|
<li class="md-nav__item">
|
|
2688
|
-
<a href="
|
|
2885
|
+
<a href="../core-data-model/dcim/manufacturer.html" class="md-nav__link">
|
|
2689
2886
|
|
|
2690
2887
|
|
|
2691
2888
|
<span class="md-ellipsis">
|
|
@@ -2706,7 +2903,7 @@
|
|
|
2706
2903
|
|
|
2707
2904
|
|
|
2708
2905
|
<li class="md-nav__item">
|
|
2709
|
-
<a href="
|
|
2906
|
+
<a href="../core-data-model/dcim/devicefamily.html" class="md-nav__link">
|
|
2710
2907
|
|
|
2711
2908
|
|
|
2712
2909
|
<span class="md-ellipsis">
|
|
@@ -2727,7 +2924,7 @@
|
|
|
2727
2924
|
|
|
2728
2925
|
|
|
2729
2926
|
<li class="md-nav__item">
|
|
2730
|
-
<a href="
|
|
2927
|
+
<a href="../core-data-model/dcim/platform.html" class="md-nav__link">
|
|
2731
2928
|
|
|
2732
2929
|
|
|
2733
2930
|
<span class="md-ellipsis">
|
|
@@ -2763,7 +2960,7 @@
|
|
|
2763
2960
|
|
|
2764
2961
|
|
|
2765
2962
|
<div class="md-nav__link md-nav__container">
|
|
2766
|
-
<a href="
|
|
2963
|
+
<a href="../core-data-model/dcim/devicetype.html" class="md-nav__link ">
|
|
2767
2964
|
|
|
2768
2965
|
|
|
2769
2966
|
<span class="md-ellipsis">
|
|
@@ -2794,7 +2991,7 @@
|
|
|
2794
2991
|
|
|
2795
2992
|
|
|
2796
2993
|
<li class="md-nav__item">
|
|
2797
|
-
<a href="
|
|
2994
|
+
<a href="../core-data-model/dcim/consoleporttemplate.html" class="md-nav__link">
|
|
2798
2995
|
|
|
2799
2996
|
|
|
2800
2997
|
<span class="md-ellipsis">
|
|
@@ -2815,7 +3012,7 @@
|
|
|
2815
3012
|
|
|
2816
3013
|
|
|
2817
3014
|
<li class="md-nav__item">
|
|
2818
|
-
<a href="
|
|
3015
|
+
<a href="../core-data-model/dcim/consoleserverporttemplate.html" class="md-nav__link">
|
|
2819
3016
|
|
|
2820
3017
|
|
|
2821
3018
|
<span class="md-ellipsis">
|
|
@@ -2836,7 +3033,7 @@
|
|
|
2836
3033
|
|
|
2837
3034
|
|
|
2838
3035
|
<li class="md-nav__item">
|
|
2839
|
-
<a href="
|
|
3036
|
+
<a href="../core-data-model/dcim/devicebaytemplate.html" class="md-nav__link">
|
|
2840
3037
|
|
|
2841
3038
|
|
|
2842
3039
|
<span class="md-ellipsis">
|
|
@@ -2857,7 +3054,7 @@
|
|
|
2857
3054
|
|
|
2858
3055
|
|
|
2859
3056
|
<li class="md-nav__item">
|
|
2860
|
-
<a href="
|
|
3057
|
+
<a href="../core-data-model/dcim/frontporttemplate.html" class="md-nav__link">
|
|
2861
3058
|
|
|
2862
3059
|
|
|
2863
3060
|
<span class="md-ellipsis">
|
|
@@ -2878,7 +3075,7 @@
|
|
|
2878
3075
|
|
|
2879
3076
|
|
|
2880
3077
|
<li class="md-nav__item">
|
|
2881
|
-
<a href="
|
|
3078
|
+
<a href="../core-data-model/dcim/interfacetemplate.html" class="md-nav__link">
|
|
2882
3079
|
|
|
2883
3080
|
|
|
2884
3081
|
<span class="md-ellipsis">
|
|
@@ -2899,7 +3096,7 @@
|
|
|
2899
3096
|
|
|
2900
3097
|
|
|
2901
3098
|
<li class="md-nav__item">
|
|
2902
|
-
<a href="
|
|
3099
|
+
<a href="../core-data-model/dcim/modulebaytemplate.html" class="md-nav__link">
|
|
2903
3100
|
|
|
2904
3101
|
|
|
2905
3102
|
<span class="md-ellipsis">
|
|
@@ -2920,7 +3117,7 @@
|
|
|
2920
3117
|
|
|
2921
3118
|
|
|
2922
3119
|
<li class="md-nav__item">
|
|
2923
|
-
<a href="
|
|
3120
|
+
<a href="../core-data-model/dcim/poweroutlettemplate.html" class="md-nav__link">
|
|
2924
3121
|
|
|
2925
3122
|
|
|
2926
3123
|
<span class="md-ellipsis">
|
|
@@ -2941,7 +3138,7 @@
|
|
|
2941
3138
|
|
|
2942
3139
|
|
|
2943
3140
|
<li class="md-nav__item">
|
|
2944
|
-
<a href="
|
|
3141
|
+
<a href="../core-data-model/dcim/powerporttemplate.html" class="md-nav__link">
|
|
2945
3142
|
|
|
2946
3143
|
|
|
2947
3144
|
<span class="md-ellipsis">
|
|
@@ -2962,7 +3159,7 @@
|
|
|
2962
3159
|
|
|
2963
3160
|
|
|
2964
3161
|
<li class="md-nav__item">
|
|
2965
|
-
<a href="
|
|
3162
|
+
<a href="../core-data-model/dcim/rearporttemplate.html" class="md-nav__link">
|
|
2966
3163
|
|
|
2967
3164
|
|
|
2968
3165
|
<span class="md-ellipsis">
|
|
@@ -3006,7 +3203,7 @@
|
|
|
3006
3203
|
|
|
3007
3204
|
|
|
3008
3205
|
<div class="md-nav__link md-nav__container">
|
|
3009
|
-
<a href="
|
|
3206
|
+
<a href="../core-data-model/dcim/device.html" class="md-nav__link ">
|
|
3010
3207
|
|
|
3011
3208
|
|
|
3012
3209
|
<span class="md-ellipsis">
|
|
@@ -3037,7 +3234,7 @@
|
|
|
3037
3234
|
|
|
3038
3235
|
|
|
3039
3236
|
<li class="md-nav__item">
|
|
3040
|
-
<a href="
|
|
3237
|
+
<a href="../core-data-model/dcim/consoleport.html" class="md-nav__link">
|
|
3041
3238
|
|
|
3042
3239
|
|
|
3043
3240
|
<span class="md-ellipsis">
|
|
@@ -3058,7 +3255,7 @@
|
|
|
3058
3255
|
|
|
3059
3256
|
|
|
3060
3257
|
<li class="md-nav__item">
|
|
3061
|
-
<a href="
|
|
3258
|
+
<a href="../core-data-model/dcim/consoleserverport.html" class="md-nav__link">
|
|
3062
3259
|
|
|
3063
3260
|
|
|
3064
3261
|
<span class="md-ellipsis">
|
|
@@ -3079,7 +3276,7 @@
|
|
|
3079
3276
|
|
|
3080
3277
|
|
|
3081
3278
|
<li class="md-nav__item">
|
|
3082
|
-
<a href="
|
|
3279
|
+
<a href="../core-data-model/dcim/devicebay.html" class="md-nav__link">
|
|
3083
3280
|
|
|
3084
3281
|
|
|
3085
3282
|
<span class="md-ellipsis">
|
|
@@ -3100,7 +3297,7 @@
|
|
|
3100
3297
|
|
|
3101
3298
|
|
|
3102
3299
|
<li class="md-nav__item">
|
|
3103
|
-
<a href="
|
|
3300
|
+
<a href="../core-data-model/dcim/frontport.html" class="md-nav__link">
|
|
3104
3301
|
|
|
3105
3302
|
|
|
3106
3303
|
<span class="md-ellipsis">
|
|
@@ -3121,7 +3318,7 @@
|
|
|
3121
3318
|
|
|
3122
3319
|
|
|
3123
3320
|
<li class="md-nav__item">
|
|
3124
|
-
<a href="
|
|
3321
|
+
<a href="../core-data-model/dcim/interface.html" class="md-nav__link">
|
|
3125
3322
|
|
|
3126
3323
|
|
|
3127
3324
|
<span class="md-ellipsis">
|
|
@@ -3142,7 +3339,7 @@
|
|
|
3142
3339
|
|
|
3143
3340
|
|
|
3144
3341
|
<li class="md-nav__item">
|
|
3145
|
-
<a href="
|
|
3342
|
+
<a href="../core-data-model/dcim/inventoryitem.html" class="md-nav__link">
|
|
3146
3343
|
|
|
3147
3344
|
|
|
3148
3345
|
<span class="md-ellipsis">
|
|
@@ -3163,7 +3360,7 @@
|
|
|
3163
3360
|
|
|
3164
3361
|
|
|
3165
3362
|
<li class="md-nav__item">
|
|
3166
|
-
<a href="
|
|
3363
|
+
<a href="../core-data-model/dcim/modulebay.html" class="md-nav__link">
|
|
3167
3364
|
|
|
3168
3365
|
|
|
3169
3366
|
<span class="md-ellipsis">
|
|
@@ -3184,7 +3381,7 @@
|
|
|
3184
3381
|
|
|
3185
3382
|
|
|
3186
3383
|
<li class="md-nav__item">
|
|
3187
|
-
<a href="
|
|
3384
|
+
<a href="../core-data-model/dcim/powerport.html" class="md-nav__link">
|
|
3188
3385
|
|
|
3189
3386
|
|
|
3190
3387
|
<span class="md-ellipsis">
|
|
@@ -3205,7 +3402,7 @@
|
|
|
3205
3402
|
|
|
3206
3403
|
|
|
3207
3404
|
<li class="md-nav__item">
|
|
3208
|
-
<a href="
|
|
3405
|
+
<a href="../core-data-model/dcim/poweroutlet.html" class="md-nav__link">
|
|
3209
3406
|
|
|
3210
3407
|
|
|
3211
3408
|
<span class="md-ellipsis">
|
|
@@ -3226,7 +3423,7 @@
|
|
|
3226
3423
|
|
|
3227
3424
|
|
|
3228
3425
|
<li class="md-nav__item">
|
|
3229
|
-
<a href="
|
|
3426
|
+
<a href="../core-data-model/dcim/rearport.html" class="md-nav__link">
|
|
3230
3427
|
|
|
3231
3428
|
|
|
3232
3429
|
<span class="md-ellipsis">
|
|
@@ -3270,7 +3467,7 @@
|
|
|
3270
3467
|
|
|
3271
3468
|
|
|
3272
3469
|
<div class="md-nav__link md-nav__container">
|
|
3273
|
-
<a href="
|
|
3470
|
+
<a href="../core-data-model/dcim/moduletype.html" class="md-nav__link ">
|
|
3274
3471
|
|
|
3275
3472
|
|
|
3276
3473
|
<span class="md-ellipsis">
|
|
@@ -3301,7 +3498,7 @@
|
|
|
3301
3498
|
|
|
3302
3499
|
|
|
3303
3500
|
<li class="md-nav__item">
|
|
3304
|
-
<a href="
|
|
3501
|
+
<a href="../core-data-model/dcim/consoleporttemplate.html" class="md-nav__link">
|
|
3305
3502
|
|
|
3306
3503
|
|
|
3307
3504
|
<span class="md-ellipsis">
|
|
@@ -3322,7 +3519,7 @@
|
|
|
3322
3519
|
|
|
3323
3520
|
|
|
3324
3521
|
<li class="md-nav__item">
|
|
3325
|
-
<a href="
|
|
3522
|
+
<a href="../core-data-model/dcim/consoleserverporttemplate.html" class="md-nav__link">
|
|
3326
3523
|
|
|
3327
3524
|
|
|
3328
3525
|
<span class="md-ellipsis">
|
|
@@ -3343,7 +3540,7 @@
|
|
|
3343
3540
|
|
|
3344
3541
|
|
|
3345
3542
|
<li class="md-nav__item">
|
|
3346
|
-
<a href="
|
|
3543
|
+
<a href="../core-data-model/dcim/frontporttemplate.html" class="md-nav__link">
|
|
3347
3544
|
|
|
3348
3545
|
|
|
3349
3546
|
<span class="md-ellipsis">
|
|
@@ -3364,7 +3561,7 @@
|
|
|
3364
3561
|
|
|
3365
3562
|
|
|
3366
3563
|
<li class="md-nav__item">
|
|
3367
|
-
<a href="
|
|
3564
|
+
<a href="../core-data-model/dcim/interfacetemplate.html" class="md-nav__link">
|
|
3368
3565
|
|
|
3369
3566
|
|
|
3370
3567
|
<span class="md-ellipsis">
|
|
@@ -3385,7 +3582,7 @@
|
|
|
3385
3582
|
|
|
3386
3583
|
|
|
3387
3584
|
<li class="md-nav__item">
|
|
3388
|
-
<a href="
|
|
3585
|
+
<a href="../core-data-model/dcim/modulebaytemplate.html" class="md-nav__link">
|
|
3389
3586
|
|
|
3390
3587
|
|
|
3391
3588
|
<span class="md-ellipsis">
|
|
@@ -3406,7 +3603,7 @@
|
|
|
3406
3603
|
|
|
3407
3604
|
|
|
3408
3605
|
<li class="md-nav__item">
|
|
3409
|
-
<a href="
|
|
3606
|
+
<a href="../core-data-model/dcim/poweroutlettemplate.html" class="md-nav__link">
|
|
3410
3607
|
|
|
3411
3608
|
|
|
3412
3609
|
<span class="md-ellipsis">
|
|
@@ -3427,7 +3624,7 @@
|
|
|
3427
3624
|
|
|
3428
3625
|
|
|
3429
3626
|
<li class="md-nav__item">
|
|
3430
|
-
<a href="
|
|
3627
|
+
<a href="../core-data-model/dcim/powerporttemplate.html" class="md-nav__link">
|
|
3431
3628
|
|
|
3432
3629
|
|
|
3433
3630
|
<span class="md-ellipsis">
|
|
@@ -3448,7 +3645,7 @@
|
|
|
3448
3645
|
|
|
3449
3646
|
|
|
3450
3647
|
<li class="md-nav__item">
|
|
3451
|
-
<a href="
|
|
3648
|
+
<a href="../core-data-model/dcim/rearporttemplate.html" class="md-nav__link">
|
|
3452
3649
|
|
|
3453
3650
|
|
|
3454
3651
|
<span class="md-ellipsis">
|
|
@@ -3492,7 +3689,7 @@
|
|
|
3492
3689
|
|
|
3493
3690
|
|
|
3494
3691
|
<div class="md-nav__link md-nav__container">
|
|
3495
|
-
<a href="
|
|
3692
|
+
<a href="../core-data-model/dcim/module.html" class="md-nav__link ">
|
|
3496
3693
|
|
|
3497
3694
|
|
|
3498
3695
|
<span class="md-ellipsis">
|
|
@@ -3523,7 +3720,7 @@
|
|
|
3523
3720
|
|
|
3524
3721
|
|
|
3525
3722
|
<li class="md-nav__item">
|
|
3526
|
-
<a href="
|
|
3723
|
+
<a href="../core-data-model/dcim/consoleport.html" class="md-nav__link">
|
|
3527
3724
|
|
|
3528
3725
|
|
|
3529
3726
|
<span class="md-ellipsis">
|
|
@@ -3544,7 +3741,7 @@
|
|
|
3544
3741
|
|
|
3545
3742
|
|
|
3546
3743
|
<li class="md-nav__item">
|
|
3547
|
-
<a href="
|
|
3744
|
+
<a href="../core-data-model/dcim/consoleserverport.html" class="md-nav__link">
|
|
3548
3745
|
|
|
3549
3746
|
|
|
3550
3747
|
<span class="md-ellipsis">
|
|
@@ -3565,7 +3762,7 @@
|
|
|
3565
3762
|
|
|
3566
3763
|
|
|
3567
3764
|
<li class="md-nav__item">
|
|
3568
|
-
<a href="
|
|
3765
|
+
<a href="../core-data-model/dcim/frontport.html" class="md-nav__link">
|
|
3569
3766
|
|
|
3570
3767
|
|
|
3571
3768
|
<span class="md-ellipsis">
|
|
@@ -3586,7 +3783,7 @@
|
|
|
3586
3783
|
|
|
3587
3784
|
|
|
3588
3785
|
<li class="md-nav__item">
|
|
3589
|
-
<a href="
|
|
3786
|
+
<a href="../core-data-model/dcim/interface.html" class="md-nav__link">
|
|
3590
3787
|
|
|
3591
3788
|
|
|
3592
3789
|
<span class="md-ellipsis">
|
|
@@ -3607,7 +3804,7 @@
|
|
|
3607
3804
|
|
|
3608
3805
|
|
|
3609
3806
|
<li class="md-nav__item">
|
|
3610
|
-
<a href="
|
|
3807
|
+
<a href="../core-data-model/dcim/inventoryitem.html" class="md-nav__link">
|
|
3611
3808
|
|
|
3612
3809
|
|
|
3613
3810
|
<span class="md-ellipsis">
|
|
@@ -3628,7 +3825,7 @@
|
|
|
3628
3825
|
|
|
3629
3826
|
|
|
3630
3827
|
<li class="md-nav__item">
|
|
3631
|
-
<a href="
|
|
3828
|
+
<a href="../core-data-model/dcim/modulebay.html" class="md-nav__link">
|
|
3632
3829
|
|
|
3633
3830
|
|
|
3634
3831
|
<span class="md-ellipsis">
|
|
@@ -3649,7 +3846,7 @@
|
|
|
3649
3846
|
|
|
3650
3847
|
|
|
3651
3848
|
<li class="md-nav__item">
|
|
3652
|
-
<a href="
|
|
3849
|
+
<a href="../core-data-model/dcim/powerport.html" class="md-nav__link">
|
|
3653
3850
|
|
|
3654
3851
|
|
|
3655
3852
|
<span class="md-ellipsis">
|
|
@@ -3670,7 +3867,7 @@
|
|
|
3670
3867
|
|
|
3671
3868
|
|
|
3672
3869
|
<li class="md-nav__item">
|
|
3673
|
-
<a href="
|
|
3870
|
+
<a href="../core-data-model/dcim/poweroutlet.html" class="md-nav__link">
|
|
3674
3871
|
|
|
3675
3872
|
|
|
3676
3873
|
<span class="md-ellipsis">
|
|
@@ -3691,7 +3888,7 @@
|
|
|
3691
3888
|
|
|
3692
3889
|
|
|
3693
3890
|
<li class="md-nav__item">
|
|
3694
|
-
<a href="
|
|
3891
|
+
<a href="../core-data-model/dcim/rearport.html" class="md-nav__link">
|
|
3695
3892
|
|
|
3696
3893
|
|
|
3697
3894
|
<span class="md-ellipsis">
|
|
@@ -3720,7 +3917,7 @@
|
|
|
3720
3917
|
|
|
3721
3918
|
|
|
3722
3919
|
<li class="md-nav__item">
|
|
3723
|
-
<a href="
|
|
3920
|
+
<a href="../core-data-model/dcim/cable.html" class="md-nav__link">
|
|
3724
3921
|
|
|
3725
3922
|
|
|
3726
3923
|
<span class="md-ellipsis">
|
|
@@ -3741,7 +3938,7 @@
|
|
|
3741
3938
|
|
|
3742
3939
|
|
|
3743
3940
|
<li class="md-nav__item">
|
|
3744
|
-
<a href="
|
|
3941
|
+
<a href="../core-data-model/dcim/deviceredundancygroup.html" class="md-nav__link">
|
|
3745
3942
|
|
|
3746
3943
|
|
|
3747
3944
|
<span class="md-ellipsis">
|
|
@@ -3762,7 +3959,7 @@
|
|
|
3762
3959
|
|
|
3763
3960
|
|
|
3764
3961
|
<li class="md-nav__item">
|
|
3765
|
-
<a href="
|
|
3962
|
+
<a href="../core-data-model/dcim/interfaceredundancygroup.html" class="md-nav__link">
|
|
3766
3963
|
|
|
3767
3964
|
|
|
3768
3965
|
<span class="md-ellipsis">
|
|
@@ -3783,7 +3980,7 @@
|
|
|
3783
3980
|
|
|
3784
3981
|
|
|
3785
3982
|
<li class="md-nav__item">
|
|
3786
|
-
<a href="
|
|
3983
|
+
<a href="../core-data-model/dcim/powerpanel.html" class="md-nav__link">
|
|
3787
3984
|
|
|
3788
3985
|
|
|
3789
3986
|
<span class="md-ellipsis">
|
|
@@ -3804,7 +4001,7 @@
|
|
|
3804
4001
|
|
|
3805
4002
|
|
|
3806
4003
|
<li class="md-nav__item">
|
|
3807
|
-
<a href="
|
|
4004
|
+
<a href="../core-data-model/dcim/powerfeed.html" class="md-nav__link">
|
|
3808
4005
|
|
|
3809
4006
|
|
|
3810
4007
|
<span class="md-ellipsis">
|
|
@@ -3825,7 +4022,7 @@
|
|
|
3825
4022
|
|
|
3826
4023
|
|
|
3827
4024
|
<li class="md-nav__item">
|
|
3828
|
-
<a href="
|
|
4025
|
+
<a href="../core-data-model/dcim/rackreservation.html" class="md-nav__link">
|
|
3829
4026
|
|
|
3830
4027
|
|
|
3831
4028
|
<span class="md-ellipsis">
|
|
@@ -3846,7 +4043,7 @@
|
|
|
3846
4043
|
|
|
3847
4044
|
|
|
3848
4045
|
<li class="md-nav__item">
|
|
3849
|
-
<a href="
|
|
4046
|
+
<a href="../core-data-model/dcim/softwareimagefile.html" class="md-nav__link">
|
|
3850
4047
|
|
|
3851
4048
|
|
|
3852
4049
|
<span class="md-ellipsis">
|
|
@@ -3867,7 +4064,7 @@
|
|
|
3867
4064
|
|
|
3868
4065
|
|
|
3869
4066
|
<li class="md-nav__item">
|
|
3870
|
-
<a href="
|
|
4067
|
+
<a href="../core-data-model/dcim/softwareversion.html" class="md-nav__link">
|
|
3871
4068
|
|
|
3872
4069
|
|
|
3873
4070
|
<span class="md-ellipsis">
|
|
@@ -3888,7 +4085,7 @@
|
|
|
3888
4085
|
|
|
3889
4086
|
|
|
3890
4087
|
<li class="md-nav__item">
|
|
3891
|
-
<a href="
|
|
4088
|
+
<a href="../core-data-model/dcim/virtualchassis.html" class="md-nav__link">
|
|
3892
4089
|
|
|
3893
4090
|
|
|
3894
4091
|
<span class="md-ellipsis">
|
|
@@ -3909,7 +4106,7 @@
|
|
|
3909
4106
|
|
|
3910
4107
|
|
|
3911
4108
|
<li class="md-nav__item">
|
|
3912
|
-
<a href="
|
|
4109
|
+
<a href="../core-data-model/dcim/controller.html" class="md-nav__link">
|
|
3913
4110
|
|
|
3914
4111
|
|
|
3915
4112
|
<span class="md-ellipsis">
|
|
@@ -3930,7 +4127,7 @@
|
|
|
3930
4127
|
|
|
3931
4128
|
|
|
3932
4129
|
<li class="md-nav__item">
|
|
3933
|
-
<a href="
|
|
4130
|
+
<a href="../core-data-model/dcim/controllermanageddevicegroup.html" class="md-nav__link">
|
|
3934
4131
|
|
|
3935
4132
|
|
|
3936
4133
|
<span class="md-ellipsis">
|
|
@@ -3951,7 +4148,7 @@
|
|
|
3951
4148
|
|
|
3952
4149
|
|
|
3953
4150
|
<li class="md-nav__item">
|
|
3954
|
-
<a href="
|
|
4151
|
+
<a href="../core-data-model/dcim/virtualdevicecontext.html" class="md-nav__link">
|
|
3955
4152
|
|
|
3956
4153
|
|
|
3957
4154
|
<span class="md-ellipsis">
|
|
@@ -4018,7 +4215,7 @@
|
|
|
4018
4215
|
|
|
4019
4216
|
|
|
4020
4217
|
<li class="md-nav__item">
|
|
4021
|
-
<a href="
|
|
4218
|
+
<a href="../core-data-model/extras/configcontext.html" class="md-nav__link">
|
|
4022
4219
|
|
|
4023
4220
|
|
|
4024
4221
|
<span class="md-ellipsis">
|
|
@@ -4039,7 +4236,7 @@
|
|
|
4039
4236
|
|
|
4040
4237
|
|
|
4041
4238
|
<li class="md-nav__item">
|
|
4042
|
-
<a href="
|
|
4239
|
+
<a href="../core-data-model/extras/configcontextschema.html" class="md-nav__link">
|
|
4043
4240
|
|
|
4044
4241
|
|
|
4045
4242
|
<span class="md-ellipsis">
|
|
@@ -4060,7 +4257,7 @@
|
|
|
4060
4257
|
|
|
4061
4258
|
|
|
4062
4259
|
<li class="md-nav__item">
|
|
4063
|
-
<a href="
|
|
4260
|
+
<a href="../core-data-model/extras/contact.html" class="md-nav__link">
|
|
4064
4261
|
|
|
4065
4262
|
|
|
4066
4263
|
<span class="md-ellipsis">
|
|
@@ -4081,7 +4278,7 @@
|
|
|
4081
4278
|
|
|
4082
4279
|
|
|
4083
4280
|
<li class="md-nav__item">
|
|
4084
|
-
<a href="
|
|
4281
|
+
<a href="../core-data-model/extras/team.html" class="md-nav__link">
|
|
4085
4282
|
|
|
4086
4283
|
|
|
4087
4284
|
<span class="md-ellipsis">
|
|
@@ -4148,7 +4345,7 @@
|
|
|
4148
4345
|
|
|
4149
4346
|
|
|
4150
4347
|
<li class="md-nav__item">
|
|
4151
|
-
<a href="
|
|
4348
|
+
<a href="../core-data-model/ipam/ipaddress.html" class="md-nav__link">
|
|
4152
4349
|
|
|
4153
4350
|
|
|
4154
4351
|
<span class="md-ellipsis">
|
|
@@ -4169,7 +4366,7 @@
|
|
|
4169
4366
|
|
|
4170
4367
|
|
|
4171
4368
|
<li class="md-nav__item">
|
|
4172
|
-
<a href="
|
|
4369
|
+
<a href="../core-data-model/ipam/namespace.html" class="md-nav__link">
|
|
4173
4370
|
|
|
4174
4371
|
|
|
4175
4372
|
<span class="md-ellipsis">
|
|
@@ -4190,7 +4387,7 @@
|
|
|
4190
4387
|
|
|
4191
4388
|
|
|
4192
4389
|
<li class="md-nav__item">
|
|
4193
|
-
<a href="
|
|
4390
|
+
<a href="../core-data-model/ipam/prefix.html" class="md-nav__link">
|
|
4194
4391
|
|
|
4195
4392
|
|
|
4196
4393
|
<span class="md-ellipsis">
|
|
@@ -4211,7 +4408,7 @@
|
|
|
4211
4408
|
|
|
4212
4409
|
|
|
4213
4410
|
<li class="md-nav__item">
|
|
4214
|
-
<a href="
|
|
4411
|
+
<a href="../core-data-model/ipam/rir.html" class="md-nav__link">
|
|
4215
4412
|
|
|
4216
4413
|
|
|
4217
4414
|
<span class="md-ellipsis">
|
|
@@ -4232,7 +4429,7 @@
|
|
|
4232
4429
|
|
|
4233
4430
|
|
|
4234
4431
|
<li class="md-nav__item">
|
|
4235
|
-
<a href="
|
|
4432
|
+
<a href="../core-data-model/ipam/routetarget.html" class="md-nav__link">
|
|
4236
4433
|
|
|
4237
4434
|
|
|
4238
4435
|
<span class="md-ellipsis">
|
|
@@ -4253,7 +4450,7 @@
|
|
|
4253
4450
|
|
|
4254
4451
|
|
|
4255
4452
|
<li class="md-nav__item">
|
|
4256
|
-
<a href="
|
|
4453
|
+
<a href="../core-data-model/ipam/service.html" class="md-nav__link">
|
|
4257
4454
|
|
|
4258
4455
|
|
|
4259
4456
|
<span class="md-ellipsis">
|
|
@@ -4274,7 +4471,7 @@
|
|
|
4274
4471
|
|
|
4275
4472
|
|
|
4276
4473
|
<li class="md-nav__item">
|
|
4277
|
-
<a href="
|
|
4474
|
+
<a href="../core-data-model/ipam/vlan.html" class="md-nav__link">
|
|
4278
4475
|
|
|
4279
4476
|
|
|
4280
4477
|
<span class="md-ellipsis">
|
|
@@ -4295,7 +4492,7 @@
|
|
|
4295
4492
|
|
|
4296
4493
|
|
|
4297
4494
|
<li class="md-nav__item">
|
|
4298
|
-
<a href="
|
|
4495
|
+
<a href="../core-data-model/ipam/vlangroup.html" class="md-nav__link">
|
|
4299
4496
|
|
|
4300
4497
|
|
|
4301
4498
|
<span class="md-ellipsis">
|
|
@@ -4316,7 +4513,7 @@
|
|
|
4316
4513
|
|
|
4317
4514
|
|
|
4318
4515
|
<li class="md-nav__item">
|
|
4319
|
-
<a href="
|
|
4516
|
+
<a href="../core-data-model/ipam/vrf.html" class="md-nav__link">
|
|
4320
4517
|
|
|
4321
4518
|
|
|
4322
4519
|
<span class="md-ellipsis">
|
|
@@ -4383,7 +4580,7 @@
|
|
|
4383
4580
|
|
|
4384
4581
|
|
|
4385
4582
|
<li class="md-nav__item">
|
|
4386
|
-
<a href="
|
|
4583
|
+
<a href="../core-data-model/tenancy/tenant.html" class="md-nav__link">
|
|
4387
4584
|
|
|
4388
4585
|
|
|
4389
4586
|
<span class="md-ellipsis">
|
|
@@ -4404,7 +4601,7 @@
|
|
|
4404
4601
|
|
|
4405
4602
|
|
|
4406
4603
|
<li class="md-nav__item">
|
|
4407
|
-
<a href="
|
|
4604
|
+
<a href="../core-data-model/tenancy/tenantgroup.html" class="md-nav__link">
|
|
4408
4605
|
|
|
4409
4606
|
|
|
4410
4607
|
<span class="md-ellipsis">
|
|
@@ -4471,7 +4668,7 @@
|
|
|
4471
4668
|
|
|
4472
4669
|
|
|
4473
4670
|
<li class="md-nav__item">
|
|
4474
|
-
<a href="
|
|
4671
|
+
<a href="../core-data-model/virtualization/cluster.html" class="md-nav__link">
|
|
4475
4672
|
|
|
4476
4673
|
|
|
4477
4674
|
<span class="md-ellipsis">
|
|
@@ -4492,7 +4689,7 @@
|
|
|
4492
4689
|
|
|
4493
4690
|
|
|
4494
4691
|
<li class="md-nav__item">
|
|
4495
|
-
<a href="
|
|
4692
|
+
<a href="../core-data-model/virtualization/clustergroup.html" class="md-nav__link">
|
|
4496
4693
|
|
|
4497
4694
|
|
|
4498
4695
|
<span class="md-ellipsis">
|
|
@@ -4513,7 +4710,7 @@
|
|
|
4513
4710
|
|
|
4514
4711
|
|
|
4515
4712
|
<li class="md-nav__item">
|
|
4516
|
-
<a href="
|
|
4713
|
+
<a href="../core-data-model/virtualization/clustertype.html" class="md-nav__link">
|
|
4517
4714
|
|
|
4518
4715
|
|
|
4519
4716
|
<span class="md-ellipsis">
|
|
@@ -4534,7 +4731,7 @@
|
|
|
4534
4731
|
|
|
4535
4732
|
|
|
4536
4733
|
<li class="md-nav__item">
|
|
4537
|
-
<a href="
|
|
4734
|
+
<a href="../core-data-model/virtualization/virtualmachine.html" class="md-nav__link">
|
|
4538
4735
|
|
|
4539
4736
|
|
|
4540
4737
|
<span class="md-ellipsis">
|
|
@@ -4555,7 +4752,7 @@
|
|
|
4555
4752
|
|
|
4556
4753
|
|
|
4557
4754
|
<li class="md-nav__item">
|
|
4558
|
-
<a href="
|
|
4755
|
+
<a href="../core-data-model/virtualization/vminterface.html" class="md-nav__link">
|
|
4559
4756
|
|
|
4560
4757
|
|
|
4561
4758
|
<span class="md-ellipsis">
|
|
@@ -4599,7 +4796,7 @@
|
|
|
4599
4796
|
|
|
4600
4797
|
|
|
4601
4798
|
<div class="md-nav__link md-nav__container">
|
|
4602
|
-
<a href="
|
|
4799
|
+
<a href="../core-data-model/wireless/index.html" class="md-nav__link ">
|
|
4603
4800
|
|
|
4604
4801
|
|
|
4605
4802
|
<span class="md-ellipsis">
|
|
@@ -4630,7 +4827,7 @@
|
|
|
4630
4827
|
|
|
4631
4828
|
|
|
4632
4829
|
<li class="md-nav__item">
|
|
4633
|
-
<a href="
|
|
4830
|
+
<a href="../core-data-model/wireless/supporteddatarate.html" class="md-nav__link">
|
|
4634
4831
|
|
|
4635
4832
|
|
|
4636
4833
|
<span class="md-ellipsis">
|
|
@@ -4651,7 +4848,7 @@
|
|
|
4651
4848
|
|
|
4652
4849
|
|
|
4653
4850
|
<li class="md-nav__item">
|
|
4654
|
-
<a href="
|
|
4851
|
+
<a href="../core-data-model/wireless/radioprofile.html" class="md-nav__link">
|
|
4655
4852
|
|
|
4656
4853
|
|
|
4657
4854
|
<span class="md-ellipsis">
|
|
@@ -4672,7 +4869,7 @@
|
|
|
4672
4869
|
|
|
4673
4870
|
|
|
4674
4871
|
<li class="md-nav__item">
|
|
4675
|
-
<a href="
|
|
4872
|
+
<a href="../core-data-model/wireless/wirelessnetwork.html" class="md-nav__link">
|
|
4676
4873
|
|
|
4677
4874
|
|
|
4678
4875
|
<span class="md-ellipsis">
|
|
@@ -4747,7 +4944,7 @@
|
|
|
4747
4944
|
|
|
4748
4945
|
|
|
4749
4946
|
<li class="md-nav__item">
|
|
4750
|
-
<a href="
|
|
4947
|
+
<a href="../platform-functionality/change-logging.html" class="md-nav__link">
|
|
4751
4948
|
|
|
4752
4949
|
|
|
4753
4950
|
<span class="md-ellipsis">
|
|
@@ -4768,7 +4965,7 @@
|
|
|
4768
4965
|
|
|
4769
4966
|
|
|
4770
4967
|
<li class="md-nav__item">
|
|
4771
|
-
<a href="
|
|
4968
|
+
<a href="../platform-functionality/computedfield.html" class="md-nav__link">
|
|
4772
4969
|
|
|
4773
4970
|
|
|
4774
4971
|
<span class="md-ellipsis">
|
|
@@ -4789,7 +4986,7 @@
|
|
|
4789
4986
|
|
|
4790
4987
|
|
|
4791
4988
|
<li class="md-nav__item">
|
|
4792
|
-
<a href="
|
|
4989
|
+
<a href="../platform-functionality/customfield.html" class="md-nav__link">
|
|
4793
4990
|
|
|
4794
4991
|
|
|
4795
4992
|
<span class="md-ellipsis">
|
|
@@ -4810,7 +5007,7 @@
|
|
|
4810
5007
|
|
|
4811
5008
|
|
|
4812
5009
|
<li class="md-nav__item">
|
|
4813
|
-
<a href="
|
|
5010
|
+
<a href="../platform-functionality/customlink.html" class="md-nav__link">
|
|
4814
5011
|
|
|
4815
5012
|
|
|
4816
5013
|
<span class="md-ellipsis">
|
|
@@ -4846,7 +5043,7 @@
|
|
|
4846
5043
|
|
|
4847
5044
|
|
|
4848
5045
|
<div class="md-nav__link md-nav__container">
|
|
4849
|
-
<a href="
|
|
5046
|
+
<a href="../platform-functionality/dynamicgroup.html" class="md-nav__link ">
|
|
4850
5047
|
|
|
4851
5048
|
|
|
4852
5049
|
<span class="md-ellipsis">
|
|
@@ -4877,7 +5074,7 @@
|
|
|
4877
5074
|
|
|
4878
5075
|
|
|
4879
5076
|
<li class="md-nav__item">
|
|
4880
|
-
<a href="
|
|
5077
|
+
<a href="../platform-functionality/staticgroupassociation.html" class="md-nav__link">
|
|
4881
5078
|
|
|
4882
5079
|
|
|
4883
5080
|
<span class="md-ellipsis">
|
|
@@ -4906,7 +5103,7 @@
|
|
|
4906
5103
|
|
|
4907
5104
|
|
|
4908
5105
|
<li class="md-nav__item">
|
|
4909
|
-
<a href="
|
|
5106
|
+
<a href="../platform-functionality/events.html" class="md-nav__link">
|
|
4910
5107
|
|
|
4911
5108
|
|
|
4912
5109
|
<span class="md-ellipsis">
|
|
@@ -4927,7 +5124,7 @@
|
|
|
4927
5124
|
|
|
4928
5125
|
|
|
4929
5126
|
<li class="md-nav__item">
|
|
4930
|
-
<a href="
|
|
5127
|
+
<a href="../platform-functionality/exporttemplate.html" class="md-nav__link">
|
|
4931
5128
|
|
|
4932
5129
|
|
|
4933
5130
|
<span class="md-ellipsis">
|
|
@@ -4948,7 +5145,7 @@
|
|
|
4948
5145
|
|
|
4949
5146
|
|
|
4950
5147
|
<li class="md-nav__item">
|
|
4951
|
-
<a href="
|
|
5148
|
+
<a href="../platform-functionality/externalintegration.html" class="md-nav__link">
|
|
4952
5149
|
|
|
4953
5150
|
|
|
4954
5151
|
<span class="md-ellipsis">
|
|
@@ -4969,7 +5166,7 @@
|
|
|
4969
5166
|
|
|
4970
5167
|
|
|
4971
5168
|
<li class="md-nav__item">
|
|
4972
|
-
<a href="
|
|
5169
|
+
<a href="../platform-functionality/gitrepository.html" class="md-nav__link">
|
|
4973
5170
|
|
|
4974
5171
|
|
|
4975
5172
|
<span class="md-ellipsis">
|
|
@@ -5005,7 +5202,7 @@
|
|
|
5005
5202
|
|
|
5006
5203
|
|
|
5007
5204
|
<div class="md-nav__link md-nav__container">
|
|
5008
|
-
<a href="
|
|
5205
|
+
<a href="../platform-functionality/graphql.html" class="md-nav__link ">
|
|
5009
5206
|
|
|
5010
5207
|
|
|
5011
5208
|
<span class="md-ellipsis">
|
|
@@ -5036,7 +5233,7 @@
|
|
|
5036
5233
|
|
|
5037
5234
|
|
|
5038
5235
|
<li class="md-nav__item">
|
|
5039
|
-
<a href="
|
|
5236
|
+
<a href="../platform-functionality/graphqlquery.html" class="md-nav__link">
|
|
5040
5237
|
|
|
5041
5238
|
|
|
5042
5239
|
<span class="md-ellipsis">
|
|
@@ -5065,7 +5262,7 @@
|
|
|
5065
5262
|
|
|
5066
5263
|
|
|
5067
5264
|
<li class="md-nav__item">
|
|
5068
|
-
<a href="
|
|
5265
|
+
<a href="../platform-functionality/imageattachment.html" class="md-nav__link">
|
|
5069
5266
|
|
|
5070
5267
|
|
|
5071
5268
|
<span class="md-ellipsis">
|
|
@@ -5101,7 +5298,7 @@
|
|
|
5101
5298
|
|
|
5102
5299
|
|
|
5103
5300
|
<div class="md-nav__link md-nav__container">
|
|
5104
|
-
<a href="
|
|
5301
|
+
<a href="../platform-functionality/jobs/index.html" class="md-nav__link ">
|
|
5105
5302
|
|
|
5106
5303
|
|
|
5107
5304
|
<span class="md-ellipsis">
|
|
@@ -5132,7 +5329,28 @@
|
|
|
5132
5329
|
|
|
5133
5330
|
|
|
5134
5331
|
<li class="md-nav__item">
|
|
5135
|
-
<a href="
|
|
5332
|
+
<a href="../platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5333
|
+
|
|
5334
|
+
|
|
5335
|
+
<span class="md-ellipsis">
|
|
5336
|
+
Kubernetes Job Support
|
|
5337
|
+
</span>
|
|
5338
|
+
|
|
5339
|
+
|
|
5340
|
+
</a>
|
|
5341
|
+
</li>
|
|
5342
|
+
|
|
5343
|
+
|
|
5344
|
+
|
|
5345
|
+
|
|
5346
|
+
|
|
5347
|
+
|
|
5348
|
+
|
|
5349
|
+
|
|
5350
|
+
|
|
5351
|
+
|
|
5352
|
+
<li class="md-nav__item">
|
|
5353
|
+
<a href="../platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5136
5354
|
|
|
5137
5355
|
|
|
5138
5356
|
<span class="md-ellipsis">
|
|
@@ -5153,7 +5371,7 @@
|
|
|
5153
5371
|
|
|
5154
5372
|
|
|
5155
5373
|
<li class="md-nav__item">
|
|
5156
|
-
<a href="
|
|
5374
|
+
<a href="../platform-functionality/jobs/jobhook.html" class="md-nav__link">
|
|
5157
5375
|
|
|
5158
5376
|
|
|
5159
5377
|
<span class="md-ellipsis">
|
|
@@ -5174,7 +5392,7 @@
|
|
|
5174
5392
|
|
|
5175
5393
|
|
|
5176
5394
|
<li class="md-nav__item">
|
|
5177
|
-
<a href="
|
|
5395
|
+
<a href="../platform-functionality/jobs/models.html" class="md-nav__link">
|
|
5178
5396
|
|
|
5179
5397
|
|
|
5180
5398
|
<span class="md-ellipsis">
|
|
@@ -5195,7 +5413,7 @@
|
|
|
5195
5413
|
|
|
5196
5414
|
|
|
5197
5415
|
<li class="md-nav__item">
|
|
5198
|
-
<a href="
|
|
5416
|
+
<a href="../platform-functionality/jobs/jobqueue.html" class="md-nav__link">
|
|
5199
5417
|
|
|
5200
5418
|
|
|
5201
5419
|
<span class="md-ellipsis">
|
|
@@ -5216,7 +5434,7 @@
|
|
|
5216
5434
|
|
|
5217
5435
|
|
|
5218
5436
|
<li class="md-nav__item">
|
|
5219
|
-
<a href="
|
|
5437
|
+
<a href="../platform-functionality/jobs/job-scheduling-and-approvals.html" class="md-nav__link">
|
|
5220
5438
|
|
|
5221
5439
|
|
|
5222
5440
|
<span class="md-ellipsis">
|
|
@@ -5245,7 +5463,7 @@
|
|
|
5245
5463
|
|
|
5246
5464
|
|
|
5247
5465
|
<li class="md-nav__item">
|
|
5248
|
-
<a href="
|
|
5466
|
+
<a href="../platform-functionality/napalm.html" class="md-nav__link">
|
|
5249
5467
|
|
|
5250
5468
|
|
|
5251
5469
|
<span class="md-ellipsis">
|
|
@@ -5266,7 +5484,7 @@
|
|
|
5266
5484
|
|
|
5267
5485
|
|
|
5268
5486
|
<li class="md-nav__item">
|
|
5269
|
-
<a href="
|
|
5487
|
+
<a href="../platform-functionality/note.html" class="md-nav__link">
|
|
5270
5488
|
|
|
5271
5489
|
|
|
5272
5490
|
<span class="md-ellipsis">
|
|
@@ -5287,7 +5505,7 @@
|
|
|
5287
5505
|
|
|
5288
5506
|
|
|
5289
5507
|
<li class="md-nav__item">
|
|
5290
|
-
<a href="
|
|
5508
|
+
<a href="../platform-functionality/objectmetadata.html" class="md-nav__link">
|
|
5291
5509
|
|
|
5292
5510
|
|
|
5293
5511
|
<span class="md-ellipsis">
|
|
@@ -5308,7 +5526,7 @@
|
|
|
5308
5526
|
|
|
5309
5527
|
|
|
5310
5528
|
<li class="md-nav__item">
|
|
5311
|
-
<a href="
|
|
5529
|
+
<a href="../platform-functionality/relationship.html" class="md-nav__link">
|
|
5312
5530
|
|
|
5313
5531
|
|
|
5314
5532
|
<span class="md-ellipsis">
|
|
@@ -5329,7 +5547,7 @@
|
|
|
5329
5547
|
|
|
5330
5548
|
|
|
5331
5549
|
<li class="md-nav__item">
|
|
5332
|
-
<a href="
|
|
5550
|
+
<a href="../platform-functionality/rendering-jinja-templates.html" class="md-nav__link">
|
|
5333
5551
|
|
|
5334
5552
|
|
|
5335
5553
|
<span class="md-ellipsis">
|
|
@@ -5365,7 +5583,7 @@
|
|
|
5365
5583
|
|
|
5366
5584
|
|
|
5367
5585
|
<div class="md-nav__link md-nav__container">
|
|
5368
|
-
<a href="
|
|
5586
|
+
<a href="../platform-functionality/rest-api/overview.html" class="md-nav__link ">
|
|
5369
5587
|
|
|
5370
5588
|
|
|
5371
5589
|
<span class="md-ellipsis">
|
|
@@ -5396,7 +5614,7 @@
|
|
|
5396
5614
|
|
|
5397
5615
|
|
|
5398
5616
|
<li class="md-nav__item">
|
|
5399
|
-
<a href="
|
|
5617
|
+
<a href="../platform-functionality/rest-api/filtering.html" class="md-nav__link">
|
|
5400
5618
|
|
|
5401
5619
|
|
|
5402
5620
|
<span class="md-ellipsis">
|
|
@@ -5417,7 +5635,7 @@
|
|
|
5417
5635
|
|
|
5418
5636
|
|
|
5419
5637
|
<li class="md-nav__item">
|
|
5420
|
-
<a href="
|
|
5638
|
+
<a href="../platform-functionality/rest-api/authentication.html" class="md-nav__link">
|
|
5421
5639
|
|
|
5422
5640
|
|
|
5423
5641
|
<span class="md-ellipsis">
|
|
@@ -5438,7 +5656,7 @@
|
|
|
5438
5656
|
|
|
5439
5657
|
|
|
5440
5658
|
<li class="md-nav__item">
|
|
5441
|
-
<a href="
|
|
5659
|
+
<a href="../platform-functionality/rest-api/ui-related-endpoints.html" class="md-nav__link">
|
|
5442
5660
|
|
|
5443
5661
|
|
|
5444
5662
|
<span class="md-ellipsis">
|
|
@@ -5467,7 +5685,7 @@
|
|
|
5467
5685
|
|
|
5468
5686
|
|
|
5469
5687
|
<li class="md-nav__item">
|
|
5470
|
-
<a href="
|
|
5688
|
+
<a href="../platform-functionality/role.html" class="md-nav__link">
|
|
5471
5689
|
|
|
5472
5690
|
|
|
5473
5691
|
<span class="md-ellipsis">
|
|
@@ -5488,7 +5706,7 @@
|
|
|
5488
5706
|
|
|
5489
5707
|
|
|
5490
5708
|
<li class="md-nav__item">
|
|
5491
|
-
<a href="
|
|
5709
|
+
<a href="../platform-functionality/savedview.html" class="md-nav__link">
|
|
5492
5710
|
|
|
5493
5711
|
|
|
5494
5712
|
<span class="md-ellipsis">
|
|
@@ -5509,7 +5727,7 @@
|
|
|
5509
5727
|
|
|
5510
5728
|
|
|
5511
5729
|
<li class="md-nav__item">
|
|
5512
|
-
<a href="
|
|
5730
|
+
<a href="../platform-functionality/secret.html" class="md-nav__link">
|
|
5513
5731
|
|
|
5514
5732
|
|
|
5515
5733
|
<span class="md-ellipsis">
|
|
@@ -5530,7 +5748,7 @@
|
|
|
5530
5748
|
|
|
5531
5749
|
|
|
5532
5750
|
<li class="md-nav__item">
|
|
5533
|
-
<a href="
|
|
5751
|
+
<a href="../platform-functionality/status.html" class="md-nav__link">
|
|
5534
5752
|
|
|
5535
5753
|
|
|
5536
5754
|
<span class="md-ellipsis">
|
|
@@ -5551,7 +5769,7 @@
|
|
|
5551
5769
|
|
|
5552
5770
|
|
|
5553
5771
|
<li class="md-nav__item">
|
|
5554
|
-
<a href="
|
|
5772
|
+
<a href="../platform-functionality/tag.html" class="md-nav__link">
|
|
5555
5773
|
|
|
5556
5774
|
|
|
5557
5775
|
<span class="md-ellipsis">
|
|
@@ -5572,7 +5790,7 @@
|
|
|
5572
5790
|
|
|
5573
5791
|
|
|
5574
5792
|
<li class="md-nav__item">
|
|
5575
|
-
<a href="
|
|
5793
|
+
<a href="../platform-functionality/template-filters.html" class="md-nav__link">
|
|
5576
5794
|
|
|
5577
5795
|
|
|
5578
5796
|
<span class="md-ellipsis">
|
|
@@ -5631,7 +5849,7 @@
|
|
|
5631
5849
|
|
|
5632
5850
|
|
|
5633
5851
|
<li class="md-nav__item">
|
|
5634
|
-
<a href="
|
|
5852
|
+
<a href="../platform-functionality/users/objectpermission.html" class="md-nav__link">
|
|
5635
5853
|
|
|
5636
5854
|
|
|
5637
5855
|
<span class="md-ellipsis">
|
|
@@ -5652,7 +5870,7 @@
|
|
|
5652
5870
|
|
|
5653
5871
|
|
|
5654
5872
|
<li class="md-nav__item">
|
|
5655
|
-
<a href="
|
|
5873
|
+
<a href="../platform-functionality/users/token.html" class="md-nav__link">
|
|
5656
5874
|
|
|
5657
5875
|
|
|
5658
5876
|
<span class="md-ellipsis">
|
|
@@ -5681,7 +5899,7 @@
|
|
|
5681
5899
|
|
|
5682
5900
|
|
|
5683
5901
|
<li class="md-nav__item">
|
|
5684
|
-
<a href="
|
|
5902
|
+
<a href="../platform-functionality/webhook.html" class="md-nav__link">
|
|
5685
5903
|
|
|
5686
5904
|
|
|
5687
5905
|
<span class="md-ellipsis">
|
|
@@ -5714,30 +5932,25 @@
|
|
|
5714
5932
|
|
|
5715
5933
|
|
|
5716
5934
|
|
|
5717
|
-
|
|
5718
|
-
|
|
5719
5935
|
|
|
5720
5936
|
|
|
5721
5937
|
|
|
5722
5938
|
|
|
5723
5939
|
|
|
5724
5940
|
|
|
5725
|
-
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
5941
|
|
|
5729
5942
|
|
|
5730
5943
|
|
|
5731
|
-
<li class="md-nav__item md-nav__item--
|
|
5944
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
5732
5945
|
|
|
5733
5946
|
|
|
5734
5947
|
|
|
5735
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3"
|
|
5948
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
5736
5949
|
|
|
5737
5950
|
|
|
5738
5951
|
|
|
5739
5952
|
<div class="md-nav__link md-nav__container">
|
|
5740
|
-
<a href="
|
|
5953
|
+
<a href="../../development/index.html" class="md-nav__link ">
|
|
5741
5954
|
|
|
5742
5955
|
|
|
5743
5956
|
<span class="md-ellipsis">
|
|
@@ -5748,13 +5961,13 @@
|
|
|
5748
5961
|
</a>
|
|
5749
5962
|
|
|
5750
5963
|
|
|
5751
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
5964
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
5752
5965
|
<span class="md-nav__icon md-icon"></span>
|
|
5753
5966
|
</label>
|
|
5754
5967
|
|
|
5755
5968
|
</div>
|
|
5756
5969
|
|
|
5757
|
-
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="
|
|
5970
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
|
|
5758
5971
|
<label class="md-nav__title" for="__nav_3">
|
|
5759
5972
|
<span class="md-nav__icon md-icon"></span>
|
|
5760
5973
|
Developer Guide
|
|
@@ -5783,7 +5996,7 @@
|
|
|
5783
5996
|
|
|
5784
5997
|
|
|
5785
5998
|
<div class="md-nav__link md-nav__container">
|
|
5786
|
-
<a href="
|
|
5999
|
+
<a href="../../development/jobs/index.html" class="md-nav__link ">
|
|
5787
6000
|
|
|
5788
6001
|
|
|
5789
6002
|
<span class="md-ellipsis">
|
|
@@ -5814,7 +6027,7 @@
|
|
|
5814
6027
|
|
|
5815
6028
|
|
|
5816
6029
|
<li class="md-nav__item">
|
|
5817
|
-
<a href="
|
|
6030
|
+
<a href="../../development/jobs/migration/from-v1.html" class="md-nav__link">
|
|
5818
6031
|
|
|
5819
6032
|
|
|
5820
6033
|
<span class="md-ellipsis">
|
|
@@ -5858,7 +6071,7 @@
|
|
|
5858
6071
|
|
|
5859
6072
|
|
|
5860
6073
|
<div class="md-nav__link md-nav__container">
|
|
5861
|
-
<a href="
|
|
6074
|
+
<a href="../../development/apps/index.html" class="md-nav__link ">
|
|
5862
6075
|
|
|
5863
6076
|
|
|
5864
6077
|
<span class="md-ellipsis">
|
|
@@ -5889,7 +6102,7 @@
|
|
|
5889
6102
|
|
|
5890
6103
|
|
|
5891
6104
|
<li class="md-nav__item">
|
|
5892
|
-
<a href="
|
|
6105
|
+
<a href="../../development/apps/api/setup.html" class="md-nav__link">
|
|
5893
6106
|
|
|
5894
6107
|
|
|
5895
6108
|
<span class="md-ellipsis">
|
|
@@ -5910,7 +6123,7 @@
|
|
|
5910
6123
|
|
|
5911
6124
|
|
|
5912
6125
|
<li class="md-nav__item">
|
|
5913
|
-
<a href="
|
|
6126
|
+
<a href="../../development/apps/api/nautobot-app-config.html" class="md-nav__link">
|
|
5914
6127
|
|
|
5915
6128
|
|
|
5916
6129
|
<span class="md-ellipsis">
|
|
@@ -5946,7 +6159,7 @@
|
|
|
5946
6159
|
|
|
5947
6160
|
|
|
5948
6161
|
<div class="md-nav__link md-nav__container">
|
|
5949
|
-
<a href="
|
|
6162
|
+
<a href="../../development/apps/api/models/index.html" class="md-nav__link ">
|
|
5950
6163
|
|
|
5951
6164
|
|
|
5952
6165
|
<span class="md-ellipsis">
|
|
@@ -5977,7 +6190,7 @@
|
|
|
5977
6190
|
|
|
5978
6191
|
|
|
5979
6192
|
<li class="md-nav__item">
|
|
5980
|
-
<a href="
|
|
6193
|
+
<a href="../../development/apps/api/models/global-search.html" class="md-nav__link">
|
|
5981
6194
|
|
|
5982
6195
|
|
|
5983
6196
|
<span class="md-ellipsis">
|
|
@@ -5998,7 +6211,7 @@
|
|
|
5998
6211
|
|
|
5999
6212
|
|
|
6000
6213
|
<li class="md-nav__item">
|
|
6001
|
-
<a href="
|
|
6214
|
+
<a href="../../development/apps/api/models/graphql.html" class="md-nav__link">
|
|
6002
6215
|
|
|
6003
6216
|
|
|
6004
6217
|
<span class="md-ellipsis">
|
|
@@ -6019,7 +6232,7 @@
|
|
|
6019
6232
|
|
|
6020
6233
|
|
|
6021
6234
|
<li class="md-nav__item">
|
|
6022
|
-
<a href="
|
|
6235
|
+
<a href="../../development/apps/api/models/django-admin.html" class="md-nav__link">
|
|
6023
6236
|
|
|
6024
6237
|
|
|
6025
6238
|
<span class="md-ellipsis">
|
|
@@ -6063,7 +6276,7 @@
|
|
|
6063
6276
|
|
|
6064
6277
|
|
|
6065
6278
|
<div class="md-nav__link md-nav__container">
|
|
6066
|
-
<a href="
|
|
6279
|
+
<a href="../../development/apps/api/views/index.html" class="md-nav__link ">
|
|
6067
6280
|
|
|
6068
6281
|
|
|
6069
6282
|
<span class="md-ellipsis">
|
|
@@ -6094,7 +6307,7 @@
|
|
|
6094
6307
|
|
|
6095
6308
|
|
|
6096
6309
|
<li class="md-nav__item">
|
|
6097
|
-
<a href="
|
|
6310
|
+
<a href="../../development/apps/api/views/nautobotuiviewset.html" class="md-nav__link">
|
|
6098
6311
|
|
|
6099
6312
|
|
|
6100
6313
|
<span class="md-ellipsis">
|
|
@@ -6115,7 +6328,7 @@
|
|
|
6115
6328
|
|
|
6116
6329
|
|
|
6117
6330
|
<li class="md-nav__item">
|
|
6118
|
-
<a href="
|
|
6331
|
+
<a href="../../development/apps/api/views/nautobotuiviewsetrouter.html" class="md-nav__link">
|
|
6119
6332
|
|
|
6120
6333
|
|
|
6121
6334
|
<span class="md-ellipsis">
|
|
@@ -6136,7 +6349,7 @@
|
|
|
6136
6349
|
|
|
6137
6350
|
|
|
6138
6351
|
<li class="md-nav__item">
|
|
6139
|
-
<a href="
|
|
6352
|
+
<a href="../../development/apps/api/views/nautobot-generic-views.html" class="md-nav__link">
|
|
6140
6353
|
|
|
6141
6354
|
|
|
6142
6355
|
<span class="md-ellipsis">
|
|
@@ -6157,7 +6370,7 @@
|
|
|
6157
6370
|
|
|
6158
6371
|
|
|
6159
6372
|
<li class="md-nav__item">
|
|
6160
|
-
<a href="
|
|
6373
|
+
<a href="../../development/apps/api/views/urls.html" class="md-nav__link">
|
|
6161
6374
|
|
|
6162
6375
|
|
|
6163
6376
|
<span class="md-ellipsis">
|
|
@@ -6178,7 +6391,7 @@
|
|
|
6178
6391
|
|
|
6179
6392
|
|
|
6180
6393
|
<li class="md-nav__item">
|
|
6181
|
-
<a href="
|
|
6394
|
+
<a href="../../development/apps/api/views/base-template.html" class="md-nav__link">
|
|
6182
6395
|
|
|
6183
6396
|
|
|
6184
6397
|
<span class="md-ellipsis">
|
|
@@ -6199,7 +6412,7 @@
|
|
|
6199
6412
|
|
|
6200
6413
|
|
|
6201
6414
|
<li class="md-nav__item">
|
|
6202
|
-
<a href="
|
|
6415
|
+
<a href="../../development/apps/api/views/help-documentation.html" class="md-nav__link">
|
|
6203
6416
|
|
|
6204
6417
|
|
|
6205
6418
|
<span class="md-ellipsis">
|
|
@@ -6220,7 +6433,7 @@
|
|
|
6220
6433
|
|
|
6221
6434
|
|
|
6222
6435
|
<li class="md-nav__item">
|
|
6223
|
-
<a href="
|
|
6436
|
+
<a href="../../development/apps/api/views/rest-api.html" class="md-nav__link">
|
|
6224
6437
|
|
|
6225
6438
|
|
|
6226
6439
|
<span class="md-ellipsis">
|
|
@@ -6279,7 +6492,7 @@
|
|
|
6279
6492
|
|
|
6280
6493
|
|
|
6281
6494
|
<li class="md-nav__item">
|
|
6282
|
-
<a href="
|
|
6495
|
+
<a href="../../development/apps/api/views/django-generic-views.html" class="md-nav__link">
|
|
6283
6496
|
|
|
6284
6497
|
|
|
6285
6498
|
<span class="md-ellipsis">
|
|
@@ -6300,7 +6513,7 @@
|
|
|
6300
6513
|
|
|
6301
6514
|
|
|
6302
6515
|
<li class="md-nav__item">
|
|
6303
|
-
<a href="
|
|
6516
|
+
<a href="../../development/apps/api/views/notes.html" class="md-nav__link">
|
|
6304
6517
|
|
|
6305
6518
|
|
|
6306
6519
|
<span class="md-ellipsis">
|
|
@@ -6321,7 +6534,7 @@
|
|
|
6321
6534
|
|
|
6322
6535
|
|
|
6323
6536
|
<li class="md-nav__item">
|
|
6324
|
-
<a href="
|
|
6537
|
+
<a href="../../development/apps/api/views/core-view-overrides.html" class="md-nav__link">
|
|
6325
6538
|
|
|
6326
6539
|
|
|
6327
6540
|
<span class="md-ellipsis">
|
|
@@ -6373,7 +6586,7 @@
|
|
|
6373
6586
|
|
|
6374
6587
|
|
|
6375
6588
|
<div class="md-nav__link md-nav__container">
|
|
6376
|
-
<a href="
|
|
6589
|
+
<a href="../../development/apps/api/platform-features/index.html" class="md-nav__link ">
|
|
6377
6590
|
|
|
6378
6591
|
|
|
6379
6592
|
<span class="md-ellipsis">
|
|
@@ -6404,7 +6617,7 @@
|
|
|
6404
6617
|
|
|
6405
6618
|
|
|
6406
6619
|
<li class="md-nav__item">
|
|
6407
|
-
<a href="
|
|
6620
|
+
<a href="../../development/apps/api/platform-features/custom-validators.html" class="md-nav__link">
|
|
6408
6621
|
|
|
6409
6622
|
|
|
6410
6623
|
<span class="md-ellipsis">
|
|
@@ -6425,7 +6638,7 @@
|
|
|
6425
6638
|
|
|
6426
6639
|
|
|
6427
6640
|
<li class="md-nav__item">
|
|
6428
|
-
<a href="
|
|
6641
|
+
<a href="../../development/apps/api/database-backend-config.html" class="md-nav__link">
|
|
6429
6642
|
|
|
6430
6643
|
|
|
6431
6644
|
<span class="md-ellipsis">
|
|
@@ -6446,7 +6659,7 @@
|
|
|
6446
6659
|
|
|
6447
6660
|
|
|
6448
6661
|
<li class="md-nav__item">
|
|
6449
|
-
<a href="
|
|
6662
|
+
<a href="../../development/apps/api/platform-features/filter-extensions.html" class="md-nav__link">
|
|
6450
6663
|
|
|
6451
6664
|
|
|
6452
6665
|
<span class="md-ellipsis">
|
|
@@ -6467,7 +6680,7 @@
|
|
|
6467
6680
|
|
|
6468
6681
|
|
|
6469
6682
|
<li class="md-nav__item">
|
|
6470
|
-
<a href="
|
|
6683
|
+
<a href="../../development/apps/api/platform-features/git-repository-content.html" class="md-nav__link">
|
|
6471
6684
|
|
|
6472
6685
|
|
|
6473
6686
|
<span class="md-ellipsis">
|
|
@@ -6488,7 +6701,7 @@
|
|
|
6488
6701
|
|
|
6489
6702
|
|
|
6490
6703
|
<li class="md-nav__item">
|
|
6491
|
-
<a href="
|
|
6704
|
+
<a href="../../development/apps/api/platform-features/jinja2-filters.html" class="md-nav__link">
|
|
6492
6705
|
|
|
6493
6706
|
|
|
6494
6707
|
<span class="md-ellipsis">
|
|
@@ -6509,7 +6722,7 @@
|
|
|
6509
6722
|
|
|
6510
6723
|
|
|
6511
6724
|
<li class="md-nav__item">
|
|
6512
|
-
<a href="
|
|
6725
|
+
<a href="../../development/apps/api/platform-features/jobs.html" class="md-nav__link">
|
|
6513
6726
|
|
|
6514
6727
|
|
|
6515
6728
|
<span class="md-ellipsis">
|
|
@@ -6530,7 +6743,7 @@
|
|
|
6530
6743
|
|
|
6531
6744
|
|
|
6532
6745
|
<li class="md-nav__item">
|
|
6533
|
-
<a href="
|
|
6746
|
+
<a href="../../development/apps/api/platform-features/populating-extensibility-features.html" class="md-nav__link">
|
|
6534
6747
|
|
|
6535
6748
|
|
|
6536
6749
|
<span class="md-ellipsis">
|
|
@@ -6551,7 +6764,7 @@
|
|
|
6551
6764
|
|
|
6552
6765
|
|
|
6553
6766
|
<li class="md-nav__item">
|
|
6554
|
-
<a href="
|
|
6767
|
+
<a href="../../development/apps/api/prometheus.html" class="md-nav__link">
|
|
6555
6768
|
|
|
6556
6769
|
|
|
6557
6770
|
<span class="md-ellipsis">
|
|
@@ -6572,7 +6785,7 @@
|
|
|
6572
6785
|
|
|
6573
6786
|
|
|
6574
6787
|
<li class="md-nav__item">
|
|
6575
|
-
<a href="
|
|
6788
|
+
<a href="../../development/apps/api/platform-features/secrets-providers.html" class="md-nav__link">
|
|
6576
6789
|
|
|
6577
6790
|
|
|
6578
6791
|
<span class="md-ellipsis">
|
|
@@ -6593,7 +6806,7 @@
|
|
|
6593
6806
|
|
|
6594
6807
|
|
|
6595
6808
|
<li class="md-nav__item">
|
|
6596
|
-
<a href="
|
|
6809
|
+
<a href="../../development/apps/api/platform-features/table-extensions.html" class="md-nav__link">
|
|
6597
6810
|
|
|
6598
6811
|
|
|
6599
6812
|
<span class="md-ellipsis">
|
|
@@ -6614,7 +6827,7 @@
|
|
|
6614
6827
|
|
|
6615
6828
|
|
|
6616
6829
|
<li class="md-nav__item">
|
|
6617
|
-
<a href="
|
|
6830
|
+
<a href="../../development/apps/api/platform-features/uniquely-identify-objects.html" class="md-nav__link">
|
|
6618
6831
|
|
|
6619
6832
|
|
|
6620
6833
|
<span class="md-ellipsis">
|
|
@@ -6658,7 +6871,7 @@
|
|
|
6658
6871
|
|
|
6659
6872
|
|
|
6660
6873
|
<div class="md-nav__link md-nav__container">
|
|
6661
|
-
<a href="
|
|
6874
|
+
<a href="../../development/apps/api/ui-extensions/index.html" class="md-nav__link ">
|
|
6662
6875
|
|
|
6663
6876
|
|
|
6664
6877
|
<span class="md-ellipsis">
|
|
@@ -6689,7 +6902,7 @@
|
|
|
6689
6902
|
|
|
6690
6903
|
|
|
6691
6904
|
<li class="md-nav__item">
|
|
6692
|
-
<a href="
|
|
6905
|
+
<a href="../../development/apps/api/ui-extensions/banners.html" class="md-nav__link">
|
|
6693
6906
|
|
|
6694
6907
|
|
|
6695
6908
|
<span class="md-ellipsis">
|
|
@@ -6710,7 +6923,7 @@
|
|
|
6710
6923
|
|
|
6711
6924
|
|
|
6712
6925
|
<li class="md-nav__item">
|
|
6713
|
-
<a href="
|
|
6926
|
+
<a href="../../development/apps/api/ui-extensions/home-page.html" class="md-nav__link">
|
|
6714
6927
|
|
|
6715
6928
|
|
|
6716
6929
|
<span class="md-ellipsis">
|
|
@@ -6731,7 +6944,7 @@
|
|
|
6731
6944
|
|
|
6732
6945
|
|
|
6733
6946
|
<li class="md-nav__item">
|
|
6734
|
-
<a href="
|
|
6947
|
+
<a href="../../development/apps/api/configuration-view.html" class="md-nav__link">
|
|
6735
6948
|
|
|
6736
6949
|
|
|
6737
6950
|
<span class="md-ellipsis">
|
|
@@ -6752,7 +6965,7 @@
|
|
|
6752
6965
|
|
|
6753
6966
|
|
|
6754
6967
|
<li class="md-nav__item">
|
|
6755
|
-
<a href="
|
|
6968
|
+
<a href="../../development/apps/api/ui-extensions/navigation.html" class="md-nav__link">
|
|
6756
6969
|
|
|
6757
6970
|
|
|
6758
6971
|
<span class="md-ellipsis">
|
|
@@ -6773,7 +6986,7 @@
|
|
|
6773
6986
|
|
|
6774
6987
|
|
|
6775
6988
|
<li class="md-nav__item">
|
|
6776
|
-
<a href="
|
|
6989
|
+
<a href="../../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
6777
6990
|
|
|
6778
6991
|
|
|
6779
6992
|
<span class="md-ellipsis">
|
|
@@ -6802,7 +7015,7 @@
|
|
|
6802
7015
|
|
|
6803
7016
|
|
|
6804
7017
|
<li class="md-nav__item">
|
|
6805
|
-
<a href="
|
|
7018
|
+
<a href="../../development/apps/api/testing.html" class="md-nav__link">
|
|
6806
7019
|
|
|
6807
7020
|
|
|
6808
7021
|
<span class="md-ellipsis">
|
|
@@ -7411,7 +7624,7 @@
|
|
|
7411
7624
|
|
|
7412
7625
|
|
|
7413
7626
|
<li class="md-nav__item">
|
|
7414
|
-
<a href="
|
|
7627
|
+
<a href="../../development/apps/migration/from-v1.html" class="md-nav__link">
|
|
7415
7628
|
|
|
7416
7629
|
|
|
7417
7630
|
<span class="md-ellipsis">
|
|
@@ -7432,7 +7645,7 @@
|
|
|
7432
7645
|
|
|
7433
7646
|
|
|
7434
7647
|
<li class="md-nav__item">
|
|
7435
|
-
<a href="
|
|
7648
|
+
<a href="../../development/apps/migration/dependency-updates.html" class="md-nav__link">
|
|
7436
7649
|
|
|
7437
7650
|
|
|
7438
7651
|
<span class="md-ellipsis">
|
|
@@ -7453,7 +7666,7 @@
|
|
|
7453
7666
|
|
|
7454
7667
|
|
|
7455
7668
|
<li class="md-nav__item">
|
|
7456
|
-
<a href="
|
|
7669
|
+
<a href="../../development/apps/migration/code-updates.html" class="md-nav__link">
|
|
7457
7670
|
|
|
7458
7671
|
|
|
7459
7672
|
<span class="md-ellipsis">
|
|
@@ -7512,7 +7725,7 @@
|
|
|
7512
7725
|
|
|
7513
7726
|
|
|
7514
7727
|
<li class="md-nav__item">
|
|
7515
|
-
<a href="
|
|
7728
|
+
<a href="../../development/apps/migration/model-updates/global.html" class="md-nav__link">
|
|
7516
7729
|
|
|
7517
7730
|
|
|
7518
7731
|
<span class="md-ellipsis">
|
|
@@ -7533,7 +7746,7 @@
|
|
|
7533
7746
|
|
|
7534
7747
|
|
|
7535
7748
|
<li class="md-nav__item">
|
|
7536
|
-
<a href="
|
|
7749
|
+
<a href="../../development/apps/migration/model-updates/dcim.html" class="md-nav__link">
|
|
7537
7750
|
|
|
7538
7751
|
|
|
7539
7752
|
<span class="md-ellipsis">
|
|
@@ -7554,7 +7767,7 @@
|
|
|
7554
7767
|
|
|
7555
7768
|
|
|
7556
7769
|
<li class="md-nav__item">
|
|
7557
|
-
<a href="
|
|
7770
|
+
<a href="../../development/apps/migration/model-updates/extras.html" class="md-nav__link">
|
|
7558
7771
|
|
|
7559
7772
|
|
|
7560
7773
|
<span class="md-ellipsis">
|
|
@@ -7575,7 +7788,7 @@
|
|
|
7575
7788
|
|
|
7576
7789
|
|
|
7577
7790
|
<li class="md-nav__item">
|
|
7578
|
-
<a href="
|
|
7791
|
+
<a href="../../development/apps/migration/model-updates/ipam.html" class="md-nav__link">
|
|
7579
7792
|
|
|
7580
7793
|
|
|
7581
7794
|
<span class="md-ellipsis">
|
|
@@ -7619,7 +7832,7 @@
|
|
|
7619
7832
|
|
|
7620
7833
|
|
|
7621
7834
|
<div class="md-nav__link md-nav__container">
|
|
7622
|
-
<a href="
|
|
7835
|
+
<a href="../../development/apps/migration/ui-component-framework/index.html" class="md-nav__link ">
|
|
7623
7836
|
|
|
7624
7837
|
|
|
7625
7838
|
<span class="md-ellipsis">
|
|
@@ -7650,7 +7863,7 @@
|
|
|
7650
7863
|
|
|
7651
7864
|
|
|
7652
7865
|
<li class="md-nav__item">
|
|
7653
|
-
<a href="
|
|
7866
|
+
<a href="../../development/apps/migration/ui-component-framework/migration-steps.html" class="md-nav__link">
|
|
7654
7867
|
|
|
7655
7868
|
|
|
7656
7869
|
<span class="md-ellipsis">
|
|
@@ -7671,7 +7884,7 @@
|
|
|
7671
7884
|
|
|
7672
7885
|
|
|
7673
7886
|
<li class="md-nav__item">
|
|
7674
|
-
<a href="
|
|
7887
|
+
<a href="../../development/apps/migration/ui-component-framework/custom-content.html" class="md-nav__link">
|
|
7675
7888
|
|
|
7676
7889
|
|
|
7677
7890
|
<span class="md-ellipsis">
|
|
@@ -7692,7 +7905,7 @@
|
|
|
7692
7905
|
|
|
7693
7906
|
|
|
7694
7907
|
<li class="md-nav__item">
|
|
7695
|
-
<a href="
|
|
7908
|
+
<a href="../../development/apps/migration/ui-component-framework/best-practices.html" class="md-nav__link">
|
|
7696
7909
|
|
|
7697
7910
|
|
|
7698
7911
|
<span class="md-ellipsis">
|
|
@@ -7767,7 +7980,7 @@
|
|
|
7767
7980
|
|
|
7768
7981
|
|
|
7769
7982
|
<li class="md-nav__item">
|
|
7770
|
-
<a href="
|
|
7983
|
+
<a href="../../development/apps/porting-from-netbox.html" class="md-nav__link">
|
|
7771
7984
|
|
|
7772
7985
|
|
|
7773
7986
|
<span class="md-ellipsis">
|
|
@@ -7801,8 +8014,6 @@
|
|
|
7801
8014
|
|
|
7802
8015
|
|
|
7803
8016
|
|
|
7804
|
-
|
|
7805
|
-
|
|
7806
8017
|
|
|
7807
8018
|
|
|
7808
8019
|
|
|
@@ -7812,16 +8023,16 @@
|
|
|
7812
8023
|
|
|
7813
8024
|
|
|
7814
8025
|
|
|
7815
|
-
<li class="md-nav__item md-nav__item--
|
|
8026
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7816
8027
|
|
|
7817
8028
|
|
|
7818
8029
|
|
|
7819
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3"
|
|
8030
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
7820
8031
|
|
|
7821
8032
|
|
|
7822
8033
|
|
|
7823
8034
|
<div class="md-nav__link md-nav__container">
|
|
7824
|
-
<a href="index.html" class="md-nav__link ">
|
|
8035
|
+
<a href="../../development/core/index.html" class="md-nav__link ">
|
|
7825
8036
|
|
|
7826
8037
|
|
|
7827
8038
|
<span class="md-ellipsis">
|
|
@@ -7838,7 +8049,7 @@
|
|
|
7838
8049
|
|
|
7839
8050
|
</div>
|
|
7840
8051
|
|
|
7841
|
-
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_3_label" aria-expanded="
|
|
8052
|
+
<nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_3_label" aria-expanded="false">
|
|
7842
8053
|
<label class="md-nav__title" for="__nav_3_3">
|
|
7843
8054
|
<span class="md-nav__icon md-icon"></span>
|
|
7844
8055
|
Core Developer Guide
|
|
@@ -7852,7 +8063,7 @@
|
|
|
7852
8063
|
|
|
7853
8064
|
|
|
7854
8065
|
<li class="md-nav__item">
|
|
7855
|
-
<a href="getting-started.html" class="md-nav__link">
|
|
8066
|
+
<a href="../../development/core/getting-started.html" class="md-nav__link">
|
|
7856
8067
|
|
|
7857
8068
|
|
|
7858
8069
|
<span class="md-ellipsis">
|
|
@@ -7873,7 +8084,7 @@
|
|
|
7873
8084
|
|
|
7874
8085
|
|
|
7875
8086
|
<li class="md-nav__item">
|
|
7876
|
-
<a href="settings.html" class="md-nav__link">
|
|
8087
|
+
<a href="../../development/core/settings.html" class="md-nav__link">
|
|
7877
8088
|
|
|
7878
8089
|
|
|
7879
8090
|
<span class="md-ellipsis">
|
|
@@ -7894,7 +8105,7 @@
|
|
|
7894
8105
|
|
|
7895
8106
|
|
|
7896
8107
|
<li class="md-nav__item">
|
|
7897
|
-
<a href="docker-compose-advanced-use-cases.html" class="md-nav__link">
|
|
8108
|
+
<a href="../../development/core/docker-compose-advanced-use-cases.html" class="md-nav__link">
|
|
7898
8109
|
|
|
7899
8110
|
|
|
7900
8111
|
<span class="md-ellipsis">
|
|
@@ -7915,7 +8126,7 @@
|
|
|
7915
8126
|
|
|
7916
8127
|
|
|
7917
8128
|
<li class="md-nav__item">
|
|
7918
|
-
<a href="application-registry.html" class="md-nav__link">
|
|
8129
|
+
<a href="../../development/core/application-registry.html" class="md-nav__link">
|
|
7919
8130
|
|
|
7920
8131
|
|
|
7921
8132
|
<span class="md-ellipsis">
|
|
@@ -7936,7 +8147,7 @@
|
|
|
7936
8147
|
|
|
7937
8148
|
|
|
7938
8149
|
<li class="md-nav__item">
|
|
7939
|
-
<a href="bootstrap-ui.html" class="md-nav__link">
|
|
8150
|
+
<a href="../../development/core/bootstrap-ui.html" class="md-nav__link">
|
|
7940
8151
|
|
|
7941
8152
|
|
|
7942
8153
|
<span class="md-ellipsis">
|
|
@@ -7957,7 +8168,7 @@
|
|
|
7957
8168
|
|
|
7958
8169
|
|
|
7959
8170
|
<li class="md-nav__item">
|
|
7960
|
-
<a href="best-practices.html" class="md-nav__link">
|
|
8171
|
+
<a href="../../development/core/best-practices.html" class="md-nav__link">
|
|
7961
8172
|
|
|
7962
8173
|
|
|
7963
8174
|
<span class="md-ellipsis">
|
|
@@ -7978,7 +8189,7 @@
|
|
|
7978
8189
|
|
|
7979
8190
|
|
|
7980
8191
|
<li class="md-nav__item">
|
|
7981
|
-
<a href="caching.html" class="md-nav__link">
|
|
8192
|
+
<a href="../../development/core/caching.html" class="md-nav__link">
|
|
7982
8193
|
|
|
7983
8194
|
|
|
7984
8195
|
<span class="md-ellipsis">
|
|
@@ -7999,7 +8210,7 @@
|
|
|
7999
8210
|
|
|
8000
8211
|
|
|
8001
8212
|
<li class="md-nav__item">
|
|
8002
|
-
<a href="controllers.html" class="md-nav__link">
|
|
8213
|
+
<a href="../../development/core/controllers.html" class="md-nav__link">
|
|
8003
8214
|
|
|
8004
8215
|
|
|
8005
8216
|
<span class="md-ellipsis">
|
|
@@ -8020,7 +8231,7 @@
|
|
|
8020
8231
|
|
|
8021
8232
|
|
|
8022
8233
|
<li class="md-nav__item">
|
|
8023
|
-
<a href="generic-views.html" class="md-nav__link">
|
|
8234
|
+
<a href="../../development/core/generic-views.html" class="md-nav__link">
|
|
8024
8235
|
|
|
8025
8236
|
|
|
8026
8237
|
<span class="md-ellipsis">
|
|
@@ -8041,7 +8252,7 @@
|
|
|
8041
8252
|
|
|
8042
8253
|
|
|
8043
8254
|
<li class="md-nav__item">
|
|
8044
|
-
<a href="homepage.html" class="md-nav__link">
|
|
8255
|
+
<a href="../../development/core/homepage.html" class="md-nav__link">
|
|
8045
8256
|
|
|
8046
8257
|
|
|
8047
8258
|
<span class="md-ellipsis">
|
|
@@ -8059,112 +8270,18 @@
|
|
|
8059
8270
|
|
|
8060
8271
|
|
|
8061
8272
|
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
<li class="md-nav__item md-nav__item--active">
|
|
8067
|
-
|
|
8068
|
-
<input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
|
|
8069
|
-
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
<label class="md-nav__link md-nav__link--active" for="__toc">
|
|
8075
|
-
|
|
8076
8273
|
|
|
8077
|
-
<span class="md-ellipsis">
|
|
8078
|
-
Local Kubernetes Cluster
|
|
8079
|
-
</span>
|
|
8080
8274
|
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
</label>
|
|
8084
|
-
|
|
8085
|
-
<a href="local-k8s.html" class="md-nav__link md-nav__link--active">
|
|
8275
|
+
<li class="md-nav__item">
|
|
8276
|
+
<a href="../../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8086
8277
|
|
|
8087
8278
|
|
|
8088
8279
|
<span class="md-ellipsis">
|
|
8089
|
-
|
|
8280
|
+
Minikube Dev Environment for K8s Jobs
|
|
8090
8281
|
</span>
|
|
8091
8282
|
|
|
8092
8283
|
|
|
8093
8284
|
</a>
|
|
8094
|
-
|
|
8095
|
-
|
|
8096
|
-
|
|
8097
|
-
<nav class="md-nav md-nav--secondary" aria-label="Table of contents">
|
|
8098
|
-
|
|
8099
|
-
|
|
8100
|
-
|
|
8101
|
-
|
|
8102
|
-
|
|
8103
|
-
|
|
8104
|
-
<label class="md-nav__title" for="__toc">
|
|
8105
|
-
<span class="md-nav__icon md-icon"></span>
|
|
8106
|
-
Table of contents
|
|
8107
|
-
</label>
|
|
8108
|
-
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
|
|
8109
|
-
|
|
8110
|
-
<li class="md-nav__item">
|
|
8111
|
-
<a href="#installing-kind" class="md-nav__link">
|
|
8112
|
-
<span class="md-ellipsis">
|
|
8113
|
-
Installing Kind
|
|
8114
|
-
</span>
|
|
8115
|
-
</a>
|
|
8116
|
-
|
|
8117
|
-
</li>
|
|
8118
|
-
|
|
8119
|
-
<li class="md-nav__item">
|
|
8120
|
-
<a href="#creating-a-kind-kubernetes-cluster" class="md-nav__link">
|
|
8121
|
-
<span class="md-ellipsis">
|
|
8122
|
-
Creating a Kind Kubernetes Cluster
|
|
8123
|
-
</span>
|
|
8124
|
-
</a>
|
|
8125
|
-
|
|
8126
|
-
</li>
|
|
8127
|
-
|
|
8128
|
-
<li class="md-nav__item">
|
|
8129
|
-
<a href="#connecting-nautobot-containers" class="md-nav__link">
|
|
8130
|
-
<span class="md-ellipsis">
|
|
8131
|
-
Connecting Nautobot Containers
|
|
8132
|
-
</span>
|
|
8133
|
-
</a>
|
|
8134
|
-
|
|
8135
|
-
</li>
|
|
8136
|
-
|
|
8137
|
-
<li class="md-nav__item">
|
|
8138
|
-
<a href="#using-kubectl" class="md-nav__link">
|
|
8139
|
-
<span class="md-ellipsis">
|
|
8140
|
-
Using kubectl
|
|
8141
|
-
</span>
|
|
8142
|
-
</a>
|
|
8143
|
-
|
|
8144
|
-
</li>
|
|
8145
|
-
|
|
8146
|
-
<li class="md-nav__item">
|
|
8147
|
-
<a href="#running-a-test-job" class="md-nav__link">
|
|
8148
|
-
<span class="md-ellipsis">
|
|
8149
|
-
Running a Test Job
|
|
8150
|
-
</span>
|
|
8151
|
-
</a>
|
|
8152
|
-
|
|
8153
|
-
</li>
|
|
8154
|
-
|
|
8155
|
-
<li class="md-nav__item">
|
|
8156
|
-
<a href="#cleaning-up" class="md-nav__link">
|
|
8157
|
-
<span class="md-ellipsis">
|
|
8158
|
-
Cleaning Up
|
|
8159
|
-
</span>
|
|
8160
|
-
</a>
|
|
8161
|
-
|
|
8162
|
-
</li>
|
|
8163
|
-
|
|
8164
|
-
</ul>
|
|
8165
|
-
|
|
8166
|
-
</nav>
|
|
8167
|
-
|
|
8168
8285
|
</li>
|
|
8169
8286
|
|
|
8170
8287
|
|
|
@@ -8177,7 +8294,7 @@
|
|
|
8177
8294
|
|
|
8178
8295
|
|
|
8179
8296
|
<li class="md-nav__item">
|
|
8180
|
-
<a href="model-checklist.html" class="md-nav__link">
|
|
8297
|
+
<a href="../../development/core/model-checklist.html" class="md-nav__link">
|
|
8181
8298
|
|
|
8182
8299
|
|
|
8183
8300
|
<span class="md-ellipsis">
|
|
@@ -8198,7 +8315,7 @@
|
|
|
8198
8315
|
|
|
8199
8316
|
|
|
8200
8317
|
<li class="md-nav__item">
|
|
8201
|
-
<a href="model-features.html" class="md-nav__link">
|
|
8318
|
+
<a href="../../development/core/model-features.html" class="md-nav__link">
|
|
8202
8319
|
|
|
8203
8320
|
|
|
8204
8321
|
<span class="md-ellipsis">
|
|
@@ -8219,7 +8336,7 @@
|
|
|
8219
8336
|
|
|
8220
8337
|
|
|
8221
8338
|
<li class="md-nav__item">
|
|
8222
|
-
<a href="natural-keys.html" class="md-nav__link">
|
|
8339
|
+
<a href="../../development/core/natural-keys.html" class="md-nav__link">
|
|
8223
8340
|
|
|
8224
8341
|
|
|
8225
8342
|
<span class="md-ellipsis">
|
|
@@ -8240,7 +8357,7 @@
|
|
|
8240
8357
|
|
|
8241
8358
|
|
|
8242
8359
|
<li class="md-nav__item">
|
|
8243
|
-
<a href="navigation-menu.html" class="md-nav__link">
|
|
8360
|
+
<a href="../../development/core/navigation-menu.html" class="md-nav__link">
|
|
8244
8361
|
|
|
8245
8362
|
|
|
8246
8363
|
<span class="md-ellipsis">
|
|
@@ -8261,7 +8378,7 @@
|
|
|
8261
8378
|
|
|
8262
8379
|
|
|
8263
8380
|
<li class="md-nav__item">
|
|
8264
|
-
<a href="templates.html" class="md-nav__link">
|
|
8381
|
+
<a href="../../development/core/templates.html" class="md-nav__link">
|
|
8265
8382
|
|
|
8266
8383
|
|
|
8267
8384
|
<span class="md-ellipsis">
|
|
@@ -8282,7 +8399,7 @@
|
|
|
8282
8399
|
|
|
8283
8400
|
|
|
8284
8401
|
<li class="md-nav__item">
|
|
8285
|
-
<a href="role-internals.html" class="md-nav__link">
|
|
8402
|
+
<a href="../../development/core/role-internals.html" class="md-nav__link">
|
|
8286
8403
|
|
|
8287
8404
|
|
|
8288
8405
|
<span class="md-ellipsis">
|
|
@@ -8303,7 +8420,7 @@
|
|
|
8303
8420
|
|
|
8304
8421
|
|
|
8305
8422
|
<li class="md-nav__item">
|
|
8306
|
-
<a href="style-guide.html" class="md-nav__link">
|
|
8423
|
+
<a href="../../development/core/style-guide.html" class="md-nav__link">
|
|
8307
8424
|
|
|
8308
8425
|
|
|
8309
8426
|
<span class="md-ellipsis">
|
|
@@ -8324,7 +8441,7 @@
|
|
|
8324
8441
|
|
|
8325
8442
|
|
|
8326
8443
|
<li class="md-nav__item">
|
|
8327
|
-
<a href="testing.html" class="md-nav__link">
|
|
8444
|
+
<a href="../../development/core/testing.html" class="md-nav__link">
|
|
8328
8445
|
|
|
8329
8446
|
|
|
8330
8447
|
<span class="md-ellipsis">
|
|
@@ -8345,7 +8462,7 @@
|
|
|
8345
8462
|
|
|
8346
8463
|
|
|
8347
8464
|
<li class="md-nav__item">
|
|
8348
|
-
<a href="user-preferences.html" class="md-nav__link">
|
|
8465
|
+
<a href="../../development/core/user-preferences.html" class="md-nav__link">
|
|
8349
8466
|
|
|
8350
8467
|
|
|
8351
8468
|
<span class="md-ellipsis">
|
|
@@ -8366,7 +8483,7 @@
|
|
|
8366
8483
|
|
|
8367
8484
|
|
|
8368
8485
|
<li class="md-nav__item">
|
|
8369
|
-
<a href="ui-component-framework.html" class="md-nav__link">
|
|
8486
|
+
<a href="../../development/core/ui-component-framework.html" class="md-nav__link">
|
|
8370
8487
|
|
|
8371
8488
|
|
|
8372
8489
|
<span class="md-ellipsis">
|
|
@@ -8387,7 +8504,7 @@
|
|
|
8387
8504
|
|
|
8388
8505
|
|
|
8389
8506
|
<li class="md-nav__item">
|
|
8390
|
-
<a href="release-checklist.html" class="md-nav__link">
|
|
8507
|
+
<a href="../../development/core/release-checklist.html" class="md-nav__link">
|
|
8391
8508
|
|
|
8392
8509
|
|
|
8393
8510
|
<span class="md-ellipsis">
|
|
@@ -9077,54 +9194,54 @@
|
|
|
9077
9194
|
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
|
|
9078
9195
|
|
|
9079
9196
|
<li class="md-nav__item">
|
|
9080
|
-
<a href="#
|
|
9197
|
+
<a href="#optional-preparation" class="md-nav__link">
|
|
9081
9198
|
<span class="md-ellipsis">
|
|
9082
|
-
|
|
9199
|
+
Optional Preparation
|
|
9083
9200
|
</span>
|
|
9084
9201
|
</a>
|
|
9085
9202
|
|
|
9086
9203
|
</li>
|
|
9087
9204
|
|
|
9088
9205
|
<li class="md-nav__item">
|
|
9089
|
-
<a href="#
|
|
9206
|
+
<a href="#wireless-networks" class="md-nav__link">
|
|
9090
9207
|
<span class="md-ellipsis">
|
|
9091
|
-
|
|
9208
|
+
Wireless Networks
|
|
9092
9209
|
</span>
|
|
9093
9210
|
</a>
|
|
9094
9211
|
|
|
9095
9212
|
</li>
|
|
9096
9213
|
|
|
9097
9214
|
<li class="md-nav__item">
|
|
9098
|
-
<a href="#
|
|
9215
|
+
<a href="#controllers" class="md-nav__link">
|
|
9099
9216
|
<span class="md-ellipsis">
|
|
9100
|
-
|
|
9217
|
+
Controllers
|
|
9101
9218
|
</span>
|
|
9102
9219
|
</a>
|
|
9103
9220
|
|
|
9104
9221
|
</li>
|
|
9105
9222
|
|
|
9106
9223
|
<li class="md-nav__item">
|
|
9107
|
-
<a href="#
|
|
9224
|
+
<a href="#device-groups" class="md-nav__link">
|
|
9108
9225
|
<span class="md-ellipsis">
|
|
9109
|
-
|
|
9226
|
+
Device Groups
|
|
9110
9227
|
</span>
|
|
9111
9228
|
</a>
|
|
9112
9229
|
|
|
9113
9230
|
</li>
|
|
9114
9231
|
|
|
9115
9232
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9233
|
+
<a href="#supported-data-rates-optional" class="md-nav__link">
|
|
9117
9234
|
<span class="md-ellipsis">
|
|
9118
|
-
|
|
9235
|
+
Supported Data Rates (Optional)
|
|
9119
9236
|
</span>
|
|
9120
9237
|
</a>
|
|
9121
9238
|
|
|
9122
9239
|
</li>
|
|
9123
9240
|
|
|
9124
9241
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9242
|
+
<a href="#radio-profiles-optional" class="md-nav__link">
|
|
9126
9243
|
<span class="md-ellipsis">
|
|
9127
|
-
|
|
9244
|
+
Radio Profiles (Optional)
|
|
9128
9245
|
</span>
|
|
9129
9246
|
</a>
|
|
9130
9247
|
|
|
@@ -9148,154 +9265,103 @@
|
|
|
9148
9265
|
|
|
9149
9266
|
|
|
9150
9267
|
|
|
9151
|
-
<h1 id="
|
|
9152
|
-
<p>This guide
|
|
9153
|
-
<
|
|
9154
|
-
<
|
|
9155
|
-
<p>
|
|
9156
|
-
<
|
|
9157
|
-
</
|
|
9158
|
-
<
|
|
9159
|
-
<
|
|
9160
|
-
<a
|
|
9161
|
-
|
|
9162
|
-
<
|
|
9163
|
-
|
|
9164
|
-
<
|
|
9165
|
-
<
|
|
9166
|
-
<
|
|
9167
|
-
<
|
|
9168
|
-
|
|
9169
|
-
|
|
9170
|
-
<p>
|
|
9171
|
-
<
|
|
9172
|
-
<
|
|
9173
|
-
<
|
|
9174
|
-
<a
|
|
9175
|
-
|
|
9176
|
-
<
|
|
9177
|
-
|
|
9178
|
-
<
|
|
9179
|
-
<
|
|
9180
|
-
<
|
|
9181
|
-
<
|
|
9182
|
-
<
|
|
9183
|
-
<
|
|
9184
|
-
<
|
|
9185
|
-
|
|
9186
|
-
<
|
|
9187
|
-
<
|
|
9188
|
-
<
|
|
9189
|
-
<
|
|
9190
|
-
|
|
9191
|
-
<
|
|
9192
|
-
<
|
|
9193
|
-
<
|
|
9194
|
-
<
|
|
9195
|
-
|
|
9196
|
-
|
|
9197
|
-
<
|
|
9198
|
-
<
|
|
9199
|
-
<
|
|
9200
|
-
<
|
|
9201
|
-
<
|
|
9202
|
-
</
|
|
9203
|
-
<
|
|
9204
|
-
|
|
9205
|
-
<
|
|
9206
|
-
<
|
|
9207
|
-
<
|
|
9208
|
-
<
|
|
9209
|
-
|
|
9210
|
-
<
|
|
9211
|
-
<
|
|
9212
|
-
<
|
|
9213
|
-
|
|
9214
|
-
<
|
|
9215
|
-
|
|
9216
|
-
<
|
|
9217
|
-
<
|
|
9218
|
-
<
|
|
9219
|
-
<
|
|
9220
|
-
|
|
9221
|
-
<
|
|
9222
|
-
<
|
|
9223
|
-
</
|
|
9224
|
-
|
|
9225
|
-
<
|
|
9226
|
-
<
|
|
9227
|
-
<
|
|
9228
|
-
<a
|
|
9229
|
-
|
|
9230
|
-
<
|
|
9231
|
-
|
|
9232
|
-
<
|
|
9233
|
-
|
|
9234
|
-
<p>
|
|
9235
|
-
<
|
|
9236
|
-
<
|
|
9237
|
-
<
|
|
9238
|
-
<
|
|
9239
|
-
|
|
9240
|
-
|
|
9241
|
-
<p>
|
|
9242
|
-
<
|
|
9243
|
-
<a
|
|
9244
|
-
<
|
|
9245
|
-
<
|
|
9246
|
-
|
|
9247
|
-
<
|
|
9248
|
-
<a id="__codelineno-10-7" name="__codelineno-10-7" href="#__codelineno-10-7"></a>
|
|
9249
|
-
<a id="__codelineno-10-8" name="__codelineno-10-8" href="#__codelineno-10-8"></a><span class="c1"># Test the connection</span>
|
|
9250
|
-
<a id="__codelineno-10-9" name="__codelineno-10-9" href="#__codelineno-10-9"></a><span class="nb">export</span><span class="w"> </span><span class="nv">KUBECONFIG</span><span class="o">=</span>/source/development/kind-kube-config
|
|
9251
|
-
<a id="__codelineno-10-10" name="__codelineno-10-10" href="#__codelineno-10-10"></a>kubectl<span class="w"> </span>cluster-info
|
|
9252
|
-
</code></pre></div>
|
|
9253
|
-
<p>You should see the following output:</p>
|
|
9254
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-11-1" name="__codelineno-11-1" href="#__codelineno-11-1"></a>Kubernetes control plane is running at https://nautobot-control-plane:6443
|
|
9255
|
-
<a id="__codelineno-11-2" name="__codelineno-11-2" href="#__codelineno-11-2"></a>CoreDNS is running at https://nautobot-control-plane:6443/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy
|
|
9256
|
-
<a id="__codelineno-11-3" name="__codelineno-11-3" href="#__codelineno-11-3"></a>
|
|
9257
|
-
<a id="__codelineno-11-4" name="__codelineno-11-4" href="#__codelineno-11-4"></a>To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.
|
|
9258
|
-
</code></pre></div>
|
|
9259
|
-
<h2 id="running-a-test-job">Running a Test Job<a class="headerlink" href="#running-a-test-job" title="Permanent link">¶</a></h2>
|
|
9260
|
-
<p>You can verify the connection by creating the testing Kubernetes job:</p>
|
|
9261
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-12-1" name="__codelineno-12-1" href="#__codelineno-12-1"></a>invoke<span class="w"> </span>cli
|
|
9262
|
-
<a id="__codelineno-12-2" name="__codelineno-12-2" href="#__codelineno-12-2"></a>
|
|
9263
|
-
<a id="__codelineno-12-3" name="__codelineno-12-3" href="#__codelineno-12-3"></a><span class="nb">export</span><span class="w"> </span><span class="nv">KUBECONFIG</span><span class="o">=</span>/source/development/kind-kube-config
|
|
9264
|
-
<a id="__codelineno-12-4" name="__codelineno-12-4" href="#__codelineno-12-4"></a>./development/create_k8s_job.py
|
|
9265
|
-
</code></pre></div>
|
|
9266
|
-
<div class="admonition note">
|
|
9267
|
-
<p class="admonition-title">Note</p>
|
|
9268
|
-
<p>For the following steps, the <code>kubectl</code> CLI tool must be installed as described in the previous chapter.</p>
|
|
9269
|
-
</div>
|
|
9270
|
-
<p>To verify the job is running.</p>
|
|
9271
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-13-1" name="__codelineno-13-1" href="#__codelineno-13-1"></a>kubectl<span class="w"> </span>get<span class="w"> </span>job
|
|
9272
|
-
</code></pre></div>
|
|
9273
|
-
<p>You should see the following output:</p>
|
|
9274
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-14-1" name="__codelineno-14-1" href="#__codelineno-14-1"></a>NAME STATUS COMPLETIONS DURATION AGE
|
|
9275
|
-
<a id="__codelineno-14-2" name="__codelineno-14-2" href="#__codelineno-14-2"></a>demo-job Running 0/1 6s 6s
|
|
9276
|
-
</code></pre></div>
|
|
9277
|
-
<div class="admonition info">
|
|
9278
|
-
<p class="admonition-title">Info</p>
|
|
9279
|
-
<p>The job will run for 10 seconds and then complete.</p>
|
|
9280
|
-
</div>
|
|
9281
|
-
<p>You can check the logs of the job:</p>
|
|
9282
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-15-1" name="__codelineno-15-1" href="#__codelineno-15-1"></a>kubectl<span class="w"> </span>logs<span class="w"> </span>job/demo-job<span class="w"> </span>--follow
|
|
9283
|
-
</code></pre></div>
|
|
9284
|
-
<p>Expected output:</p>
|
|
9285
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-16-1" name="__codelineno-16-1" href="#__codelineno-16-1"></a>Hello, Kubernetes!
|
|
9286
|
-
</code></pre></div>
|
|
9287
|
-
<div class="admonition warning">
|
|
9288
|
-
<p class="admonition-title">Warning</p>
|
|
9289
|
-
<p>You should delete the job after you are done with it, to be able to run the script again.</p>
|
|
9290
|
-
</div>
|
|
9291
|
-
<p>To delete the job:</p>
|
|
9292
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-17-1" name="__codelineno-17-1" href="#__codelineno-17-1"></a>kubectl<span class="w"> </span>delete<span class="w"> </span>job<span class="w"> </span>demo-job
|
|
9293
|
-
</code></pre></div>
|
|
9294
|
-
<h2 id="cleaning-up">Cleaning Up<a class="headerlink" href="#cleaning-up" title="Permanent link">¶</a></h2>
|
|
9295
|
-
<p>To clean up the Kind cluster and the <code>kubeconfig</code> file:</p>
|
|
9296
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-18-1" name="__codelineno-18-1" href="#__codelineno-18-1"></a>kind<span class="w"> </span>delete<span class="w"> </span>cluster<span class="w"> </span>--name<span class="o">=</span>nautobot
|
|
9297
|
-
<a id="__codelineno-18-2" name="__codelineno-18-2" href="#__codelineno-18-2"></a>rm<span class="w"> </span>development/kind-kube-config
|
|
9298
|
-
</code></pre></div>
|
|
9268
|
+
<h1 id="wireless-networks-and-controllers">Wireless Networks and Controllers<a class="headerlink" href="#wireless-networks-and-controllers" title="Permanent link">¶</a></h1>
|
|
9269
|
+
<p>This guide demonstrates how to set up Wireless Networks and Controllers to manage Wireless Access Points via a Controller in a Data Center. While Nautobot supports Wireless Networks managed in various modes, in this example we use <strong>Central Mode</strong>, where traffic from the Access Points is tunneled through the Controller.</p>
|
|
9270
|
+
<p><img alt="Central Mode Diagram" src="images/wireless/central-mode.png" /></p>
|
|
9271
|
+
<h2 id="optional-preparation">Optional Preparation<a class="headerlink" href="#optional-preparation" title="Permanent link">¶</a></h2>
|
|
9272
|
+
<p>Before configuring Wireless Networks, you can optionally set up the following features to enrich the data:</p>
|
|
9273
|
+
<ul>
|
|
9274
|
+
<li><a href="getting-started/creating-devices.html">Devices</a></li>
|
|
9275
|
+
<li><a href="getting-started/creating-location-types-and-locations.html">Locations</a></li>
|
|
9276
|
+
<li><a href="getting-started/ipam.html">IP Addresses and Prefixes</a></li>
|
|
9277
|
+
<li><a href="getting-started/vlans-and-vlan-groups.html">VLANs</a></li>
|
|
9278
|
+
</ul>
|
|
9279
|
+
<h2 id="wireless-networks">Wireless Networks<a class="headerlink" href="#wireless-networks" title="Permanent link">¶</a></h2>
|
|
9280
|
+
<p>To create a Wireless Network:</p>
|
|
9281
|
+
<ol>
|
|
9282
|
+
<li>Click on <strong>Wireless</strong> in the navigation menu.</li>
|
|
9283
|
+
<li>Select <strong>Wireless Networks</strong> under the <strong>Wireless</strong> group.</li>
|
|
9284
|
+
<li>Click the blue <strong>+ Add Wireless Network</strong> button.</li>
|
|
9285
|
+
</ol>
|
|
9286
|
+
<p><img alt="Add Wireless Network" src="images/wireless/wireless-network-add.png" /></p>
|
|
9287
|
+
<p>Fill in the required fields for the Wireless Network:</p>
|
|
9288
|
+
<ol>
|
|
9289
|
+
<li>Enter the Wireless Network name.</li>
|
|
9290
|
+
<li>Enter the Wireless Network SSID.</li>
|
|
9291
|
+
<li>Select a Mode from the dropdown (Central in this example).</li>
|
|
9292
|
+
<li>Choose the Authentication type.</li>
|
|
9293
|
+
<li>Click <strong>Create</strong> or <strong>Create and Add Another</strong> to save.</li>
|
|
9294
|
+
</ol>
|
|
9295
|
+
<p><img alt="Create Wireless Network Form" src="images/wireless/wireless-network-create.png" /></p>
|
|
9296
|
+
<h2 id="controllers">Controllers<a class="headerlink" href="#controllers" title="Permanent link">¶</a></h2>
|
|
9297
|
+
<p>To create a Wireless Controller:</p>
|
|
9298
|
+
<ol>
|
|
9299
|
+
<li>Click on <strong>Wireless</strong> in the navigation menu.</li>
|
|
9300
|
+
<li>Select <strong>Wireless Controllers</strong> under the <strong>Wireless</strong> group.</li>
|
|
9301
|
+
<li>Click the blue <strong>+ Add Controller</strong> button.</li>
|
|
9302
|
+
</ol>
|
|
9303
|
+
<p><img alt="Add Wireless Controller" src="images/wireless/wireless-controller-add.png" /></p>
|
|
9304
|
+
<p>Fill in the required fields for the Wireless Controller:</p>
|
|
9305
|
+
<ol>
|
|
9306
|
+
<li>Enter the Controller name.</li>
|
|
9307
|
+
<li>Select the Controller status.</li>
|
|
9308
|
+
<li>Choose a Location for the Controller.</li>
|
|
9309
|
+
<li>Select <strong>Wireless</strong> from the Capabilities dropdown.</li>
|
|
9310
|
+
<li>(Optional) Click the <strong>Controller Device</strong> tab to assign a Device that hosts the Controller.</li>
|
|
9311
|
+
<li>Click <strong>Create</strong> or <strong>Create and Add Another</strong> to save.</li>
|
|
9312
|
+
</ol>
|
|
9313
|
+
<p><img alt="Create Wireless Controller Form" src="images/wireless/wireless-controller-create-1.png" />
|
|
9314
|
+
<img alt="Create Wireless Controller Optional Device" src="images/wireless/wireless-controller-create-2.png" /></p>
|
|
9315
|
+
<h2 id="device-groups">Device Groups<a class="headerlink" href="#device-groups" title="Permanent link">¶</a></h2>
|
|
9316
|
+
<p>To create a Device Group:</p>
|
|
9317
|
+
<ol>
|
|
9318
|
+
<li>Navigate to <strong>Wireless</strong> in the navigation menu.</li>
|
|
9319
|
+
<li>Select <strong>Device Groups</strong> under the <strong>Wireless</strong> group.</li>
|
|
9320
|
+
<li>Click the blue <strong>+ Add Controller Managed Device Group</strong> button.</li>
|
|
9321
|
+
</ol>
|
|
9322
|
+
<p><img alt="Add Device Group" src="images/wireless/device-group-add.png" /></p>
|
|
9323
|
+
<p>Fill in the required fields for the Device Group:</p>
|
|
9324
|
+
<ol>
|
|
9325
|
+
<li>Select the Controller created above.</li>
|
|
9326
|
+
<li>Enter the name of the Device Group.</li>
|
|
9327
|
+
<li>Choose the devices to include in the group.</li>
|
|
9328
|
+
<li>Select <strong>Wireless</strong> from the Capabilities dropdown.</li>
|
|
9329
|
+
<li>Select the Wireless Network.</li>
|
|
9330
|
+
<li>(Optional) Filter VLANs by Location or VLAN Group, then select a VLAN.</li>
|
|
9331
|
+
<li>Click <strong>Create</strong> or <strong>Create and Add Another</strong> to save.</li>
|
|
9332
|
+
</ol>
|
|
9333
|
+
<p><img alt="Create Device Group Form" src="images/wireless/device-group-create-1.png" />
|
|
9334
|
+
<img alt="Create Device Group Form Add Networks" src="images/wireless/device-group-create-2.png" /></p>
|
|
9335
|
+
<h2 id="supported-data-rates-optional">Supported Data Rates (Optional)<a class="headerlink" href="#supported-data-rates-optional" title="Permanent link">¶</a></h2>
|
|
9336
|
+
<p>This part is optional, Supported Data Rates supports tracking wireless speed and the MCS Index.</p>
|
|
9337
|
+
<ol>
|
|
9338
|
+
<li>Click on <strong>Wireless</strong> in the navigation menu.</li>
|
|
9339
|
+
<li>Select <strong>Supported Data Rates</strong> under the <strong>Wireless</strong> group.</li>
|
|
9340
|
+
<li>Click the blue <strong>+ Add Supported Data Rate</strong>.</li>
|
|
9341
|
+
</ol>
|
|
9342
|
+
<p><img alt="Add Supported Data Rate" src="images/wireless/supported-data-rate-add.png" /></p>
|
|
9343
|
+
<p>Fill in the required fields for Supported Data Rates:</p>
|
|
9344
|
+
<ol>
|
|
9345
|
+
<li>Select a Wireless Standard.</li>
|
|
9346
|
+
<li>Enter a rate in Kbps.</li>
|
|
9347
|
+
<li>Enter the MCS Index.</li>
|
|
9348
|
+
</ol>
|
|
9349
|
+
<p><img alt="Create Supported Data Rate" src="images/wireless/supported-data-rate-create.png" /></p>
|
|
9350
|
+
<h2 id="radio-profiles-optional">Radio Profiles (Optional)<a class="headerlink" href="#radio-profiles-optional" title="Permanent link">¶</a></h2>
|
|
9351
|
+
<p>This part is optional, Radio Profiles provide context to the Wireless Radios of a Device (through the Device Group).</p>
|
|
9352
|
+
<ol>
|
|
9353
|
+
<li>Click on <strong>Wireless</strong> in the navigation menu.</li>
|
|
9354
|
+
<li>Select <strong>Radio Profiles</strong> under the <strong>Wireless</strong> group.</li>
|
|
9355
|
+
<li>Click the blue <strong>+ Add Radio Profile</strong>.</li>
|
|
9356
|
+
</ol>
|
|
9357
|
+
<p><img alt="Add Radio Profile" src="images/wireless/radio-profile-add.png" /></p>
|
|
9358
|
+
<p>Fill in the required fields for Radio Profiles:</p>
|
|
9359
|
+
<ol>
|
|
9360
|
+
<li>Enter a name for the Radio Profile.</li>
|
|
9361
|
+
<li>Set the regulatory domain. We can also fill out any other data that you have.</li>
|
|
9362
|
+
<li>Click <strong>Create</strong> or <strong>Create and Add Another</strong> to save.</li>
|
|
9363
|
+
</ol>
|
|
9364
|
+
<p><img alt="Radio Profile Create" src="images/wireless/radio-profile-create.png" /></p>
|
|
9299
9365
|
|
|
9300
9366
|
|
|
9301
9367
|
|
|
@@ -9327,7 +9393,7 @@
|
|
|
9327
9393
|
<nav class="md-footer__inner md-grid" aria-label="Footer" >
|
|
9328
9394
|
|
|
9329
9395
|
|
|
9330
|
-
<a href="
|
|
9396
|
+
<a href="software-image-files-and-versions.html" class="md-footer__link md-footer__link--prev" aria-label="Previous: Software Image Files and Versions">
|
|
9331
9397
|
<div class="md-footer__button md-icon">
|
|
9332
9398
|
|
|
9333
9399
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
|
|
@@ -9337,20 +9403,20 @@
|
|
|
9337
9403
|
Previous
|
|
9338
9404
|
</span>
|
|
9339
9405
|
<div class="md-ellipsis">
|
|
9340
|
-
|
|
9406
|
+
Software Image Files and Versions
|
|
9341
9407
|
</div>
|
|
9342
9408
|
</div>
|
|
9343
9409
|
</a>
|
|
9344
9410
|
|
|
9345
9411
|
|
|
9346
9412
|
|
|
9347
|
-
<a href="model
|
|
9413
|
+
<a href="../core-data-model/overview/introduction.html" class="md-footer__link md-footer__link--next" aria-label="Next: Introduction">
|
|
9348
9414
|
<div class="md-footer__title">
|
|
9349
9415
|
<span class="md-footer__direction">
|
|
9350
9416
|
Next
|
|
9351
9417
|
</span>
|
|
9352
9418
|
<div class="md-ellipsis">
|
|
9353
|
-
|
|
9419
|
+
Introduction
|
|
9354
9420
|
</div>
|
|
9355
9421
|
</div>
|
|
9356
9422
|
<div class="md-footer__button md-icon">
|
|
@@ -9392,7 +9458,7 @@
|
|
|
9392
9458
|
|
|
9393
9459
|
|
|
9394
9460
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
9395
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
9461
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
|
|
9396
9462
|
</a>
|
|
9397
9463
|
|
|
9398
9464
|
|
|
@@ -9400,7 +9466,7 @@
|
|
|
9400
9466
|
|
|
9401
9467
|
|
|
9402
9468
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
9403
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.
|
|
9469
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
|
|
9404
9470
|
</a>
|
|
9405
9471
|
|
|
9406
9472
|
|
|
@@ -9408,7 +9474,7 @@
|
|
|
9408
9474
|
|
|
9409
9475
|
|
|
9410
9476
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
9411
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
9477
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
|
|
9412
9478
|
</a>
|
|
9413
9479
|
|
|
9414
9480
|
|
|
@@ -9416,7 +9482,7 @@
|
|
|
9416
9482
|
|
|
9417
9483
|
|
|
9418
9484
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
9419
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.
|
|
9485
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
|
|
9420
9486
|
</a>
|
|
9421
9487
|
|
|
9422
9488
|
|
|
@@ -9424,7 +9490,7 @@
|
|
|
9424
9490
|
|
|
9425
9491
|
|
|
9426
9492
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
9427
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.
|
|
9493
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>
|
|
9428
9494
|
</a>
|
|
9429
9495
|
|
|
9430
9496
|
</div>
|
|
@@ -9439,10 +9505,10 @@
|
|
|
9439
9505
|
</div>
|
|
9440
9506
|
|
|
9441
9507
|
|
|
9442
|
-
<script id="__config" type="application/json">{"base": "../..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../assets/javascripts/workers/search.
|
|
9508
|
+
<script id="__config" type="application/json">{"base": "../..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../assets/javascripts/workers/search.f8cc74c7.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>
|
|
9443
9509
|
|
|
9444
9510
|
|
|
9445
|
-
<script src="../../assets/javascripts/bundle.
|
|
9511
|
+
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9446
9512
|
|
|
9447
9513
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9448
9514
|
|