Skip to content
Snippets Groups Projects
Commit 5c8c5212 authored by Erik Reid's avatar Erik Reid
Browse files

flattened protocol.rst

parent 7d1faed7
No related branches found
No related tags found
No related merge requests found
.. poller endpoint docs
Data Endpoints
=========================
These endpoints are temporary and will be removed.
.. contents:: :local:
/data/routers
---------------------------------
.. autofunction:: inventory_provider.routes.data.routers
/data/interfaces
---------------------------------
.. autofunction:: inventory_provider.routes.data.router_interfaces
/data/pop
---------------------------------
.. autofunction:: inventory_provider.routes.data.equipment_location
......@@ -28,12 +28,16 @@ API modules
:maxdepth: 2
:caption: Contents:
lg
data
jobs
msr
lnetd
.. automodule:: inventory_provider.routes.classifier
.. automodule:: inventory_provider.routes.poller
.. automodule:: inventory_provider.routes.msr
.. automodule:: inventory_provider.routes.lg
.. automodule:: inventory_provider.routes.lnetd
.. automodule:: inventory_provider.routes.data
.. automodule:: inventory_provider.routes.jobs
.. poller endpoint docs
Jobs Endpoints
=========================
These endpoints are used for monitoring running jobs.
.. contents:: :local:
/jobs/update
---------------------------------
.. autofunction:: inventory_provider.routes.jobs.update
/jobs/check-task-status
---------------------------------
.. autofunction:: inventory_provider.routes.jobs.check_task_status
/jobs/log
---------------------------------
.. autofunction:: inventory_provider.routes.jobs.load_task_log
.. LG endpoint docs
LG Support Endpoints
=========================
These endpoints are intended for use by LG.
/lg/interfaces
---------------------------------
.. autofunction:: inventory_provider.routes.lg.routers
.. LnetD endpoint docs
LnetD support
=========================
This endpoint is intended for use with LnetD
.. contents:: :local:
/LnetD/interfaces</hostname>
---------------------------------
.. autofunction:: inventory_provider.routes.lnetd.interfaces
.. poller endpoint docs
MSR Support Endpoints
=========================
These endpoints are intended for use by MSR.
.. contents:: :local:
/msr/access-services
---------------------------------
.. autofunction:: inventory_provider.routes.msr.access_services
/msr/bgp/logical-systems
-------------------------------------
.. autofunction:: inventory_provider.routes.msr.get_logical_systems
/msr/bgp/logical-system-peerings</name>
------------------------------------------
.. autofunction:: inventory_provider.routes.msr.logical_system_peerings
/msr/bgp/groups
-------------------------------------
.. autofunction:: inventory_provider.routes.msr.get_peering_groups
/msr/bgp/group-peerings</name>
-------------------------------------
.. autofunction:: inventory_provider.routes.msr.bgp_group_peerings
/msr/bgp/routing-instances
-------------------------------------
.. autofunction:: inventory_provider.routes.msr.get_peering_routing_instances
/msr/bgp/routing-instance-peeringns</name>
--------------------------------------------
.. autofunction:: inventory_provider.routes.msr.bgp_routing_instance_peerings
helpers
-------------------------------------
.. autofunction:: inventory_provider.routes.msr._handle_peering_group_list_request
.. autofunction:: inventory_provider.routes.msr._handle_peering_group_request
"""
Data Endpoints
=========================
These endpoints are temporary and will be removed.
.. contents:: :local:
/data/routers
---------------------------------
.. autofunction:: inventory_provider.routes.data.routers
/data/interfaces
---------------------------------
.. autofunction:: inventory_provider.routes.data.router_interfaces
/data/pop
---------------------------------
.. autofunction:: inventory_provider.routes.data.equipment_location
"""
import json
import logging
import re
......
"""
Jobs Endpoints
=========================
These endpoints are used for monitoring running jobs.
.. contents:: :local:
/jobs/update
---------------------------------
.. autofunction:: inventory_provider.routes.jobs.update
/jobs/check-task-status
---------------------------------
.. autofunction:: inventory_provider.routes.jobs.check_task_status
/jobs/log
---------------------------------
.. autofunction:: inventory_provider.routes.jobs.load_task_log
"""
import json
import logging
......
"""
LG Support Endpoints
=========================
These endpoints are intended for use by LG.
/lg/interfaces
---------------------------------
.. autofunction:: inventory_provider.routes.lg.routers
"""
import json
import logging
......
"""
LnetD support
=========================
This endpoint is intended for use with LnetD
.. contents:: :local:
/LnetD/interfaces</hostname>
---------------------------------
.. autofunction:: inventory_provider.routes.lnetd.interfaces
"""
import json
import logging
import re
......
"""
MSR Support Endpoints
=========================
These endpoints are intended for use by MSR.
.. contents:: :local:
/msr/access-services
---------------------------------
.. autofunction:: inventory_provider.routes.msr.access_services
/msr/bgp/logical-systems
-------------------------------------
.. autofunction:: inventory_provider.routes.msr.get_logical_systems
/msr/bgp/logical-system-peerings</name>
------------------------------------------
.. autofunction:: inventory_provider.routes.msr.logical_system_peerings
/msr/bgp/groups
-------------------------------------
.. autofunction:: inventory_provider.routes.msr.get_peering_groups
/msr/bgp/group-peerings</name>
-------------------------------------
.. autofunction:: inventory_provider.routes.msr.bgp_group_peerings
/msr/bgp/routing-instances
-------------------------------------
.. autofunction:: inventory_provider.routes.msr.get_peering_routing_instances
/msr/bgp/routing-instance-peeringns</name>
--------------------------------------------
.. autofunction:: inventory_provider.routes.msr.bgp_routing_instance_peerings
helpers
-------------------------------------
.. autofunction:: inventory_provider.routes.msr._handle_peering_group_list_request
.. autofunction:: inventory_provider.routes.msr._handle_peering_group_request
"""
import itertools
import json
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment