ap_identity.proto 803 Bytes
Newer Older
/*
  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
  The version of the OpenAPI document: 2.2.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec028;


message ApIdentity {

Michel Roy's avatar
Michel Roy committed
  // Basic Service Set Identifier (BSSID) is a unique Identifier assigned to an Access Point (as network interface controller) for communications at the data link layer of a network segment. BSSID is typically set to an access point's MAC address.
  string bssid = 1;
Michel Roy's avatar
Michel Roy committed
  // IPv4 or IPv6 address allocated for the Access Point.
  repeated string ipAddress = 2;
Michel Roy's avatar
Michel Roy committed
  // Service Set Identifier (SSID) to identify logical WLAN networks available via the Access Point.
  repeated string ssid = 3;

}