queries_service.proto 1.59 KB
Newer Older
piscione's avatar
piscione committed
/*
  ETSI GS MEC 029 Fixed Access Information API
 
  ETSI GS MEC 029 Fixed Access Information API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  Contact: cti_support@etsi.org
piscione's avatar
piscione committed
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec029;

piscione's avatar
piscione committed
import public "models/cp_info.proto";
import public "models/device_info.proto";
import public "models/fa_info.proto";
import public "models/problem_details.proto";

service QueriesService {
  rpc DeviceInfoGET (DeviceInfoGETRequest) returns (DeviceInfo);

  rpc FaInfoGET (FaInfoGETRequest) returns (FaInfo);

}

message DeviceInfoGETRequest {
  // Comma separated list of gateway identifier
  repeated string gw_id = 1;
piscione's avatar
piscione committed
  // Comma separated list of device identifier.
  repeated string device_id = 2;
piscione's avatar
piscione committed
  // Comma separated list of device status.
  repeated int32 device_status = 3;
piscione's avatar
piscione committed

}

message FaInfoGETRequest {
  // Comma separated list of customer premises information
  repeated CpInfo customer_premises_info = 1;
piscione's avatar
piscione committed
  // Comma separated list of last mile technologies.
  repeated int32 last_mile_tech = 2;
piscione's avatar
piscione committed
  // Comma separated list of interface types.
  repeated int32 interface_type = 3;
piscione's avatar
piscione committed
  // Comma separated list of the bandwidth (in Mbps) from the network towards the customer site.
  repeated int32 dsbw = 4;
  // Comma separated list of the bandwidth (in Mbps) from the customer site towards the network.
  repeated int32 usbw = 5;
  // Comma separated list of the maximum baseline latency (in ms) between customer site and service edge node.
  repeated int32 latency = 6;

}