Skip to content
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.

Latest commit

 

History

History
52 lines (33 loc) · 1.25 KB

AiModuleApi.md

File metadata and controls

52 lines (33 loc) · 1.25 KB

ai_module_client.AiModuleApi

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

sfcr_event()

Notify AI module of SFC request arrival / departure event.

Example

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)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]