ap_info.proto 939 Bytes
Newer Older
piscione's avatar
piscione committed
1
2
3
4
5
/*
  ETSI GS MEC 028 - WLAN Access Information API
 
  The ETSI MEC ISG MEC028 WLAN Access Information API described using OpenAPI
 
Michel Roy's avatar
Michel Roy committed
6
  The version of the OpenAPI document: 2.2.1
piscione's avatar
piscione committed
7
8
9
10
11
12
13
14
15
16
17
18
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec028;

import public "models/ap_identity.proto";
import public "models/ap_location.proto";
import public "models/bss_load.proto";
import public "models/ext_bss_load.proto";
Michel Roy's avatar
Michel Roy committed
19
import public "models/o_bss_load.proto";
piscione's avatar
piscione committed
20
21
22
23
24
25
import public "models/time_stamp.proto";
import public "models/wan_metrics.proto";
import public "models/wlan_capabilities.proto";

message ApInfo {

Michel Roy's avatar
Michel Roy committed
26
  ApIdentity apId = 1;
piscione's avatar
piscione committed
27

Michel Roy's avatar
Michel Roy committed
28
  ApLocation apLocation = 2;
piscione's avatar
piscione committed
29

Michel Roy's avatar
Michel Roy committed
30
  BssLoad bssLoad = 3;
piscione's avatar
piscione committed
31
32

  // Channel configured for the Access Point.
Michel Roy's avatar
Michel Roy committed
33
34
35
  int32 channel = 4;

  ExtBssLoad extBssLoad = 5;
piscione's avatar
piscione committed
36

Michel Roy's avatar
Michel Roy committed
37
  OBssLoad oBssLoad = 6;
piscione's avatar
piscione committed
38

Michel Roy's avatar
Michel Roy committed
39
  TimeStamp timeStamp = 7;
piscione's avatar
piscione committed
40

Michel Roy's avatar
Michel Roy committed
41
  WanMetrics wanMetrics = 8;
piscione's avatar
piscione committed
42

Michel Roy's avatar
Michel Roy committed
43
  WlanCapabilities wlanCap = 9;
piscione's avatar
piscione committed
44
45

}