diff --git a/src/service/mobile_config.proto b/src/service/mobile_config.proto index 7caa2b57..bdc63061 100644 --- a/src/service/mobile_config.proto +++ b/src/service/mobile_config.proto @@ -348,15 +348,23 @@ message carrier_incentive_promotion_list_res_v1 { service gateway { // Get info for the specified gateway - rpc info(gateway_info_req_v1) returns (gateway_info_res_v1); + rpc info(gateway_info_req_v1) returns (gateway_info_res_v1) { + option deprecated = true; + } // Get info for a batch of gateways specified by public key rpc info_batch(gateway_info_batch_req_v1) - returns (stream gateway_info_stream_res_v1); + returns (stream gateway_info_stream_res_v1) { + option deprecated = true; + } // Get a stream of gateway info rpc info_stream(gateway_info_stream_req_v1) returns (stream gateway_info_stream_res_v1) { option deprecated = true; } + + // V2 + // Get info for the specified gateway (V2) + rpc info_v2(gateway_info_req_v1) returns (gateway_info_res_v2); // Get a stream of gateway info (V2) rpc info_stream_v2(gateway_info_stream_req_v2) returns (stream gateway_info_stream_res_v2);