qunicorn_core.api.services package
Submodules
qunicorn_core.api.services.root module
Module containing the root endpoint of the DEVICES API.
- class qunicorn_core.api.services.root.RootView
Bases:
MethodViewRoot endpoint of the services api, to list all available services.
- get()
Get the urls of the next endpoints of the services api to call.
- methods: ClassVar[Optional[Collection[str]]] = {'GET'}
The methods this view is registered for. Uses the same default (
["GET", "HEAD", "OPTIONS"]) asrouteandadd_url_ruleby default.
qunicorn_core.api.services.services module
Module containing the routes of the Taskmanager API.
- class qunicorn_core.api.services.services.SERVICES(serviceType: str, description: str, address: str, status: str, name: str, url: str, simulator: bool)
Bases:
object
- class qunicorn_core.api.services.services.ServicesView
Bases:
MethodViewServices Endpoint to get properties of a specific service.
- get()
Get information about a sinlge service.
- methods: ClassVar[Optional[Collection[str]]] = {'GET'}
The methods this view is registered for. Uses the same default (
["GET", "HEAD", "OPTIONS"]) asrouteandadd_url_ruleby default.
Module contents
Module containing the Services API.