diff --git a/go-apps/meep-ams/api/swagger.yaml b/go-apps/meep-ams/api/swagger.yaml index dc17eb3c60484b5ce592c2029144b0e31c95d2fb..ab52abf35035f05cd8ff5cce7048073aa1f8fee3 100644 --- a/go-apps/meep-ams/api/swagger.yaml +++ b/go-apps/meep-ams/api/swagger.yaml @@ -1,9 +1,9 @@ openapi: 3.0.0 info: title: AdvantEDGE Application Mobility API - version: '2.2.1' + version: '3.1.1' description: Application Mobility Service is AdvantEDGE's implementation of [ETSI - MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf) + MEC ISG MEC021 Application Mobility API](https://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/03.01.01_60/gs_mec021v030101p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get @@ -16,8 +16,8 @@ info: name: InterDigital AdvantEDGE Support email: AdvantEDGE@InterDigital.com externalDocs: - description: ETSI GS MEC 021 Application Mobility Service API, v2.2.1 - url: https://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_mec021v020201p.pdf + description: ETSI GS MEC 021 Application Mobility Service API, v3.1.1 + url: https://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/03.01.01_60/gs_mec021v030101p.pdf servers: - url: https://localhost/sandboxname/amsi/v1 variables: {} @@ -40,30 +40,30 @@ paths: explode: true schema: type: string - - name: all_fields + - name: All_fields in: query description: Include all complex attributes in the response. style: form explode: true schema: type: string - - name: fields + - name: Fields in: query description: Complex attributes to be included into the response. See clause 6.18 in ETSI GS MEC 009 style: form explode: true schema: type: string - - name: exclude_fields + - name: Exclude_fields in: query description: Complex attributes to be excluded from the response.See clause 6.18 in ETSI GS MEC 009 style: form explode: true schema: type: string - - name: exclude_default + - name: Exclude_default in: query - description: Indicates to exclude the following complex attributes from the response See clause 6.18 in ETSI GS MEC 011 for details. + description: Indicates to exclude the following complex attributes from the response See clause 6.18 in ETSI GS MEC 009 for details. style: form explode: true schema: @@ -133,35 +133,35 @@ paths: parameters: - name: filter in: query - description: Attribute-based filtering parameters according to ETSI GS MEC 011 + description: Attribute-based filtering parameters, according to ETSI GS MEC 009, use the format (op,attr,value) style: form explode: true schema: type: string - - name: all_fields + - name: All_fields in: query - description: Include all complex attributes in the response. + description: Include all complex attributes in the response. e.g., All_Fields. style: form explode: true schema: type: string - - name: fields + - name: Fields in: query - description: Complex attributes to be included into the response. See clause 6.18 in ETSI GS MEC 011 + description: Complex attributes to be included in the response (see Clause 6.18 in ETSI GS MEC 009), e.g., att or att/subatt. style: form explode: true schema: type: string - - name: exclude_fields + - name: Exclude_fields in: query - description: Complex attributes to be excluded from the response.See clause 6.18 in ETSI GS MEC 011 + description: Complex attributes to be excluded in the response (see Clause 6.18 in ETSI GS MEC 009), e.g., att or att/subatt. style: form explode: true schema: type: string - - name: exclude_default + - name: Exclude_default in: query - description: Indicates to exclude the following complex attributes from the response See clause 6.18 in ETSI GS MEC 011 for details. + description: Indicates to exclude the following complex attributes from the response See clause 6.18 in ETSI GS MEC 009 for details. style: form explode: true schema: diff --git a/go-apps/meep-ams/server/ams.go b/go-apps/meep-ams/server/ams.go index e6e04c7dd1c58803ba6f9c4d67c85b63ca9437e9..0123bd8b849021fee8b44d0e4623daf7afcb6b74 100644 --- a/go-apps/meep-ams/server/ams.go +++ b/go-apps/meep-ams/server/ams.go @@ -28,6 +28,7 @@ import ( "net/http" "net/url" "os" + "regexp" "sort" "strconv" "strings" @@ -148,6 +149,19 @@ func notImplemented(w http.ResponseWriter, r *http.Request) { w.WriteHeader(http.StatusNotImplemented) } +type RegisterationInfoList struct { + Registrations []RegistrationInfo + Filters *FilterParameters +} + +type FilterParameters struct { + filter string + all_fields string + fields string + exclude_fields string + exclude_default string +} + // Init - App Mobility Service initialization func Init() (err error) { @@ -1205,8 +1219,10 @@ func subscriptionLinkListSubscriptionsGet(w http.ResponseWriter, r *http.Request u, _ := url.Parse(r.URL.String()) q := u.Query() validQueryParams := []string{"subscriptionType"} - if !validateQueryParams(q, validQueryParams) { - w.WriteHeader(http.StatusBadRequest) + err := validateQueryParams(q, validQueryParams) + if err != nil { + + errHandlerProblemDetails(w, err.Error(), http.StatusBadRequest) return } @@ -1473,20 +1489,51 @@ func appMobilityServiceByIdDELETE(w http.ResponseWriter, r *http.Request) { } func appMobilityServiceGET(w http.ResponseWriter, r *http.Request) { + w.Header().Set("Content-Type", "application/json; charset=UTF-8") + // Validate query parameters + u, _ := url.Parse(r.URL.String()) + q := u.Query() + validParams := []string{"filter", "All_fields", "Fields", "Exclude_fields", "Exclude_default"} + err := validateQueryParams(q, validParams) + if err != nil { + print("Query Parameter error") + errHandlerProblemDetails(w, err.Error(), http.StatusBadRequest) + return + } + + // Parse query parameters + urlFilter := q.Get("filter") + urlAllFields := q.Get("All_fields") + urlfields := q.Get("Fields") + urlExcludeFields := q.Get("Exclude_fields") + urlExcludeDefault := q.Get("Exclude_default") + regInfoList := &RegisterationInfoList{ + Filters: &FilterParameters{ + filter: urlFilter, + all_fields: urlAllFields, + fields: urlfields, + exclude_fields: urlExcludeFields, + exclude_default: urlExcludeDefault, + }, + Registrations: make([]RegistrationInfo, 0), + } + // Get all AMS Registration Info - regInfoList := make([]RegistrationInfo, 0) + //regInfoList := make([]RegistrationInfo, 0) key := baseKey + "svc:*:info" - err := rc.ForEachJSONEntry(key, populateRegInfoList, ®InfoList) + + err = rc.ForEachJSONEntry(key, populateRegInfoList, regInfoList) + if err != nil { log.Error(err.Error()) errHandlerProblemDetails(w, err.Error(), http.StatusInternalServerError) return } - // Send response - jsonResponse, err := json.Marshal(regInfoList) + // Prepare & send response + jsonResponse, err := json.Marshal(regInfoList.Registrations) if err != nil { log.Error(err.Error()) errHandlerProblemDetails(w, err.Error(), http.StatusInternalServerError) @@ -1498,9 +1545,9 @@ func appMobilityServiceGET(w http.ResponseWriter, r *http.Request) { } func populateRegInfoList(key string, jsonEntry string, response interface{}) error { - regInfoList := response.(*[]RegistrationInfo) - if regInfoList == nil { - return errors.New("Response not defined") + data := response.(*RegisterationInfoList) + if data == nil { + return errors.New("response not defined") } // Retrieve registration info from DB @@ -1509,7 +1556,202 @@ func populateRegInfoList(key string, jsonEntry string, response interface{}) err if err != nil { return err } - *regInfoList = append(*regInfoList, regInfo) + + // Filter services + if data.Filters != nil { + + // Filter Paramter + if data.Filters.filter != "" { + filterField := data.Filters.filter + // Split filterField into operator, attribute, and value + operator, attribute, value, _ := parseFilter(filterField) + + // Apply filters based on attribute + switch attribute { + case "appMobilityServiceId": + if !applyStringFilter(operator, regInfo.AppMobilityServiceId, value) { + return nil + } + + case "serviceConsumerId/appInstanceId": + if !applyStringFilter(operator, regInfo.ServiceConsumerId.AppInstanceId, value) { + return nil + } + + case "serviceConsumerId/mepId": + if !applyStringFilter(operator, regInfo.ServiceConsumerId.MepId, value) { + return nil + } + + case "deviceInformation/associateId": + matched := false + for _, deviceInfo := range regInfo.DeviceInformation { + if applyStringFilter(operator, deviceInfo.AssociateId.Value, value) { + matched = true + break + } + } + if !matched { + return nil + } + + case "deviceInformation/appMobilityServiceLevel": + matched := false + for _, deviceInfo := range regInfo.DeviceInformation { + if applyStringFilter(operator, string(*deviceInfo.AppMobilityServiceLevel), value) { + matched = true + break + } + } + if !matched { + return nil + } + + case "deviceInformation/contextTransferState": + matched := false + for _, deviceInfo := range regInfo.DeviceInformation { + if applyEnumFilter(operator, string(*deviceInfo.ContextTransferState), value) { + matched = true + break + } + } + if !matched { + return nil + } + + case "expiryTime": + expiryTime, err := strconv.ParseUint(value, 10, 32) + if err != nil { + return nil + } + if !applyNumericFilter(operator, uint32(regInfo.ExpiryTime), uint32(expiryTime)) { + return nil + } + + default: + return nil + } + + } + + // Handle Fields Parameter (Include ALL fields) + if data.Filters.all_fields != "" && data.Filters.all_fields != "All_fields" { + return nil + } + + // Handle Fields Parameter + if data.Filters.fields != "" { + fields := strings.Split(data.Filters.fields, ",") + filteredRegInfo := RegistrationInfo{} + + for _, field := range fields { + switch field { + case "appMobilityServiceId": + filteredRegInfo.AppMobilityServiceId = regInfo.AppMobilityServiceId + + case "serviceConsumerId/appInstanceId": + // if filteredRegInfo.ServiceConsumerId == nil { + // filteredRegInfo.ServiceConsumerId = &RegistrationInfoServiceConsumerId{} + // } + if regInfo.ServiceConsumerId.AppInstanceId != "" { + filteredRegInfo.ServiceConsumerId.AppInstanceId = regInfo.ServiceConsumerId.AppInstanceId + } + + case "serviceConsumerId/mepId": + // if filteredRegInfo.ServiceConsumerId == nil { + // filteredRegInfo.ServiceConsumerId = &RegistrationInfoServiceConsumerId{} + // } + if regInfo.ServiceConsumerId.MepId != "" { + filteredRegInfo.ServiceConsumerId.MepId = regInfo.ServiceConsumerId.MepId + } + + case "deviceInformation/associateId": + for _, deviceInfo := range regInfo.DeviceInformation { + if deviceInfo.AssociateId.Value != "" { + filteredDeviceInfo := RegistrationInfoDeviceInformation{ + AssociateId: deviceInfo.AssociateId, + } + filteredRegInfo.DeviceInformation = append(filteredRegInfo.DeviceInformation, filteredDeviceInfo) + } + } + + case "deviceInformation/appMobilityServiceLevel": + for _, deviceInfo := range regInfo.DeviceInformation { + if *deviceInfo.AppMobilityServiceLevel != "" { + filteredDeviceInfo := RegistrationInfoDeviceInformation{ + AppMobilityServiceLevel: deviceInfo.AppMobilityServiceLevel, + } + filteredRegInfo.DeviceInformation = append(filteredRegInfo.DeviceInformation, filteredDeviceInfo) + } + } + + case "deviceInformation/contextTransferState": + for _, deviceInfo := range regInfo.DeviceInformation { + if *deviceInfo.ContextTransferState != "" { + filteredDeviceInfo := RegistrationInfoDeviceInformation{ + ContextTransferState: deviceInfo.ContextTransferState, + } + filteredRegInfo.DeviceInformation = append(filteredRegInfo.DeviceInformation, filteredDeviceInfo) + } + } + + case "expiryTime": + //Logic + if string(regInfo.ExpiryTime) != "" { + filteredRegInfo.ExpiryTime = regInfo.ExpiryTime + } + + } + // Replace regInfo with the filtered version + + } + regInfo = filteredRegInfo + } + + // Handle Exclude Fields Parameter (Exclude specified fields) + if data.Filters.exclude_fields != "" { + excludeFields := strings.Split(data.Filters.exclude_fields, ",") + filteredRegInfo := regInfo + + // Exclude the listed fields + for _, field := range excludeFields { + switch field { + case "appMobilityServiceId": + filteredRegInfo.AppMobilityServiceId = "" // Exclude this field + case "serviceConsumerId/appInstanceId": + if filteredRegInfo.ServiceConsumerId != nil { + filteredRegInfo.ServiceConsumerId.AppInstanceId = "" // Exclude this field + } + case "serviceConsumerId/mepId": + if filteredRegInfo.ServiceConsumerId != nil { + filteredRegInfo.ServiceConsumerId.MepId = "" // Exclude this field + } + case "deviceInformation/associateId": + for i := range filteredRegInfo.DeviceInformation { + filteredRegInfo.DeviceInformation[i].AssociateId = nil // Exclude this field + } + case "deviceInformation/appMobilityServiceLevel": + for i := range filteredRegInfo.DeviceInformation { + filteredRegInfo.DeviceInformation[i].AppMobilityServiceLevel = nil // Exclude this field + } + case "deviceInformation/contextTransferState": + for i := range filteredRegInfo.DeviceInformation { + filteredRegInfo.DeviceInformation[i].ContextTransferState = nil // Exclude this field + } + case "expiryTime": + filteredRegInfo.ExpiryTime = 0 // Exclude this field + } + } + + // Replace regInfo with the filtered version based on exclude_fields parameter + regInfo = filteredRegInfo + } + + // Handle Exclude Fields default Parameter (Exclude specified fields) + + } + // Returning Data + data.Registrations = append(data.Registrations, regInfo) return nil } @@ -2324,21 +2566,22 @@ func delTrackedDevInfo(svcId string, address string) error { return nil } -func validateQueryParams(params url.Values, validParamList []string) bool { +func validateQueryParams(params url.Values, validParams []string) error { for param := range params { found := false - for _, validParam := range validParamList { + for _, validParam := range validParams { if param == validParam { found = true break } } if !found { - log.Error("Invalid query param: ", param) - return false + err := errors.New("Invalid query param: " + param) + log.Error(err.Error()) + return err } } - return true + return nil } func validateQueryParamValue(val string, validValues []string) bool { @@ -2370,3 +2613,92 @@ func errHandlerProblemDetails(w http.ResponseWriter, error string, code int) { w.WriteHeader(code) fmt.Fprint(w, jsonResponse) } + +func parseFilter(filterField string) (string, string, string, error) { + // Regular expression to match the filter format + re := regexp.MustCompile(`^(eq|neq|gt|lt|gte|lte|in|nin|cont|ncont),([a-zA-Z0-9/]+),([^,]+)(?:,([^,]+))?$`) + + // Trim any surrounding parentheses + filterField = strings.Trim(filterField, "()") + + // Match the filterField against the regular expression + matches := re.FindStringSubmatch(filterField) + if len(matches) < 3 { + return "", "", "", nil + } + + // Extract the operator, attribute, and value(s) + operator := matches[1] + attribute := matches[2] + value := matches[3] + + // If there's a second value (for operators like "in" or "nin"), handle it + if len(matches) > 4 && matches[4] != "" { + value += "," + matches[4] + } + + return operator, attribute, value, nil +} + +// Helper functions for applying filters +func applyStringFilter(operator, fieldValue, filterValue string) bool { + switch operator { + case "eq": + return fieldValue == filterValue + case "neq": + return fieldValue != filterValue + case "cont": + return strings.Contains(fieldValue, filterValue) + case "ncont": + return !strings.Contains(fieldValue, filterValue) + case "in": + values := strings.Split(filterValue, ",") + for _, v := range values { + if fieldValue == v { + return true + } + } + return false + case "nin": + values := strings.Split(filterValue, ",") + for _, v := range values { + if fieldValue == v { + return false + } + } + return true + case "gt": + return fieldValue > filterValue + case "gte": + return fieldValue >= filterValue + case "lt": + return fieldValue < filterValue + case "lte": + return fieldValue <= filterValue + default: + return false + } +} + +func applyEnumFilter(operator, fieldValue, filterValue string) bool { + return applyStringFilter(operator, fieldValue, filterValue) +} + +func applyNumericFilter(operator string, fieldValue, filterValue uint32) bool { + switch operator { + // case "eq": + // return fieldValue == filterValue + // case "neq": + // return fieldValue != filterValue + case "gt": + return fieldValue > filterValue + case "gte": + return fieldValue >= filterValue + case "lt": + return fieldValue < filterValue + case "lte": + return fieldValue <= filterValue + default: + return false + } +} diff --git a/go-apps/meep-ams/server/api_amsi.go b/go-apps/meep-ams/server/api_amsi.go index 6031d67cdbd0ab28e3ebdb0f7c0e6dd5060607eb..e4ba29eadde13094677f4657517a029317fdbc1b 100644 --- a/go-apps/meep-ams/server/api_amsi.go +++ b/go-apps/meep-ams/server/api_amsi.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/api_unsupported.go b/go-apps/meep-ams/server/api_unsupported.go index 8ec5a84cb53e78601050f6fe88481068b347d283..e506857b2bfcc86e7e9a6ea32130412784ee5831 100644 --- a/go-apps/meep-ams/server/api_unsupported.go +++ b/go-apps/meep-ams/server/api_unsupported.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/backup.go b/go-apps/meep-ams/server/backup.go new file mode 100644 index 0000000000000000000000000000000000000000..abb4e431abd516750a5a1e5e2b77073c236b8f9e --- /dev/null +++ b/go-apps/meep-ams/server/backup.go @@ -0,0 +1 @@ +package server diff --git a/go-apps/meep-ams/server/logger.go b/go-apps/meep-ams/server/logger.go index c5a73ff34585b3633b998ea4ed61d87d2c2dc77f..38c32dbca6e29efd5023ffd8d3a0060ce01657e5 100644 --- a/go-apps/meep-ams/server/logger.go +++ b/go-apps/meep-ams/server/logger.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_adjacent_app_info_notification.go b/go-apps/meep-ams/server/model_adjacent_app_info_notification.go index 0a48637f42fadb48aec3a1920ea37cd70df2fc27..7bacaf62d1e42297fb101b0226b8a1f82640be2d 100644 --- a/go-apps/meep-ams/server/model_adjacent_app_info_notification.go +++ b/go-apps/meep-ams/server/model_adjacent_app_info_notification.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_adjacent_app_info_notification_adjacent_app_info.go b/go-apps/meep-ams/server/model_adjacent_app_info_notification_adjacent_app_info.go index ce78d8249074738d4fe0fb61a8be6521c2b826a5..26325a4e86ef13639cf78f5da4d606d436f35179 100644 --- a/go-apps/meep-ams/server/model_adjacent_app_info_notification_adjacent_app_info.go +++ b/go-apps/meep-ams/server/model_adjacent_app_info_notification_adjacent_app_info.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_adjacent_app_info_subscription.go b/go-apps/meep-ams/server/model_adjacent_app_info_subscription.go index 81b575be63d1d765be548db30d79d62807ddb3ee..b97798845e518502f63c73c8823c2ef4a020e72a 100644 --- a/go-apps/meep-ams/server/model_adjacent_app_info_subscription.go +++ b/go-apps/meep-ams/server/model_adjacent_app_info_subscription.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_adjacent_app_info_subscription_filter_criteria.go b/go-apps/meep-ams/server/model_adjacent_app_info_subscription_filter_criteria.go index 71c90e00d6d612936b755a307309e960ad301e2c..ee4a1abc4abead1e8dd896f50c8e1df537f9f2ba 100644 --- a/go-apps/meep-ams/server/model_adjacent_app_info_subscription_filter_criteria.go +++ b/go-apps/meep-ams/server/model_adjacent_app_info_subscription_filter_criteria.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_adjacent_app_info_subscription_links.go b/go-apps/meep-ams/server/model_adjacent_app_info_subscription_links.go index 123c35744c574b011152c630630bbe8f3f7fdc48..7a1f493822382fa47a6d08de752fc6af838072c8 100644 --- a/go-apps/meep-ams/server/model_adjacent_app_info_subscription_links.go +++ b/go-apps/meep-ams/server/model_adjacent_app_info_subscription_links.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_adjacent_app_instance_info.go b/go-apps/meep-ams/server/model_adjacent_app_instance_info.go index 607c4702aa253fbfee4b9acb7036542f9741c3ca..ec7a4ad9a73872b5c77686f0fa00a067e558aa79 100644 --- a/go-apps/meep-ams/server/model_adjacent_app_instance_info.go +++ b/go-apps/meep-ams/server/model_adjacent_app_instance_info.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_app_mobility_service_level.go b/go-apps/meep-ams/server/model_app_mobility_service_level.go index 3bdf477dc680218855b5a1018d4a2402c3acd6fa..a59b7a2752f71ba48348aefee6b5b3174ecaccee 100644 --- a/go-apps/meep-ams/server/model_app_mobility_service_level.go +++ b/go-apps/meep-ams/server/model_app_mobility_service_level.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_app_termination_notification.go b/go-apps/meep-ams/server/model_app_termination_notification.go index 9f3da662570cc5e86948da8b4a27297394e4f1f5..96b5afc526a7d1b07b8af3da462851f948f22aa6 100644 --- a/go-apps/meep-ams/server/model_app_termination_notification.go +++ b/go-apps/meep-ams/server/model_app_termination_notification.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_app_termination_notification__links.go b/go-apps/meep-ams/server/model_app_termination_notification__links.go index 7287931a395448d8b64f8de6fa6b8cdb32828642..3dbe215e0cf725031a30d51cdf4b2725ffddaf43 100644 --- a/go-apps/meep-ams/server/model_app_termination_notification__links.go +++ b/go-apps/meep-ams/server/model_app_termination_notification__links.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_associate_id.go b/go-apps/meep-ams/server/model_associate_id.go index 89d553ef685fc6b3fdbe4be04aac0f171677ded5..12b49c57715ed2d03d169c3674115aa317920a93 100644 --- a/go-apps/meep-ams/server/model_associate_id.go +++ b/go-apps/meep-ams/server/model_associate_id.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_associate_id_type.go b/go-apps/meep-ams/server/model_associate_id_type.go index 329ad9bb5015c19311a92aa0e43a4ef6f88c7093..92700ce4db5eac9ba4daf5f6625aa863a20636d8 100644 --- a/go-apps/meep-ams/server/model_associate_id_type.go +++ b/go-apps/meep-ams/server/model_associate_id_type.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_communication_interface.go b/go-apps/meep-ams/server/model_communication_interface.go index 028c8e13893460d313be0018040b827db5be6679..e842c2627683a142d768c728673340212647b08d 100644 --- a/go-apps/meep-ams/server/model_communication_interface.go +++ b/go-apps/meep-ams/server/model_communication_interface.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_communication_interface_ip_addresses.go b/go-apps/meep-ams/server/model_communication_interface_ip_addresses.go index 38e94df10c8dcda3407687a3a43ef952aa97c5f6..fe0959c21565ff57c0d7fc9c4f6995e40b835778 100644 --- a/go-apps/meep-ams/server/model_communication_interface_ip_addresses.go +++ b/go-apps/meep-ams/server/model_communication_interface_ip_addresses.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_context_transfer_state.go b/go-apps/meep-ams/server/model_context_transfer_state.go index 2d80ed20a0a8a5176fe02ef2e3529b5f70760ddf..7bc47d626a88dc0e5e858bb6230b2ba324723d4f 100644 --- a/go-apps/meep-ams/server/model_context_transfer_state.go +++ b/go-apps/meep-ams/server/model_context_transfer_state.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_expiry_notification.go b/go-apps/meep-ams/server/model_expiry_notification.go index 11cb2d4a86914eb6510a528fd8d20dc01f8deef4..ced3ec82b91337ed7d9975003d34d4ebf268d365 100644 --- a/go-apps/meep-ams/server/model_expiry_notification.go +++ b/go-apps/meep-ams/server/model_expiry_notification.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_inline_notification.go b/go-apps/meep-ams/server/model_inline_notification.go index efa3570bb1864cb1d3c44bc2d99b8aea479c54f4..eb6cadfb607127c8393af3e23b150e251e292793 100644 --- a/go-apps/meep-ams/server/model_inline_notification.go +++ b/go-apps/meep-ams/server/model_inline_notification.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_inline_subscription.go b/go-apps/meep-ams/server/model_inline_subscription.go index 95d96d07f07088eeaf520c547dc9457f5f7877d7..83b523c25db15d45b4c190ae665c1c1447047f7b 100644 --- a/go-apps/meep-ams/server/model_inline_subscription.go +++ b/go-apps/meep-ams/server/model_inline_subscription.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_link.go b/go-apps/meep-ams/server/model_link.go index e864c198967f781616ded5df3974196dbd84b381..14af44fd7675d9f9b2a89e5066a6a9ab718e97a3 100644 --- a/go-apps/meep-ams/server/model_link.go +++ b/go-apps/meep-ams/server/model_link.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_link_type.go b/go-apps/meep-ams/server/model_link_type.go index d812ac8162a435750086634a79dde3a2e7011f17..a0e9f5a6fb7361b39d90f75d333e9d27b269e544 100644 --- a/go-apps/meep-ams/server/model_link_type.go +++ b/go-apps/meep-ams/server/model_link_type.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_mec_host_information.go b/go-apps/meep-ams/server/model_mec_host_information.go index e9326dc340f6751292933fa064b5865539096dd0..a87ff97bbaf486e8fc057c14a24a94a13885dc9d 100644 --- a/go-apps/meep-ams/server/model_mec_host_information.go +++ b/go-apps/meep-ams/server/model_mec_host_information.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_mobility_procedure_notification.go b/go-apps/meep-ams/server/model_mobility_procedure_notification.go index ff90a8a11d8f9e6c44c939049e4570e4886800b1..2585774754635ab65225c5af5c6a8cccfc27827b 100644 --- a/go-apps/meep-ams/server/model_mobility_procedure_notification.go +++ b/go-apps/meep-ams/server/model_mobility_procedure_notification.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_mobility_procedure_notification_target_app_info.go b/go-apps/meep-ams/server/model_mobility_procedure_notification_target_app_info.go index 7515c2eef24548c6fda03e8f1d7b41aef3b13931..7b19b4b10061bc2cdf8ef83b464f8a56c8ad7c7b 100644 --- a/go-apps/meep-ams/server/model_mobility_procedure_notification_target_app_info.go +++ b/go-apps/meep-ams/server/model_mobility_procedure_notification_target_app_info.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_mobility_procedure_subscription.go b/go-apps/meep-ams/server/model_mobility_procedure_subscription.go index ec7828ded1d0658f58e135a45aa8f0a633cca709..5492d708b622a1e0d2662a9999b11bce7e81adc1 100644 --- a/go-apps/meep-ams/server/model_mobility_procedure_subscription.go +++ b/go-apps/meep-ams/server/model_mobility_procedure_subscription.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_mobility_procedure_subscription_filter_criteria.go b/go-apps/meep-ams/server/model_mobility_procedure_subscription_filter_criteria.go index a24757e3e4279d7e62b94db7eafeea12d2436e89..3bf738c1960dd435ac4d11ea6c6d558438358285 100644 --- a/go-apps/meep-ams/server/model_mobility_procedure_subscription_filter_criteria.go +++ b/go-apps/meep-ams/server/model_mobility_procedure_subscription_filter_criteria.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_mobility_procedure_subscription_links.go b/go-apps/meep-ams/server/model_mobility_procedure_subscription_links.go index 8cce93b4ec71ae1b261389d60e805ca62dc4b657..8d54fc712783b8cb58e34c6addcc71e681c33ab9 100644 --- a/go-apps/meep-ams/server/model_mobility_procedure_subscription_links.go +++ b/go-apps/meep-ams/server/model_mobility_procedure_subscription_links.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_mobility_status.go b/go-apps/meep-ams/server/model_mobility_status.go index f787024027dfe86a5d38aab76834864c2dc4bf0d..9da7212f1bc7e2d0ff9cb0e1221d63a7044a45e1 100644 --- a/go-apps/meep-ams/server/model_mobility_status.go +++ b/go-apps/meep-ams/server/model_mobility_status.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_one_of_inline_notification.go b/go-apps/meep-ams/server/model_one_of_inline_notification.go index c8b870189ea01954db5e44092b83c4e5db285c3a..98744a2c5026f4501811a313e8f2b7938aa31997 100644 --- a/go-apps/meep-ams/server/model_one_of_inline_notification.go +++ b/go-apps/meep-ams/server/model_one_of_inline_notification.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_one_of_inline_subscription.go b/go-apps/meep-ams/server/model_one_of_inline_subscription.go index a2486df2bc7c12622405d5aa032f13565dc3b21c..ac4925f2b3ecd29386562ba86863166db5fdcf16 100644 --- a/go-apps/meep-ams/server/model_one_of_inline_subscription.go +++ b/go-apps/meep-ams/server/model_one_of_inline_subscription.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_operation_action_type.go b/go-apps/meep-ams/server/model_operation_action_type.go index 4b1880c2c05287e4bbef58be6988dc4a8884ec7a..c95c033ab5d9779269aa2e8ee844f2566ce08647 100644 --- a/go-apps/meep-ams/server/model_operation_action_type.go +++ b/go-apps/meep-ams/server/model_operation_action_type.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_problem_details.go b/go-apps/meep-ams/server/model_problem_details.go index 10ca515580cfa485c604fb02f7d1582b3501007d..f451c100a672d10df3a96baae7ae9ec3570b37c4 100644 --- a/go-apps/meep-ams/server/model_problem_details.go +++ b/go-apps/meep-ams/server/model_problem_details.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_registration_info.go b/go-apps/meep-ams/server/model_registration_info.go index a172f9256712e13a9686030523b1636614678709..fda8ed3f07934e5ecdbfb67d744bba53206b55ea 100644 --- a/go-apps/meep-ams/server/model_registration_info.go +++ b/go-apps/meep-ams/server/model_registration_info.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_registration_info_device_information.go b/go-apps/meep-ams/server/model_registration_info_device_information.go index 2bd5c0183d9466aeb344737c78349caba4efa244..3507a2aebb90dc3ec84c921d1ad6692d2b2c8c5e 100644 --- a/go-apps/meep-ams/server/model_registration_info_device_information.go +++ b/go-apps/meep-ams/server/model_registration_info_device_information.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_registration_info_service_consumer_id.go b/go-apps/meep-ams/server/model_registration_info_service_consumer_id.go index 2924164ef462e7cf1a32630b147ce26dd9c720ad..eb485a72d7968ff88b712cab54499b4477af56ea 100644 --- a/go-apps/meep-ams/server/model_registration_info_service_consumer_id.go +++ b/go-apps/meep-ams/server/model_registration_info_service_consumer_id.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_subscription_link_list.go b/go-apps/meep-ams/server/model_subscription_link_list.go index 30c277c09d7b760f26b7e0922ee87dc930a1ebf6..01851689829eebe942bb0d99fc2709cc9010ed65 100644 --- a/go-apps/meep-ams/server/model_subscription_link_list.go +++ b/go-apps/meep-ams/server/model_subscription_link_list.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_subscription_link_list_links.go b/go-apps/meep-ams/server/model_subscription_link_list_links.go index 576ae04c883d24d5611721831c6d1edc9e69d6ae..666a5bfe25b5a83a61029812b6920c129607d17e 100644 --- a/go-apps/meep-ams/server/model_subscription_link_list_links.go +++ b/go-apps/meep-ams/server/model_subscription_link_list_links.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_subscription_link_list_subscription.go b/go-apps/meep-ams/server/model_subscription_link_list_subscription.go index bd29fc4fb2befa4c1f4c01f7645bd487d416824a..89b80580e86067ec7a10e7073fae9889f28743e4 100644 --- a/go-apps/meep-ams/server/model_subscription_link_list_subscription.go +++ b/go-apps/meep-ams/server/model_subscription_link_list_subscription.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_subscription_type.go b/go-apps/meep-ams/server/model_subscription_type.go index aa34777c8a03fcbeda55c3e20601b6f07ec749d5..c0c996e1a8d4427348b8941e41bec752264a72fb 100644 --- a/go-apps/meep-ams/server/model_subscription_type.go +++ b/go-apps/meep-ams/server/model_subscription_type.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_test_notification.go b/go-apps/meep-ams/server/model_test_notification.go index 55749ad09edf786b71b66a168bc184c877e182b4..3c59623289e4a5c1e093e9ed384327b4122a34b5 100644 --- a/go-apps/meep-ams/server/model_test_notification.go +++ b/go-apps/meep-ams/server/model_test_notification.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_test_notification__links.go b/go-apps/meep-ams/server/model_test_notification__links.go index cef23f442439c22644c5ee030587e8349511ae53..852dab9964ac50dcbbc38721362ab76f6a7fe295 100644 --- a/go-apps/meep-ams/server/model_test_notification__links.go +++ b/go-apps/meep-ams/server/model_test_notification__links.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_time_stamp.go b/go-apps/meep-ams/server/model_time_stamp.go index 46e31b7ebcf97522e529f9331b577fb1759f4c09..a3a6e5f923e51dd94df6541128ff3112fb8cffcc 100644 --- a/go-apps/meep-ams/server/model_time_stamp.go +++ b/go-apps/meep-ams/server/model_time_stamp.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/model_websock_notif_config.go b/go-apps/meep-ams/server/model_websock_notif_config.go index 403bb1015c2f3b278cab1557874a8512421f0502..b5b30991d908214c8694617a5f2e54d85e1e917c 100644 --- a/go-apps/meep-ams/server/model_websock_notif_config.go +++ b/go-apps/meep-ams/server/model_websock_notif_config.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ diff --git a/go-apps/meep-ams/server/routers.go b/go-apps/meep-ams/server/routers.go index ce1eb3d9e3d6352cf522279b90701a56877f8e3f..e99757f7be5e0b2089e9a07601d1313296de6bc0 100644 --- a/go-apps/meep-ams/server/routers.go +++ b/go-apps/meep-ams/server/routers.go @@ -17,7 +17,7 @@ * * Application Mobility Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC021 Application Mobility API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/021/02.02.01_60/gs_MEC021v020201p.pdf)

[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt)

**Micro-service**
[meep-ams](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-ams)

**Type & Usage**
Edge Service used by edge applications that want to get information about application mobility in the network

**Note**
AdvantEDGE supports a selected subset of Application Mobility API endpoints (see below). * - * API version: 2.2.1 + * API version: 3.1.1 * Contact: AdvantEDGE@InterDigital.com * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */