All URIs are relative to http://localhost:8282/v2
Method | HTTP request | Description |
---|---|---|
sfcr_event | POST /sfcr_event | Notify AI module of SFC request arrival / departure event. |
sfcr_event()
Notify AI module of SFC request arrival / departure event.
from __future__ import print_function
import time
import ai_module_client
from ai_module_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = ai_module_client.AiModuleApi()
try:
# Notify AI module of SFC request arrival / departure event.
api_instance.sfcr_event()
except ApiException as e:
print("Exception when calling AiModuleApi->sfcr_event: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]