Commit c5438ee5 authored by Simon Pastor's avatar Simon Pastor
Browse files

fixing the missing TrafficBw in the demo-client

parent 7af9c6e5
Loading
Loading
Loading
Loading
+0 −23
Original line number Diff line number Diff line
# Swagger Codegen Ignore
# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
+0 −1
Original line number Diff line number Diff line
2.3.1
 No newline at end of file
+0 −7
Original line number Diff line number Diff line
language: node_js
node_js:
  - "6"
  - "6.1"
  - "5"
  - "5.11"
+2 −0
Original line number Diff line number Diff line
@@ -119,7 +119,9 @@ Class | Method | HTTP request | Description
*MeepDemoAppApi.StateTransferApi* | [**handleEvent**](docs/StateTransferApi.md#handleEvent) | **POST** /mg/event | Send event notification to registered Mobility Group Application
*MeepDemoAppApi.UELocationApi* | [**getUeLocation**](docs/UELocationApi.md#getUeLocation) | **GET** /location/{ueId} | Retrieves the UE location values
*MeepDemoAppApi.UEStateApi* | [**createUeState**](docs/UEStateApi.md#createUeState) | **POST** /ue/{ueId} | Registers the UE and starts a counter
*MeepDemoAppApi.UEStateApi* | [**deleteUeState**](docs/UEStateApi.md#deleteUeState) | **DELETE** /ue/{ueId} | Deregistration of a UE
*MeepDemoAppApi.UEStateApi* | [**getUeState**](docs/UEStateApi.md#getUeState) | **GET** /ue/{ueId} | Retrieves the UE state values
*MeepDemoAppApi.UEStateApi* | [**updateUeState**](docs/UEStateApi.md#updateUeState) | **PUT** /ue/{ueId} | Updates the UE state values


## Documentation for Models
+97 −0
Original line number Diff line number Diff line
@@ -5,7 +5,9 @@ All URIs are relative to *http://127.0.0.1:8086/v1*
Method | HTTP request | Description
------------- | ------------- | -------------
[**createUeState**](UEStateApi.md#createUeState) | **POST** /ue/{ueId} | Registers the UE and starts a counter
[**deleteUeState**](UEStateApi.md#deleteUeState) | **DELETE** /ue/{ueId} | Deregistration of a UE
[**getUeState**](UEStateApi.md#getUeState) | **GET** /ue/{ueId} | Retrieves the UE state values
[**updateUeState**](UEStateApi.md#updateUeState) | **PUT** /ue/{ueId} | Updates the UE state values


<a name="createUeState"></a>
@@ -49,6 +51,52 @@ null (empty response body)

No authorization required

### HTTP request headers

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

<a name="deleteUeState"></a>
# **deleteUeState**
> deleteUeState(ueId)

Deregistration of a UE



### Example
```javascript
var MeepDemoAppApi = require('meep_demo_app_api');

var apiInstance = new MeepDemoAppApi.UEStateApi();

var ueId = "ueId_example"; // String | UE identifier


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
apiInstance.deleteUeState(ueId, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ueId** | **String**| UE identifier | 

### Return type

null (empty response body)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: application/json
@@ -100,3 +148,52 @@ No authorization required
 - **Content-Type**: application/json
 - **Accept**: application/json

<a name="updateUeState"></a>
# **updateUeState**
> updateUeState(ueId, ueState)

Updates the UE state values



### Example
```javascript
var MeepDemoAppApi = require('meep_demo_app_api');

var apiInstance = new MeepDemoAppApi.UEStateApi();

var ueId = "ueId_example"; // String | UE identifier

var ueState = new MeepDemoAppApi.UeState(); // UeState | Ue state values


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
apiInstance.updateUeState(ueId, ueState, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ueId** | **String**| UE identifier | 
 **ueState** | [**UeState**](UeState.md)| Ue state values | 

### Return type

null (empty response body)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json
Loading