measurement_config.proto 1013 Bytes
Newer Older
/*
  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;

import public "models/beacon_request_config.proto";
import public "models/channel_load_config.proto";
import public "models/sta_statistics_config.proto";

message MeasurementConfig {

  BeaconRequestConfig beacon_request = 1;

  ChannelLoadConfig channel_load = 2;

  // Duration of the measurement, shall be lower than Maximum Measurement Duration in TU as defined in section 11.11.4 of IEEE 802.11 [8].
  int32 measurement_duration = 3;

  // Identifier of this measurement configuration.
  string measurement_id = 4;

  // Random interval to be used for starting the measurement. In units of TU as specifed in section 11.11.3 of IEEE 802.11 [8].
  int32 randomn_interval = 5;

  StaStatisticsConfig sta_statistics = 6;

}