fsai-proto-specs 0.0.373__py3-none-any.whl → 0.0.411__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fsai-proto-specs might be problematic. Click here for more details.
- audit_grpc_service/protos/audit_api_pb2.py +12 -12
- {fsai_proto_specs-0.0.373.dist-info → fsai_proto_specs-0.0.411.dist-info}/METADATA +1 -1
- {fsai_proto_specs-0.0.373.dist-info → fsai_proto_specs-0.0.411.dist-info}/RECORD +35 -25
- global_vo_grpc_service/protos/admin_user_api_pb2.py +40 -35
- global_vo_grpc_service/protos/admin_user_api_pb2_grpc.py +33 -0
- global_vo_grpc_service/protos/category_changelog_api_pb2.py +36 -0
- global_vo_grpc_service/protos/category_changelog_api_pb2_grpc.py +99 -0
- global_vo_grpc_service/protos/correction_api_pb2.py +49 -0
- global_vo_grpc_service/protos/correction_api_pb2_grpc.py +198 -0
- global_vo_grpc_service/protos/customer_api_pb2.py +29 -0
- global_vo_grpc_service/protos/customer_api_pb2_grpc.py +66 -0
- global_vo_grpc_service/protos/detection_instance_api_pb2.py +100 -96
- global_vo_grpc_service/protos/detection_instance_api_pb2_grpc.py +33 -0
- global_vo_grpc_service/protos/image_api_pb2.py +9 -3
- global_vo_grpc_service/protos/image_api_pb2_grpc.py +33 -0
- global_vo_grpc_service/protos/image_metadata_api_pb2.py +24 -24
- global_vo_grpc_service/protos/image_scan_api_pb2.py +15 -11
- global_vo_grpc_service/protos/image_scan_api_pb2_grpc.py +33 -0
- global_vo_grpc_service/protos/model_assessment_api_pb2.py +45 -0
- global_vo_grpc_service/protos/model_assessment_api_pb2_grpc.py +133 -0
- global_vo_grpc_service/protos/product_changelog_api_pb2.py +44 -0
- global_vo_grpc_service/protos/product_changelog_api_pb2_grpc.py +166 -0
- global_vo_grpc_service/protos/reporting_api_pb2.py +44 -0
- global_vo_grpc_service/protos/reporting_api_pb2_grpc.py +138 -0
- global_vo_grpc_service/protos/review_api_pb2.py +70 -70
- global_vo_grpc_service/protos/review_api_pb2_grpc.py +13 -13
- global_vo_grpc_service/protos/task_api_pb2.py +7 -3
- global_vo_grpc_service/protos/task_api_pb2_grpc.py +33 -0
- global_vo_grpc_service/protos/task_image_api_pb2.py +23 -25
- global_vo_grpc_service/protos/utils_pb2.py +16 -16
- global_vo_grpc_service/protos/workflow_api_pb2.py +11 -9
- global_vo_grpc_service/protos/workflow_api_pb2_grpc.py +47 -15
- search_grpc_service/protos/search_api_pb2.py +19 -17
- search_grpc_service/protos/search_api_pb2_grpc.py +33 -33
- global_vo_grpc_service/protos/detection_instance_metadata_api_pb2.py +0 -58
- global_vo_grpc_service/protos/detection_instance_metadata_api_pb2_grpc.py +0 -265
- {fsai_proto_specs-0.0.373.dist-info → fsai_proto_specs-0.0.411.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from global_vo_grpc_service.protos import product_changelog_api_pb2 as global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2
|
|
6
|
+
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class ProductChangelogApiStub(object):
|
|
10
|
+
"""Missing associated documentation comment in .proto file."""
|
|
11
|
+
|
|
12
|
+
def __init__(self, channel):
|
|
13
|
+
"""Constructor.
|
|
14
|
+
|
|
15
|
+
Args:
|
|
16
|
+
channel: A grpc.Channel.
|
|
17
|
+
"""
|
|
18
|
+
self.ListProductChangelogs = channel.unary_unary(
|
|
19
|
+
'/ProductChangelogApi/ListProductChangelogs',
|
|
20
|
+
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
21
|
+
response_deserializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.ListProductChangelogsResponse.FromString,
|
|
22
|
+
)
|
|
23
|
+
self.CreateProductChangelog = channel.unary_unary(
|
|
24
|
+
'/ProductChangelogApi/CreateProductChangelog',
|
|
25
|
+
request_serializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.CreateProductChangelogRequest.SerializeToString,
|
|
26
|
+
response_deserializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.CreateProductChangelogResponse.FromString,
|
|
27
|
+
)
|
|
28
|
+
self.UpdateProductChangelog = channel.unary_unary(
|
|
29
|
+
'/ProductChangelogApi/UpdateProductChangelog',
|
|
30
|
+
request_serializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.UpdateProductChangelogRequest.SerializeToString,
|
|
31
|
+
response_deserializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.UpdateProductChangelogResponse.FromString,
|
|
32
|
+
)
|
|
33
|
+
self.DeleteProductChangelog = channel.unary_unary(
|
|
34
|
+
'/ProductChangelogApi/DeleteProductChangelog',
|
|
35
|
+
request_serializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.DeleteProductChangelogRequest.SerializeToString,
|
|
36
|
+
response_deserializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.DeleteProductChangelogResponse.FromString,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class ProductChangelogApiServicer(object):
|
|
41
|
+
"""Missing associated documentation comment in .proto file."""
|
|
42
|
+
|
|
43
|
+
def ListProductChangelogs(self, request, context):
|
|
44
|
+
"""Missing associated documentation comment in .proto file."""
|
|
45
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
46
|
+
context.set_details('Method not implemented!')
|
|
47
|
+
raise NotImplementedError('Method not implemented!')
|
|
48
|
+
|
|
49
|
+
def CreateProductChangelog(self, request, context):
|
|
50
|
+
"""Missing associated documentation comment in .proto file."""
|
|
51
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
52
|
+
context.set_details('Method not implemented!')
|
|
53
|
+
raise NotImplementedError('Method not implemented!')
|
|
54
|
+
|
|
55
|
+
def UpdateProductChangelog(self, request, context):
|
|
56
|
+
"""Missing associated documentation comment in .proto file."""
|
|
57
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
58
|
+
context.set_details('Method not implemented!')
|
|
59
|
+
raise NotImplementedError('Method not implemented!')
|
|
60
|
+
|
|
61
|
+
def DeleteProductChangelog(self, request, context):
|
|
62
|
+
"""Missing associated documentation comment in .proto file."""
|
|
63
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
64
|
+
context.set_details('Method not implemented!')
|
|
65
|
+
raise NotImplementedError('Method not implemented!')
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
def add_ProductChangelogApiServicer_to_server(servicer, server):
|
|
69
|
+
rpc_method_handlers = {
|
|
70
|
+
'ListProductChangelogs': grpc.unary_unary_rpc_method_handler(
|
|
71
|
+
servicer.ListProductChangelogs,
|
|
72
|
+
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
73
|
+
response_serializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.ListProductChangelogsResponse.SerializeToString,
|
|
74
|
+
),
|
|
75
|
+
'CreateProductChangelog': grpc.unary_unary_rpc_method_handler(
|
|
76
|
+
servicer.CreateProductChangelog,
|
|
77
|
+
request_deserializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.CreateProductChangelogRequest.FromString,
|
|
78
|
+
response_serializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.CreateProductChangelogResponse.SerializeToString,
|
|
79
|
+
),
|
|
80
|
+
'UpdateProductChangelog': grpc.unary_unary_rpc_method_handler(
|
|
81
|
+
servicer.UpdateProductChangelog,
|
|
82
|
+
request_deserializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.UpdateProductChangelogRequest.FromString,
|
|
83
|
+
response_serializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.UpdateProductChangelogResponse.SerializeToString,
|
|
84
|
+
),
|
|
85
|
+
'DeleteProductChangelog': grpc.unary_unary_rpc_method_handler(
|
|
86
|
+
servicer.DeleteProductChangelog,
|
|
87
|
+
request_deserializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.DeleteProductChangelogRequest.FromString,
|
|
88
|
+
response_serializer=global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.DeleteProductChangelogResponse.SerializeToString,
|
|
89
|
+
),
|
|
90
|
+
}
|
|
91
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
92
|
+
'ProductChangelogApi', rpc_method_handlers)
|
|
93
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
# This class is part of an EXPERIMENTAL API.
|
|
97
|
+
class ProductChangelogApi(object):
|
|
98
|
+
"""Missing associated documentation comment in .proto file."""
|
|
99
|
+
|
|
100
|
+
@staticmethod
|
|
101
|
+
def ListProductChangelogs(request,
|
|
102
|
+
target,
|
|
103
|
+
options=(),
|
|
104
|
+
channel_credentials=None,
|
|
105
|
+
call_credentials=None,
|
|
106
|
+
insecure=False,
|
|
107
|
+
compression=None,
|
|
108
|
+
wait_for_ready=None,
|
|
109
|
+
timeout=None,
|
|
110
|
+
metadata=None):
|
|
111
|
+
return grpc.experimental.unary_unary(request, target, '/ProductChangelogApi/ListProductChangelogs',
|
|
112
|
+
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
113
|
+
global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.ListProductChangelogsResponse.FromString,
|
|
114
|
+
options, channel_credentials,
|
|
115
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
116
|
+
|
|
117
|
+
@staticmethod
|
|
118
|
+
def CreateProductChangelog(request,
|
|
119
|
+
target,
|
|
120
|
+
options=(),
|
|
121
|
+
channel_credentials=None,
|
|
122
|
+
call_credentials=None,
|
|
123
|
+
insecure=False,
|
|
124
|
+
compression=None,
|
|
125
|
+
wait_for_ready=None,
|
|
126
|
+
timeout=None,
|
|
127
|
+
metadata=None):
|
|
128
|
+
return grpc.experimental.unary_unary(request, target, '/ProductChangelogApi/CreateProductChangelog',
|
|
129
|
+
global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.CreateProductChangelogRequest.SerializeToString,
|
|
130
|
+
global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.CreateProductChangelogResponse.FromString,
|
|
131
|
+
options, channel_credentials,
|
|
132
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
133
|
+
|
|
134
|
+
@staticmethod
|
|
135
|
+
def UpdateProductChangelog(request,
|
|
136
|
+
target,
|
|
137
|
+
options=(),
|
|
138
|
+
channel_credentials=None,
|
|
139
|
+
call_credentials=None,
|
|
140
|
+
insecure=False,
|
|
141
|
+
compression=None,
|
|
142
|
+
wait_for_ready=None,
|
|
143
|
+
timeout=None,
|
|
144
|
+
metadata=None):
|
|
145
|
+
return grpc.experimental.unary_unary(request, target, '/ProductChangelogApi/UpdateProductChangelog',
|
|
146
|
+
global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.UpdateProductChangelogRequest.SerializeToString,
|
|
147
|
+
global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.UpdateProductChangelogResponse.FromString,
|
|
148
|
+
options, channel_credentials,
|
|
149
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
150
|
+
|
|
151
|
+
@staticmethod
|
|
152
|
+
def DeleteProductChangelog(request,
|
|
153
|
+
target,
|
|
154
|
+
options=(),
|
|
155
|
+
channel_credentials=None,
|
|
156
|
+
call_credentials=None,
|
|
157
|
+
insecure=False,
|
|
158
|
+
compression=None,
|
|
159
|
+
wait_for_ready=None,
|
|
160
|
+
timeout=None,
|
|
161
|
+
metadata=None):
|
|
162
|
+
return grpc.experimental.unary_unary(request, target, '/ProductChangelogApi/DeleteProductChangelog',
|
|
163
|
+
global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.DeleteProductChangelogRequest.SerializeToString,
|
|
164
|
+
global__vo__grpc__service_dot_protos_dot_product__changelog__api__pb2.DeleteProductChangelogResponse.FromString,
|
|
165
|
+
options, channel_credentials,
|
|
166
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: global_vo_grpc_service/protos/reporting_api.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1global_vo_grpc_service/protos/reporting_api.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xcb\x02\n\x18UserDailyActivityMetrics\x12\x0f\n\x07user_id\x18\x01 \x01(\x05\x12\x11\n\tfull_name\x18\x02 \x01(\t\x12/\n\x0b\x61\x63tion_date\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x13\n\x0btotal_hours\x18\x04 \x01(\x01\x12\x17\n\x0futilization_pct\x18\x05 \x01(\x01\x12\x1b\n\x13hours_with_activity\x18\x06 \x01(\x05\x12&\n\x1e\x61\x63tive_minutes_per_active_hour\x18\x07 \x01(\x01\x12\x33\n\x0f\x66irst_action_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x32\n\x0elast_action_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"u\n!GetUserDailyReportByPeriodRequest\x12\x0f\n\x07user_id\x18\x01 \x01(\x05\x12\x0e\n\x06period\x18\x02 \x01(\t\x12/\n\x0btarget_date\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xd6\x01\n\"GetUserDailyReportByPeriodResponse\x12\x0e\n\x06period\x18\x01 \x01(\t\x12\x30\n\x0cperiod_start\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nperiod_end\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12>\n\x1buser_daily_activity_metrics\x18\x04 \x03(\x0b\x32\x19.UserDailyActivityMetrics\"h\n%GetAllUsersDailyReportByPeriodRequest\x12\x0e\n\x06period\x18\x01 \x01(\t\x12/\n\x0btarget_date\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xda\x01\n&GetAllUsersDailyReportByPeriodResponse\x12\x0e\n\x06period\x18\x01 \x01(\t\x12\x30\n\x0cperiod_start\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nperiod_end\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12>\n\x1buser_daily_activity_metrics\x18\x04 \x03(\x0b\x32\x19.UserDailyActivityMetrics\"h\n%GetAllUsersReportTotalByPeriodRequest\x12\x0e\n\x06period\x18\x01 \x01(\t\x12/\n\x0btarget_date\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x92\x02\n\x10UserTotalMetrics\x12\x0f\n\x07user_id\x18\x01 \x01(\x05\x12\x11\n\tfull_name\x18\x02 \x01(\t\x12\x13\n\x0btotal_hours\x18\x03 \x01(\x01\x12\x17\n\x0futilization_pct\x18\x04 \x01(\x01\x12\x1b\n\x13hours_with_activity\x18\x05 \x01(\x05\x12&\n\x1e\x61\x63tive_minutes_per_active_hour\x18\x06 \x01(\x01\x12\x33\n\x0f\x66irst_action_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x32\n\x0elast_action_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x82\x03\n\x17MonthlyUserTotalMetrics\x12\x0f\n\x07user_id\x18\x01 \x01(\x05\x12\x11\n\tfull_name\x18\x02 \x01(\t\x12\x19\n\x11total_hours_month\x18\x03 \x01(\x01\x12\x17\n\x0f\x61vg_daily_hours\x18\x04 \x01(\x01\x12\x1d\n\x15utilization_pct_month\x18\x05 \x01(\x01\x12!\n\x19\x61vg_daily_utilization_pct\x18\x06 \x01(\x01\x12!\n\x19hours_with_activity_month\x18\x07 \x01(\x05\x12,\n$active_minutes_per_active_hour_month\x18\x08 \x01(\x01\x12\x13\n\x0b\x61\x63tive_days\x18\t \x01(\x05\x12\x33\n\x0f\x66irst_action_at\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x32\n\x0elast_action_at\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x87\x02\n&GetAllUsersReportTotalByPeriodResponse\x12\x0e\n\x06period\x18\x01 \x01(\t\x12\x30\n\x0cperiod_start\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nperiod_end\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12-\n\x12user_total_metrics\x18\x04 \x03(\x0b\x32\x11.UserTotalMetrics\x12<\n\x1amonthly_user_total_metrics\x18\x05 \x03(\x0b\x32\x18.MonthlyUserTotalMetrics2\xdb\x02\n\x0cReportingApi\x12\x65\n\x1aGetUserDailyReportByPeriod\x12\".GetUserDailyReportByPeriodRequest\x1a#.GetUserDailyReportByPeriodResponse\x12q\n\x1eGetAllUsersDailyReportByPeriod\x12&.GetAllUsersDailyReportByPeriodRequest\x1a\'.GetAllUsersDailyReportByPeriodResponse\x12q\n\x1eGetAllUsersReportTotalByPeriod\x12&.GetAllUsersReportTotalByPeriodRequest\x1a\'.GetAllUsersReportTotalByPeriodResponseb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'global_vo_grpc_service.protos.reporting_api_pb2', globals())
|
|
21
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
+
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
_USERDAILYACTIVITYMETRICS._serialized_start=87
|
|
25
|
+
_USERDAILYACTIVITYMETRICS._serialized_end=418
|
|
26
|
+
_GETUSERDAILYREPORTBYPERIODREQUEST._serialized_start=420
|
|
27
|
+
_GETUSERDAILYREPORTBYPERIODREQUEST._serialized_end=537
|
|
28
|
+
_GETUSERDAILYREPORTBYPERIODRESPONSE._serialized_start=540
|
|
29
|
+
_GETUSERDAILYREPORTBYPERIODRESPONSE._serialized_end=754
|
|
30
|
+
_GETALLUSERSDAILYREPORTBYPERIODREQUEST._serialized_start=756
|
|
31
|
+
_GETALLUSERSDAILYREPORTBYPERIODREQUEST._serialized_end=860
|
|
32
|
+
_GETALLUSERSDAILYREPORTBYPERIODRESPONSE._serialized_start=863
|
|
33
|
+
_GETALLUSERSDAILYREPORTBYPERIODRESPONSE._serialized_end=1081
|
|
34
|
+
_GETALLUSERSREPORTTOTALBYPERIODREQUEST._serialized_start=1083
|
|
35
|
+
_GETALLUSERSREPORTTOTALBYPERIODREQUEST._serialized_end=1187
|
|
36
|
+
_USERTOTALMETRICS._serialized_start=1190
|
|
37
|
+
_USERTOTALMETRICS._serialized_end=1464
|
|
38
|
+
_MONTHLYUSERTOTALMETRICS._serialized_start=1467
|
|
39
|
+
_MONTHLYUSERTOTALMETRICS._serialized_end=1853
|
|
40
|
+
_GETALLUSERSREPORTTOTALBYPERIODRESPONSE._serialized_start=1856
|
|
41
|
+
_GETALLUSERSREPORTTOTALBYPERIODRESPONSE._serialized_end=2119
|
|
42
|
+
_REPORTINGAPI._serialized_start=2122
|
|
43
|
+
_REPORTINGAPI._serialized_end=2469
|
|
44
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from global_vo_grpc_service.protos import reporting_api_pb2 as global__vo__grpc__service_dot_protos_dot_reporting__api__pb2
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ReportingApiStub(object):
|
|
9
|
+
"""Missing associated documentation comment in .proto file."""
|
|
10
|
+
|
|
11
|
+
def __init__(self, channel):
|
|
12
|
+
"""Constructor.
|
|
13
|
+
|
|
14
|
+
Args:
|
|
15
|
+
channel: A grpc.Channel.
|
|
16
|
+
"""
|
|
17
|
+
self.GetUserDailyReportByPeriod = channel.unary_unary(
|
|
18
|
+
'/ReportingApi/GetUserDailyReportByPeriod',
|
|
19
|
+
request_serializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetUserDailyReportByPeriodRequest.SerializeToString,
|
|
20
|
+
response_deserializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetUserDailyReportByPeriodResponse.FromString,
|
|
21
|
+
)
|
|
22
|
+
self.GetAllUsersDailyReportByPeriod = channel.unary_unary(
|
|
23
|
+
'/ReportingApi/GetAllUsersDailyReportByPeriod',
|
|
24
|
+
request_serializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersDailyReportByPeriodRequest.SerializeToString,
|
|
25
|
+
response_deserializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersDailyReportByPeriodResponse.FromString,
|
|
26
|
+
)
|
|
27
|
+
self.GetAllUsersReportTotalByPeriod = channel.unary_unary(
|
|
28
|
+
'/ReportingApi/GetAllUsersReportTotalByPeriod',
|
|
29
|
+
request_serializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersReportTotalByPeriodRequest.SerializeToString,
|
|
30
|
+
response_deserializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersReportTotalByPeriodResponse.FromString,
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class ReportingApiServicer(object):
|
|
35
|
+
"""Missing associated documentation comment in .proto file."""
|
|
36
|
+
|
|
37
|
+
def GetUserDailyReportByPeriod(self, request, context):
|
|
38
|
+
"""Get daily breakdown of activity for a single user for a period (day, week, or month)
|
|
39
|
+
Returns one entry per day in the period (includes days with no activity)
|
|
40
|
+
"""
|
|
41
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
42
|
+
context.set_details('Method not implemented!')
|
|
43
|
+
raise NotImplementedError('Method not implemented!')
|
|
44
|
+
|
|
45
|
+
def GetAllUsersDailyReportByPeriod(self, request, context):
|
|
46
|
+
"""Get daily breakdown of activity for all users for a period (day, week, or month)
|
|
47
|
+
Returns one entry per day per user (only includes days with activity)
|
|
48
|
+
"""
|
|
49
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
50
|
+
context.set_details('Method not implemented!')
|
|
51
|
+
raise NotImplementedError('Method not implemented!')
|
|
52
|
+
|
|
53
|
+
def GetAllUsersReportTotalByPeriod(self, request, context):
|
|
54
|
+
"""Get total activity metrics for all users for a period (day, week, or month)
|
|
55
|
+
Returns one entry per user with total metrics for the entire period (all users)
|
|
56
|
+
"""
|
|
57
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
58
|
+
context.set_details('Method not implemented!')
|
|
59
|
+
raise NotImplementedError('Method not implemented!')
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
def add_ReportingApiServicer_to_server(servicer, server):
|
|
63
|
+
rpc_method_handlers = {
|
|
64
|
+
'GetUserDailyReportByPeriod': grpc.unary_unary_rpc_method_handler(
|
|
65
|
+
servicer.GetUserDailyReportByPeriod,
|
|
66
|
+
request_deserializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetUserDailyReportByPeriodRequest.FromString,
|
|
67
|
+
response_serializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetUserDailyReportByPeriodResponse.SerializeToString,
|
|
68
|
+
),
|
|
69
|
+
'GetAllUsersDailyReportByPeriod': grpc.unary_unary_rpc_method_handler(
|
|
70
|
+
servicer.GetAllUsersDailyReportByPeriod,
|
|
71
|
+
request_deserializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersDailyReportByPeriodRequest.FromString,
|
|
72
|
+
response_serializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersDailyReportByPeriodResponse.SerializeToString,
|
|
73
|
+
),
|
|
74
|
+
'GetAllUsersReportTotalByPeriod': grpc.unary_unary_rpc_method_handler(
|
|
75
|
+
servicer.GetAllUsersReportTotalByPeriod,
|
|
76
|
+
request_deserializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersReportTotalByPeriodRequest.FromString,
|
|
77
|
+
response_serializer=global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersReportTotalByPeriodResponse.SerializeToString,
|
|
78
|
+
),
|
|
79
|
+
}
|
|
80
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
81
|
+
'ReportingApi', rpc_method_handlers)
|
|
82
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
# This class is part of an EXPERIMENTAL API.
|
|
86
|
+
class ReportingApi(object):
|
|
87
|
+
"""Missing associated documentation comment in .proto file."""
|
|
88
|
+
|
|
89
|
+
@staticmethod
|
|
90
|
+
def GetUserDailyReportByPeriod(request,
|
|
91
|
+
target,
|
|
92
|
+
options=(),
|
|
93
|
+
channel_credentials=None,
|
|
94
|
+
call_credentials=None,
|
|
95
|
+
insecure=False,
|
|
96
|
+
compression=None,
|
|
97
|
+
wait_for_ready=None,
|
|
98
|
+
timeout=None,
|
|
99
|
+
metadata=None):
|
|
100
|
+
return grpc.experimental.unary_unary(request, target, '/ReportingApi/GetUserDailyReportByPeriod',
|
|
101
|
+
global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetUserDailyReportByPeriodRequest.SerializeToString,
|
|
102
|
+
global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetUserDailyReportByPeriodResponse.FromString,
|
|
103
|
+
options, channel_credentials,
|
|
104
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
105
|
+
|
|
106
|
+
@staticmethod
|
|
107
|
+
def GetAllUsersDailyReportByPeriod(request,
|
|
108
|
+
target,
|
|
109
|
+
options=(),
|
|
110
|
+
channel_credentials=None,
|
|
111
|
+
call_credentials=None,
|
|
112
|
+
insecure=False,
|
|
113
|
+
compression=None,
|
|
114
|
+
wait_for_ready=None,
|
|
115
|
+
timeout=None,
|
|
116
|
+
metadata=None):
|
|
117
|
+
return grpc.experimental.unary_unary(request, target, '/ReportingApi/GetAllUsersDailyReportByPeriod',
|
|
118
|
+
global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersDailyReportByPeriodRequest.SerializeToString,
|
|
119
|
+
global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersDailyReportByPeriodResponse.FromString,
|
|
120
|
+
options, channel_credentials,
|
|
121
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
122
|
+
|
|
123
|
+
@staticmethod
|
|
124
|
+
def GetAllUsersReportTotalByPeriod(request,
|
|
125
|
+
target,
|
|
126
|
+
options=(),
|
|
127
|
+
channel_credentials=None,
|
|
128
|
+
call_credentials=None,
|
|
129
|
+
insecure=False,
|
|
130
|
+
compression=None,
|
|
131
|
+
wait_for_ready=None,
|
|
132
|
+
timeout=None,
|
|
133
|
+
metadata=None):
|
|
134
|
+
return grpc.experimental.unary_unary(request, target, '/ReportingApi/GetAllUsersReportTotalByPeriod',
|
|
135
|
+
global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersReportTotalByPeriodRequest.SerializeToString,
|
|
136
|
+
global__vo__grpc__service_dot_protos_dot_reporting__api__pb2.GetAllUsersReportTotalByPeriodResponse.FromString,
|
|
137
|
+
options, channel_credentials,
|
|
138
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
@@ -15,7 +15,7 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
|
|
|
15
15
|
from global_vo_grpc_service.protos import utils_pb2 as global__vo__grpc__service_dot_protos_dot_utils__pb2
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.global_vo_grpc_service/protos/review_api.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a)global_vo_grpc_service/protos/utils.proto\"\
|
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.global_vo_grpc_service/protos/review_api.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a)global_vo_grpc_service/protos/utils.proto\"\x8c\x03\n\x06Review\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x12\n\nmission_id\x18\x02 \x01(\x05\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\x12\x12\n\ncreated_by\x18\x05 \x01(\x05\x12\x12\n\nupdated_by\x18\x06 \x01(\x05\x12\x12\n\ndeleted_by\x18\x07 \x01(\x05\x12.\n\ncreated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\ndeleted_at\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x37\n\x13\x65st_completion_date\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x66ilters\x18\x0c \x01(\t\x12\x0f\n\x07team_id\x18\r \x01(\x05\x12\x18\n\x10is_training_data\x18\x0e \x01(\x08\"J\n\x19\x43\x61\x63heLastUserQueryRequest\x12\x19\n\x11\x65s_query_json_str\x18\x01 \x01(\t\x12\x12\n\nmission_id\x18\x02 \x01(\x05\">\n\x1a\x43\x61\x63heLastUserQueryResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\"\'\n\x0bHeightRange\x12\x0b\n\x03min\x18\x01 \x01(\x02\x12\x0b\n\x03max\x18\x02 \x01(\x02\"&\n\nScoreRange\x12\x0b\n\x03min\x18\x01 \x01(\x02\x12\x0b\n\x03max\x18\x02 \x01(\x02\"\xaa\x01\n\x0c\x46ilterValues\x12\x14\n\x0c\x63\x61tegory_ids\x18\x01 \x03(\x05\x12\"\n\x0cheight_range\x18\x02 \x01(\x0b\x32\x0c.HeightRange\x12\x0e\n\x06states\x18\x03 \x03(\t\x12 \n\x0bscore_range\x18\x04 \x01(\x0b\x32\x0b.ScoreRange\x12\x16\n\x0e\x63reated_by_ids\x18\x05 \x03(\x05\x12\x16\n\x0eupdated_by_ids\x18\x06 \x03(\x05\"\x8a\x02\n\x13\x43reateReviewRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x15\n\rtotal_batches\x18\x03 \x01(\x05\x12\x12\n\nmission_id\x18\x04 \x01(\x05\x12\x1b\n\x13sample_size_percent\x18\x05 \x01(\x05\x12$\n\rfilter_values\x18\x06 \x01(\x0b\x32\r.FilterValues\x12\x37\n\x13\x65st_completion_date\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07team_id\x18\x08 \x01(\x05\x12\x18\n\x10is_training_data\x18\t \x01(\x08\"K\n\x14\x43reateReviewResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\x11\n\treview_id\x18\x02 \x01(\x05\"\xba\x01\n\x1a\x43reateGenericReviewRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x15\n\rtotal_batches\x18\x03 \x01(\x05\x12\x37\n\x13\x65st_completion_date\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07team_id\x18\x05 \x01(\x05\x12\x18\n\x10is_training_data\x18\x06 \x01(\x08\"R\n\x1b\x43reateGenericReviewResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\x11\n\treview_id\x18\x02 \x01(\x05\"%\n\x16\x46indReviewByIdsRequest\x12\x0b\n\x03ids\x18\x01 \x03(\x05\"T\n\x17\x46indReviewByIdsResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\x17\n\x06review\x18\x02 \x03(\x0b\x32\x07.Review\"#\n\x12ListReviewsRequest\x12\r\n\x05query\x18\x01 \x01(\t\"Q\n\x13ListReviewsResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\x18\n\x07reviews\x18\x02 \x03(\x0b\x32\x07.Review\"+\n\x1aListArchivedReviewsRequest\x12\r\n\x05query\x18\x01 \x01(\t\"7\n\x1bListArchivedReviewsResponse\x12\x18\n\x07reviews\x18\x01 \x03(\x0b\x32\x07.Review\"A\n-ListAssociatedReviewsAndTasksByImageIdRequest\x12\x10\n\x08image_id\x18\x01 \x01(\x05\"\x9d\x03\n.ListAssociatedReviewsAndTasksByImageIdResponse\x12m\n\x1c\x61ssociated_reviews_and_tasks\x18\x01 \x03(\x0b\x32G.ListAssociatedReviewsAndTasksByImageIdResponse.AssociatedReviewAndTask\x1a\xfb\x01\n\x17\x41ssociatedReviewAndTask\x12\x11\n\treview_id\x18\x01 \x01(\x05\x12\x13\n\x0breview_name\x18\x02 \x01(\t\x12\x0f\n\x07task_id\x18\x03 \x01(\x05\x12\x18\n\x10task_assigned_to\x18\x04 \x01(\x05\x12\x15\n\rtask_image_id\x18\x05 \x01(\x05\x12\x18\n\x10task_image_state\x18\x06 \x01(\t\x12\x1f\n\x17task_image_set_state_by\x18\x07 \x01(\x05\x12;\n\x17task_image_set_state_on\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"2\n\x1cGetReviewsByMissionIdRequest\x12\x12\n\nmission_id\x18\x01 \x01(\x05\"9\n\x1dGetReviewsByMissionIdResponse\x12\x18\n\x07reviews\x18\x01 \x03(\x0b\x32\x07.Review\".\n\x18GetReviewProgressRequest\x12\x12\n\nreview_ids\x18\x01 \x03(\x05\"\xda\x01\n\x19GetReviewProgressResponse\x12\x45\n\x0freview_progress\x18\x01 \x03(\x0b\x32,.GetReviewProgressResponse.GetReviewProgress\x1av\n\x11GetReviewProgress\x12\x11\n\treview_id\x18\x01 \x01(\x05\x12\x14\n\x0ctotal_images\x18\x02 \x01(\x05\x12\x1c\n\x14\x61nnotation_completed\x18\x03 \x01(\x05\x12\x1a\n\x12\x61nnotation_skipped\x18\x04 \x01(\x05\"\x9b\x01\n\x17UpdateReviewJobsRequest\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x37\n\x13\x65st_completion_date\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x18\n\x10is_training_data\x18\x05 \x01(\x08\"H\n\x18UpdateReviewJobsResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\n\n\x02id\x18\x02 \x01(\x05\"&\n\x18RestoreReviewJobsRequest\x12\n\n\x02id\x18\x01 \x01(\x05\"I\n\x19RestoreReviewJobsResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\n\n\x02id\x18\x02 \x01(\x05\"%\n\x17\x44\x65leteReviewJobsRequest\x12\n\n\x02id\x18\x01 \x01(\x05\"H\n\x18\x44\x65leteReviewJobsResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\n\n\x02id\x18\x02 \x01(\x05\"0\n\"RebalanceTaskImagesByReviewRequest\x12\n\n\x02id\x18\x01 \x01(\x05\"S\n#RebalanceTaskImagesByReviewResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\n\n\x02id\x18\x02 \x01(\x05\"Y\n!UpdateImagesToTargetReviewRequest\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x18\n\x10target_review_id\x18\x02 \x01(\x05\x12\x0e\n\x06states\x18\x03 \x03(\t\"R\n\"UpdateImagesToTargetReviewResponse\x12 \n\x0b\x63hange_type\x18\x01 \x01(\x0e\x32\x0b.ChangeType\x12\n\n\x02id\x18\x02 \x01(\x05\x32\x9a\t\n\tReviewApi\x12M\n\x12\x43\x61\x63heLastUserQuery\x12\x1a.CacheLastUserQueryRequest\x1a\x1b.CacheLastUserQueryResponse\x12;\n\x0c\x43reateReview\x12\x14.CreateReviewRequest\x1a\x15.CreateReviewResponse\x12P\n\x13\x43reateGenericReview\x12\x1b.CreateGenericReviewRequest\x1a\x1c.CreateGenericReviewResponse\x12\x44\n\x0f\x46indReviewByIds\x12\x17.FindReviewByIdsRequest\x1a\x18.FindReviewByIdsResponse\x12\x38\n\x0bListReviews\x12\x13.ListReviewsRequest\x1a\x14.ListReviewsResponse\x12P\n\x13ListArchivedReviews\x12\x1b.ListArchivedReviewsRequest\x1a\x1c.ListArchivedReviewsResponse\x12\x89\x01\n&ListAssociatedReviewsAndTasksByImageId\x12..ListAssociatedReviewsAndTasksByImageIdRequest\x1a/.ListAssociatedReviewsAndTasksByImageIdResponse\x12V\n\x15GetReviewsByMissionId\x12\x1d.GetReviewsByMissionIdRequest\x1a\x1e.GetReviewsByMissionIdResponse\x12J\n\x11GetReviewProgress\x12\x19.GetReviewProgressRequest\x1a\x1a.GetReviewProgressResponse\x12G\n\x10UpdateReviewJobs\x12\x18.UpdateReviewJobsRequest\x1a\x19.UpdateReviewJobsResponse\x12J\n\x11RestoreReviewJobs\x12\x19.RestoreReviewJobsRequest\x1a\x1a.RestoreReviewJobsResponse\x12G\n\x10\x44\x65leteReviewJobs\x12\x18.DeleteReviewJobsRequest\x1a\x19.DeleteReviewJobsResponse\x12h\n\x1bRebalanceTaskImagesByReview\x12#.RebalanceTaskImagesByReviewRequest\x1a$.RebalanceTaskImagesByReviewResponse\x12\x65\n\x1aUpdateImagesToTargetReview\x12\".UpdateImagesToTargetReviewRequest\x1a#.UpdateImagesToTargetReviewResponseb\x06proto3')
|
|
19
19
|
|
|
20
20
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
21
21
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'global_vo_grpc_service.protos.review_api_pb2', globals())
|
|
@@ -23,73 +23,73 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
23
23
|
|
|
24
24
|
DESCRIPTOR._options = None
|
|
25
25
|
_REVIEW._serialized_start=127
|
|
26
|
-
_REVIEW._serialized_end=
|
|
27
|
-
_CACHELASTUSERQUERYREQUEST._serialized_start=
|
|
28
|
-
_CACHELASTUSERQUERYREQUEST._serialized_end=
|
|
29
|
-
_CACHELASTUSERQUERYRESPONSE._serialized_start=
|
|
30
|
-
_CACHELASTUSERQUERYRESPONSE._serialized_end=
|
|
31
|
-
_HEIGHTRANGE._serialized_start=
|
|
32
|
-
_HEIGHTRANGE._serialized_end=
|
|
33
|
-
_SCORERANGE._serialized_start=
|
|
34
|
-
_SCORERANGE._serialized_end=
|
|
35
|
-
_FILTERVALUES._serialized_start=
|
|
36
|
-
_FILTERVALUES._serialized_end=
|
|
37
|
-
_CREATEREVIEWREQUEST._serialized_start=
|
|
38
|
-
_CREATEREVIEWREQUEST._serialized_end=
|
|
39
|
-
_CREATEREVIEWRESPONSE._serialized_start=
|
|
40
|
-
_CREATEREVIEWRESPONSE._serialized_end=
|
|
41
|
-
_CREATEGENERICREVIEWREQUEST._serialized_start=
|
|
42
|
-
_CREATEGENERICREVIEWREQUEST._serialized_end=
|
|
43
|
-
_CREATEGENERICREVIEWRESPONSE._serialized_start=
|
|
44
|
-
_CREATEGENERICREVIEWRESPONSE._serialized_end=
|
|
45
|
-
_FINDREVIEWBYIDSREQUEST._serialized_start=
|
|
46
|
-
_FINDREVIEWBYIDSREQUEST._serialized_end=
|
|
47
|
-
_FINDREVIEWBYIDSRESPONSE._serialized_start=
|
|
48
|
-
_FINDREVIEWBYIDSRESPONSE._serialized_end=
|
|
49
|
-
_LISTREVIEWSREQUEST._serialized_start=
|
|
50
|
-
_LISTREVIEWSREQUEST._serialized_end=
|
|
51
|
-
_LISTREVIEWSRESPONSE._serialized_start=
|
|
52
|
-
_LISTREVIEWSRESPONSE._serialized_end=
|
|
53
|
-
_LISTARCHIVEDREVIEWSREQUEST._serialized_start=
|
|
54
|
-
_LISTARCHIVEDREVIEWSREQUEST._serialized_end=
|
|
55
|
-
_LISTARCHIVEDREVIEWSRESPONSE._serialized_start=
|
|
56
|
-
_LISTARCHIVEDREVIEWSRESPONSE._serialized_end=
|
|
57
|
-
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDREQUEST._serialized_start=
|
|
58
|
-
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDREQUEST._serialized_end=
|
|
59
|
-
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDRESPONSE._serialized_start=
|
|
60
|
-
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDRESPONSE._serialized_end=
|
|
61
|
-
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDRESPONSE_ASSOCIATEDREVIEWANDTASK._serialized_start=
|
|
62
|
-
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDRESPONSE_ASSOCIATEDREVIEWANDTASK._serialized_end=
|
|
63
|
-
_GETREVIEWSBYMISSIONIDREQUEST._serialized_start=
|
|
64
|
-
_GETREVIEWSBYMISSIONIDREQUEST._serialized_end=
|
|
65
|
-
_GETREVIEWSBYMISSIONIDRESPONSE._serialized_start=
|
|
66
|
-
_GETREVIEWSBYMISSIONIDRESPONSE._serialized_end=
|
|
67
|
-
_GETREVIEWPROGRESSREQUEST._serialized_start=
|
|
68
|
-
_GETREVIEWPROGRESSREQUEST._serialized_end=
|
|
69
|
-
_GETREVIEWPROGRESSRESPONSE._serialized_start=
|
|
70
|
-
_GETREVIEWPROGRESSRESPONSE._serialized_end=
|
|
71
|
-
_GETREVIEWPROGRESSRESPONSE_GETREVIEWPROGRESS._serialized_start=
|
|
72
|
-
_GETREVIEWPROGRESSRESPONSE_GETREVIEWPROGRESS._serialized_end=
|
|
73
|
-
_UPDATEREVIEWJOBSREQUEST._serialized_start=
|
|
74
|
-
_UPDATEREVIEWJOBSREQUEST._serialized_end=
|
|
75
|
-
_UPDATEREVIEWJOBSRESPONSE._serialized_start=
|
|
76
|
-
_UPDATEREVIEWJOBSRESPONSE._serialized_end=
|
|
77
|
-
_RESTOREREVIEWJOBSREQUEST._serialized_start=
|
|
78
|
-
_RESTOREREVIEWJOBSREQUEST._serialized_end=
|
|
79
|
-
_RESTOREREVIEWJOBSRESPONSE._serialized_start=
|
|
80
|
-
_RESTOREREVIEWJOBSRESPONSE._serialized_end=
|
|
81
|
-
_DELETEREVIEWJOBSREQUEST._serialized_start=
|
|
82
|
-
_DELETEREVIEWJOBSREQUEST._serialized_end=
|
|
83
|
-
_DELETEREVIEWJOBSRESPONSE._serialized_start=
|
|
84
|
-
_DELETEREVIEWJOBSRESPONSE._serialized_end=
|
|
85
|
-
_REBALANCETASKIMAGESBYREVIEWREQUEST._serialized_start=
|
|
86
|
-
_REBALANCETASKIMAGESBYREVIEWREQUEST._serialized_end=
|
|
87
|
-
_REBALANCETASKIMAGESBYREVIEWRESPONSE._serialized_start=
|
|
88
|
-
_REBALANCETASKIMAGESBYREVIEWRESPONSE._serialized_end=
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
_REVIEWAPI._serialized_start=
|
|
94
|
-
_REVIEWAPI._serialized_end=
|
|
26
|
+
_REVIEW._serialized_end=523
|
|
27
|
+
_CACHELASTUSERQUERYREQUEST._serialized_start=525
|
|
28
|
+
_CACHELASTUSERQUERYREQUEST._serialized_end=599
|
|
29
|
+
_CACHELASTUSERQUERYRESPONSE._serialized_start=601
|
|
30
|
+
_CACHELASTUSERQUERYRESPONSE._serialized_end=663
|
|
31
|
+
_HEIGHTRANGE._serialized_start=665
|
|
32
|
+
_HEIGHTRANGE._serialized_end=704
|
|
33
|
+
_SCORERANGE._serialized_start=706
|
|
34
|
+
_SCORERANGE._serialized_end=744
|
|
35
|
+
_FILTERVALUES._serialized_start=747
|
|
36
|
+
_FILTERVALUES._serialized_end=917
|
|
37
|
+
_CREATEREVIEWREQUEST._serialized_start=920
|
|
38
|
+
_CREATEREVIEWREQUEST._serialized_end=1186
|
|
39
|
+
_CREATEREVIEWRESPONSE._serialized_start=1188
|
|
40
|
+
_CREATEREVIEWRESPONSE._serialized_end=1263
|
|
41
|
+
_CREATEGENERICREVIEWREQUEST._serialized_start=1266
|
|
42
|
+
_CREATEGENERICREVIEWREQUEST._serialized_end=1452
|
|
43
|
+
_CREATEGENERICREVIEWRESPONSE._serialized_start=1454
|
|
44
|
+
_CREATEGENERICREVIEWRESPONSE._serialized_end=1536
|
|
45
|
+
_FINDREVIEWBYIDSREQUEST._serialized_start=1538
|
|
46
|
+
_FINDREVIEWBYIDSREQUEST._serialized_end=1575
|
|
47
|
+
_FINDREVIEWBYIDSRESPONSE._serialized_start=1577
|
|
48
|
+
_FINDREVIEWBYIDSRESPONSE._serialized_end=1661
|
|
49
|
+
_LISTREVIEWSREQUEST._serialized_start=1663
|
|
50
|
+
_LISTREVIEWSREQUEST._serialized_end=1698
|
|
51
|
+
_LISTREVIEWSRESPONSE._serialized_start=1700
|
|
52
|
+
_LISTREVIEWSRESPONSE._serialized_end=1781
|
|
53
|
+
_LISTARCHIVEDREVIEWSREQUEST._serialized_start=1783
|
|
54
|
+
_LISTARCHIVEDREVIEWSREQUEST._serialized_end=1826
|
|
55
|
+
_LISTARCHIVEDREVIEWSRESPONSE._serialized_start=1828
|
|
56
|
+
_LISTARCHIVEDREVIEWSRESPONSE._serialized_end=1883
|
|
57
|
+
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDREQUEST._serialized_start=1885
|
|
58
|
+
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDREQUEST._serialized_end=1950
|
|
59
|
+
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDRESPONSE._serialized_start=1953
|
|
60
|
+
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDRESPONSE._serialized_end=2366
|
|
61
|
+
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDRESPONSE_ASSOCIATEDREVIEWANDTASK._serialized_start=2115
|
|
62
|
+
_LISTASSOCIATEDREVIEWSANDTASKSBYIMAGEIDRESPONSE_ASSOCIATEDREVIEWANDTASK._serialized_end=2366
|
|
63
|
+
_GETREVIEWSBYMISSIONIDREQUEST._serialized_start=2368
|
|
64
|
+
_GETREVIEWSBYMISSIONIDREQUEST._serialized_end=2418
|
|
65
|
+
_GETREVIEWSBYMISSIONIDRESPONSE._serialized_start=2420
|
|
66
|
+
_GETREVIEWSBYMISSIONIDRESPONSE._serialized_end=2477
|
|
67
|
+
_GETREVIEWPROGRESSREQUEST._serialized_start=2479
|
|
68
|
+
_GETREVIEWPROGRESSREQUEST._serialized_end=2525
|
|
69
|
+
_GETREVIEWPROGRESSRESPONSE._serialized_start=2528
|
|
70
|
+
_GETREVIEWPROGRESSRESPONSE._serialized_end=2746
|
|
71
|
+
_GETREVIEWPROGRESSRESPONSE_GETREVIEWPROGRESS._serialized_start=2628
|
|
72
|
+
_GETREVIEWPROGRESSRESPONSE_GETREVIEWPROGRESS._serialized_end=2746
|
|
73
|
+
_UPDATEREVIEWJOBSREQUEST._serialized_start=2749
|
|
74
|
+
_UPDATEREVIEWJOBSREQUEST._serialized_end=2904
|
|
75
|
+
_UPDATEREVIEWJOBSRESPONSE._serialized_start=2906
|
|
76
|
+
_UPDATEREVIEWJOBSRESPONSE._serialized_end=2978
|
|
77
|
+
_RESTOREREVIEWJOBSREQUEST._serialized_start=2980
|
|
78
|
+
_RESTOREREVIEWJOBSREQUEST._serialized_end=3018
|
|
79
|
+
_RESTOREREVIEWJOBSRESPONSE._serialized_start=3020
|
|
80
|
+
_RESTOREREVIEWJOBSRESPONSE._serialized_end=3093
|
|
81
|
+
_DELETEREVIEWJOBSREQUEST._serialized_start=3095
|
|
82
|
+
_DELETEREVIEWJOBSREQUEST._serialized_end=3132
|
|
83
|
+
_DELETEREVIEWJOBSRESPONSE._serialized_start=3134
|
|
84
|
+
_DELETEREVIEWJOBSRESPONSE._serialized_end=3206
|
|
85
|
+
_REBALANCETASKIMAGESBYREVIEWREQUEST._serialized_start=3208
|
|
86
|
+
_REBALANCETASKIMAGESBYREVIEWREQUEST._serialized_end=3256
|
|
87
|
+
_REBALANCETASKIMAGESBYREVIEWRESPONSE._serialized_start=3258
|
|
88
|
+
_REBALANCETASKIMAGESBYREVIEWRESPONSE._serialized_end=3341
|
|
89
|
+
_UPDATEIMAGESTOTARGETREVIEWREQUEST._serialized_start=3343
|
|
90
|
+
_UPDATEIMAGESTOTARGETREVIEWREQUEST._serialized_end=3432
|
|
91
|
+
_UPDATEIMAGESTOTARGETREVIEWRESPONSE._serialized_start=3434
|
|
92
|
+
_UPDATEIMAGESTOTARGETREVIEWRESPONSE._serialized_end=3516
|
|
93
|
+
_REVIEWAPI._serialized_start=3519
|
|
94
|
+
_REVIEWAPI._serialized_end=4697
|
|
95
95
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -79,10 +79,10 @@ class ReviewApiStub(object):
|
|
|
79
79
|
request_serializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.RebalanceTaskImagesByReviewRequest.SerializeToString,
|
|
80
80
|
response_deserializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.RebalanceTaskImagesByReviewResponse.FromString,
|
|
81
81
|
)
|
|
82
|
-
self.
|
|
83
|
-
'/ReviewApi/
|
|
84
|
-
request_serializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.
|
|
85
|
-
response_deserializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.
|
|
82
|
+
self.UpdateImagesToTargetReview = channel.unary_unary(
|
|
83
|
+
'/ReviewApi/UpdateImagesToTargetReview',
|
|
84
|
+
request_serializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.UpdateImagesToTargetReviewRequest.SerializeToString,
|
|
85
|
+
response_deserializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.UpdateImagesToTargetReviewResponse.FromString,
|
|
86
86
|
)
|
|
87
87
|
|
|
88
88
|
|
|
@@ -167,7 +167,7 @@ class ReviewApiServicer(object):
|
|
|
167
167
|
context.set_details('Method not implemented!')
|
|
168
168
|
raise NotImplementedError('Method not implemented!')
|
|
169
169
|
|
|
170
|
-
def
|
|
170
|
+
def UpdateImagesToTargetReview(self, request, context):
|
|
171
171
|
"""Missing associated documentation comment in .proto file."""
|
|
172
172
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
173
173
|
context.set_details('Method not implemented!')
|
|
@@ -241,10 +241,10 @@ def add_ReviewApiServicer_to_server(servicer, server):
|
|
|
241
241
|
request_deserializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.RebalanceTaskImagesByReviewRequest.FromString,
|
|
242
242
|
response_serializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.RebalanceTaskImagesByReviewResponse.SerializeToString,
|
|
243
243
|
),
|
|
244
|
-
'
|
|
245
|
-
servicer.
|
|
246
|
-
request_deserializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.
|
|
247
|
-
response_serializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.
|
|
244
|
+
'UpdateImagesToTargetReview': grpc.unary_unary_rpc_method_handler(
|
|
245
|
+
servicer.UpdateImagesToTargetReview,
|
|
246
|
+
request_deserializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.UpdateImagesToTargetReviewRequest.FromString,
|
|
247
|
+
response_serializer=global__vo__grpc__service_dot_protos_dot_review__api__pb2.UpdateImagesToTargetReviewResponse.SerializeToString,
|
|
248
248
|
),
|
|
249
249
|
}
|
|
250
250
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
@@ -478,7 +478,7 @@ class ReviewApi(object):
|
|
|
478
478
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
479
479
|
|
|
480
480
|
@staticmethod
|
|
481
|
-
def
|
|
481
|
+
def UpdateImagesToTargetReview(request,
|
|
482
482
|
target,
|
|
483
483
|
options=(),
|
|
484
484
|
channel_credentials=None,
|
|
@@ -488,8 +488,8 @@ class ReviewApi(object):
|
|
|
488
488
|
wait_for_ready=None,
|
|
489
489
|
timeout=None,
|
|
490
490
|
metadata=None):
|
|
491
|
-
return grpc.experimental.unary_unary(request, target, '/ReviewApi/
|
|
492
|
-
global__vo__grpc__service_dot_protos_dot_review__api__pb2.
|
|
493
|
-
global__vo__grpc__service_dot_protos_dot_review__api__pb2.
|
|
491
|
+
return grpc.experimental.unary_unary(request, target, '/ReviewApi/UpdateImagesToTargetReview',
|
|
492
|
+
global__vo__grpc__service_dot_protos_dot_review__api__pb2.UpdateImagesToTargetReviewRequest.SerializeToString,
|
|
493
|
+
global__vo__grpc__service_dot_protos_dot_review__api__pb2.UpdateImagesToTargetReviewResponse.FromString,
|
|
494
494
|
options, channel_credentials,
|
|
495
495
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|