Commit 3d2f2412 authored by Michel Roy's avatar Michel Roy Committed by Kevin Di Lallo
Browse files

ctrl engine client swagger update

parent 08c6ea4c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -15,11 +15,11 @@ Name | Type | Description | Notes
## Enum: TypeEnum


* `NETWORK-CHARACTERISTICS-UPDATE` (value: `"NETWORK-CHARACTERISTICS-UPDATE"`)
* `NETWORK_CHARACTERISTICS_UPDATE` (value: `"NETWORK-CHARACTERISTICS-UPDATE"`)

* `MOBILITY` (value: `"MOBILITY"`)

* `POAS-IN-RANGE` (value: `"POAS-IN-RANGE"`)
* `POAS_IN_RANGE` (value: `"POAS-IN-RANGE"`)

* `OTHER` (value: `"OTHER"`)

+0 −8
Original line number Diff line number Diff line
# MeepControllerRestApi.EventList

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**events** | [**[Event]**](Event.md) |  | [optional] 

+7 −7
Original line number Diff line number Diff line
@@ -21,11 +21,11 @@ Name | Type | Description | Notes

* `SCENARIO` (value: `"SCENARIO"`)

* `ZONE-INTER-EDGE` (value: `"ZONE-INTER-EDGE"`)
* `ZONE_INTER_EDGE` (value: `"ZONE-INTER-EDGE"`)

* `ZONE-INTER-FOG` (value: `"ZONE-INTER-FOG"`)
* `ZONE_INTER_FOG` (value: `"ZONE-INTER-FOG"`)

* `ZONE-EDGE-FOG` (value: `"ZONE-EDGE-FOG"`)
* `ZONE_EDGE_FOG` (value: `"ZONE-EDGE-FOG"`)

* `EDGE` (value: `"EDGE"`)

@@ -33,13 +33,13 @@ Name | Type | Description | Notes

* `UE` (value: `"UE"`)

* `DISTANT-CLOUD` (value: `"DISTANT-CLOUD"`)
* `DISTANT_CLOUD` (value: `"DISTANT-CLOUD"`)

* `UE-APP` (value: `"UE-APP"`)
* `UE_APP` (value: `"UE-APP"`)

* `EDGE-APP` (value: `"EDGE-APP"`)
* `EDGE_APP` (value: `"EDGE-APP"`)

* `CLOUD-APP` (value: `"CLOUD-APP"`)
* `CLOUD_APP` (value: `"CLOUD-APP"`)



+0 −96
Original line number Diff line number Diff line
# MeepControllerRestApi.MEEPSettingsApi

All URIs are relative to *http://localhost/v1*

Method | HTTP request | Description
------------- | ------------- | -------------
[**getMeepSettings**](MEEPSettingsApi.md#getMeepSettings) | **GET** /settings | Retrieve MEEP Controller settings
[**setMeepSettings**](MEEPSettingsApi.md#setMeepSettings) | **PUT** /settings | Set MEEP Controller settings


<a name="getMeepSettings"></a>
# **getMeepSettings**
> Settings getMeepSettings()

Retrieve MEEP Controller settings



### Example
```javascript
var MeepControllerRestApi = require('meep_controller_rest_api');

var apiInstance = new MeepControllerRestApi.MEEPSettingsApi();

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

### Parameters
This endpoint does not need any parameter.

### Return type

[**Settings**](Settings.md)

### Authorization

No authorization required

### HTTP request headers

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

<a name="setMeepSettings"></a>
# **setMeepSettings**
> setMeepSettings(settings)

Set MEEP Controller settings



### Example
```javascript
var MeepControllerRestApi = require('meep_controller_rest_api');

var apiInstance = new MeepControllerRestApi.MEEPSettingsApi();

var settings = new MeepControllerRestApi.Settings(); // Settings | MEEP Settings


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

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **settings** | [**Settings**](Settings.md)| MEEP Settings | 

### Return type

null (empty response body)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json
+5 −5
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
**type** | **String** | Process type | [optional] 
**isExternal** | **Boolean** | true: process is external to MEEP false: process is internal to MEEP | [optional] 
**image** | **String** | Docker image to deploy inside MEEP | [optional] 
**environment** | **String** | Environment variables using the format NAME&#x3D;\&quot;value\&quot;,NAME&#x3D;\&quot;value\&quot;,NAME&#x3D;\&quot;value\&quot; | [optional] 
**environment** | **String** | Environment variables using the format NAME=\"value\",NAME=\"value\",NAME=\"value\" | [optional] 
**commandArguments** | **String** | Arguments to command executable | [optional] 
**commandExe** | **String** | Executable to invoke at container start up | [optional] 
**serviceConfig** | [**ServiceConfig**](ServiceConfig.md) |  | [optional] 
@@ -31,13 +31,13 @@ Name | Type | Description | Notes
## Enum: TypeEnum


* `UE-APP` (value: `"UE-APP"`)
* `UE_APP` (value: `"UE-APP"`)

* `EDGE-APP` (value: `"EDGE-APP"`)
* `EDGE_APP` (value: `"EDGE-APP"`)

* `MEC-SVC` (value: `"MEC-SVC"`)
* `MEC_SVC` (value: `"MEC-SVC"`)

* `CLOUD-APP` (value: `"CLOUD-APP"`)
* `CLOUD_APP` (value: `"CLOUD-APP"`)



Loading