Commit 38b41eb1 authored by admin_forge's avatar admin_forge
Browse files

Merge branch 'develop' into 'master'

STF593 - Milestone A - Merge v2.1.1 to Master branch

See merge request !1
parents 6ea890cd 59bdd2b4
Loading
Loading
Loading
Loading
Loading

.jenkins.sh

0 → 100644
+18 −0
Original line number Diff line number Diff line
#!/bin/bash

specfiles=$(ls | egrep "^[^.]*.(json|yaml)")

fres=0
for i in $specfiles ; do
    echo "-- Validating and linting OpenAPI file $i..."
    swagger-cli validate $i
    res=$?
    speccy lint "$i"
    res2=$?
    fres=$(($fres||$res||$res2))
    echo "--- Validator returned $res, linter returned $res2."
done

echo "-- Final validator returns $fres."
exit $fres
+6 −5
Original line number Diff line number Diff line
# Multi-access Edge Computing WLAN Information API

This repository contains OpenAPIs descriptions for the interfaces specified in ETSI MEC GS 028 "MEC WLAN Information API".
This repository contains OpenAPIs descriptions for the interfaces specified in ETSI MEC GS 028

More information and download options for the specification are available
[here](https://portal.etsi.org/webapp/WorkProgram/Report_WorkItem.asp?WKI_ID=53995).
## Online resources

**{-NOTE: The OpenAPI definitions are under development. The API as defined in GS MEC 028 takes precedence.-}**
* [Specification document](https://www.etsi.org/deliver/etsi_gs/MEC/001_099/028/02.01.01_60/gs_MEC028v020101p.pdf)
* [Navigate the API in the browser](https://forge.etsi.org/swagger/ui/?url=https://forge.etsi.org/gitlab/mec/gs028-wai-api/raw/develop/WlanInformationApi.yaml).
* [Edit the API online](https://forge.etsi.org/swagger/editor/?url=https://forge.etsi.org/gitlab/mec/gs028-wai-api/raw/develop/WlanInformationApi.yaml).

## License

+2686 −0

File added.

Preview size limit exceeded, changes collapsed.

+2158 −0

File added.

Preview size limit exceeded, changes collapsed.

+30 −0
Original line number Diff line number Diff line
/*
  ETSI GS MEC 028 - WLAN Access Information API
 
  The ETSI MEC ISG MEC028 WLAN Access Information API described using OpenAPI
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec028;


message ApAssociated {

  // Unique number which identifies a particular association between the station and Access Point.
  string assoc_id = 1;

  // IPv4 or IPv6 address allocated for the Access Point.
  repeated string ip_address = 2;

  // Unique identifier assigned to the Access Point (as network interface controller) for communications at the data link layer of a network segment.
  string mac_id = 3;

  // Service Set Identifier to identify logical networks.
  repeated string ssid = 4;

}
Loading