File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ service DataService {
19
19
// TabularDataByMQL queries tabular data with an MQL (MongoDB Query Language) query.
20
20
rpc TabularDataByMQL (TabularDataByMQLRequest ) returns (TabularDataByMQLResponse );
21
21
22
+ // GetLatestTabularData gets the most recent tabular data captured from the specified data source.
23
+ rpc GetLatestTabularData (GetLatestTabularDataRequest ) returns (GetLatestTabularDataResponse );
24
+
22
25
// BinaryDataByFilter queries binary data and metadata based on given filters.
23
26
rpc BinaryDataByFilter (BinaryDataByFilterRequest ) returns (BinaryDataByFilterResponse );
24
27
@@ -226,6 +229,20 @@ message TabularDataByMQLResponse {
226
229
reserved "data" ;
227
230
}
228
231
232
+ // GetLatestTabularDataRequest requests most recent tabular data captured from the specified data source.
233
+ message GetLatestTabularDataRequest {
234
+ string part_id = 1 ;
235
+ string resource_name = 2 ;
236
+ string method_name = 3 ;
237
+ }
238
+
239
+ // GetLatestTabularDataResponse provides the data and metadata of most recent tabular data captured.
240
+ message GetLatestTabularDataResponse {
241
+ google.protobuf.Timestamp time_captured = 1 ;
242
+ google.protobuf.Timestamp time_synced = 2 ;
243
+ google.protobuf.Struct payload = 3 ;
244
+ }
245
+
229
246
// BinaryData contains data and metadata associated with binary data.
230
247
message BinaryData {
231
248
bytes binary = 1 ;
You can’t perform that action at this time.
0 commit comments