/* 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 Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec029; option java_multiple_files=true; 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; // Comma separated list of device identifier. repeated string device_id = 2; // Comma separated list of device status. repeated int32 device_status = 3; } message FaInfoGETRequest { // Comma separated list of customer premises information repeated CpInfo customer_premises_info = 1; // Comma separated list of last mile technologies. repeated int32 last_mile_tech = 2; // Comma separated list of interface types. repeated int32 interface_type = 3; // 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; }