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

final merge header

parent a764d7b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ repo:
    # platform ingress configuration
    ingress:
      # host name
      host: my-platform-fqdn
      host: 10.3.16.150
      # enable https only (redirect http requests to https port)
      https-only: true
      # bind to host ports (true) or node ports (false)
+23 −12
Original line number Diff line number Diff line
openapi: 3.0.0
info:
  title: ETSI GS MEC 028 - WLAN Access Information API
  title: AdvantEDGE WLAN Access Information API
  version: 2.1.1
  contact:
    name: InterDigital AdvantEDGE Support
@@ -149,8 +149,10 @@ paths:
                nanoSeconds: 0
              apId:
                macId: 005C0A0A0A0A
                ssid: 'myNetworkSsid'
                ipAddress: 10.10.100.1
                ssid:
                - 'myNetworkSsid'
                ipAddress:
                - 10.10.100.1
      responses:
        '201':
          description: Successful subscription response
@@ -169,8 +171,10 @@ paths:
                  nanoSeconds: 0
                apId:
                  macId: 005C0A0A0A0A
                  ssid: 'myNetworkSsid'
                  ipAddress: 10.10.100.1
                  ssid:
                  - 'myNetworkSsid'
                  ipAddress:
                  - 10.10.100.1
        '400':
          $ref: '#/components/responses/400'
        '401':
@@ -208,15 +212,18 @@ paths:
                        nanoseconds: 0
                      apId:
                        macId: 005C0A0A0A0A
                        ssid: 'myNetworkSsid'
                        ipAddress: 10.10.100.1
                        ssid:
                        - 'myNetworkSsid'
                        ipAddress: 
                        - 10.10.100.1
                      staId:
                        macId: 005C01111111
                        ssid:
                        - 'myNetworkSsid'
                        - 'myOtherNetworkSsid'
                        aid: '1122'
                        ipAddress: 10.10.1.255
                        ipAddress:
                        - 10.10.1.255
              responses:
                '204':
                  $ref: '#/components/responses/204'
@@ -247,8 +254,10 @@ paths:
                  nanoSeconds: 0
                apId:
                  macId: 005C0A0A0A0A
                  ssid: 'myNetworkSsid'
                  ipAddress: 10.10.100.1
                  ssid:
                  - 'myNetworkSsid'
                  ipAddress:
                  - 10.10.100.1
        '400':
          $ref: '#/components/responses/400'
        '401':
@@ -285,8 +294,10 @@ paths:
                nanoSeconds: 0
              apId:
                macId: 005C0A0A0A0A
                ssid: 'myNetworkSsid'
                ipAddress: 10.10.100.1
                ssid:
                - 'myNetworkSsid'
                ipAddress:
                - 10.10.100.1
      parameters:
        - $ref: '#/components/parameters/Path.subscrId'
      responses:
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 2.1.1
- Build date: 2020-11-13T15:03:44.135-05:00[America/New_York]
- Build date: 2020-11-13T16:21:35.639-05:00[America/New_York]


### Running the server
+1 −1
Original line number Diff line number Diff line
/*
 * Copyright (c) 2019  InterDigital Communications, Inc
 * Copyright (c) 2020  InterDigital Communications, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the \"License\");
 * you may not use this file except in compliance with the License.
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * ETSI GS MEC 028 - WLAN Access Information API
 * AdvantEDGE WLAN Access Information API
 *
 * WLAN Access Information Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC028 WAI API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/028/02.01.01_60/gs_MEC028v020101p.pdf) <p>[Copyright (c) ETSI 2020](https://forge.etsi.org/etsi-forge-copyright-notice.txt) <p>**Micro-service**<br>[meep-wais](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-wais) <p>**Type & Usage**<br>Edge Service used by edge applications that want to get information about WLAN access information in the network <p>**Details**<br>API details available at _your-AdvantEDGE-ip-address/api_
 *
Loading