cadence-python-client 0.1.0__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.
- cadence/__init__.py +18 -0
- cadence/_internal/__init__.py +8 -0
- cadence/_internal/activity/__init__.py +5 -0
- cadence/_internal/activity/_activity_executor.py +113 -0
- cadence/_internal/activity/_context.py +58 -0
- cadence/_internal/rpc/__init__.py +0 -0
- cadence/_internal/rpc/error.py +148 -0
- cadence/_internal/rpc/retry.py +104 -0
- cadence/_internal/rpc/yarpc.py +42 -0
- cadence/_internal/workflow/__init__.py +0 -0
- cadence/_internal/workflow/context.py +121 -0
- cadence/_internal/workflow/decision_events_iterator.py +161 -0
- cadence/_internal/workflow/decisions_helper.py +312 -0
- cadence/_internal/workflow/deterministic_event_loop.py +498 -0
- cadence/_internal/workflow/history_event_iterator.py +58 -0
- cadence/_internal/workflow/statemachine/__init__.py +0 -0
- cadence/_internal/workflow/statemachine/activity_state_machine.py +106 -0
- cadence/_internal/workflow/statemachine/decision_manager.py +157 -0
- cadence/_internal/workflow/statemachine/decision_state_machine.py +87 -0
- cadence/_internal/workflow/statemachine/event_dispatcher.py +76 -0
- cadence/_internal/workflow/statemachine/timer_state_machine.py +73 -0
- cadence/_internal/workflow/workflow_engine.py +245 -0
- cadence/_internal/workflow/workflow_intance.py +44 -0
- cadence/activity.py +255 -0
- cadence/api/v1/__init__.py +92 -0
- cadence/api/v1/common_pb2.py +90 -0
- cadence/api/v1/common_pb2.pyi +200 -0
- cadence/api/v1/common_pb2_grpc.py +24 -0
- cadence/api/v1/decision_pb2.py +67 -0
- cadence/api/v1/decision_pb2.pyi +225 -0
- cadence/api/v1/decision_pb2_grpc.py +24 -0
- cadence/api/v1/domain_pb2.py +68 -0
- cadence/api/v1/domain_pb2.pyi +145 -0
- cadence/api/v1/domain_pb2_grpc.py +24 -0
- cadence/api/v1/error_pb2.py +59 -0
- cadence/api/v1/error_pb2.pyi +82 -0
- cadence/api/v1/error_pb2_grpc.py +24 -0
- cadence/api/v1/history_pb2.py +134 -0
- cadence/api/v1/history_pb2.pyi +780 -0
- cadence/api/v1/history_pb2_grpc.py +24 -0
- cadence/api/v1/query_pb2.py +49 -0
- cadence/api/v1/query_pb2.pyi +59 -0
- cadence/api/v1/query_pb2_grpc.py +24 -0
- cadence/api/v1/service_domain_pb2.py +76 -0
- cadence/api/v1/service_domain_pb2.pyi +164 -0
- cadence/api/v1/service_domain_pb2_grpc.py +327 -0
- cadence/api/v1/service_meta_pb2.py +41 -0
- cadence/api/v1/service_meta_pb2.pyi +17 -0
- cadence/api/v1/service_meta_pb2_grpc.py +97 -0
- cadence/api/v1/service_visibility_pb2.py +71 -0
- cadence/api/v1/service_visibility_pb2.pyi +149 -0
- cadence/api/v1/service_visibility_pb2_grpc.py +362 -0
- cadence/api/v1/service_worker_pb2.py +116 -0
- cadence/api/v1/service_worker_pb2.pyi +350 -0
- cadence/api/v1/service_worker_pb2_grpc.py +743 -0
- cadence/api/v1/service_workflow_pb2.py +126 -0
- cadence/api/v1/service_workflow_pb2.pyi +395 -0
- cadence/api/v1/service_workflow_pb2_grpc.py +861 -0
- cadence/api/v1/tasklist_pb2.py +78 -0
- cadence/api/v1/tasklist_pb2.pyi +147 -0
- cadence/api/v1/tasklist_pb2_grpc.py +24 -0
- cadence/api/v1/visibility_pb2.py +47 -0
- cadence/api/v1/visibility_pb2.pyi +53 -0
- cadence/api/v1/visibility_pb2_grpc.py +24 -0
- cadence/api/v1/workflow_pb2.py +89 -0
- cadence/api/v1/workflow_pb2.pyi +365 -0
- cadence/api/v1/workflow_pb2_grpc.py +24 -0
- cadence/client.py +382 -0
- cadence/data_converter.py +78 -0
- cadence/error.py +111 -0
- cadence/metrics/__init__.py +12 -0
- cadence/metrics/constants.py +136 -0
- cadence/metrics/metrics.py +56 -0
- cadence/metrics/prometheus.py +165 -0
- cadence/sample/__init__.py +1 -0
- cadence/sample/client_example.py +15 -0
- cadence/sample/grpc_usage_example.py +230 -0
- cadence/sample/simple_usage_example.py +155 -0
- cadence/signal.py +174 -0
- cadence/worker/__init__.py +13 -0
- cadence/worker/_activity.py +60 -0
- cadence/worker/_base_task_handler.py +71 -0
- cadence/worker/_decision.py +62 -0
- cadence/worker/_decision_task_handler.py +285 -0
- cadence/worker/_poller.py +64 -0
- cadence/worker/_registry.py +245 -0
- cadence/worker/_types.py +26 -0
- cadence/worker/_worker.py +56 -0
- cadence/workflow.py +271 -0
- cadence_python_client-0.1.0.dist-info/METADATA +180 -0
- cadence_python_client-0.1.0.dist-info/RECORD +95 -0
- cadence_python_client-0.1.0.dist-info/WHEEL +5 -0
- cadence_python_client-0.1.0.dist-info/licenses/LICENSE +201 -0
- cadence_python_client-0.1.0.dist-info/licenses/NOTICE +19 -0
- cadence_python_client-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,327 @@
|
|
|
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
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
from cadence.api.v1 import service_domain_pb2 as cadence_dot_api_dot_v1_dot_service__domain__pb2
|
|
7
|
+
|
|
8
|
+
GRPC_GENERATED_VERSION = '1.71.2'
|
|
9
|
+
GRPC_VERSION = grpc.__version__
|
|
10
|
+
_version_not_supported = False
|
|
11
|
+
|
|
12
|
+
try:
|
|
13
|
+
from grpc._utilities import first_version_is_lower
|
|
14
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
15
|
+
except ImportError:
|
|
16
|
+
_version_not_supported = True
|
|
17
|
+
|
|
18
|
+
if _version_not_supported:
|
|
19
|
+
raise RuntimeError(
|
|
20
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
21
|
+
+ f' but the generated code in cadence/api/v1/service_domain_pb2_grpc.py depends on'
|
|
22
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
23
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
24
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class DomainAPIStub(object):
|
|
29
|
+
"""Missing associated documentation comment in .proto file."""
|
|
30
|
+
|
|
31
|
+
def __init__(self, channel):
|
|
32
|
+
"""Constructor.
|
|
33
|
+
|
|
34
|
+
Args:
|
|
35
|
+
channel: A grpc.Channel.
|
|
36
|
+
"""
|
|
37
|
+
self.RegisterDomain = channel.unary_unary(
|
|
38
|
+
'/uber.cadence.api.v1.DomainAPI/RegisterDomain',
|
|
39
|
+
request_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.RegisterDomainRequest.SerializeToString,
|
|
40
|
+
response_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.RegisterDomainResponse.FromString,
|
|
41
|
+
_registered_method=True)
|
|
42
|
+
self.DescribeDomain = channel.unary_unary(
|
|
43
|
+
'/uber.cadence.api.v1.DomainAPI/DescribeDomain',
|
|
44
|
+
request_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DescribeDomainRequest.SerializeToString,
|
|
45
|
+
response_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DescribeDomainResponse.FromString,
|
|
46
|
+
_registered_method=True)
|
|
47
|
+
self.ListDomains = channel.unary_unary(
|
|
48
|
+
'/uber.cadence.api.v1.DomainAPI/ListDomains',
|
|
49
|
+
request_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.ListDomainsRequest.SerializeToString,
|
|
50
|
+
response_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.ListDomainsResponse.FromString,
|
|
51
|
+
_registered_method=True)
|
|
52
|
+
self.UpdateDomain = channel.unary_unary(
|
|
53
|
+
'/uber.cadence.api.v1.DomainAPI/UpdateDomain',
|
|
54
|
+
request_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.UpdateDomainRequest.SerializeToString,
|
|
55
|
+
response_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.UpdateDomainResponse.FromString,
|
|
56
|
+
_registered_method=True)
|
|
57
|
+
self.DeprecateDomain = channel.unary_unary(
|
|
58
|
+
'/uber.cadence.api.v1.DomainAPI/DeprecateDomain',
|
|
59
|
+
request_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DeprecateDomainRequest.SerializeToString,
|
|
60
|
+
response_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DeprecateDomainResponse.FromString,
|
|
61
|
+
_registered_method=True)
|
|
62
|
+
self.DeleteDomain = channel.unary_unary(
|
|
63
|
+
'/uber.cadence.api.v1.DomainAPI/DeleteDomain',
|
|
64
|
+
request_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DeleteDomainRequest.SerializeToString,
|
|
65
|
+
response_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DeleteDomainResponse.FromString,
|
|
66
|
+
_registered_method=True)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
class DomainAPIServicer(object):
|
|
70
|
+
"""Missing associated documentation comment in .proto file."""
|
|
71
|
+
|
|
72
|
+
def RegisterDomain(self, request, context):
|
|
73
|
+
"""RegisterDomain creates a new domain which can be used as a container for all resources. Domain is a top level
|
|
74
|
+
entity within Cadence, used as a container for all resources like workflow executions, task lists, etc. Domain
|
|
75
|
+
acts as a sandbox and provides isolation for all resources within the domain. All resources belongs to exactly one
|
|
76
|
+
domain.
|
|
77
|
+
"""
|
|
78
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
79
|
+
context.set_details('Method not implemented!')
|
|
80
|
+
raise NotImplementedError('Method not implemented!')
|
|
81
|
+
|
|
82
|
+
def DescribeDomain(self, request, context):
|
|
83
|
+
"""DescribeDomain returns the information and configuration for a registered domain.
|
|
84
|
+
"""
|
|
85
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
86
|
+
context.set_details('Method not implemented!')
|
|
87
|
+
raise NotImplementedError('Method not implemented!')
|
|
88
|
+
|
|
89
|
+
def ListDomains(self, request, context):
|
|
90
|
+
"""ListDomains returns the information and configuration for all domains.
|
|
91
|
+
"""
|
|
92
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
93
|
+
context.set_details('Method not implemented!')
|
|
94
|
+
raise NotImplementedError('Method not implemented!')
|
|
95
|
+
|
|
96
|
+
def UpdateDomain(self, request, context):
|
|
97
|
+
"""UpdateDomain is used to update the information and configuration for a registered domain.
|
|
98
|
+
"""
|
|
99
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
100
|
+
context.set_details('Method not implemented!')
|
|
101
|
+
raise NotImplementedError('Method not implemented!')
|
|
102
|
+
|
|
103
|
+
def DeprecateDomain(self, request, context):
|
|
104
|
+
"""DeprecateDomain us used to update status of a registered domain to DEPRECATED. Once the domain is deprecated
|
|
105
|
+
it cannot be used to start new workflow executions. Existing workflow executions will continue to run on
|
|
106
|
+
deprecated domains.
|
|
107
|
+
"""
|
|
108
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
109
|
+
context.set_details('Method not implemented!')
|
|
110
|
+
raise NotImplementedError('Method not implemented!')
|
|
111
|
+
|
|
112
|
+
def DeleteDomain(self, request, context):
|
|
113
|
+
"""DeleteDomain permanently removes a domain record. This operation:
|
|
114
|
+
- Requires domain to be in DEPRECATED status
|
|
115
|
+
- Cannot be performed on domains with running workflows
|
|
116
|
+
- Is irreversible and removes all domain data
|
|
117
|
+
- Requires proper permissions and security token
|
|
118
|
+
"""
|
|
119
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
120
|
+
context.set_details('Method not implemented!')
|
|
121
|
+
raise NotImplementedError('Method not implemented!')
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
def add_DomainAPIServicer_to_server(servicer, server):
|
|
125
|
+
rpc_method_handlers = {
|
|
126
|
+
'RegisterDomain': grpc.unary_unary_rpc_method_handler(
|
|
127
|
+
servicer.RegisterDomain,
|
|
128
|
+
request_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.RegisterDomainRequest.FromString,
|
|
129
|
+
response_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.RegisterDomainResponse.SerializeToString,
|
|
130
|
+
),
|
|
131
|
+
'DescribeDomain': grpc.unary_unary_rpc_method_handler(
|
|
132
|
+
servicer.DescribeDomain,
|
|
133
|
+
request_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DescribeDomainRequest.FromString,
|
|
134
|
+
response_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DescribeDomainResponse.SerializeToString,
|
|
135
|
+
),
|
|
136
|
+
'ListDomains': grpc.unary_unary_rpc_method_handler(
|
|
137
|
+
servicer.ListDomains,
|
|
138
|
+
request_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.ListDomainsRequest.FromString,
|
|
139
|
+
response_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.ListDomainsResponse.SerializeToString,
|
|
140
|
+
),
|
|
141
|
+
'UpdateDomain': grpc.unary_unary_rpc_method_handler(
|
|
142
|
+
servicer.UpdateDomain,
|
|
143
|
+
request_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.UpdateDomainRequest.FromString,
|
|
144
|
+
response_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.UpdateDomainResponse.SerializeToString,
|
|
145
|
+
),
|
|
146
|
+
'DeprecateDomain': grpc.unary_unary_rpc_method_handler(
|
|
147
|
+
servicer.DeprecateDomain,
|
|
148
|
+
request_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DeprecateDomainRequest.FromString,
|
|
149
|
+
response_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DeprecateDomainResponse.SerializeToString,
|
|
150
|
+
),
|
|
151
|
+
'DeleteDomain': grpc.unary_unary_rpc_method_handler(
|
|
152
|
+
servicer.DeleteDomain,
|
|
153
|
+
request_deserializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DeleteDomainRequest.FromString,
|
|
154
|
+
response_serializer=cadence_dot_api_dot_v1_dot_service__domain__pb2.DeleteDomainResponse.SerializeToString,
|
|
155
|
+
),
|
|
156
|
+
}
|
|
157
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
158
|
+
'uber.cadence.api.v1.DomainAPI', rpc_method_handlers)
|
|
159
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
160
|
+
server.add_registered_method_handlers('uber.cadence.api.v1.DomainAPI', rpc_method_handlers)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
# This class is part of an EXPERIMENTAL API.
|
|
164
|
+
class DomainAPI(object):
|
|
165
|
+
"""Missing associated documentation comment in .proto file."""
|
|
166
|
+
|
|
167
|
+
@staticmethod
|
|
168
|
+
def RegisterDomain(request,
|
|
169
|
+
target,
|
|
170
|
+
options=(),
|
|
171
|
+
channel_credentials=None,
|
|
172
|
+
call_credentials=None,
|
|
173
|
+
insecure=False,
|
|
174
|
+
compression=None,
|
|
175
|
+
wait_for_ready=None,
|
|
176
|
+
timeout=None,
|
|
177
|
+
metadata=None):
|
|
178
|
+
return grpc.experimental.unary_unary(
|
|
179
|
+
request,
|
|
180
|
+
target,
|
|
181
|
+
'/uber.cadence.api.v1.DomainAPI/RegisterDomain',
|
|
182
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.RegisterDomainRequest.SerializeToString,
|
|
183
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.RegisterDomainResponse.FromString,
|
|
184
|
+
options,
|
|
185
|
+
channel_credentials,
|
|
186
|
+
insecure,
|
|
187
|
+
call_credentials,
|
|
188
|
+
compression,
|
|
189
|
+
wait_for_ready,
|
|
190
|
+
timeout,
|
|
191
|
+
metadata,
|
|
192
|
+
_registered_method=True)
|
|
193
|
+
|
|
194
|
+
@staticmethod
|
|
195
|
+
def DescribeDomain(request,
|
|
196
|
+
target,
|
|
197
|
+
options=(),
|
|
198
|
+
channel_credentials=None,
|
|
199
|
+
call_credentials=None,
|
|
200
|
+
insecure=False,
|
|
201
|
+
compression=None,
|
|
202
|
+
wait_for_ready=None,
|
|
203
|
+
timeout=None,
|
|
204
|
+
metadata=None):
|
|
205
|
+
return grpc.experimental.unary_unary(
|
|
206
|
+
request,
|
|
207
|
+
target,
|
|
208
|
+
'/uber.cadence.api.v1.DomainAPI/DescribeDomain',
|
|
209
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.DescribeDomainRequest.SerializeToString,
|
|
210
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.DescribeDomainResponse.FromString,
|
|
211
|
+
options,
|
|
212
|
+
channel_credentials,
|
|
213
|
+
insecure,
|
|
214
|
+
call_credentials,
|
|
215
|
+
compression,
|
|
216
|
+
wait_for_ready,
|
|
217
|
+
timeout,
|
|
218
|
+
metadata,
|
|
219
|
+
_registered_method=True)
|
|
220
|
+
|
|
221
|
+
@staticmethod
|
|
222
|
+
def ListDomains(request,
|
|
223
|
+
target,
|
|
224
|
+
options=(),
|
|
225
|
+
channel_credentials=None,
|
|
226
|
+
call_credentials=None,
|
|
227
|
+
insecure=False,
|
|
228
|
+
compression=None,
|
|
229
|
+
wait_for_ready=None,
|
|
230
|
+
timeout=None,
|
|
231
|
+
metadata=None):
|
|
232
|
+
return grpc.experimental.unary_unary(
|
|
233
|
+
request,
|
|
234
|
+
target,
|
|
235
|
+
'/uber.cadence.api.v1.DomainAPI/ListDomains',
|
|
236
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.ListDomainsRequest.SerializeToString,
|
|
237
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.ListDomainsResponse.FromString,
|
|
238
|
+
options,
|
|
239
|
+
channel_credentials,
|
|
240
|
+
insecure,
|
|
241
|
+
call_credentials,
|
|
242
|
+
compression,
|
|
243
|
+
wait_for_ready,
|
|
244
|
+
timeout,
|
|
245
|
+
metadata,
|
|
246
|
+
_registered_method=True)
|
|
247
|
+
|
|
248
|
+
@staticmethod
|
|
249
|
+
def UpdateDomain(request,
|
|
250
|
+
target,
|
|
251
|
+
options=(),
|
|
252
|
+
channel_credentials=None,
|
|
253
|
+
call_credentials=None,
|
|
254
|
+
insecure=False,
|
|
255
|
+
compression=None,
|
|
256
|
+
wait_for_ready=None,
|
|
257
|
+
timeout=None,
|
|
258
|
+
metadata=None):
|
|
259
|
+
return grpc.experimental.unary_unary(
|
|
260
|
+
request,
|
|
261
|
+
target,
|
|
262
|
+
'/uber.cadence.api.v1.DomainAPI/UpdateDomain',
|
|
263
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.UpdateDomainRequest.SerializeToString,
|
|
264
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.UpdateDomainResponse.FromString,
|
|
265
|
+
options,
|
|
266
|
+
channel_credentials,
|
|
267
|
+
insecure,
|
|
268
|
+
call_credentials,
|
|
269
|
+
compression,
|
|
270
|
+
wait_for_ready,
|
|
271
|
+
timeout,
|
|
272
|
+
metadata,
|
|
273
|
+
_registered_method=True)
|
|
274
|
+
|
|
275
|
+
@staticmethod
|
|
276
|
+
def DeprecateDomain(request,
|
|
277
|
+
target,
|
|
278
|
+
options=(),
|
|
279
|
+
channel_credentials=None,
|
|
280
|
+
call_credentials=None,
|
|
281
|
+
insecure=False,
|
|
282
|
+
compression=None,
|
|
283
|
+
wait_for_ready=None,
|
|
284
|
+
timeout=None,
|
|
285
|
+
metadata=None):
|
|
286
|
+
return grpc.experimental.unary_unary(
|
|
287
|
+
request,
|
|
288
|
+
target,
|
|
289
|
+
'/uber.cadence.api.v1.DomainAPI/DeprecateDomain',
|
|
290
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.DeprecateDomainRequest.SerializeToString,
|
|
291
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.DeprecateDomainResponse.FromString,
|
|
292
|
+
options,
|
|
293
|
+
channel_credentials,
|
|
294
|
+
insecure,
|
|
295
|
+
call_credentials,
|
|
296
|
+
compression,
|
|
297
|
+
wait_for_ready,
|
|
298
|
+
timeout,
|
|
299
|
+
metadata,
|
|
300
|
+
_registered_method=True)
|
|
301
|
+
|
|
302
|
+
@staticmethod
|
|
303
|
+
def DeleteDomain(request,
|
|
304
|
+
target,
|
|
305
|
+
options=(),
|
|
306
|
+
channel_credentials=None,
|
|
307
|
+
call_credentials=None,
|
|
308
|
+
insecure=False,
|
|
309
|
+
compression=None,
|
|
310
|
+
wait_for_ready=None,
|
|
311
|
+
timeout=None,
|
|
312
|
+
metadata=None):
|
|
313
|
+
return grpc.experimental.unary_unary(
|
|
314
|
+
request,
|
|
315
|
+
target,
|
|
316
|
+
'/uber.cadence.api.v1.DomainAPI/DeleteDomain',
|
|
317
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.DeleteDomainRequest.SerializeToString,
|
|
318
|
+
cadence_dot_api_dot_v1_dot_service__domain__pb2.DeleteDomainResponse.FromString,
|
|
319
|
+
options,
|
|
320
|
+
channel_credentials,
|
|
321
|
+
insecure,
|
|
322
|
+
call_credentials,
|
|
323
|
+
compression,
|
|
324
|
+
wait_for_ready,
|
|
325
|
+
timeout,
|
|
326
|
+
metadata,
|
|
327
|
+
_registered_method=True)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: cadence/api/v1/service_meta.proto
|
|
5
|
+
# Protobuf Python Version: 5.29.0
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
29,
|
|
16
|
+
0,
|
|
17
|
+
'',
|
|
18
|
+
'cadence/api/v1/service_meta.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!cadence/api/v1/service_meta.proto\x12\x13uber.cadence.api.v1\"\x0f\n\rHealthRequest\"-\n\x0eHealthResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\t2\\\n\x07MetaAPI\x12Q\n\x06Health\x12\".uber.cadence.api.v1.HealthRequest\x1a#.uber.cadence.api.v1.HealthResponseB`\n\x17\x63om.uber.cadence.api.v1B\x10MetaServiceProtoP\x01Z1github.com/uber/cadence-idl/go/proto/api/v1;apiv1b\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'cadence.api.v1.service_meta_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
34
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\027com.uber.cadence.api.v1B\020MetaServiceProtoP\001Z1github.com/uber/cadence-idl/go/proto/api/v1;apiv1'
|
|
35
|
+
_globals['_HEALTHREQUEST']._serialized_start=58
|
|
36
|
+
_globals['_HEALTHREQUEST']._serialized_end=73
|
|
37
|
+
_globals['_HEALTHRESPONSE']._serialized_start=75
|
|
38
|
+
_globals['_HEALTHRESPONSE']._serialized_end=120
|
|
39
|
+
_globals['_METAAPI']._serialized_start=122
|
|
40
|
+
_globals['_METAAPI']._serialized_end=214
|
|
41
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from google.protobuf import descriptor as _descriptor
|
|
2
|
+
from google.protobuf import message as _message
|
|
3
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional
|
|
4
|
+
|
|
5
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
6
|
+
|
|
7
|
+
class HealthRequest(_message.Message):
|
|
8
|
+
__slots__ = ()
|
|
9
|
+
def __init__(self) -> None: ...
|
|
10
|
+
|
|
11
|
+
class HealthResponse(_message.Message):
|
|
12
|
+
__slots__ = ("ok", "message")
|
|
13
|
+
OK_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
MESSAGE_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
ok: bool
|
|
16
|
+
message: str
|
|
17
|
+
def __init__(self, ok: bool = ..., message: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,97 @@
|
|
|
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
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
from cadence.api.v1 import service_meta_pb2 as cadence_dot_api_dot_v1_dot_service__meta__pb2
|
|
7
|
+
|
|
8
|
+
GRPC_GENERATED_VERSION = '1.71.2'
|
|
9
|
+
GRPC_VERSION = grpc.__version__
|
|
10
|
+
_version_not_supported = False
|
|
11
|
+
|
|
12
|
+
try:
|
|
13
|
+
from grpc._utilities import first_version_is_lower
|
|
14
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
15
|
+
except ImportError:
|
|
16
|
+
_version_not_supported = True
|
|
17
|
+
|
|
18
|
+
if _version_not_supported:
|
|
19
|
+
raise RuntimeError(
|
|
20
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
21
|
+
+ f' but the generated code in cadence/api/v1/service_meta_pb2_grpc.py depends on'
|
|
22
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
23
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
24
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class MetaAPIStub(object):
|
|
29
|
+
"""Missing associated documentation comment in .proto file."""
|
|
30
|
+
|
|
31
|
+
def __init__(self, channel):
|
|
32
|
+
"""Constructor.
|
|
33
|
+
|
|
34
|
+
Args:
|
|
35
|
+
channel: A grpc.Channel.
|
|
36
|
+
"""
|
|
37
|
+
self.Health = channel.unary_unary(
|
|
38
|
+
'/uber.cadence.api.v1.MetaAPI/Health',
|
|
39
|
+
request_serializer=cadence_dot_api_dot_v1_dot_service__meta__pb2.HealthRequest.SerializeToString,
|
|
40
|
+
response_deserializer=cadence_dot_api_dot_v1_dot_service__meta__pb2.HealthResponse.FromString,
|
|
41
|
+
_registered_method=True)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class MetaAPIServicer(object):
|
|
45
|
+
"""Missing associated documentation comment in .proto file."""
|
|
46
|
+
|
|
47
|
+
def Health(self, request, context):
|
|
48
|
+
"""Missing associated documentation comment in .proto file."""
|
|
49
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
50
|
+
context.set_details('Method not implemented!')
|
|
51
|
+
raise NotImplementedError('Method not implemented!')
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def add_MetaAPIServicer_to_server(servicer, server):
|
|
55
|
+
rpc_method_handlers = {
|
|
56
|
+
'Health': grpc.unary_unary_rpc_method_handler(
|
|
57
|
+
servicer.Health,
|
|
58
|
+
request_deserializer=cadence_dot_api_dot_v1_dot_service__meta__pb2.HealthRequest.FromString,
|
|
59
|
+
response_serializer=cadence_dot_api_dot_v1_dot_service__meta__pb2.HealthResponse.SerializeToString,
|
|
60
|
+
),
|
|
61
|
+
}
|
|
62
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
63
|
+
'uber.cadence.api.v1.MetaAPI', rpc_method_handlers)
|
|
64
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
65
|
+
server.add_registered_method_handlers('uber.cadence.api.v1.MetaAPI', rpc_method_handlers)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
# This class is part of an EXPERIMENTAL API.
|
|
69
|
+
class MetaAPI(object):
|
|
70
|
+
"""Missing associated documentation comment in .proto file."""
|
|
71
|
+
|
|
72
|
+
@staticmethod
|
|
73
|
+
def Health(request,
|
|
74
|
+
target,
|
|
75
|
+
options=(),
|
|
76
|
+
channel_credentials=None,
|
|
77
|
+
call_credentials=None,
|
|
78
|
+
insecure=False,
|
|
79
|
+
compression=None,
|
|
80
|
+
wait_for_ready=None,
|
|
81
|
+
timeout=None,
|
|
82
|
+
metadata=None):
|
|
83
|
+
return grpc.experimental.unary_unary(
|
|
84
|
+
request,
|
|
85
|
+
target,
|
|
86
|
+
'/uber.cadence.api.v1.MetaAPI/Health',
|
|
87
|
+
cadence_dot_api_dot_v1_dot_service__meta__pb2.HealthRequest.SerializeToString,
|
|
88
|
+
cadence_dot_api_dot_v1_dot_service__meta__pb2.HealthResponse.FromString,
|
|
89
|
+
options,
|
|
90
|
+
channel_credentials,
|
|
91
|
+
insecure,
|
|
92
|
+
call_credentials,
|
|
93
|
+
compression,
|
|
94
|
+
wait_for_ready,
|
|
95
|
+
timeout,
|
|
96
|
+
metadata,
|
|
97
|
+
_registered_method=True)
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: cadence/api/v1/service_visibility.proto
|
|
5
|
+
# Protobuf Python Version: 5.29.0
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
29,
|
|
16
|
+
0,
|
|
17
|
+
'',
|
|
18
|
+
'cadence/api/v1/service_visibility.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from cadence.api.v1 import visibility_pb2 as cadence_dot_api_dot_v1_dot_visibility__pb2
|
|
26
|
+
from cadence.api.v1 import workflow_pb2 as cadence_dot_api_dot_v1_dot_workflow__pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'cadence/api/v1/service_visibility.proto\x12\x13uber.cadence.api.v1\x1a\x1f\x63\x61\x64\x65nce/api/v1/visibility.proto\x1a\x1d\x63\x61\x64\x65nce/api/v1/workflow.proto\"j\n\x1dListWorkflowExecutionsRequest\x12\x0e\n\x06\x64omain\x18\x01 \x01(\t\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\x0c\x12\r\n\x05query\x18\x04 \x01(\t\"y\n\x1eListWorkflowExecutionsResponse\x12>\n\nexecutions\x18\x01 \x03(\x0b\x32*.uber.cadence.api.v1.WorkflowExecutionInfo\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\x0c\"\xb5\x02\n!ListOpenWorkflowExecutionsRequest\x12\x0e\n\x06\x64omain\x18\x01 \x01(\t\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\x0c\x12?\n\x11start_time_filter\x18\x04 \x01(\x0b\x32$.uber.cadence.api.v1.StartTimeFilter\x12H\n\x10\x65xecution_filter\x18\x05 \x01(\x0b\x32,.uber.cadence.api.v1.WorkflowExecutionFilterH\x00\x12>\n\x0btype_filter\x18\x06 \x01(\x0b\x32\'.uber.cadence.api.v1.WorkflowTypeFilterH\x00\x42\t\n\x07\x66ilters\"}\n\"ListOpenWorkflowExecutionsResponse\x12>\n\nexecutions\x18\x01 \x03(\x0b\x32*.uber.cadence.api.v1.WorkflowExecutionInfo\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\x0c\"\xf3\x02\n#ListClosedWorkflowExecutionsRequest\x12\x0e\n\x06\x64omain\x18\x01 \x01(\t\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\x0c\x12?\n\x11start_time_filter\x18\x04 \x01(\x0b\x32$.uber.cadence.api.v1.StartTimeFilter\x12H\n\x10\x65xecution_filter\x18\x05 \x01(\x0b\x32,.uber.cadence.api.v1.WorkflowExecutionFilterH\x00\x12>\n\x0btype_filter\x18\x06 \x01(\x0b\x32\'.uber.cadence.api.v1.WorkflowTypeFilterH\x00\x12:\n\rstatus_filter\x18\x07 \x01(\x0b\x32!.uber.cadence.api.v1.StatusFilterH\x00\x42\t\n\x07\x66ilters\"\x7f\n$ListClosedWorkflowExecutionsResponse\x12>\n\nexecutions\x18\x01 \x03(\x0b\x32*.uber.cadence.api.v1.WorkflowExecutionInfo\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\x0c\"r\n%ListArchivedWorkflowExecutionsRequest\x12\x0e\n\x06\x64omain\x18\x01 \x01(\t\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\x0c\x12\r\n\x05query\x18\x04 \x01(\t\"\x81\x01\n&ListArchivedWorkflowExecutionsResponse\x12>\n\nexecutions\x18\x01 \x03(\x0b\x32*.uber.cadence.api.v1.WorkflowExecutionInfo\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\x0c\"j\n\x1dScanWorkflowExecutionsRequest\x12\x0e\n\x06\x64omain\x18\x01 \x01(\t\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\x0c\x12\r\n\x05query\x18\x04 \x01(\t\"y\n\x1eScanWorkflowExecutionsResponse\x12>\n\nexecutions\x18\x01 \x03(\x0b\x32*.uber.cadence.api.v1.WorkflowExecutionInfo\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\x0c\"?\n\x1e\x43ountWorkflowExecutionsRequest\x12\x0e\n\x06\x64omain\x18\x01 \x01(\t\x12\r\n\x05query\x18\x02 \x01(\t\"0\n\x1f\x43ountWorkflowExecutionsResponse\x12\r\n\x05\x63ount\x18\x01 \x01(\x03\"\x1c\n\x1aGetSearchAttributesRequest\"\xbb\x01\n\x1bGetSearchAttributesResponse\x12H\n\x04keys\x18\x01 \x03(\x0b\x32:.uber.cadence.api.v1.GetSearchAttributesResponse.KeysEntry\x1aR\n\tKeysEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x34\n\x05value\x18\x02 \x01(\x0e\x32%.uber.cadence.api.v1.IndexedValueType:\x02\x38\x01\x32\xda\x07\n\rVisibilityAPI\x12\x81\x01\n\x16ListWorkflowExecutions\x12\x32.uber.cadence.api.v1.ListWorkflowExecutionsRequest\x1a\x33.uber.cadence.api.v1.ListWorkflowExecutionsResponse\x12\x8d\x01\n\x1aListOpenWorkflowExecutions\x12\x36.uber.cadence.api.v1.ListOpenWorkflowExecutionsRequest\x1a\x37.uber.cadence.api.v1.ListOpenWorkflowExecutionsResponse\x12\x93\x01\n\x1cListClosedWorkflowExecutions\x12\x38.uber.cadence.api.v1.ListClosedWorkflowExecutionsRequest\x1a\x39.uber.cadence.api.v1.ListClosedWorkflowExecutionsResponse\x12\x99\x01\n\x1eListArchivedWorkflowExecutions\x12:.uber.cadence.api.v1.ListArchivedWorkflowExecutionsRequest\x1a;.uber.cadence.api.v1.ListArchivedWorkflowExecutionsResponse\x12\x81\x01\n\x16ScanWorkflowExecutions\x12\x32.uber.cadence.api.v1.ScanWorkflowExecutionsRequest\x1a\x33.uber.cadence.api.v1.ScanWorkflowExecutionsResponse\x12\x84\x01\n\x17\x43ountWorkflowExecutions\x12\x33.uber.cadence.api.v1.CountWorkflowExecutionsRequest\x1a\x34.uber.cadence.api.v1.CountWorkflowExecutionsResponse\x12x\n\x13GetSearchAttributes\x12/.uber.cadence.api.v1.GetSearchAttributesRequest\x1a\x30.uber.cadence.api.v1.GetSearchAttributesResponseBf\n\x17\x63om.uber.cadence.api.v1B\x16VisibilityServiceProtoP\x01Z1github.com/uber/cadence-idl/go/proto/api/v1;apiv1b\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'cadence.api.v1.service_visibility_pb2', _globals)
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
36
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\027com.uber.cadence.api.v1B\026VisibilityServiceProtoP\001Z1github.com/uber/cadence-idl/go/proto/api/v1;apiv1'
|
|
37
|
+
_globals['_GETSEARCHATTRIBUTESRESPONSE_KEYSENTRY']._loaded_options = None
|
|
38
|
+
_globals['_GETSEARCHATTRIBUTESRESPONSE_KEYSENTRY']._serialized_options = b'8\001'
|
|
39
|
+
_globals['_LISTWORKFLOWEXECUTIONSREQUEST']._serialized_start=128
|
|
40
|
+
_globals['_LISTWORKFLOWEXECUTIONSREQUEST']._serialized_end=234
|
|
41
|
+
_globals['_LISTWORKFLOWEXECUTIONSRESPONSE']._serialized_start=236
|
|
42
|
+
_globals['_LISTWORKFLOWEXECUTIONSRESPONSE']._serialized_end=357
|
|
43
|
+
_globals['_LISTOPENWORKFLOWEXECUTIONSREQUEST']._serialized_start=360
|
|
44
|
+
_globals['_LISTOPENWORKFLOWEXECUTIONSREQUEST']._serialized_end=669
|
|
45
|
+
_globals['_LISTOPENWORKFLOWEXECUTIONSRESPONSE']._serialized_start=671
|
|
46
|
+
_globals['_LISTOPENWORKFLOWEXECUTIONSRESPONSE']._serialized_end=796
|
|
47
|
+
_globals['_LISTCLOSEDWORKFLOWEXECUTIONSREQUEST']._serialized_start=799
|
|
48
|
+
_globals['_LISTCLOSEDWORKFLOWEXECUTIONSREQUEST']._serialized_end=1170
|
|
49
|
+
_globals['_LISTCLOSEDWORKFLOWEXECUTIONSRESPONSE']._serialized_start=1172
|
|
50
|
+
_globals['_LISTCLOSEDWORKFLOWEXECUTIONSRESPONSE']._serialized_end=1299
|
|
51
|
+
_globals['_LISTARCHIVEDWORKFLOWEXECUTIONSREQUEST']._serialized_start=1301
|
|
52
|
+
_globals['_LISTARCHIVEDWORKFLOWEXECUTIONSREQUEST']._serialized_end=1415
|
|
53
|
+
_globals['_LISTARCHIVEDWORKFLOWEXECUTIONSRESPONSE']._serialized_start=1418
|
|
54
|
+
_globals['_LISTARCHIVEDWORKFLOWEXECUTIONSRESPONSE']._serialized_end=1547
|
|
55
|
+
_globals['_SCANWORKFLOWEXECUTIONSREQUEST']._serialized_start=1549
|
|
56
|
+
_globals['_SCANWORKFLOWEXECUTIONSREQUEST']._serialized_end=1655
|
|
57
|
+
_globals['_SCANWORKFLOWEXECUTIONSRESPONSE']._serialized_start=1657
|
|
58
|
+
_globals['_SCANWORKFLOWEXECUTIONSRESPONSE']._serialized_end=1778
|
|
59
|
+
_globals['_COUNTWORKFLOWEXECUTIONSREQUEST']._serialized_start=1780
|
|
60
|
+
_globals['_COUNTWORKFLOWEXECUTIONSREQUEST']._serialized_end=1843
|
|
61
|
+
_globals['_COUNTWORKFLOWEXECUTIONSRESPONSE']._serialized_start=1845
|
|
62
|
+
_globals['_COUNTWORKFLOWEXECUTIONSRESPONSE']._serialized_end=1893
|
|
63
|
+
_globals['_GETSEARCHATTRIBUTESREQUEST']._serialized_start=1895
|
|
64
|
+
_globals['_GETSEARCHATTRIBUTESREQUEST']._serialized_end=1923
|
|
65
|
+
_globals['_GETSEARCHATTRIBUTESRESPONSE']._serialized_start=1926
|
|
66
|
+
_globals['_GETSEARCHATTRIBUTESRESPONSE']._serialized_end=2113
|
|
67
|
+
_globals['_GETSEARCHATTRIBUTESRESPONSE_KEYSENTRY']._serialized_start=2031
|
|
68
|
+
_globals['_GETSEARCHATTRIBUTESRESPONSE_KEYSENTRY']._serialized_end=2113
|
|
69
|
+
_globals['_VISIBILITYAPI']._serialized_start=2116
|
|
70
|
+
_globals['_VISIBILITYAPI']._serialized_end=3102
|
|
71
|
+
# @@protoc_insertion_point(module_scope)
|