rappel 0.4.1__py3-none-win_amd64.whl → 0.8.1__py3-none-win_amd64.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 rappel might be problematic. Click here for more details.
- proto/ast_pb2.py +79 -75
- proto/ast_pb2.pyi +155 -135
- proto/messages_pb2.py +49 -49
- proto/messages_pb2.pyi +77 -3
- rappel/__init__.py +6 -1
- rappel/actions.py +32 -5
- rappel/bin/boot-rappel-singleton.exe +0 -0
- rappel/bin/rappel-bridge.exe +0 -0
- rappel/bin/start-workers.exe +0 -0
- rappel/bridge.py +48 -48
- rappel/dependencies.py +21 -7
- rappel/exceptions.py +7 -0
- rappel/ir_builder.py +1177 -453
- rappel/registry.py +38 -2
- rappel/schedule.py +80 -12
- rappel/serialization.py +75 -1
- rappel/workflow.py +32 -13
- rappel/workflow_runtime.py +156 -6
- rappel-0.8.1.data/scripts/boot-rappel-singleton.exe +0 -0
- {rappel-0.4.1.data → rappel-0.8.1.data}/scripts/rappel-bridge.exe +0 -0
- {rappel-0.4.1.data → rappel-0.8.1.data}/scripts/start-workers.exe +0 -0
- {rappel-0.4.1.dist-info → rappel-0.8.1.dist-info}/METADATA +24 -5
- rappel-0.8.1.dist-info/RECORD +32 -0
- rappel-0.4.1.data/scripts/boot-rappel-singleton.exe +0 -0
- rappel-0.4.1.dist-info/RECORD +0 -32
- {rappel-0.4.1.dist-info → rappel-0.8.1.dist-info}/WHEEL +0 -0
- {rappel-0.4.1.dist-info → rappel-0.8.1.dist-info}/entry_points.txt +0 -0
proto/ast_pb2.pyi
CHANGED
|
@@ -94,6 +94,31 @@ UNARY_OP_NEG: UnaryOperator.ValueType # 1
|
|
|
94
94
|
UNARY_OP_NOT: UnaryOperator.ValueType # 2
|
|
95
95
|
Global___UnaryOperator: typing_extensions.TypeAlias = UnaryOperator
|
|
96
96
|
|
|
97
|
+
class _GlobalFunction:
|
|
98
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
|
99
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
100
|
+
|
|
101
|
+
class _GlobalFunctionEnumTypeWrapper(
|
|
102
|
+
google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_GlobalFunction.ValueType],
|
|
103
|
+
builtins.type,
|
|
104
|
+
):
|
|
105
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
106
|
+
GLOBAL_FUNCTION_UNSPECIFIED: _GlobalFunction.ValueType # 0
|
|
107
|
+
GLOBAL_FUNCTION_RANGE: _GlobalFunction.ValueType # 1
|
|
108
|
+
GLOBAL_FUNCTION_LEN: _GlobalFunction.ValueType # 2
|
|
109
|
+
GLOBAL_FUNCTION_ENUMERATE: _GlobalFunction.ValueType # 3
|
|
110
|
+
GLOBAL_FUNCTION_ISEXCEPTION: _GlobalFunction.ValueType # 4
|
|
111
|
+
|
|
112
|
+
class GlobalFunction(_GlobalFunction, metaclass=_GlobalFunctionEnumTypeWrapper):
|
|
113
|
+
"""Global (built-in) functions supported by the runtime."""
|
|
114
|
+
|
|
115
|
+
GLOBAL_FUNCTION_UNSPECIFIED: GlobalFunction.ValueType # 0
|
|
116
|
+
GLOBAL_FUNCTION_RANGE: GlobalFunction.ValueType # 1
|
|
117
|
+
GLOBAL_FUNCTION_LEN: GlobalFunction.ValueType # 2
|
|
118
|
+
GLOBAL_FUNCTION_ENUMERATE: GlobalFunction.ValueType # 3
|
|
119
|
+
GLOBAL_FUNCTION_ISEXCEPTION: GlobalFunction.ValueType # 4
|
|
120
|
+
Global___GlobalFunction: typing_extensions.TypeAlias = GlobalFunction
|
|
121
|
+
|
|
97
122
|
@typing.final
|
|
98
123
|
class Program(google.protobuf.message.Message):
|
|
99
124
|
"""-----------------------------------------------------------------------------
|
|
@@ -219,86 +244,6 @@ class Block(google.protobuf.message.Message):
|
|
|
219
244
|
|
|
220
245
|
Global___Block: typing_extensions.TypeAlias = Block
|
|
221
246
|
|
|
222
|
-
@typing.final
|
|
223
|
-
class SingleCallBody(google.protobuf.message.Message):
|
|
224
|
-
"""-----------------------------------------------------------------------------
|
|
225
|
-
Constrained Bodies for Control Flow
|
|
226
|
-
-----------------------------------------------------------------------------
|
|
227
|
-
Control flow structures (for, try, if) have stricter constraints than
|
|
228
|
-
general blocks. These types make the constraints explicit.
|
|
229
|
-
|
|
230
|
-
Body constrained to at most ONE action or function call.
|
|
231
|
-
Used by: TryExcept (try_body, handlers), Conditional branches, ForLoop body
|
|
232
|
-
|
|
233
|
-
Can contain EITHER:
|
|
234
|
-
1. A single call (action or function) with optional assignment target
|
|
235
|
-
2. Pure data statements (no calls) for data manipulation branches
|
|
236
|
-
|
|
237
|
-
Example (with call):
|
|
238
|
-
if score >= 75:
|
|
239
|
-
result = @evaluate_high(score=score)
|
|
240
|
-
|
|
241
|
-
Example (pure data):
|
|
242
|
-
if item in inventory:
|
|
243
|
-
valid_items = valid_items + [item]
|
|
244
|
-
"""
|
|
245
|
-
|
|
246
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
247
|
-
|
|
248
|
-
TARGETS_FIELD_NUMBER: builtins.int
|
|
249
|
-
CALL_FIELD_NUMBER: builtins.int
|
|
250
|
-
STATEMENTS_FIELD_NUMBER: builtins.int
|
|
251
|
-
SPAN_FIELD_NUMBER: builtins.int
|
|
252
|
-
@property
|
|
253
|
-
def targets(
|
|
254
|
-
self,
|
|
255
|
-
) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
256
|
-
"""Variables to assign result (supports tuple unpacking)"""
|
|
257
|
-
|
|
258
|
-
@property
|
|
259
|
-
def call(self) -> Global___Call:
|
|
260
|
-
"""The single call (optional - missing = pure data)"""
|
|
261
|
-
|
|
262
|
-
@property
|
|
263
|
-
def statements(
|
|
264
|
-
self,
|
|
265
|
-
) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[Global___Statement]:
|
|
266
|
-
"""Pure data statements (if no call)"""
|
|
267
|
-
|
|
268
|
-
@property
|
|
269
|
-
def span(self) -> Global___Span: ...
|
|
270
|
-
def __init__(
|
|
271
|
-
self,
|
|
272
|
-
*,
|
|
273
|
-
targets: collections.abc.Iterable[builtins.str] | None = ...,
|
|
274
|
-
call: Global___Call | None = ...,
|
|
275
|
-
statements: collections.abc.Iterable[Global___Statement] | None = ...,
|
|
276
|
-
span: Global___Span | None = ...,
|
|
277
|
-
) -> None: ...
|
|
278
|
-
def HasField(
|
|
279
|
-
self, field_name: typing.Literal["_call", b"_call", "call", b"call", "span", b"span"]
|
|
280
|
-
) -> builtins.bool: ...
|
|
281
|
-
def ClearField(
|
|
282
|
-
self,
|
|
283
|
-
field_name: typing.Literal[
|
|
284
|
-
"_call",
|
|
285
|
-
b"_call",
|
|
286
|
-
"call",
|
|
287
|
-
b"call",
|
|
288
|
-
"span",
|
|
289
|
-
b"span",
|
|
290
|
-
"statements",
|
|
291
|
-
b"statements",
|
|
292
|
-
"targets",
|
|
293
|
-
b"targets",
|
|
294
|
-
],
|
|
295
|
-
) -> None: ...
|
|
296
|
-
def WhichOneof(
|
|
297
|
-
self, oneof_group: typing.Literal["_call", b"_call"]
|
|
298
|
-
) -> typing.Literal["call"] | None: ...
|
|
299
|
-
|
|
300
|
-
Global___SingleCallBody: typing_extensions.TypeAlias = SingleCallBody
|
|
301
|
-
|
|
302
247
|
@typing.final
|
|
303
248
|
class Statement(google.protobuf.message.Message):
|
|
304
249
|
"""-----------------------------------------------------------------------------
|
|
@@ -317,6 +262,8 @@ class Statement(google.protobuf.message.Message):
|
|
|
317
262
|
TRY_EXCEPT_FIELD_NUMBER: builtins.int
|
|
318
263
|
RETURN_STMT_FIELD_NUMBER: builtins.int
|
|
319
264
|
EXPR_STMT_FIELD_NUMBER: builtins.int
|
|
265
|
+
BREAK_STMT_FIELD_NUMBER: builtins.int
|
|
266
|
+
CONTINUE_STMT_FIELD_NUMBER: builtins.int
|
|
320
267
|
SPAN_FIELD_NUMBER: builtins.int
|
|
321
268
|
@property
|
|
322
269
|
def assignment(self) -> Global___Assignment: ...
|
|
@@ -337,6 +284,10 @@ class Statement(google.protobuf.message.Message):
|
|
|
337
284
|
@property
|
|
338
285
|
def expr_stmt(self) -> Global___ExprStmt: ...
|
|
339
286
|
@property
|
|
287
|
+
def break_stmt(self) -> Global___BreakStmt: ...
|
|
288
|
+
@property
|
|
289
|
+
def continue_stmt(self) -> Global___ContinueStmt: ...
|
|
290
|
+
@property
|
|
340
291
|
def span(self) -> Global___Span: ...
|
|
341
292
|
def __init__(
|
|
342
293
|
self,
|
|
@@ -350,6 +301,8 @@ class Statement(google.protobuf.message.Message):
|
|
|
350
301
|
try_except: Global___TryExcept | None = ...,
|
|
351
302
|
return_stmt: Global___ReturnStmt | None = ...,
|
|
352
303
|
expr_stmt: Global___ExprStmt | None = ...,
|
|
304
|
+
break_stmt: Global___BreakStmt | None = ...,
|
|
305
|
+
continue_stmt: Global___ContinueStmt | None = ...,
|
|
353
306
|
span: Global___Span | None = ...,
|
|
354
307
|
) -> None: ...
|
|
355
308
|
def HasField(
|
|
@@ -359,8 +312,12 @@ class Statement(google.protobuf.message.Message):
|
|
|
359
312
|
b"action_call",
|
|
360
313
|
"assignment",
|
|
361
314
|
b"assignment",
|
|
315
|
+
"break_stmt",
|
|
316
|
+
b"break_stmt",
|
|
362
317
|
"conditional",
|
|
363
318
|
b"conditional",
|
|
319
|
+
"continue_stmt",
|
|
320
|
+
b"continue_stmt",
|
|
364
321
|
"expr_stmt",
|
|
365
322
|
b"expr_stmt",
|
|
366
323
|
"for_loop",
|
|
@@ -386,8 +343,12 @@ class Statement(google.protobuf.message.Message):
|
|
|
386
343
|
b"action_call",
|
|
387
344
|
"assignment",
|
|
388
345
|
b"assignment",
|
|
346
|
+
"break_stmt",
|
|
347
|
+
b"break_stmt",
|
|
389
348
|
"conditional",
|
|
390
349
|
b"conditional",
|
|
350
|
+
"continue_stmt",
|
|
351
|
+
b"continue_stmt",
|
|
391
352
|
"expr_stmt",
|
|
392
353
|
b"expr_stmt",
|
|
393
354
|
"for_loop",
|
|
@@ -419,12 +380,38 @@ class Statement(google.protobuf.message.Message):
|
|
|
419
380
|
"try_except",
|
|
420
381
|
"return_stmt",
|
|
421
382
|
"expr_stmt",
|
|
383
|
+
"break_stmt",
|
|
384
|
+
"continue_stmt",
|
|
422
385
|
]
|
|
423
386
|
| None
|
|
424
387
|
): ...
|
|
425
388
|
|
|
426
389
|
Global___Statement: typing_extensions.TypeAlias = Statement
|
|
427
390
|
|
|
391
|
+
@typing.final
|
|
392
|
+
class BreakStmt(google.protobuf.message.Message):
|
|
393
|
+
"""Break statement (exits innermost loop)"""
|
|
394
|
+
|
|
395
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
396
|
+
|
|
397
|
+
def __init__(
|
|
398
|
+
self,
|
|
399
|
+
) -> None: ...
|
|
400
|
+
|
|
401
|
+
Global___BreakStmt: typing_extensions.TypeAlias = BreakStmt
|
|
402
|
+
|
|
403
|
+
@typing.final
|
|
404
|
+
class ContinueStmt(google.protobuf.message.Message):
|
|
405
|
+
"""Continue statement (skips to next iteration of innermost loop)"""
|
|
406
|
+
|
|
407
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
408
|
+
|
|
409
|
+
def __init__(
|
|
410
|
+
self,
|
|
411
|
+
) -> None: ...
|
|
412
|
+
|
|
413
|
+
Global___ContinueStmt: typing_extensions.TypeAlias = ContinueStmt
|
|
414
|
+
|
|
428
415
|
@typing.final
|
|
429
416
|
class Assignment(google.protobuf.message.Message):
|
|
430
417
|
"""Variable assignment: x = expr"""
|
|
@@ -613,16 +600,13 @@ Global___Call: typing_extensions.TypeAlias = Call
|
|
|
613
600
|
|
|
614
601
|
@typing.final
|
|
615
602
|
class ForLoop(google.protobuf.message.Message):
|
|
616
|
-
"""For loop: for
|
|
617
|
-
Body is constrained to at most ONE action or function call per iteration.
|
|
618
|
-
Use SpreadAction for parallel iteration over collections.
|
|
619
|
-
"""
|
|
603
|
+
"""For loop: for item in items: ..."""
|
|
620
604
|
|
|
621
605
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
622
606
|
|
|
623
607
|
LOOP_VARS_FIELD_NUMBER: builtins.int
|
|
624
608
|
ITERABLE_FIELD_NUMBER: builtins.int
|
|
625
|
-
|
|
609
|
+
BLOCK_BODY_FIELD_NUMBER: builtins.int
|
|
626
610
|
@property
|
|
627
611
|
def loop_vars(
|
|
628
612
|
self,
|
|
@@ -632,23 +616,21 @@ class ForLoop(google.protobuf.message.Message):
|
|
|
632
616
|
@property
|
|
633
617
|
def iterable(self) -> Global___Expr: ...
|
|
634
618
|
@property
|
|
635
|
-
def
|
|
636
|
-
"""Single call body (one action/fn per iteration)"""
|
|
637
|
-
|
|
619
|
+
def block_body(self) -> Global___Block: ...
|
|
638
620
|
def __init__(
|
|
639
621
|
self,
|
|
640
622
|
*,
|
|
641
623
|
loop_vars: collections.abc.Iterable[builtins.str] | None = ...,
|
|
642
624
|
iterable: Global___Expr | None = ...,
|
|
643
|
-
|
|
625
|
+
block_body: Global___Block | None = ...,
|
|
644
626
|
) -> None: ...
|
|
645
627
|
def HasField(
|
|
646
|
-
self, field_name: typing.Literal["
|
|
628
|
+
self, field_name: typing.Literal["block_body", b"block_body", "iterable", b"iterable"]
|
|
647
629
|
) -> builtins.bool: ...
|
|
648
630
|
def ClearField(
|
|
649
631
|
self,
|
|
650
632
|
field_name: typing.Literal[
|
|
651
|
-
"
|
|
633
|
+
"block_body", b"block_body", "iterable", b"iterable", "loop_vars", b"loop_vars"
|
|
652
634
|
],
|
|
653
635
|
) -> None: ...
|
|
654
636
|
|
|
@@ -715,30 +697,32 @@ class IfBranch(google.protobuf.message.Message):
|
|
|
715
697
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
716
698
|
|
|
717
699
|
CONDITION_FIELD_NUMBER: builtins.int
|
|
718
|
-
BODY_FIELD_NUMBER: builtins.int
|
|
719
700
|
SPAN_FIELD_NUMBER: builtins.int
|
|
701
|
+
BLOCK_BODY_FIELD_NUMBER: builtins.int
|
|
720
702
|
@property
|
|
721
703
|
def condition(self) -> Global___Expr: ...
|
|
722
|
-
@property
|
|
723
|
-
def body(self) -> Global___SingleCallBody:
|
|
724
|
-
"""Single call body"""
|
|
725
|
-
|
|
726
704
|
@property
|
|
727
705
|
def span(self) -> Global___Span: ...
|
|
706
|
+
@property
|
|
707
|
+
def block_body(self) -> Global___Block: ...
|
|
728
708
|
def __init__(
|
|
729
709
|
self,
|
|
730
710
|
*,
|
|
731
711
|
condition: Global___Expr | None = ...,
|
|
732
|
-
body: Global___SingleCallBody | None = ...,
|
|
733
712
|
span: Global___Span | None = ...,
|
|
713
|
+
block_body: Global___Block | None = ...,
|
|
734
714
|
) -> None: ...
|
|
735
715
|
def HasField(
|
|
736
716
|
self,
|
|
737
|
-
field_name: typing.Literal[
|
|
717
|
+
field_name: typing.Literal[
|
|
718
|
+
"block_body", b"block_body", "condition", b"condition", "span", b"span"
|
|
719
|
+
],
|
|
738
720
|
) -> builtins.bool: ...
|
|
739
721
|
def ClearField(
|
|
740
722
|
self,
|
|
741
|
-
field_name: typing.Literal[
|
|
723
|
+
field_name: typing.Literal[
|
|
724
|
+
"block_body", b"block_body", "condition", b"condition", "span", b"span"
|
|
725
|
+
],
|
|
742
726
|
) -> None: ...
|
|
743
727
|
|
|
744
728
|
Global___IfBranch: typing_extensions.TypeAlias = IfBranch
|
|
@@ -748,30 +732,32 @@ class ElifBranch(google.protobuf.message.Message):
|
|
|
748
732
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
749
733
|
|
|
750
734
|
CONDITION_FIELD_NUMBER: builtins.int
|
|
751
|
-
BODY_FIELD_NUMBER: builtins.int
|
|
752
735
|
SPAN_FIELD_NUMBER: builtins.int
|
|
736
|
+
BLOCK_BODY_FIELD_NUMBER: builtins.int
|
|
753
737
|
@property
|
|
754
738
|
def condition(self) -> Global___Expr: ...
|
|
755
|
-
@property
|
|
756
|
-
def body(self) -> Global___SingleCallBody:
|
|
757
|
-
"""Single call body"""
|
|
758
|
-
|
|
759
739
|
@property
|
|
760
740
|
def span(self) -> Global___Span: ...
|
|
741
|
+
@property
|
|
742
|
+
def block_body(self) -> Global___Block: ...
|
|
761
743
|
def __init__(
|
|
762
744
|
self,
|
|
763
745
|
*,
|
|
764
746
|
condition: Global___Expr | None = ...,
|
|
765
|
-
body: Global___SingleCallBody | None = ...,
|
|
766
747
|
span: Global___Span | None = ...,
|
|
748
|
+
block_body: Global___Block | None = ...,
|
|
767
749
|
) -> None: ...
|
|
768
750
|
def HasField(
|
|
769
751
|
self,
|
|
770
|
-
field_name: typing.Literal[
|
|
752
|
+
field_name: typing.Literal[
|
|
753
|
+
"block_body", b"block_body", "condition", b"condition", "span", b"span"
|
|
754
|
+
],
|
|
771
755
|
) -> builtins.bool: ...
|
|
772
756
|
def ClearField(
|
|
773
757
|
self,
|
|
774
|
-
field_name: typing.Literal[
|
|
758
|
+
field_name: typing.Literal[
|
|
759
|
+
"block_body", b"block_body", "condition", b"condition", "span", b"span"
|
|
760
|
+
],
|
|
775
761
|
) -> None: ...
|
|
776
762
|
|
|
777
763
|
Global___ElifBranch: typing_extensions.TypeAlias = ElifBranch
|
|
@@ -780,56 +766,52 @@ Global___ElifBranch: typing_extensions.TypeAlias = ElifBranch
|
|
|
780
766
|
class ElseBranch(google.protobuf.message.Message):
|
|
781
767
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
782
768
|
|
|
783
|
-
BODY_FIELD_NUMBER: builtins.int
|
|
784
769
|
SPAN_FIELD_NUMBER: builtins.int
|
|
785
|
-
|
|
786
|
-
def body(self) -> Global___SingleCallBody:
|
|
787
|
-
"""Single call body"""
|
|
788
|
-
|
|
770
|
+
BLOCK_BODY_FIELD_NUMBER: builtins.int
|
|
789
771
|
@property
|
|
790
772
|
def span(self) -> Global___Span: ...
|
|
773
|
+
@property
|
|
774
|
+
def block_body(self) -> Global___Block: ...
|
|
791
775
|
def __init__(
|
|
792
776
|
self,
|
|
793
777
|
*,
|
|
794
|
-
body: Global___SingleCallBody | None = ...,
|
|
795
778
|
span: Global___Span | None = ...,
|
|
779
|
+
block_body: Global___Block | None = ...,
|
|
796
780
|
) -> None: ...
|
|
797
781
|
def HasField(
|
|
798
|
-
self, field_name: typing.Literal["
|
|
782
|
+
self, field_name: typing.Literal["block_body", b"block_body", "span", b"span"]
|
|
799
783
|
) -> builtins.bool: ...
|
|
800
|
-
def ClearField(
|
|
784
|
+
def ClearField(
|
|
785
|
+
self, field_name: typing.Literal["block_body", b"block_body", "span", b"span"]
|
|
786
|
+
) -> None: ...
|
|
801
787
|
|
|
802
788
|
Global___ElseBranch: typing_extensions.TypeAlias = ElseBranch
|
|
803
789
|
|
|
804
790
|
@typing.final
|
|
805
791
|
class TryExcept(google.protobuf.message.Message):
|
|
806
|
-
"""Try/except block
|
|
807
|
-
Both try body and handlers are constrained to single calls.
|
|
808
|
-
"""
|
|
792
|
+
"""Try/except block"""
|
|
809
793
|
|
|
810
794
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
811
795
|
|
|
812
|
-
TRY_BODY_FIELD_NUMBER: builtins.int
|
|
813
796
|
HANDLERS_FIELD_NUMBER: builtins.int
|
|
814
|
-
|
|
815
|
-
def try_body(self) -> Global___SingleCallBody:
|
|
816
|
-
"""Single call body"""
|
|
817
|
-
|
|
797
|
+
TRY_BLOCK_FIELD_NUMBER: builtins.int
|
|
818
798
|
@property
|
|
819
799
|
def handlers(
|
|
820
800
|
self,
|
|
821
801
|
) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
|
|
822
802
|
Global___ExceptHandler
|
|
823
803
|
]: ...
|
|
804
|
+
@property
|
|
805
|
+
def try_block(self) -> Global___Block: ...
|
|
824
806
|
def __init__(
|
|
825
807
|
self,
|
|
826
808
|
*,
|
|
827
|
-
try_body: Global___SingleCallBody | None = ...,
|
|
828
809
|
handlers: collections.abc.Iterable[Global___ExceptHandler] | None = ...,
|
|
810
|
+
try_block: Global___Block | None = ...,
|
|
829
811
|
) -> None: ...
|
|
830
|
-
def HasField(self, field_name: typing.Literal["
|
|
812
|
+
def HasField(self, field_name: typing.Literal["try_block", b"try_block"]) -> builtins.bool: ...
|
|
831
813
|
def ClearField(
|
|
832
|
-
self, field_name: typing.Literal["handlers", b"handlers", "
|
|
814
|
+
self, field_name: typing.Literal["handlers", b"handlers", "try_block", b"try_block"]
|
|
833
815
|
) -> None: ...
|
|
834
816
|
|
|
835
817
|
Global___TryExcept: typing_extensions.TypeAlias = TryExcept
|
|
@@ -839,36 +821,60 @@ class ExceptHandler(google.protobuf.message.Message):
|
|
|
839
821
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
840
822
|
|
|
841
823
|
EXCEPTION_TYPES_FIELD_NUMBER: builtins.int
|
|
842
|
-
BODY_FIELD_NUMBER: builtins.int
|
|
843
824
|
SPAN_FIELD_NUMBER: builtins.int
|
|
825
|
+
BLOCK_BODY_FIELD_NUMBER: builtins.int
|
|
826
|
+
EXCEPTION_VAR_FIELD_NUMBER: builtins.int
|
|
827
|
+
exception_var: builtins.str
|
|
828
|
+
"""Variable name for "except ... as var" """
|
|
844
829
|
@property
|
|
845
830
|
def exception_types(
|
|
846
831
|
self,
|
|
847
832
|
) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
848
833
|
"""Empty = catch all"""
|
|
849
834
|
|
|
850
|
-
@property
|
|
851
|
-
def body(self) -> Global___SingleCallBody:
|
|
852
|
-
"""Single call body"""
|
|
853
|
-
|
|
854
835
|
@property
|
|
855
836
|
def span(self) -> Global___Span: ...
|
|
837
|
+
@property
|
|
838
|
+
def block_body(self) -> Global___Block: ...
|
|
856
839
|
def __init__(
|
|
857
840
|
self,
|
|
858
841
|
*,
|
|
859
842
|
exception_types: collections.abc.Iterable[builtins.str] | None = ...,
|
|
860
|
-
body: Global___SingleCallBody | None = ...,
|
|
861
843
|
span: Global___Span | None = ...,
|
|
844
|
+
block_body: Global___Block | None = ...,
|
|
845
|
+
exception_var: builtins.str | None = ...,
|
|
862
846
|
) -> None: ...
|
|
863
847
|
def HasField(
|
|
864
|
-
self,
|
|
848
|
+
self,
|
|
849
|
+
field_name: typing.Literal[
|
|
850
|
+
"_exception_var",
|
|
851
|
+
b"_exception_var",
|
|
852
|
+
"block_body",
|
|
853
|
+
b"block_body",
|
|
854
|
+
"exception_var",
|
|
855
|
+
b"exception_var",
|
|
856
|
+
"span",
|
|
857
|
+
b"span",
|
|
858
|
+
],
|
|
865
859
|
) -> builtins.bool: ...
|
|
866
860
|
def ClearField(
|
|
867
861
|
self,
|
|
868
862
|
field_name: typing.Literal[
|
|
869
|
-
"
|
|
863
|
+
"_exception_var",
|
|
864
|
+
b"_exception_var",
|
|
865
|
+
"block_body",
|
|
866
|
+
b"block_body",
|
|
867
|
+
"exception_types",
|
|
868
|
+
b"exception_types",
|
|
869
|
+
"exception_var",
|
|
870
|
+
b"exception_var",
|
|
871
|
+
"span",
|
|
872
|
+
b"span",
|
|
870
873
|
],
|
|
871
874
|
) -> None: ...
|
|
875
|
+
def WhichOneof(
|
|
876
|
+
self, oneof_group: typing.Literal["_exception_var", b"_exception_var"]
|
|
877
|
+
) -> typing.Literal["exception_var"] | None: ...
|
|
872
878
|
|
|
873
879
|
Global___ExceptHandler: typing_extensions.TypeAlias = ExceptHandler
|
|
874
880
|
|
|
@@ -1340,7 +1346,10 @@ class FunctionCall(google.protobuf.message.Message):
|
|
|
1340
1346
|
NAME_FIELD_NUMBER: builtins.int
|
|
1341
1347
|
ARGS_FIELD_NUMBER: builtins.int
|
|
1342
1348
|
KWARGS_FIELD_NUMBER: builtins.int
|
|
1349
|
+
GLOBAL_FUNCTION_FIELD_NUMBER: builtins.int
|
|
1343
1350
|
name: builtins.str
|
|
1351
|
+
global_function: Global___GlobalFunction.ValueType
|
|
1352
|
+
"""Global function identifier (if applicable)"""
|
|
1344
1353
|
@property
|
|
1345
1354
|
def args(
|
|
1346
1355
|
self,
|
|
@@ -1359,9 +1368,20 @@ class FunctionCall(google.protobuf.message.Message):
|
|
|
1359
1368
|
name: builtins.str = ...,
|
|
1360
1369
|
args: collections.abc.Iterable[Global___Expr] | None = ...,
|
|
1361
1370
|
kwargs: collections.abc.Iterable[Global___Kwarg] | None = ...,
|
|
1371
|
+
global_function: Global___GlobalFunction.ValueType = ...,
|
|
1362
1372
|
) -> None: ...
|
|
1363
1373
|
def ClearField(
|
|
1364
|
-
self,
|
|
1374
|
+
self,
|
|
1375
|
+
field_name: typing.Literal[
|
|
1376
|
+
"args",
|
|
1377
|
+
b"args",
|
|
1378
|
+
"global_function",
|
|
1379
|
+
b"global_function",
|
|
1380
|
+
"kwargs",
|
|
1381
|
+
b"kwargs",
|
|
1382
|
+
"name",
|
|
1383
|
+
b"name",
|
|
1384
|
+
],
|
|
1365
1385
|
) -> None: ...
|
|
1366
1386
|
|
|
1367
1387
|
Global___FunctionCall: typing_extensions.TypeAlias = FunctionCall
|
proto/messages_pb2.py
CHANGED
|
@@ -28,19 +28,19 @@ _sym_db.RegisterFileDescriptor(google_dot_protobuf_dot_struct__pb2.DESCRIPTOR)
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0emessages.proto\x12\x0frappel.messages\x1a\x1cgoogle/protobuf/struct.proto\"r\n\x08\x45nvelope\x12\x13\n\x0b\x64\x65livery_id\x18\x01 \x01(\x04\x12\x14\n\x0cpartition_id\x18\x02 \x01(\r\x12*\n\x04kind\x18\x03 \x01(\x0e\x32\x1c.rappel.messages.MessageKind\x12\x0f\n\x07payload\x18\x04 \x01(\x0c\"\xe4\x02\n\x0e\x41\x63tionDispatch\x12\x11\n\taction_id\x18\x01 \x01(\t\x12\x13\n\x0binstance_id\x18\x02 \x01(\t\x12\x10\n\x08sequence\x18\x03 \x01(\r\x12\x13\n\x0b\x61\x63tion_name\x18\x04 \x01(\t\x12\x13\n\x0bmodule_name\x18\x05 \x01(\t\x12\x32\n\x06kwargs\x18\x06 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12\x1c\n\x0ftimeout_seconds\x18\x07 \x01(\rH\x00\x88\x01\x01\x12\x18\n\x0bmax_retries\x18\x08 \x01(\rH\x01\x88\x01\x01\x12\x1b\n\x0e\x61ttempt_number\x18\t \x01(\rH\x02\x88\x01\x01\x12\x1b\n\x0e\x64ispatch_token\x18\n \x01(\tH\x03\x88\x01\x01\x42\x12\n\x10_timeout_secondsB\x0e\n\x0c_max_retriesB\x11\n\x0f_attempt_numberB\x11\n\x0f_dispatch_token\"\x9d\x02\n\x0c\x41\x63tionResult\x12\x11\n\taction_id\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x33\n\x07payload\x18\x03 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12\x17\n\x0fworker_start_ns\x18\x04 \x01(\x04\x12\x15\n\rworker_end_ns\x18\x05 \x01(\x04\x12\x1b\n\x0e\x64ispatch_token\x18\x06 \x01(\tH\x00\x88\x01\x01\x12\x17\n\nerror_type\x18\x07 \x01(\tH\x01\x88\x01\x01\x12\x1a\n\rerror_message\x18\x08 \x01(\tH\x02\x88\x01\x01\x42\x11\n\x0f_dispatch_tokenB\r\n\x0b_error_typeB\x10\n\x0e_error_message\" \n\x03\x41\x63k\x12\x19\n\x11\x61\x63ked_delivery_id\x18\x01 \x01(\x04\" \n\x0bWorkerHello\x12\x11\n\tworker_id\x18\x01 \x01(\x04\"\x94\x03\n\x15WorkflowArgumentValue\x12?\n\tprimitive\x18\x01 \x01(\x0b\x32*.rappel.messages.PrimitiveWorkflowArgumentH\x00\x12?\n\tbasemodel\x18\x02 \x01(\x0b\x32*.rappel.messages.BaseModelWorkflowArgumentH\x00\x12\x38\n\texception\x18\x03 \x01(\x0b\x32#.rappel.messages.WorkflowErrorValueH\x00\x12;\n\nlist_value\x18\x04 \x01(\x0b\x32%.rappel.messages.WorkflowListArgumentH\x00\x12=\n\x0btuple_value\x18\x05 \x01(\x0b\x32&.rappel.messages.WorkflowTupleArgumentH\x00\x12;\n\ndict_value\x18\x06 \x01(\x0b\x32%.rappel.messages.WorkflowDictArgumentH\x00\x42\x06\n\x04kind\"V\n\x10WorkflowArgument\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.rappel.messages.WorkflowArgumentValue\"I\n\x11WorkflowArguments\x12\x34\n\targuments\x18\x01 \x03(\x0b\x32!.rappel.messages.WorkflowArgument\"\xb0\x01\n\x19PrimitiveWorkflowArgument\x12\x16\n\x0cstring_value\x18\x01 \x01(\tH\x00\x12\x16\n\x0c\x64ouble_value\x18\x02 \x01(\x01H\x00\x12\x13\n\tint_value\x18\x03 \x01(\x12H\x00\x12\x14\n\nbool_value\x18\x04 \x01(\x08H\x00\x12\x30\n\nnull_value\x18\x05 \x01(\x0e\x32\x1a.google.protobuf.NullValueH\x00\x42\x06\n\x04kind\"n\n\x19\x42\x61seModelWorkflowArgument\x12\x0e\n\x06module\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x33\n\x04\x64\x61ta\x18\x03 \x01(\x0b\x32%.rappel.messages.WorkflowDictArgument\"
|
|
31
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0emessages.proto\x12\x0frappel.messages\x1a\x1cgoogle/protobuf/struct.proto\"r\n\x08\x45nvelope\x12\x13\n\x0b\x64\x65livery_id\x18\x01 \x01(\x04\x12\x14\n\x0cpartition_id\x18\x02 \x01(\r\x12*\n\x04kind\x18\x03 \x01(\x0e\x32\x1c.rappel.messages.MessageKind\x12\x0f\n\x07payload\x18\x04 \x01(\x0c\"\xe4\x02\n\x0e\x41\x63tionDispatch\x12\x11\n\taction_id\x18\x01 \x01(\t\x12\x13\n\x0binstance_id\x18\x02 \x01(\t\x12\x10\n\x08sequence\x18\x03 \x01(\r\x12\x13\n\x0b\x61\x63tion_name\x18\x04 \x01(\t\x12\x13\n\x0bmodule_name\x18\x05 \x01(\t\x12\x32\n\x06kwargs\x18\x06 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12\x1c\n\x0ftimeout_seconds\x18\x07 \x01(\rH\x00\x88\x01\x01\x12\x18\n\x0bmax_retries\x18\x08 \x01(\rH\x01\x88\x01\x01\x12\x1b\n\x0e\x61ttempt_number\x18\t \x01(\rH\x02\x88\x01\x01\x12\x1b\n\x0e\x64ispatch_token\x18\n \x01(\tH\x03\x88\x01\x01\x42\x12\n\x10_timeout_secondsB\x0e\n\x0c_max_retriesB\x11\n\x0f_attempt_numberB\x11\n\x0f_dispatch_token\"\x9d\x02\n\x0c\x41\x63tionResult\x12\x11\n\taction_id\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x33\n\x07payload\x18\x03 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12\x17\n\x0fworker_start_ns\x18\x04 \x01(\x04\x12\x15\n\rworker_end_ns\x18\x05 \x01(\x04\x12\x1b\n\x0e\x64ispatch_token\x18\x06 \x01(\tH\x00\x88\x01\x01\x12\x17\n\nerror_type\x18\x07 \x01(\tH\x01\x88\x01\x01\x12\x1a\n\rerror_message\x18\x08 \x01(\tH\x02\x88\x01\x01\x42\x11\n\x0f_dispatch_tokenB\r\n\x0b_error_typeB\x10\n\x0e_error_message\" \n\x03\x41\x63k\x12\x19\n\x11\x61\x63ked_delivery_id\x18\x01 \x01(\x04\" \n\x0bWorkerHello\x12\x11\n\tworker_id\x18\x01 \x01(\x04\"\x94\x03\n\x15WorkflowArgumentValue\x12?\n\tprimitive\x18\x01 \x01(\x0b\x32*.rappel.messages.PrimitiveWorkflowArgumentH\x00\x12?\n\tbasemodel\x18\x02 \x01(\x0b\x32*.rappel.messages.BaseModelWorkflowArgumentH\x00\x12\x38\n\texception\x18\x03 \x01(\x0b\x32#.rappel.messages.WorkflowErrorValueH\x00\x12;\n\nlist_value\x18\x04 \x01(\x0b\x32%.rappel.messages.WorkflowListArgumentH\x00\x12=\n\x0btuple_value\x18\x05 \x01(\x0b\x32&.rappel.messages.WorkflowTupleArgumentH\x00\x12;\n\ndict_value\x18\x06 \x01(\x0b\x32%.rappel.messages.WorkflowDictArgumentH\x00\x42\x06\n\x04kind\"V\n\x10WorkflowArgument\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.rappel.messages.WorkflowArgumentValue\"I\n\x11WorkflowArguments\x12\x34\n\targuments\x18\x01 \x03(\x0b\x32!.rappel.messages.WorkflowArgument\"\xb0\x01\n\x19PrimitiveWorkflowArgument\x12\x16\n\x0cstring_value\x18\x01 \x01(\tH\x00\x12\x16\n\x0c\x64ouble_value\x18\x02 \x01(\x01H\x00\x12\x13\n\tint_value\x18\x03 \x01(\x12H\x00\x12\x14\n\nbool_value\x18\x04 \x01(\x08H\x00\x12\x30\n\nnull_value\x18\x05 \x01(\x0e\x32\x1a.google.protobuf.NullValueH\x00\x42\x06\n\x04kind\"n\n\x19\x42\x61seModelWorkflowArgument\x12\x0e\n\x06module\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x33\n\x04\x64\x61ta\x18\x03 \x01(\x0b\x32%.rappel.messages.WorkflowDictArgument\"\xa5\x01\n\x12WorkflowErrorValue\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x0e\n\x06module\x18\x02 \x01(\t\x12\x0f\n\x07message\x18\x03 \x01(\t\x12\x11\n\ttraceback\x18\x04 \x01(\t\x12\x35\n\x06values\x18\x05 \x01(\x0b\x32%.rappel.messages.WorkflowDictArgument\x12\x16\n\x0etype_hierarchy\x18\x06 \x03(\t\"M\n\x14WorkflowListArgument\x12\x35\n\x05items\x18\x01 \x03(\x0b\x32&.rappel.messages.WorkflowArgumentValue\"N\n\x15WorkflowTupleArgument\x12\x35\n\x05items\x18\x01 \x03(\x0b\x32&.rappel.messages.WorkflowArgumentValue\"J\n\x14WorkflowDictArgument\x12\x32\n\x07\x65ntries\x18\x01 \x03(\x0b\x32!.rappel.messages.WorkflowArgument\"\x9b\x01\n\x14WorkflowRegistration\x12\x15\n\rworkflow_name\x18\x01 \x01(\t\x12\n\n\x02ir\x18\x02 \x01(\x0c\x12\x0f\n\x07ir_hash\x18\x03 \x01(\t\x12;\n\x0finitial_context\x18\x04 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12\x12\n\nconcurrent\x18\x05 \x01(\x08\"V\n\x17RegisterWorkflowRequest\x12;\n\x0cregistration\x18\x01 \x01(\x0b\x32%.rappel.messages.WorkflowRegistration\"U\n\x18RegisterWorkflowResponse\x12\x1b\n\x13workflow_version_id\x18\x01 \x01(\t\x12\x1c\n\x14workflow_instance_id\x18\x02 \x01(\t\"I\n\x16WaitForInstanceRequest\x12\x13\n\x0binstance_id\x18\x01 \x01(\t\x12\x1a\n\x12poll_interval_secs\x18\x02 \x01(\x01\"*\n\x17WaitForInstanceResponse\x12\x0f\n\x07payload\x18\x01 \x01(\x0c\"\x8c\x01\n\x12ScheduleDefinition\x12+\n\x04type\x18\x01 \x01(\x0e\x32\x1d.rappel.messages.ScheduleType\x12\x17\n\x0f\x63ron_expression\x18\x02 \x01(\t\x12\x18\n\x10interval_seconds\x18\x03 \x01(\x03\x12\x16\n\x0ejitter_seconds\x18\x04 \x01(\x03\"\xef\x01\n\x17RegisterScheduleRequest\x12\x15\n\rworkflow_name\x18\x01 \x01(\t\x12\x35\n\x08schedule\x18\x02 \x01(\x0b\x32#.rappel.messages.ScheduleDefinition\x12\x32\n\x06inputs\x18\x03 \x01(\x0b\x32\".rappel.messages.WorkflowArguments\x12;\n\x0cregistration\x18\x04 \x01(\x0b\x32%.rappel.messages.WorkflowRegistration\x12\x15\n\rschedule_name\x18\x05 \x01(\t\"D\n\x18RegisterScheduleResponse\x12\x13\n\x0bschedule_id\x18\x01 \x01(\t\x12\x13\n\x0bnext_run_at\x18\x02 \x01(\t\"|\n\x1bUpdateScheduleStatusRequest\x12\x15\n\rworkflow_name\x18\x01 \x01(\t\x12/\n\x06status\x18\x02 \x01(\x0e\x32\x1f.rappel.messages.ScheduleStatus\x12\x15\n\rschedule_name\x18\x03 \x01(\t\"/\n\x1cUpdateScheduleStatusResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\"E\n\x15\x44\x65leteScheduleRequest\x12\x15\n\rworkflow_name\x18\x01 \x01(\t\x12\x15\n\rschedule_name\x18\x02 \x01(\t\")\n\x16\x44\x65leteScheduleResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\"D\n\x14ListSchedulesRequest\x12\x1a\n\rstatus_filter\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x10\n\x0e_status_filter\"\xe6\x02\n\x0cScheduleInfo\x12\n\n\x02id\x18\x01 \x01(\t\x12\x15\n\rworkflow_name\x18\x02 \x01(\t\x12\x34\n\rschedule_type\x18\x03 \x01(\x0e\x32\x1d.rappel.messages.ScheduleType\x12\x17\n\x0f\x63ron_expression\x18\x04 \x01(\t\x12\x18\n\x10interval_seconds\x18\x05 \x01(\x03\x12/\n\x06status\x18\x06 \x01(\x0e\x32\x1f.rappel.messages.ScheduleStatus\x12\x13\n\x0bnext_run_at\x18\x07 \x01(\t\x12\x13\n\x0blast_run_at\x18\x08 \x01(\t\x12\x18\n\x10last_instance_id\x18\t \x01(\t\x12\x12\n\ncreated_at\x18\n \x01(\t\x12\x12\n\nupdated_at\x18\x0b \x01(\t\x12\x15\n\rschedule_name\x18\x0c \x01(\t\x12\x16\n\x0ejitter_seconds\x18\r \x01(\x03\"I\n\x15ListSchedulesResponse\x12\x30\n\tschedules\x18\x01 \x03(\x0b\x32\x1d.rappel.messages.ScheduleInfo*\xbe\x01\n\x0bMessageKind\x12\x1c\n\x18MESSAGE_KIND_UNSPECIFIED\x10\x00\x12 \n\x1cMESSAGE_KIND_ACTION_DISPATCH\x10\x01\x12\x1e\n\x1aMESSAGE_KIND_ACTION_RESULT\x10\x02\x12\x14\n\x10MESSAGE_KIND_ACK\x10\x03\x12\x1a\n\x16MESSAGE_KIND_HEARTBEAT\x10\x04\x12\x1d\n\x19MESSAGE_KIND_WORKER_HELLO\x10\x05*a\n\x0cScheduleType\x12\x1d\n\x19SCHEDULE_TYPE_UNSPECIFIED\x10\x00\x12\x16\n\x12SCHEDULE_TYPE_CRON\x10\x01\x12\x1a\n\x16SCHEDULE_TYPE_INTERVAL\x10\x02*i\n\x0eScheduleStatus\x12\x1f\n\x1bSCHEDULE_STATUS_UNSPECIFIED\x10\x00\x12\x1a\n\x16SCHEDULE_STATUS_ACTIVE\x10\x01\x12\x1a\n\x16SCHEDULE_STATUS_PAUSED\x10\x02\x32R\n\x0cWorkerBridge\x12\x42\n\x06\x41ttach\x12\x19.rappel.messages.Envelope\x1a\x19.rappel.messages.Envelope(\x01\x30\x01\x32\x81\x05\n\x0fWorkflowService\x12g\n\x10RegisterWorkflow\x12(.rappel.messages.RegisterWorkflowRequest\x1a).rappel.messages.RegisterWorkflowResponse\x12\x64\n\x0fWaitForInstance\x12\'.rappel.messages.WaitForInstanceRequest\x1a(.rappel.messages.WaitForInstanceResponse\x12g\n\x10RegisterSchedule\x12(.rappel.messages.RegisterScheduleRequest\x1a).rappel.messages.RegisterScheduleResponse\x12s\n\x14UpdateScheduleStatus\x12,.rappel.messages.UpdateScheduleStatusRequest\x1a-.rappel.messages.UpdateScheduleStatusResponse\x12\x61\n\x0e\x44\x65leteSchedule\x12&.rappel.messages.DeleteScheduleRequest\x1a\'.rappel.messages.DeleteScheduleResponse\x12^\n\rListSchedules\x12%.rappel.messages.ListSchedulesRequest\x1a&.rappel.messages.ListSchedulesResponseb\x06proto3')
|
|
32
32
|
|
|
33
33
|
_globals = globals()
|
|
34
34
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
35
35
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'messages_pb2', _globals)
|
|
36
36
|
if not _descriptor._USE_C_DESCRIPTORS:
|
|
37
37
|
DESCRIPTOR._loaded_options = None
|
|
38
|
-
_globals['_MESSAGEKIND']._serialized_start=
|
|
39
|
-
_globals['_MESSAGEKIND']._serialized_end=
|
|
40
|
-
_globals['_SCHEDULETYPE']._serialized_start=
|
|
41
|
-
_globals['_SCHEDULETYPE']._serialized_end=
|
|
42
|
-
_globals['_SCHEDULESTATUS']._serialized_start=
|
|
43
|
-
_globals['_SCHEDULESTATUS']._serialized_end=
|
|
38
|
+
_globals['_MESSAGEKIND']._serialized_start=3863
|
|
39
|
+
_globals['_MESSAGEKIND']._serialized_end=4053
|
|
40
|
+
_globals['_SCHEDULETYPE']._serialized_start=4055
|
|
41
|
+
_globals['_SCHEDULETYPE']._serialized_end=4152
|
|
42
|
+
_globals['_SCHEDULESTATUS']._serialized_start=4154
|
|
43
|
+
_globals['_SCHEDULESTATUS']._serialized_end=4259
|
|
44
44
|
_globals['_ENVELOPE']._serialized_start=65
|
|
45
45
|
_globals['_ENVELOPE']._serialized_end=179
|
|
46
46
|
_globals['_ACTIONDISPATCH']._serialized_start=182
|
|
@@ -61,46 +61,46 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
|
61
61
|
_globals['_PRIMITIVEWORKFLOWARGUMENT']._serialized_end=1643
|
|
62
62
|
_globals['_BASEMODELWORKFLOWARGUMENT']._serialized_start=1645
|
|
63
63
|
_globals['_BASEMODELWORKFLOWARGUMENT']._serialized_end=1755
|
|
64
|
-
_globals['_WORKFLOWERRORVALUE']._serialized_start=
|
|
65
|
-
_globals['_WORKFLOWERRORVALUE']._serialized_end=
|
|
66
|
-
_globals['_WORKFLOWLISTARGUMENT']._serialized_start=
|
|
67
|
-
_globals['_WORKFLOWLISTARGUMENT']._serialized_end=
|
|
68
|
-
_globals['_WORKFLOWTUPLEARGUMENT']._serialized_start=
|
|
69
|
-
_globals['_WORKFLOWTUPLEARGUMENT']._serialized_end=
|
|
70
|
-
_globals['_WORKFLOWDICTARGUMENT']._serialized_start=
|
|
71
|
-
_globals['_WORKFLOWDICTARGUMENT']._serialized_end=
|
|
72
|
-
_globals['_WORKFLOWREGISTRATION']._serialized_start=
|
|
73
|
-
_globals['_WORKFLOWREGISTRATION']._serialized_end=
|
|
74
|
-
_globals['_REGISTERWORKFLOWREQUEST']._serialized_start=
|
|
75
|
-
_globals['_REGISTERWORKFLOWREQUEST']._serialized_end=
|
|
76
|
-
_globals['_REGISTERWORKFLOWRESPONSE']._serialized_start=
|
|
77
|
-
_globals['_REGISTERWORKFLOWRESPONSE']._serialized_end=
|
|
78
|
-
_globals['_WAITFORINSTANCEREQUEST']._serialized_start=
|
|
79
|
-
_globals['_WAITFORINSTANCEREQUEST']._serialized_end=
|
|
80
|
-
_globals['_WAITFORINSTANCERESPONSE']._serialized_start=
|
|
81
|
-
_globals['_WAITFORINSTANCERESPONSE']._serialized_end=
|
|
82
|
-
_globals['_SCHEDULEDEFINITION']._serialized_start=
|
|
83
|
-
_globals['_SCHEDULEDEFINITION']._serialized_end=
|
|
84
|
-
_globals['_REGISTERSCHEDULEREQUEST']._serialized_start=
|
|
85
|
-
_globals['_REGISTERSCHEDULEREQUEST']._serialized_end=
|
|
86
|
-
_globals['_REGISTERSCHEDULERESPONSE']._serialized_start=
|
|
87
|
-
_globals['_REGISTERSCHEDULERESPONSE']._serialized_end=
|
|
88
|
-
_globals['_UPDATESCHEDULESTATUSREQUEST']._serialized_start=
|
|
89
|
-
_globals['_UPDATESCHEDULESTATUSREQUEST']._serialized_end=
|
|
90
|
-
_globals['_UPDATESCHEDULESTATUSRESPONSE']._serialized_start=
|
|
91
|
-
_globals['_UPDATESCHEDULESTATUSRESPONSE']._serialized_end=
|
|
92
|
-
_globals['_DELETESCHEDULEREQUEST']._serialized_start=
|
|
93
|
-
_globals['_DELETESCHEDULEREQUEST']._serialized_end=
|
|
94
|
-
_globals['_DELETESCHEDULERESPONSE']._serialized_start=
|
|
95
|
-
_globals['_DELETESCHEDULERESPONSE']._serialized_end=
|
|
96
|
-
_globals['_LISTSCHEDULESREQUEST']._serialized_start=
|
|
97
|
-
_globals['_LISTSCHEDULESREQUEST']._serialized_end=
|
|
98
|
-
_globals['_SCHEDULEINFO']._serialized_start=
|
|
99
|
-
_globals['_SCHEDULEINFO']._serialized_end=
|
|
100
|
-
_globals['_LISTSCHEDULESRESPONSE']._serialized_start=
|
|
101
|
-
_globals['_LISTSCHEDULESRESPONSE']._serialized_end=
|
|
102
|
-
_globals['_WORKERBRIDGE']._serialized_start=
|
|
103
|
-
_globals['_WORKERBRIDGE']._serialized_end=
|
|
104
|
-
_globals['_WORKFLOWSERVICE']._serialized_start=
|
|
105
|
-
_globals['_WORKFLOWSERVICE']._serialized_end=
|
|
64
|
+
_globals['_WORKFLOWERRORVALUE']._serialized_start=1758
|
|
65
|
+
_globals['_WORKFLOWERRORVALUE']._serialized_end=1923
|
|
66
|
+
_globals['_WORKFLOWLISTARGUMENT']._serialized_start=1925
|
|
67
|
+
_globals['_WORKFLOWLISTARGUMENT']._serialized_end=2002
|
|
68
|
+
_globals['_WORKFLOWTUPLEARGUMENT']._serialized_start=2004
|
|
69
|
+
_globals['_WORKFLOWTUPLEARGUMENT']._serialized_end=2082
|
|
70
|
+
_globals['_WORKFLOWDICTARGUMENT']._serialized_start=2084
|
|
71
|
+
_globals['_WORKFLOWDICTARGUMENT']._serialized_end=2158
|
|
72
|
+
_globals['_WORKFLOWREGISTRATION']._serialized_start=2161
|
|
73
|
+
_globals['_WORKFLOWREGISTRATION']._serialized_end=2316
|
|
74
|
+
_globals['_REGISTERWORKFLOWREQUEST']._serialized_start=2318
|
|
75
|
+
_globals['_REGISTERWORKFLOWREQUEST']._serialized_end=2404
|
|
76
|
+
_globals['_REGISTERWORKFLOWRESPONSE']._serialized_start=2406
|
|
77
|
+
_globals['_REGISTERWORKFLOWRESPONSE']._serialized_end=2491
|
|
78
|
+
_globals['_WAITFORINSTANCEREQUEST']._serialized_start=2493
|
|
79
|
+
_globals['_WAITFORINSTANCEREQUEST']._serialized_end=2566
|
|
80
|
+
_globals['_WAITFORINSTANCERESPONSE']._serialized_start=2568
|
|
81
|
+
_globals['_WAITFORINSTANCERESPONSE']._serialized_end=2610
|
|
82
|
+
_globals['_SCHEDULEDEFINITION']._serialized_start=2613
|
|
83
|
+
_globals['_SCHEDULEDEFINITION']._serialized_end=2753
|
|
84
|
+
_globals['_REGISTERSCHEDULEREQUEST']._serialized_start=2756
|
|
85
|
+
_globals['_REGISTERSCHEDULEREQUEST']._serialized_end=2995
|
|
86
|
+
_globals['_REGISTERSCHEDULERESPONSE']._serialized_start=2997
|
|
87
|
+
_globals['_REGISTERSCHEDULERESPONSE']._serialized_end=3065
|
|
88
|
+
_globals['_UPDATESCHEDULESTATUSREQUEST']._serialized_start=3067
|
|
89
|
+
_globals['_UPDATESCHEDULESTATUSREQUEST']._serialized_end=3191
|
|
90
|
+
_globals['_UPDATESCHEDULESTATUSRESPONSE']._serialized_start=3193
|
|
91
|
+
_globals['_UPDATESCHEDULESTATUSRESPONSE']._serialized_end=3240
|
|
92
|
+
_globals['_DELETESCHEDULEREQUEST']._serialized_start=3242
|
|
93
|
+
_globals['_DELETESCHEDULEREQUEST']._serialized_end=3311
|
|
94
|
+
_globals['_DELETESCHEDULERESPONSE']._serialized_start=3313
|
|
95
|
+
_globals['_DELETESCHEDULERESPONSE']._serialized_end=3354
|
|
96
|
+
_globals['_LISTSCHEDULESREQUEST']._serialized_start=3356
|
|
97
|
+
_globals['_LISTSCHEDULESREQUEST']._serialized_end=3424
|
|
98
|
+
_globals['_SCHEDULEINFO']._serialized_start=3427
|
|
99
|
+
_globals['_SCHEDULEINFO']._serialized_end=3785
|
|
100
|
+
_globals['_LISTSCHEDULESRESPONSE']._serialized_start=3787
|
|
101
|
+
_globals['_LISTSCHEDULESRESPONSE']._serialized_end=3860
|
|
102
|
+
_globals['_WORKERBRIDGE']._serialized_start=4261
|
|
103
|
+
_globals['_WORKERBRIDGE']._serialized_end=4343
|
|
104
|
+
_globals['_WORKFLOWSERVICE']._serialized_start=4346
|
|
105
|
+
_globals['_WORKFLOWSERVICE']._serialized_end=4987
|
|
106
106
|
# @@protoc_insertion_point(module_scope)
|