dex-python-sdk 0.0.1__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.
- dex/__init__.py +14 -0
- dex/client.py +568 -0
- dex/client_options.py +34 -0
- dex/command_request.py +130 -0
- dex/command_results.py +116 -0
- dex/communication.py +141 -0
- dex/communication_schema.py +68 -0
- dex/data_attributes.py +75 -0
- dex/dexpb/__init__.py +1 -0
- dex/dexpb/dex_pb2.py +305 -0
- dex/dexpb/dex_pb2.pyi +1273 -0
- dex/dexpb/dex_pb2_grpc.py +1126 -0
- dex/errors.py +132 -0
- dex/object_encoder.py +818 -0
- dex/persistence.py +94 -0
- dex/persistence_options.py +24 -0
- dex/persistence_schema.py +58 -0
- dex/py.typed +1 -0
- dex/registry.py +209 -0
- dex/reset_workflow_type_and_options.py +77 -0
- dex/rpc.py +100 -0
- dex/search_attributes.py +189 -0
- dex/state_decision.py +161 -0
- dex/state_execution_locals.py +71 -0
- dex/state_movement.py +123 -0
- dex/state_schema.py +54 -0
- dex/stop_workflow_options.py +23 -0
- dex/tests/__init__.py +84 -0
- dex/tests/dex-service-env/.env +7 -0
- dex/tests/dex-service-env/docker-compose-init.sh +44 -0
- dex/tests/dex-service-env/docker-compose.yml +87 -0
- dex/tests/dex-service-env/dynamicconfig/README.md +39 -0
- dex/tests/dex-service-env/dynamicconfig/development-sql.yaml +6 -0
- dex/tests/dex-service-env/dynamicconfig/docker.yaml +0 -0
- dex/tests/test_abnormal_exit_workflow.py +48 -0
- dex/tests/test_basic_workflow.py +75 -0
- dex/tests/test_conditional_complete.py +56 -0
- dex/tests/test_describe_workflow.py +45 -0
- dex/tests/test_empty_data_decodes_properly.py +79 -0
- dex/tests/test_internal_channel.py +33 -0
- dex/tests/test_internal_channel_with_no_prefix_channel.py +46 -0
- dex/tests/test_persistence_data_attributes.py +67 -0
- dex/tests/test_persistence_search_attributes.py +132 -0
- dex/tests/test_persistence_state_execution_locals.py +43 -0
- dex/tests/test_rpc.py +69 -0
- dex/tests/test_rpc_with_memo.py +200 -0
- dex/tests/test_rpc_with_memo_duplicate_java_tests.py +122 -0
- dex/tests/test_signal.py +56 -0
- dex/tests/test_skip_wait_until.py +85 -0
- dex/tests/test_state_failure_recovery.py +33 -0
- dex/tests/test_timer.py +40 -0
- dex/tests/test_wait_for_state_execution_completion.py +58 -0
- dex/tests/test_workflow_errors.py +92 -0
- dex/tests/test_workflow_state_options.py +123 -0
- dex/tests/test_workflow_state_options_override.py +49 -0
- dex/tests/worker_server.py +74 -0
- dex/tests/workflows/abnormal_exit_workflow.py +48 -0
- dex/tests/workflows/basic_workflow.py +69 -0
- dex/tests/workflows/conditional_complete_workflow.py +101 -0
- dex/tests/workflows/describe_workflow.py +52 -0
- dex/tests/workflows/empty_data_workflow.py +51 -0
- dex/tests/workflows/internal_channel_workflow.py +137 -0
- dex/tests/workflows/internal_channel_workflow_with_no_prefix_channel.py +108 -0
- dex/tests/workflows/java_duplicate_rpc_memo_workflow.py +285 -0
- dex/tests/workflows/persistence_data_attributes_workflow.py +104 -0
- dex/tests/workflows/persistence_search_attributes_workflow.py +167 -0
- dex/tests/workflows/persistence_state_execution_local_workflow.py +69 -0
- dex/tests/workflows/recovery_workflow.py +90 -0
- dex/tests/workflows/rpc_memo_workflow.py +238 -0
- dex/tests/workflows/rpc_workflow.py +125 -0
- dex/tests/workflows/state_options_override_workflow.py +100 -0
- dex/tests/workflows/state_options_workflow.py +92 -0
- dex/tests/workflows/timer_workflow.py +52 -0
- dex/tests/workflows/wait_for_state_with_state_execution_id_workflow.py +77 -0
- dex/tests/workflows/wait_for_state_with_wait_for_key_workflow.py +78 -0
- dex/tests/workflows/wait_internal_channel_workflow.py +53 -0
- dex/tests/workflows/wait_signal_workflow.py +154 -0
- dex/type_store.py +105 -0
- dex/unregistered_client.py +595 -0
- dex/utils/__init__.py +14 -0
- dex/utils/dex_typing.py +31 -0
- dex/utils/persistence_utils.py +37 -0
- dex/worker_service.py +441 -0
- dex/workflow.py +86 -0
- dex/workflow_context.py +50 -0
- dex/workflow_info.py +21 -0
- dex/workflow_options.py +79 -0
- dex/workflow_state.py +134 -0
- dex/workflow_state_options.py +160 -0
- dex_python_sdk-0.0.1.dist-info/METADATA +140 -0
- dex_python_sdk-0.0.1.dist-info/RECORD +93 -0
- dex_python_sdk-0.0.1.dist-info/WHEEL +4 -0
- dex_python_sdk-0.0.1.dist-info/licenses/LICENSE +201 -0
dex/dexpb/dex_pb2.py
ADDED
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dex.proto
|
|
5
|
+
# Protobuf Python Version: 7.35.1
|
|
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
|
+
7,
|
|
15
|
+
35,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dex.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
|
|
26
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\tdex.proto\x12\x03\x64\x65x\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x9c\x02\n\x05Value\x12+\n!internal_blob_id_for_string_value\x18\x01 \x01(\tH\x00\x12(\n\x1einternal_blob_id_for_obj_value\x18\x02 \x01(\tH\x00\x12\x16\n\x0cstring_value\x18\x03 \x01(\tH\x00\x12\'\n\tobj_value\x18\x04 \x01(\x0b\x32\x12.dex.EncodedObjectH\x00\x12\x13\n\tint_value\x18\x05 \x01(\x03H\x00\x12\x16\n\x0c\x64ouble_value\x18\x06 \x01(\x01H\x00\x12\x14\n\nbool_value\x18\x07 \x01(\x08H\x00\x12\x30\n\nnull_value\x18\x08 \x01(\x0e\x32\x1a.google.protobuf.NullValueH\x00\x42\x06\n\x04kind\"2\n\rEncodedObject\x12\x10\n\x08\x65ncoding\x18\x01 \x01(\t\x12\x0f\n\x07payload\x18\x02 \x01(\x0c\"`\n\x0e\x41ttributeWrite\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value\x12&\n\x0cindex_config\x18\x03 \x01(\x0b\x32\x10.dex.IndexConfig\",\n\x02KV\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value\"N\n\x0bIndexConfig\x12\x0e\n\x06\x65nable\x18\x01 \x01(\x08\x12\x1c\n\x04type\x18\x02 \x01(\x0e\x32\x0e.dex.IndexType\x12\x11\n\tindex_key\x18\x03 \x01(\t\"\x97\x01\n\x07\x43ontext\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x1e\n\x16\x66low_started_timestamp\x18\x03 \x01(\x03\x12\x19\n\x11step_execution_id\x18\x04 \x01(\t\x12\x1f\n\x17\x66irst_attempt_timestamp\x18\x05 \x01(\x03\x12\x0f\n\x07\x61ttempt\x18\x06 \x01(\x05\"\xa8\x01\n\x0bRetryPolicy\x12 \n\x18initial_interval_seconds\x18\x01 \x01(\x05\x12\x1b\n\x13\x62\x61\x63koff_coefficient\x18\x02 \x01(\x02\x12 \n\x18maximum_interval_seconds\x18\x03 \x01(\x05\x12\x18\n\x10maximum_attempts\x18\x04 \x01(\x05\x12\x1e\n\x16total_duration_seconds\x18\x05 \x01(\x05\"\x8c\x01\n\x0f\x46lowRetryPolicy\x12 \n\x18initial_interval_seconds\x18\x01 \x01(\x05\x12\x1b\n\x13\x62\x61\x63koff_coefficient\x18\x02 \x01(\x02\x12 \n\x18maximum_interval_seconds\x18\x03 \x01(\x05\x12\x18\n\x10maximum_attempts\x18\x04 \x01(\x05\"\xf0\x04\n\x0bStepOptions\x12 \n\x18wait_for_timeout_seconds\x18\x01 \x01(\x05\x12\x1f\n\x17\x65xecute_timeout_seconds\x18\x02 \x01(\x05\x12/\n\x15wait_for_retry_policy\x18\x03 \x01(\x0b\x32\x10.dex.RetryPolicy\x12.\n\x14\x65xecute_retry_policy\x18\x04 \x01(\x0b\x32\x10.dex.RetryPolicy\x12=\n\x17wait_for_failure_policy\x18\x05 \x01(\x0e\x32\x1c.dex.WaitForApiFailurePolicy\x12<\n\x16\x65xecute_failure_policy\x18\x06 \x01(\x0e\x32\x1c.dex.ExecuteApiFailurePolicy\x12)\n!execute_failure_proceed_step_type\x18\x07 \x01(\t\x12>\n$execute_failure_proceed_step_options\x18\x08 \x01(\x0b\x32\x10.dex.StepOptions\x12\x15\n\rskip_wait_for\x18\t \x01(\x08\x12\x39\n\x1cwait_for_durability_override\x18\n \x01(\x0e\x32\x13.dex.StepDurability\x12\x38\n\x1b\x65xecute_durability_override\x18\x0b \x01(\x0e\x32\x13.dex.StepDurability\x12$\n\x1cwait_for_lock_attribute_keys\x18\x0c \x03(\t\x12#\n\x1b\x65xecute_lock_attribute_keys\x18\r \x03(\t\"U\n\x19\x46lowAlreadyStartedOptions\x12$\n\x1cignore_already_started_error\x18\x01 \x01(\x08\x12\x12\n\nrequest_id\x18\x02 \x01(\t\"\xc2\x02\n\x10\x46lowStartOptions\x12+\n\x0fid_reuse_policy\x18\x01 \x01(\x0e\x32\x12.dex.IdReusePolicy\x12\x15\n\rcron_schedule\x18\x02 \x01(\t\x12 \n\x18\x66low_start_delay_seconds\x18\x03 \x01(\x05\x12*\n\x0cretry_policy\x18\x04 \x01(\x0b\x32\x14.dex.FlowRetryPolicy\x12\'\n\nattributes\x18\x05 \x03(\x0b\x32\x13.dex.AttributeWrite\x12-\n\x14\x66low_config_override\x18\x06 \x01(\x0b\x32\x0f.dex.FlowConfig\x12\x44\n\x1c\x66low_already_started_options\x18\x07 \x01(\x0b\x32\x1e.dex.FlowAlreadyStartedOptions\"\xce\x02\n\nFlowConfig\x12?\n\x17\x61\x63tive_step_search_mode\x18\x01 \x01(\x0e\x32\x19.dex.ActiveStepSearchModeH\x00\x88\x01\x01\x12&\n\x19\x63ontinue_as_new_threshold\x18\x02 \x01(\x05H\x01\x88\x01\x01\x12/\n\"continue_as_new_page_size_in_bytes\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12\x31\n\x0fstep_durability\x18\x04 \x01(\x0e\x32\x13.dex.StepDurabilityH\x03\x88\x01\x01\x42\x1a\n\x18_active_step_search_modeB\x1c\n\x1a_continue_as_new_thresholdB%\n#_continue_as_new_page_size_in_bytesB\x12\n\x10_step_durability\"\xff\x01\n\x10StartFlowRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x11\n\tflow_type\x18\x02 \x01(\t\x12\x1c\n\x14\x66low_timeout_seconds\x18\x03 \x01(\x05\x12\x15\n\rworker_target\x18\x04 \x01(\t\x12\x17\n\x0fstart_step_type\x18\x05 \x01(\t\x12\x1e\n\nstep_input\x18\x08 \x01(\x0b\x32\n.dex.Value\x12&\n\x0cstep_options\x18\t \x01(\x0b\x32\x10.dex.StepOptions\x12\x31\n\x12\x66low_start_options\x18\n \x01(\x0b\x32\x15.dex.FlowStartOptions\"#\n\x11StartFlowResponse\x12\x0e\n\x06run_id\x18\x01 \x01(\t\"a\n\x17PublishToChannelRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12%\n\x08messages\x18\x03 \x03(\x0b\x32\x13.dex.ChannelMessage\"A\n\x0e\x43hannelMessage\x12\x14\n\x0c\x63hannel_name\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value\"d\n\x0fStopFlowRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x0e\n\x06reason\x18\x03 \x01(\t\x12 \n\tstop_type\x18\x04 \x01(\x0e\x32\r.dex.StopType\"W\n\x14GetAttributesRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x0c\n\x04keys\x18\x03 \x03(\t\x12\x10\n\x08\x61ll_keys\x18\x04 \x01(\x08\"4\n\x15GetAttributesResponse\x12\x1b\n\nattributes\x18\x01 \x03(\x0b\x32\x07.dex.KV\"`\n\x14SetAttributesRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\'\n\nattributes\x18\x03 \x03(\x0b\x32\x13.dex.AttributeWrite\".\n\x10LoadBlobsRequest\x12\x1a\n\x06values\x18\x01 \x03(\x0b\x32\n.dex.Value\"\x82\x01\n\x11LoadBlobsResponse\x12\x32\n\x06values\x18\x01 \x03(\x0b\x32\".dex.LoadBlobsResponse.ValuesEntry\x1a\x39\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value:\x02\x38\x01\"g\n\x12WaitForFlowRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x15\n\rneeds_results\x18\x03 \x01(\x08\x12\x19\n\x11wait_time_seconds\x18\x04 \x01(\x05\"\x83\x01\n\x14StepCompletionOutput\x12\x1b\n\x13\x63ompleted_step_type\x18\x01 \x01(\t\x12#\n\x1b\x63ompleted_step_execution_id\x18\x02 \x01(\t\x12)\n\x15\x63ompleted_step_output\x18\x03 \x01(\x0b\x32\n.dex.Value\"\xb6\x01\n\x13WaitForFlowResponse\x12\x0e\n\x06run_id\x18\x01 \x01(\t\x12$\n\x0b\x66low_status\x18\x02 \x01(\x0e\x32\x0f.dex.FlowStatus\x12*\n\x07results\x18\x03 \x03(\x0b\x32\x19.dex.StepCompletionOutput\x12&\n\nerror_type\x18\x04 \x01(\x0e\x32\x12.dex.FlowErrorType\x12\x15\n\rerror_message\x18\x05 \x01(\t\"O\n\x12SearchFlowsRequest\x12\r\n\x05query\x18\x01 \x01(\t\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\t\"`\n\x13SearchFlowsResponse\x12\x30\n\tflow_runs\x18\x01 \x03(\x0b\x32\x1d.dex.SearchFlowsResponseEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\";\n\x18SearchFlowsResponseEntry\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\"\x98\x02\n\x10ResetFlowRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12&\n\nreset_type\x18\x03 \x01(\x0e\x32\x12.dex.FlowResetType\x12\x18\n\x10history_event_id\x18\x04 \x01(\x05\x12\x0e\n\x06reason\x18\x05 \x01(\t\x12\x1a\n\x12history_event_time\x18\x06 \x01(\t\x12\x11\n\tstep_type\x18\x07 \x01(\t\x12\x19\n\x11step_execution_id\x18\x08 \x01(\t\x12%\n\x1dskip_channel_messages_reapply\x18\t \x01(\x08\x12 \n\x18skip_locking_rpc_reapply\x18\n \x01(\x08\"#\n\x11ResetFlowResponse\x12\x0e\n\x06run_id\x18\x01 \x01(\t\"\x96\x01\n\x10InvokeRPCRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x10\n\x08rpc_name\x18\x03 \x01(\t\x12\x19\n\x05input\x18\x04 \x01(\x0b\x32\n.dex.Value\x12\x17\n\x0ftimeout_seconds\x18\x05 \x01(\x05\x12\x1b\n\x13lock_attribute_keys\x18\x06 \x03(\t\"/\n\x11InvokeRPCResponse\x12\x1a\n\x06output\x18\x01 \x01(\x0b\x32\n.dex.Value\"\xa8\x01\n\x10SkipTimerRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x19\n\x11step_execution_id\x18\x03 \x01(\t\x12\x1a\n\x12timer_condition_id\x18\x04 \x01(\t\x12\"\n\x15timer_condition_index\x18\x05 \x01(\x05H\x00\x88\x01\x01\x42\x18\n\x16_timer_condition_index\"`\n\x17UpdateFlowConfigRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12$\n\x0b\x66low_config\x18\x03 \x01(\x0b\x32\x0f.dex.FlowConfig\"|\n\x1cWaitForStepCompletionRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x11\n\tstep_type\x18\x02 \x01(\t\x12\x1d\n\x15step_execution_number\x18\x03 \x01(\t\x12\x19\n\x11wait_time_seconds\x18\x05 \x01(\x05\"\x1f\n\x1dWaitForStepCompletionResponse\"\x88\x01\n\x17WaitForAttributeRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x31\n\tcondition\x18\x03 \x01(\x0b\x32\x1e.dex.WaitForAttributeCondition\x12\x19\n\x11wait_time_seconds\x18\x04 \x01(\x05\"P\n\x19WaitForAttributeCondition\x12+\n\x05\x65qual\x18\x01 \x01(\x0b\x32\x1a.dex.WaitForAttributeEqualH\x00\x42\x06\n\x04kind\"?\n\x15WaitForAttributeEqual\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value\">\n\x1bTriggerContinueAsNewRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\"C\n\nHealthInfo\x12\x11\n\tcondition\x18\x01 \x01(\t\x12\x10\n\x08hostname\x18\x02 \x01(\t\x12\x10\n\x08\x64uration\x18\x03 \x01(\x05\"\xb8\x01\n\rErrorResponse\x12\x0e\n\x06\x64\x65tail\x18\x01 \x01(\t\x12\'\n\nsub_status\x18\x02 \x01(\x0e\x32\x13.dex.ErrorSubStatus\x12$\n\x1coriginal_worker_error_detail\x18\x03 \x01(\t\x12\"\n\x1aoriginal_worker_error_type\x18\x04 \x01(\t\x12$\n\x1coriginal_worker_error_status\x18\x05 \x01(\x05\"9\n\x13WorkerErrorResponse\x12\x0e\n\x06\x64\x65tail\x18\x01 \x01(\t\x12\x12\n\nerror_type\x18\x02 \x01(\t\"\x1b\n\x0b\x43hannelInfo\x12\x0c\n\x04size\x18\x01 \x01(\x05\"\x9e\x01\n\x1aInvokeWaitForMethodRequest\x12\x1d\n\x07\x63ontext\x18\x01 \x01(\x0b\x32\x0c.dex.Context\x12\x11\n\tflow_type\x18\x02 \x01(\t\x12\x11\n\tstep_type\x18\x03 \x01(\t\x12\x1e\n\nstep_input\x18\x04 \x01(\x0b\x32\n.dex.Value\x12\x1b\n\nattributes\x18\x05 \x03(\x0b\x32\x07.dex.KV\"\x97\x02\n\x1bInvokeWaitForMethodResponse\x12\x1c\n\x14local_activity_input\x18\x01 \x01(\t\x12.\n\x11upsert_attributes\x18\x02 \x03(\x0b\x32\x13.dex.AttributeWrite\x12\x30\n\x11waiting_condition\x18\x03 \x01(\x0b\x32\x15.dex.WaitingCondition\x12\'\n\x16upsert_step_exe_locals\x18\x04 \x03(\x0b\x32\x07.dex.KV\x12\x1e\n\rrecord_events\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12/\n\x12publish_to_channel\x18\x06 \x03(\x0b\x32\x13.dex.ChannelMessage\"\xf2\x01\n\x1aInvokeExecuteMethodRequest\x12\x1d\n\x07\x63ontext\x18\x01 \x01(\x0b\x32\x0c.dex.Context\x12\x11\n\tflow_type\x18\x02 \x01(\t\x12\x11\n\tstep_type\x18\x03 \x01(\t\x12\x1e\n\nstep_input\x18\x04 \x01(\x0b\x32\n.dex.Value\x12\x1b\n\nattributes\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12 \n\x0fstep_exe_locals\x18\x06 \x03(\x0b\x32\x07.dex.KV\x12\x30\n\x11\x63ondition_results\x18\x07 \x01(\x0b\x32\x15.dex.ConditionResults\"\x8f\x02\n\x1bInvokeExecuteMethodResponse\x12\x1c\n\x14local_activity_input\x18\x01 \x01(\t\x12(\n\rstep_decision\x18\x02 \x01(\x0b\x32\x11.dex.StepDecision\x12.\n\x11upsert_attributes\x18\x03 \x03(\x0b\x32\x13.dex.AttributeWrite\x12\x1e\n\rrecord_events\x18\x04 \x03(\x0b\x32\x07.dex.KV\x12\'\n\x16upsert_step_exe_locals\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12/\n\x12publish_to_channel\x18\x06 \x03(\x0b\x32\x13.dex.ChannelMessage\"\xa1\x02\n\x16InvokeWorkerRPCRequest\x12\x1d\n\x07\x63ontext\x18\x01 \x01(\x0b\x32\x0c.dex.Context\x12\x11\n\tflow_type\x18\x02 \x01(\t\x12\x10\n\x08rpc_name\x18\x03 \x01(\t\x12\x19\n\x05input\x18\x04 \x01(\x0b\x32\n.dex.Value\x12\x1b\n\nattributes\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12\x44\n\rchannel_infos\x18\x06 \x03(\x0b\x32-.dex.InvokeWorkerRPCRequest.ChannelInfosEntry\x1a\x45\n\x11\x43hannelInfosEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1f\n\x05value\x18\x02 \x01(\x0b\x32\x10.dex.ChannelInfo:\x02\x38\x01\"\xe0\x01\n\x17InvokeWorkerRPCResponse\x12\x1a\n\x06output\x18\x01 \x01(\x0b\x32\n.dex.Value\x12(\n\rstep_decision\x18\x02 \x01(\x0b\x32\x11.dex.StepDecision\x12.\n\x11upsert_attributes\x18\x03 \x03(\x0b\x32\x13.dex.AttributeWrite\x12\x1e\n\rrecord_events\x18\x04 \x03(\x0b\x32\x07.dex.KV\x12/\n\x12publish_to_channel\x18\x06 \x03(\x0b\x32\x13.dex.ChannelMessage\"k\n\x0cStepDecision\x12%\n\nnext_steps\x18\x01 \x03(\x0b\x32\x11.dex.StepMovement\x12\x34\n\x11\x63onditional_close\x18\x02 \x01(\x0b\x32\x19.dex.FlowConditionalClose\"\x8d\x01\n\x14\x46lowConditionalClose\x12=\n\x16\x63onditional_close_type\x18\x01 \x01(\x0e\x32\x1d.dex.FlowConditionalCloseType\x12\x15\n\rchannel_names\x18\x02 \x03(\t\x12\x1f\n\x0b\x63lose_input\x18\x03 \x01(\x0b\x32\n.dex.Value\"i\n\x0cStepMovement\x12\x11\n\tstep_type\x18\x01 \x01(\t\x12\x1e\n\nstep_input\x18\x02 \x01(\x0b\x32\n.dex.Value\x12&\n\x0cstep_options\x18\x03 \x01(\x0b\x32\x10.dex.StepOptions\"-\n\x14\x43onditionCombination\x12\x15\n\rcondition_ids\x18\x01 \x03(\t\"\xea\x01\n\x10WaitingCondition\x12\x39\n\x16waiting_condition_type\x18\x01 \x01(\x0e\x32\x19.dex.WaitingConditionType\x12-\n\x10timer_conditions\x18\x02 \x03(\x0b\x32\x13.dex.TimerCondition\x12\x31\n\x12\x63hannel_conditions\x18\x03 \x03(\x0b\x32\x15.dex.ChannelCondition\x12\x39\n\x16\x63ondition_combinations\x18\x04 \x03(\x0b\x32\x19.dex.ConditionCombination\"g\n\x0eTimerCondition\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12\x18\n\x10\x64uration_seconds\x18\x02 \x01(\x03\x12%\n\x1d\x66iring_unix_timestamp_seconds\x18\x03 \x01(\x03\"\x84\x01\n\x10\x43hannelCondition\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x15\n\x08\x61t_least\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x14\n\x07\x61t_most\x18\x04 \x01(\x05H\x01\x88\x01\x01\x42\x0b\n\t_at_leastB\n\n\x08_at_most\"\x81\x01\n\x10\x43onditionResults\x12+\n\x0f\x63hannel_results\x18\x01 \x03(\x0b\x32\x12.dex.ChannelResult\x12\'\n\rtimer_results\x18\x02 \x03(\x0b\x32\x10.dex.TimerResult\x12\x17\n\x0fwait_for_failed\x18\x03 \x01(\x08\"S\n\x0bTimerResult\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12.\n\x10\x63ondition_status\x18\x02 \x01(\x0e\x32\x14.dex.ConditionStatus\"\x87\x01\n\rChannelResult\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12.\n\x10\x63ondition_status\x18\x02 \x01(\x0e\x32\x14.dex.ConditionStatus\x12\x14\n\x0c\x63hannel_name\x18\x03 \x01(\t\x12\x1a\n\x06values\x18\x04 \x03(\x0b\x32\n.dex.Value\"i\n\x18\x43ontinueAsNewDumpRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x10\n\x08page_num\x18\x03 \x01(\x05\x12\x1a\n\x12page_size_in_bytes\x18\x04 \x01(\x05\"j\n\x19\x43ontinueAsNewDumpResponse\x12\x14\n\x0cpage_content\x18\x01 \x01(\x0c\x12\x10\n\x08page_num\x18\x02 \x01(\x05\x12\x13\n\x0btotal_pages\x18\x03 \x01(\x05\x12\x10\n\x08\x63hecksum\x18\x04 \x01(\t\"+\n\rChannelValues\x12\x1a\n\x06values\x18\x01 \x03(\x0b\x32\n.dex.Value\"\xe6\x01\n StepExecutionCompletedConditions\x12g\n\x1a\x63ompleted_timer_conditions\x18\x01 \x03(\x0b\x32\x43.dex.StepExecutionCompletedConditions.CompletedTimerConditionsEntry\x1aY\n\x1d\x43ompletedTimerConditionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\'\n\x05value\x18\x02 \x01(\x0e\x32\x18.dex.InternalTimerStatus:\x02\x38\x01\"\xee\x01\n\x17StepExecutionResumeInfo\x12\x19\n\x11step_execution_id\x18\x01 \x01(\t\x12\x1f\n\x04step\x18\x02 \x01(\x0b\x32\x11.dex.StepMovement\x12\x43\n\x14\x63ompleted_conditions\x18\x03 \x01(\x0b\x32%.dex.StepExecutionCompletedConditions\x12\x30\n\x11waiting_condition\x18\x04 \x01(\x0b\x32\x15.dex.WaitingCondition\x12 \n\x0fstep_exe_locals\x18\x05 \x03(\x0b\x32\x07.dex.KV\"\xce\x04\n\x18StepExecutionCounterInfo\x12X\n\x17step_type_started_count\x18\x01 \x03(\x0b\x32\x37.dex.StepExecutionCounterInfo.StepTypeStartedCountEntry\x12o\n#step_type_currently_executing_count\x18\x02 \x03(\x0b\x32\x42.dex.StepExecutionCounterInfo.StepTypeCurrentlyExecutingCountEntry\x12\'\n\x1ftotal_currently_executing_count\x18\x03 \x01(\x05\x12^\n\x1astep_active_execution_nums\x18\x04 \x03(\x0b\x32:.dex.StepExecutionCounterInfo.StepActiveExecutionNumsEntry\x1a;\n\x19StepTypeStartedCountEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a\x46\n$StepTypeCurrentlyExecutingCountEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1aY\n\x1cStepActiveExecutionNumsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12(\n\x05value\x18\x02 \x01(\x0b\x32\x19.dex.StepExecutionNumbers:\x02\x38\x01\"f\n\x0eStaleSkipTimer\x12\x19\n\x11step_execution_id\x18\x01 \x01(\t\x12\x1a\n\x12timer_condition_id\x18\x02 \x01(\t\x12\x1d\n\x15timer_condition_index\x18\x03 \x01(\x05\"\xd4\x03\n\x11\x43ontinueAsNewDump\x12\x38\n\x1dsteps_to_start_from_beginning\x18\x01 \x03(\x0b\x32\x11.dex.StepMovement\x12?\n\x19step_executions_to_resume\x18\x02 \x03(\x0b\x32\x1c.dex.StepExecutionResumeInfo\x12\x45\n\x10\x63hannel_received\x18\x03 \x03(\x0b\x32+.dex.ContinueAsNewDump.ChannelReceivedEntry\x12\x33\n\x0c\x63ounter_info\x18\x04 \x01(\x0b\x32\x1d.dex.StepExecutionCounterInfo\x12/\n\x0cstep_outputs\x18\x05 \x03(\x0b\x32\x19.dex.StepCompletionOutput\x12.\n\x11stale_skip_timers\x18\x06 \x03(\x0b\x32\x13.dex.StaleSkipTimer\x12\x1b\n\nattributes\x18\x07 \x03(\x0b\x32\x07.dex.KV\x1aJ\n\x14\x43hannelReceivedEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.dex.ChannelValues:\x02\x38\x01\"6\n\x12\x43ontinueAsNewInput\x12 \n\x18previous_internal_run_id\x18\x01 \x01(\t\"\xc8\x02\n\x18InterpreterWorkflowInput\x12\x11\n\tflow_type\x18\x01 \x01(\t\x12\x15\n\rworker_target\x18\x02 \x01(\t\x12\x17\n\x0fstart_step_type\x18\x03 \x01(\t\x12\x1e\n\nstep_input\x18\x06 \x01(\x0b\x32\n.dex.Value\x12&\n\x0cstep_options\x18\x07 \x01(\x0b\x32\x10.dex.StepOptions\x12 \n\x0finit_attributes\x18\x08 \x03(\x0b\x32\x07.dex.KV\x12\x1f\n\x06\x63onfig\x18\t \x01(\x0b\x32\x0f.dex.FlowConfig\x12&\n\x1eis_resume_from_continue_as_new\x18\n \x01(\x08\x12\x36\n\x15\x63ontinue_as_new_input\x18\x0b \x01(\x0b\x32\x17.dex.ContinueAsNewInput\"W\n\x19InterpreterWorkflowOutput\x12:\n\x17step_completion_outputs\x18\x01 \x03(\x0b\x32\x19.dex.StepCompletionOutput\"1\n\x1d\x42lobStoreCleanupWorkflowInput\x12\x10\n\x08store_id\x18\x01 \x01(\t\"7\n\x1e\x42lobStoreCleanupWorkflowOutput\x12\x15\n\rtotal_deleted\x18\x01 \x01(\x05\"k\n InvokeWaitForMethodActivityInput\x12\x15\n\rworker_target\x18\x01 \x01(\t\x12\x30\n\x07request\x18\x02 \x01(\x0b\x32\x1f.dex.InvokeWaitForMethodRequest\"W\n!InvokeWaitForMethodActivityOutput\x12\x32\n\x08response\x18\x01 \x01(\x0b\x32 .dex.InvokeWaitForMethodResponse\"k\n InvokeExecuteMethodActivityInput\x12\x15\n\rworker_target\x18\x01 \x01(\t\x12\x30\n\x07request\x18\x02 \x01(\x0b\x32\x1f.dex.InvokeExecuteMethodRequest\"W\n!InvokeExecuteMethodActivityOutput\x12\x32\n\x08response\x18\x01 \x01(\x0b\x32 .dex.InvokeExecuteMethodResponse\"W\n%DumpFlowForContinueAsNewActivityInput\x12.\n\x07request\x18\x01 \x01(\x0b\x32\x1d.dex.ContinueAsNewDumpRequest\"Z\n&DumpFlowForContinueAsNewActivityOutput\x12\x30\n\x08response\x18\x01 \x01(\x0b\x32\x1e.dex.ContinueAsNewDumpResponse\"v\n\x1cInvokeWorkerRPCActivityInput\x12.\n\x08rpc_prep\x18\x01 \x01(\x0b\x32\x1c.dex.PrepareRpcQueryResponse\x12&\n\x07request\x18\x02 \x01(\x0b\x32\x15.dex.InvokeRPCRequest\"O\n\x1dInvokeWorkerRPCActivityOutput\x12.\n\x08response\x18\x01 \x01(\x0b\x32\x1c.dex.InvokeWorkerRPCResponse\"1\n\x1d\x43leanupBlobStoreActivityInput\x12\x10\n\x08store_id\x18\x01 \x01(\t\"7\n\x1e\x43leanupBlobStoreActivityOutput\x12\x15\n\rtotal_deleted\x18\x01 \x01(\x05\"\x83\x02\n\x17\x45xecuteRpcSignalRequest\x12\x1d\n\trpc_input\x18\x01 \x01(\x0b\x32\n.dex.Value\x12\x1e\n\nrpc_output\x18\x02 \x01(\x0b\x32\n.dex.Value\x12.\n\x11upsert_attributes\x18\x03 \x03(\x0b\x32\x13.dex.AttributeWrite\x12(\n\rstep_decision\x18\x04 \x01(\x0b\x32\x11.dex.StepDecision\x12\x1e\n\rrecord_events\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12/\n\x12publish_to_channel\x18\x06 \x03(\x0b\x32\x13.dex.ChannelMessage\"n\n\x16SkipTimerSignalRequest\x12\x19\n\x11step_execution_id\x18\x01 \x01(\t\x12\x1a\n\x12timer_condition_id\x18\x02 \x01(\t\x12\x1d\n\x15timer_condition_index\x18\x03 \x01(\x05\"\'\n\x15\x46\x61ilFlowSignalRequest\x12\x0e\n\x06reason\x18\x01 \x01(\t\";\n\x19GetAttributesQueryRequest\x12\x0c\n\x04keys\x18\x01 \x03(\t\x12\x10\n\x08\x61ll_keys\x18\x02 \x01(\x08\"9\n\x1aGetAttributesQueryResponse\x12\x1b\n\nattributes\x18\x01 \x03(\x0b\x32\x07.dex.KV\"5\n\x16PrepareRpcQueryRequest\x12\x1b\n\x13lock_attribute_keys\x18\x01 \x03(\t\"\x9e\x02\n\x17PrepareRpcQueryResponse\x12\x1b\n\nattributes\x18\x01 \x03(\x0b\x32\x07.dex.KV\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x1e\n\x16\x66low_started_timestamp\x18\x03 \x01(\x03\x12\x11\n\tflow_type\x18\x04 \x01(\t\x12\x15\n\rworker_target\x18\x05 \x01(\t\x12\x45\n\rchannel_infos\x18\x06 \x03(\x0b\x32..dex.PrepareRpcQueryResponse.ChannelInfosEntry\x1a\x45\n\x11\x43hannelInfosEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1f\n\x05value\x18\x02 \x01(\x0b\x32\x10.dex.ChannelInfo:\x02\x38\x01\"r\n\tTimerInfo\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12%\n\x1d\x66iring_unix_timestamp_seconds\x18\x02 \x01(\x03\x12(\n\x06status\x18\x03 \x01(\x0e\x32\x18.dex.InternalTimerStatus\"/\n\rTimerInfoList\x12\x1e\n\x06timers\x18\x01 \x03(\x0b\x32\x0e.dex.TimerInfo\"\xf6\x01\n!GetCurrentTimerInfosQueryResponse\x12v\n\"step_execution_current_timer_infos\x18\x01 \x03(\x0b\x32J.dex.GetCurrentTimerInfosQueryResponse.StepExecutionCurrentTimerInfosEntry\x1aY\n#StepExecutionCurrentTimerInfosEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.dex.TimerInfoList:\x02\x38\x01\"V\n)GetScheduledGreedyTimerTimesQueryResponse\x12)\n\x11pending_scheduled\x18\x01 \x03(\x0b\x32\x0e.dex.TimerInfo\"\x85\x01\n\x11\x44\x65\x62ugDumpResponse\x12\x1f\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x0f.dex.FlowConfig\x12(\n\x08snapshot\x18\x02 \x01(\x0b\x32\x16.dex.ContinueAsNewDump\x12%\n\x1d\x66iring_timers_unix_timestamps\x18\x03 \x03(\x03\"A\n\x15InvokeRpcUpdateResult\x12(\n\x08response\x18\x01 \x01(\x0b\x32\x16.dex.InvokeRPCResponse\"\'\n\x14StepExecutionNumbers\x12\x0f\n\x07numbers\x18\x01 \x03(\x05*\xcb\x01\n\tIndexType\x12\x1a\n\x16INDEX_TYPE_UNSPECIFIED\x10\x00\x12\x16\n\x12INDEX_TYPE_KEYWORD\x10\x01\x12\x13\n\x0fINDEX_TYPE_TEXT\x10\x02\x12\x1c\n\x18INDEX_TYPE_KEYWORD_ARRAY\x10\x03\x12\x12\n\x0eINDEX_TYPE_INT\x10\x04\x12\x15\n\x11INDEX_TYPE_DOUBLE\x10\x05\x12\x13\n\x0fINDEX_TYPE_BOOL\x10\x06\x12\x17\n\x13INDEX_TYPE_DATETIME\x10\x07*\xb0\x01\n\x17WaitForApiFailurePolicy\x12+\n\'WAIT_FOR_API_FAILURE_POLICY_UNSPECIFIED\x10\x00\x12\x34\n0WAIT_FOR_API_FAILURE_POLICY_FAIL_FLOW_ON_FAILURE\x10\x01\x12\x32\n.WAIT_FOR_API_FAILURE_POLICY_PROCEED_ON_FAILURE\x10\x02*\xc1\x01\n\x17\x45xecuteApiFailurePolicy\x12*\n&EXECUTE_API_FAILURE_POLICY_UNSPECIFIED\x10\x00\x12?\n;EXECUTE_API_FAILURE_POLICY_FAIL_FLOW_ON_EXECUTE_API_FAILURE\x10\x01\x12\x39\n5EXECUTE_API_FAILURE_POLICY_PROCEED_TO_CONFIGURED_STEP\x10\x02*\xe6\x01\n\rIdReusePolicy\x12\x1f\n\x1bID_REUSE_POLICY_UNSPECIFIED\x10\x00\x12\x37\n3ID_REUSE_POLICY_ALLOW_IF_PREVIOUS_EXISTS_ABNORMALLY\x10\x01\x12\'\n#ID_REUSE_POLICY_ALLOW_IF_NO_RUNNING\x10\x02\x12\"\n\x1eID_REUSE_POLICY_DISALLOW_REUSE\x10\x03\x12.\n*ID_REUSE_POLICY_ALLOW_TERMINATE_IF_RUNNING\x10\x04*\xcf\x01\n\x14\x41\x63tiveStepSearchMode\x12\'\n#ACTIVE_STEP_SEARCH_MODE_UNSPECIFIED\x10\x00\x12+\n\'ACTIVE_STEP_SEARCH_MODE_ENABLED_FOR_ALL\x10\x01\x12;\n7ACTIVE_STEP_SEARCH_MODE_ENABLED_FOR_STEPS_WITH_WAIT_FOR\x10\x02\x12$\n ACTIVE_STEP_SEARCH_MODE_DISABLED\x10\x03*f\n\x0eStepDurability\x12\x1f\n\x1bSTEP_DURABILITY_UNSPECIFIED\x10\x00\x12\x18\n\x14STEP_DURABILITY_SYNC\x10\x01\x12\x19\n\x15STEP_DURABILITY_ASYNC\x10\x02*h\n\x08StopType\x12\x19\n\x15STOP_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10STOP_TYPE_CANCEL\x10\x01\x12\x17\n\x13STOP_TYPE_TERMINATE\x10\x02\x12\x12\n\x0eSTOP_TYPE_FAIL\x10\x03*\xe6\x01\n\nFlowStatus\x12\x1b\n\x17\x46LOW_STATUS_UNSPECIFIED\x10\x00\x12\x17\n\x13\x46LOW_STATUS_RUNNING\x10\x01\x12\x19\n\x15\x46LOW_STATUS_COMPLETED\x10\x02\x12\x16\n\x12\x46LOW_STATUS_FAILED\x10\x03\x12\x17\n\x13\x46LOW_STATUS_TIMEOUT\x10\x04\x12\x1a\n\x16\x46LOW_STATUS_TERMINATED\x10\x05\x12\x18\n\x14\x46LOW_STATUS_CANCELED\x10\x06\x12 \n\x1c\x46LOW_STATUS_CONTINUED_AS_NEW\x10\x07*\xfc\x01\n\rFlowErrorType\x12\x1f\n\x1b\x46LOW_ERROR_TYPE_UNSPECIFIED\x10\x00\x12.\n*FLOW_ERROR_TYPE_STEP_DECISION_FAILING_FLOW\x10\x01\x12+\n\'FLOW_ERROR_TYPE_CLIENT_API_FAILING_FLOW\x10\x02\x12#\n\x1f\x46LOW_ERROR_TYPE_WORKER_API_FAIL\x10\x03\x12*\n&FLOW_ERROR_TYPE_INVALID_USER_FLOW_CODE\x10\x04\x12\x1c\n\x18\x46LOW_ERROR_TYPE_INTERNAL\x10\x06*\xe3\x01\n\rFlowResetType\x12\x1f\n\x1b\x46LOW_RESET_TYPE_UNSPECIFIED\x10\x00\x12$\n FLOW_RESET_TYPE_HISTORY_EVENT_ID\x10\x01\x12\x1d\n\x19\x46LOW_RESET_TYPE_BEGINNING\x10\x02\x12&\n\"FLOW_RESET_TYPE_HISTORY_EVENT_TIME\x10\x03\x12\x1d\n\x19\x46LOW_RESET_TYPE_STEP_TYPE\x10\x04\x12%\n!FLOW_RESET_TYPE_STEP_EXECUTION_ID\x10\x05*\xf7\x01\n\x0e\x45rrorSubStatus\x12 \n\x1c\x45RROR_SUB_STATUS_UNSPECIFIED\x10\x00\x12\"\n\x1e\x45RROR_SUB_STATUS_UNCATEGORIZED\x10\x01\x12)\n%ERROR_SUB_STATUS_FLOW_ALREADY_STARTED\x10\x02\x12$\n ERROR_SUB_STATUS_FLOW_NOT_EXISTS\x10\x03\x12%\n!ERROR_SUB_STATUS_WORKER_API_ERROR\x10\x04\x12\'\n#ERROR_SUB_STATUS_LONG_POLL_TIME_OUT\x10\x05*\x89\x01\n\x18\x46lowConditionalCloseType\x12+\n\'FLOW_CONDITIONAL_CLOSE_TYPE_UNSPECIFIED\x10\x00\x12@\n<FLOW_CONDITIONAL_CLOSE_TYPE_FORCE_COMPLETE_ON_CHANNELS_EMPTY\x10\x01*\xc8\x01\n\x14WaitingConditionType\x12&\n\"WAITING_CONDITION_TYPE_UNSPECIFIED\x10\x00\x12(\n$WAITING_CONDITION_TYPE_ALL_COMPLETED\x10\x01\x12(\n$WAITING_CONDITION_TYPE_ANY_COMPLETED\x10\x02\x12\x34\n0WAITING_CONDITION_TYPE_ANY_COMBINATION_COMPLETED\x10\x03*q\n\x0f\x43onditionStatus\x12 \n\x1c\x43ONDITION_STATUS_UNSPECIFIED\x10\x00\x12\x1c\n\x18\x43ONDITION_STATUS_WAITING\x10\x01\x12\x1e\n\x1a\x43ONDITION_STATUS_COMPLETED\x10\x02*\xa3\x01\n\x13InternalTimerStatus\x12%\n!INTERNAL_TIMER_STATUS_UNSPECIFIED\x10\x00\x12!\n\x1dINTERNAL_TIMER_STATUS_PENDING\x10\x01\x12\x1f\n\x1bINTERNAL_TIMER_STATUS_FIRED\x10\x02\x12!\n\x1dINTERNAL_TIMER_STATUS_SKIPPED\x10\x03*\xb8\x02\n\x0fUpdateErrorType\x12!\n\x1dUPDATE_ERROR_TYPE_UNSPECIFIED\x10\x00\x12/\n+UPDATE_ERROR_TYPE_CONTINUE_AS_NEW_PREEMPTED\x10\x01\x12&\n\"UPDATE_ERROR_TYPE_INVALID_ARGUMENT\x10\x02\x12)\n%UPDATE_ERROR_TYPE_FAILED_PRECONDITION\x10\x03\x12\'\n#UPDATE_ERROR_TYPE_DEADLINE_EXCEEDED\x10\x04\x12.\n*UPDATE_ERROR_TYPE_RPC_ACQUIRE_LOCK_FAILURE\x10\x05\x12%\n!UPDATE_ERROR_TYPE_SERVER_INTERNAL\x10\x06\x32\xcb\x08\n\x0b\x46lowService\x12:\n\tStartFlow\x12\x15.dex.StartFlowRequest\x1a\x16.dex.StartFlowResponse\x12H\n\x10PublishToChannel\x12\x1c.dex.PublishToChannelRequest\x1a\x16.google.protobuf.Empty\x12\x38\n\x08StopFlow\x12\x14.dex.StopFlowRequest\x1a\x16.google.protobuf.Empty\x12\x46\n\rGetAttributes\x12\x19.dex.GetAttributesRequest\x1a\x1a.dex.GetAttributesResponse\x12\x42\n\rSetAttributes\x12\x19.dex.SetAttributesRequest\x1a\x16.google.protobuf.Empty\x12:\n\tLoadBlobs\x12\x15.dex.LoadBlobsRequest\x1a\x16.dex.LoadBlobsResponse\x12@\n\x0bWaitForFlow\x12\x17.dex.WaitForFlowRequest\x1a\x18.dex.WaitForFlowResponse\x12@\n\x0bSearchFlows\x12\x17.dex.SearchFlowsRequest\x1a\x18.dex.SearchFlowsResponse\x12:\n\tResetFlow\x12\x15.dex.ResetFlowRequest\x1a\x16.dex.ResetFlowResponse\x12:\n\tInvokeRPC\x12\x15.dex.InvokeRPCRequest\x1a\x16.dex.InvokeRPCResponse\x12:\n\tSkipTimer\x12\x15.dex.SkipTimerRequest\x1a\x16.google.protobuf.Empty\x12H\n\x10UpdateFlowConfig\x12\x1c.dex.UpdateFlowConfigRequest\x1a\x16.google.protobuf.Empty\x12^\n\x15WaitForStepCompletion\x12!.dex.WaitForStepCompletionRequest\x1a\".dex.WaitForStepCompletionResponse\x12H\n\x10WaitForAttribute\x12\x1c.dex.WaitForAttributeRequest\x1a\x16.google.protobuf.Empty\x12P\n\x14TriggerContinueAsNew\x12 .dex.TriggerContinueAsNewRequest\x1a\x16.google.protobuf.Empty\x12\x36\n\x0bHealthCheck\x12\x16.google.protobuf.Empty\x1a\x0f.dex.HealthInfo2\x91\x02\n\rWorkerService\x12X\n\x13InvokeWaitForMethod\x12\x1f.dex.InvokeWaitForMethodRequest\x1a .dex.InvokeWaitForMethodResponse\x12X\n\x13InvokeExecuteMethod\x12\x1f.dex.InvokeExecuteMethodRequest\x1a .dex.InvokeExecuteMethodResponse\x12L\n\x0fInvokeWorkerRPC\x12\x1b.dex.InvokeWorkerRPCRequest\x1a\x1c.dex.InvokeWorkerRPCResponse2l\n\x0fInternalService\x12Y\n\x18\x44umpFlowForContinueAsNew\x12\x1d.dex.ContinueAsNewDumpRequest\x1a\x1e.dex.ContinueAsNewDumpResponseB!\n\x13io.superdurable.genB\x08\x44\x65xProtoP\x01\x62\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dex_pb2', _globals)
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
36
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\023io.superdurable.genB\010DexProtoP\001'
|
|
37
|
+
_globals['_LOADBLOBSRESPONSE_VALUESENTRY']._loaded_options = None
|
|
38
|
+
_globals['_LOADBLOBSRESPONSE_VALUESENTRY']._serialized_options = b'8\001'
|
|
39
|
+
_globals['_INVOKEWORKERRPCREQUEST_CHANNELINFOSENTRY']._loaded_options = None
|
|
40
|
+
_globals['_INVOKEWORKERRPCREQUEST_CHANNELINFOSENTRY']._serialized_options = b'8\001'
|
|
41
|
+
_globals['_STEPEXECUTIONCOMPLETEDCONDITIONS_COMPLETEDTIMERCONDITIONSENTRY']._loaded_options = None
|
|
42
|
+
_globals['_STEPEXECUTIONCOMPLETEDCONDITIONS_COMPLETEDTIMERCONDITIONSENTRY']._serialized_options = b'8\001'
|
|
43
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPESTARTEDCOUNTENTRY']._loaded_options = None
|
|
44
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPESTARTEDCOUNTENTRY']._serialized_options = b'8\001'
|
|
45
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPECURRENTLYEXECUTINGCOUNTENTRY']._loaded_options = None
|
|
46
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPECURRENTLYEXECUTINGCOUNTENTRY']._serialized_options = b'8\001'
|
|
47
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPACTIVEEXECUTIONNUMSENTRY']._loaded_options = None
|
|
48
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPACTIVEEXECUTIONNUMSENTRY']._serialized_options = b'8\001'
|
|
49
|
+
_globals['_CONTINUEASNEWDUMP_CHANNELRECEIVEDENTRY']._loaded_options = None
|
|
50
|
+
_globals['_CONTINUEASNEWDUMP_CHANNELRECEIVEDENTRY']._serialized_options = b'8\001'
|
|
51
|
+
_globals['_PREPARERPCQUERYRESPONSE_CHANNELINFOSENTRY']._loaded_options = None
|
|
52
|
+
_globals['_PREPARERPCQUERYRESPONSE_CHANNELINFOSENTRY']._serialized_options = b'8\001'
|
|
53
|
+
_globals['_GETCURRENTTIMERINFOSQUERYRESPONSE_STEPEXECUTIONCURRENTTIMERINFOSENTRY']._loaded_options = None
|
|
54
|
+
_globals['_GETCURRENTTIMERINFOSQUERYRESPONSE_STEPEXECUTIONCURRENTTIMERINFOSENTRY']._serialized_options = b'8\001'
|
|
55
|
+
_globals['_INDEXTYPE']._serialized_start=13495
|
|
56
|
+
_globals['_INDEXTYPE']._serialized_end=13698
|
|
57
|
+
_globals['_WAITFORAPIFAILUREPOLICY']._serialized_start=13701
|
|
58
|
+
_globals['_WAITFORAPIFAILUREPOLICY']._serialized_end=13877
|
|
59
|
+
_globals['_EXECUTEAPIFAILUREPOLICY']._serialized_start=13880
|
|
60
|
+
_globals['_EXECUTEAPIFAILUREPOLICY']._serialized_end=14073
|
|
61
|
+
_globals['_IDREUSEPOLICY']._serialized_start=14076
|
|
62
|
+
_globals['_IDREUSEPOLICY']._serialized_end=14306
|
|
63
|
+
_globals['_ACTIVESTEPSEARCHMODE']._serialized_start=14309
|
|
64
|
+
_globals['_ACTIVESTEPSEARCHMODE']._serialized_end=14516
|
|
65
|
+
_globals['_STEPDURABILITY']._serialized_start=14518
|
|
66
|
+
_globals['_STEPDURABILITY']._serialized_end=14620
|
|
67
|
+
_globals['_STOPTYPE']._serialized_start=14622
|
|
68
|
+
_globals['_STOPTYPE']._serialized_end=14726
|
|
69
|
+
_globals['_FLOWSTATUS']._serialized_start=14729
|
|
70
|
+
_globals['_FLOWSTATUS']._serialized_end=14959
|
|
71
|
+
_globals['_FLOWERRORTYPE']._serialized_start=14962
|
|
72
|
+
_globals['_FLOWERRORTYPE']._serialized_end=15214
|
|
73
|
+
_globals['_FLOWRESETTYPE']._serialized_start=15217
|
|
74
|
+
_globals['_FLOWRESETTYPE']._serialized_end=15444
|
|
75
|
+
_globals['_ERRORSUBSTATUS']._serialized_start=15447
|
|
76
|
+
_globals['_ERRORSUBSTATUS']._serialized_end=15694
|
|
77
|
+
_globals['_FLOWCONDITIONALCLOSETYPE']._serialized_start=15697
|
|
78
|
+
_globals['_FLOWCONDITIONALCLOSETYPE']._serialized_end=15834
|
|
79
|
+
_globals['_WAITINGCONDITIONTYPE']._serialized_start=15837
|
|
80
|
+
_globals['_WAITINGCONDITIONTYPE']._serialized_end=16037
|
|
81
|
+
_globals['_CONDITIONSTATUS']._serialized_start=16039
|
|
82
|
+
_globals['_CONDITIONSTATUS']._serialized_end=16152
|
|
83
|
+
_globals['_INTERNALTIMERSTATUS']._serialized_start=16155
|
|
84
|
+
_globals['_INTERNALTIMERSTATUS']._serialized_end=16318
|
|
85
|
+
_globals['_UPDATEERRORTYPE']._serialized_start=16321
|
|
86
|
+
_globals['_UPDATEERRORTYPE']._serialized_end=16633
|
|
87
|
+
_globals['_VALUE']._serialized_start=78
|
|
88
|
+
_globals['_VALUE']._serialized_end=362
|
|
89
|
+
_globals['_ENCODEDOBJECT']._serialized_start=364
|
|
90
|
+
_globals['_ENCODEDOBJECT']._serialized_end=414
|
|
91
|
+
_globals['_ATTRIBUTEWRITE']._serialized_start=416
|
|
92
|
+
_globals['_ATTRIBUTEWRITE']._serialized_end=512
|
|
93
|
+
_globals['_KV']._serialized_start=514
|
|
94
|
+
_globals['_KV']._serialized_end=558
|
|
95
|
+
_globals['_INDEXCONFIG']._serialized_start=560
|
|
96
|
+
_globals['_INDEXCONFIG']._serialized_end=638
|
|
97
|
+
_globals['_CONTEXT']._serialized_start=641
|
|
98
|
+
_globals['_CONTEXT']._serialized_end=792
|
|
99
|
+
_globals['_RETRYPOLICY']._serialized_start=795
|
|
100
|
+
_globals['_RETRYPOLICY']._serialized_end=963
|
|
101
|
+
_globals['_FLOWRETRYPOLICY']._serialized_start=966
|
|
102
|
+
_globals['_FLOWRETRYPOLICY']._serialized_end=1106
|
|
103
|
+
_globals['_STEPOPTIONS']._serialized_start=1109
|
|
104
|
+
_globals['_STEPOPTIONS']._serialized_end=1733
|
|
105
|
+
_globals['_FLOWALREADYSTARTEDOPTIONS']._serialized_start=1735
|
|
106
|
+
_globals['_FLOWALREADYSTARTEDOPTIONS']._serialized_end=1820
|
|
107
|
+
_globals['_FLOWSTARTOPTIONS']._serialized_start=1823
|
|
108
|
+
_globals['_FLOWSTARTOPTIONS']._serialized_end=2145
|
|
109
|
+
_globals['_FLOWCONFIG']._serialized_start=2148
|
|
110
|
+
_globals['_FLOWCONFIG']._serialized_end=2482
|
|
111
|
+
_globals['_STARTFLOWREQUEST']._serialized_start=2485
|
|
112
|
+
_globals['_STARTFLOWREQUEST']._serialized_end=2740
|
|
113
|
+
_globals['_STARTFLOWRESPONSE']._serialized_start=2742
|
|
114
|
+
_globals['_STARTFLOWRESPONSE']._serialized_end=2777
|
|
115
|
+
_globals['_PUBLISHTOCHANNELREQUEST']._serialized_start=2779
|
|
116
|
+
_globals['_PUBLISHTOCHANNELREQUEST']._serialized_end=2876
|
|
117
|
+
_globals['_CHANNELMESSAGE']._serialized_start=2878
|
|
118
|
+
_globals['_CHANNELMESSAGE']._serialized_end=2943
|
|
119
|
+
_globals['_STOPFLOWREQUEST']._serialized_start=2945
|
|
120
|
+
_globals['_STOPFLOWREQUEST']._serialized_end=3045
|
|
121
|
+
_globals['_GETATTRIBUTESREQUEST']._serialized_start=3047
|
|
122
|
+
_globals['_GETATTRIBUTESREQUEST']._serialized_end=3134
|
|
123
|
+
_globals['_GETATTRIBUTESRESPONSE']._serialized_start=3136
|
|
124
|
+
_globals['_GETATTRIBUTESRESPONSE']._serialized_end=3188
|
|
125
|
+
_globals['_SETATTRIBUTESREQUEST']._serialized_start=3190
|
|
126
|
+
_globals['_SETATTRIBUTESREQUEST']._serialized_end=3286
|
|
127
|
+
_globals['_LOADBLOBSREQUEST']._serialized_start=3288
|
|
128
|
+
_globals['_LOADBLOBSREQUEST']._serialized_end=3334
|
|
129
|
+
_globals['_LOADBLOBSRESPONSE']._serialized_start=3337
|
|
130
|
+
_globals['_LOADBLOBSRESPONSE']._serialized_end=3467
|
|
131
|
+
_globals['_LOADBLOBSRESPONSE_VALUESENTRY']._serialized_start=3410
|
|
132
|
+
_globals['_LOADBLOBSRESPONSE_VALUESENTRY']._serialized_end=3467
|
|
133
|
+
_globals['_WAITFORFLOWREQUEST']._serialized_start=3469
|
|
134
|
+
_globals['_WAITFORFLOWREQUEST']._serialized_end=3572
|
|
135
|
+
_globals['_STEPCOMPLETIONOUTPUT']._serialized_start=3575
|
|
136
|
+
_globals['_STEPCOMPLETIONOUTPUT']._serialized_end=3706
|
|
137
|
+
_globals['_WAITFORFLOWRESPONSE']._serialized_start=3709
|
|
138
|
+
_globals['_WAITFORFLOWRESPONSE']._serialized_end=3891
|
|
139
|
+
_globals['_SEARCHFLOWSREQUEST']._serialized_start=3893
|
|
140
|
+
_globals['_SEARCHFLOWSREQUEST']._serialized_end=3972
|
|
141
|
+
_globals['_SEARCHFLOWSRESPONSE']._serialized_start=3974
|
|
142
|
+
_globals['_SEARCHFLOWSRESPONSE']._serialized_end=4070
|
|
143
|
+
_globals['_SEARCHFLOWSRESPONSEENTRY']._serialized_start=4072
|
|
144
|
+
_globals['_SEARCHFLOWSRESPONSEENTRY']._serialized_end=4131
|
|
145
|
+
_globals['_RESETFLOWREQUEST']._serialized_start=4134
|
|
146
|
+
_globals['_RESETFLOWREQUEST']._serialized_end=4414
|
|
147
|
+
_globals['_RESETFLOWRESPONSE']._serialized_start=4416
|
|
148
|
+
_globals['_RESETFLOWRESPONSE']._serialized_end=4451
|
|
149
|
+
_globals['_INVOKERPCREQUEST']._serialized_start=4454
|
|
150
|
+
_globals['_INVOKERPCREQUEST']._serialized_end=4604
|
|
151
|
+
_globals['_INVOKERPCRESPONSE']._serialized_start=4606
|
|
152
|
+
_globals['_INVOKERPCRESPONSE']._serialized_end=4653
|
|
153
|
+
_globals['_SKIPTIMERREQUEST']._serialized_start=4656
|
|
154
|
+
_globals['_SKIPTIMERREQUEST']._serialized_end=4824
|
|
155
|
+
_globals['_UPDATEFLOWCONFIGREQUEST']._serialized_start=4826
|
|
156
|
+
_globals['_UPDATEFLOWCONFIGREQUEST']._serialized_end=4922
|
|
157
|
+
_globals['_WAITFORSTEPCOMPLETIONREQUEST']._serialized_start=4924
|
|
158
|
+
_globals['_WAITFORSTEPCOMPLETIONREQUEST']._serialized_end=5048
|
|
159
|
+
_globals['_WAITFORSTEPCOMPLETIONRESPONSE']._serialized_start=5050
|
|
160
|
+
_globals['_WAITFORSTEPCOMPLETIONRESPONSE']._serialized_end=5081
|
|
161
|
+
_globals['_WAITFORATTRIBUTEREQUEST']._serialized_start=5084
|
|
162
|
+
_globals['_WAITFORATTRIBUTEREQUEST']._serialized_end=5220
|
|
163
|
+
_globals['_WAITFORATTRIBUTECONDITION']._serialized_start=5222
|
|
164
|
+
_globals['_WAITFORATTRIBUTECONDITION']._serialized_end=5302
|
|
165
|
+
_globals['_WAITFORATTRIBUTEEQUAL']._serialized_start=5304
|
|
166
|
+
_globals['_WAITFORATTRIBUTEEQUAL']._serialized_end=5367
|
|
167
|
+
_globals['_TRIGGERCONTINUEASNEWREQUEST']._serialized_start=5369
|
|
168
|
+
_globals['_TRIGGERCONTINUEASNEWREQUEST']._serialized_end=5431
|
|
169
|
+
_globals['_HEALTHINFO']._serialized_start=5433
|
|
170
|
+
_globals['_HEALTHINFO']._serialized_end=5500
|
|
171
|
+
_globals['_ERRORRESPONSE']._serialized_start=5503
|
|
172
|
+
_globals['_ERRORRESPONSE']._serialized_end=5687
|
|
173
|
+
_globals['_WORKERERRORRESPONSE']._serialized_start=5689
|
|
174
|
+
_globals['_WORKERERRORRESPONSE']._serialized_end=5746
|
|
175
|
+
_globals['_CHANNELINFO']._serialized_start=5748
|
|
176
|
+
_globals['_CHANNELINFO']._serialized_end=5775
|
|
177
|
+
_globals['_INVOKEWAITFORMETHODREQUEST']._serialized_start=5778
|
|
178
|
+
_globals['_INVOKEWAITFORMETHODREQUEST']._serialized_end=5936
|
|
179
|
+
_globals['_INVOKEWAITFORMETHODRESPONSE']._serialized_start=5939
|
|
180
|
+
_globals['_INVOKEWAITFORMETHODRESPONSE']._serialized_end=6218
|
|
181
|
+
_globals['_INVOKEEXECUTEMETHODREQUEST']._serialized_start=6221
|
|
182
|
+
_globals['_INVOKEEXECUTEMETHODREQUEST']._serialized_end=6463
|
|
183
|
+
_globals['_INVOKEEXECUTEMETHODRESPONSE']._serialized_start=6466
|
|
184
|
+
_globals['_INVOKEEXECUTEMETHODRESPONSE']._serialized_end=6737
|
|
185
|
+
_globals['_INVOKEWORKERRPCREQUEST']._serialized_start=6740
|
|
186
|
+
_globals['_INVOKEWORKERRPCREQUEST']._serialized_end=7029
|
|
187
|
+
_globals['_INVOKEWORKERRPCREQUEST_CHANNELINFOSENTRY']._serialized_start=6960
|
|
188
|
+
_globals['_INVOKEWORKERRPCREQUEST_CHANNELINFOSENTRY']._serialized_end=7029
|
|
189
|
+
_globals['_INVOKEWORKERRPCRESPONSE']._serialized_start=7032
|
|
190
|
+
_globals['_INVOKEWORKERRPCRESPONSE']._serialized_end=7256
|
|
191
|
+
_globals['_STEPDECISION']._serialized_start=7258
|
|
192
|
+
_globals['_STEPDECISION']._serialized_end=7365
|
|
193
|
+
_globals['_FLOWCONDITIONALCLOSE']._serialized_start=7368
|
|
194
|
+
_globals['_FLOWCONDITIONALCLOSE']._serialized_end=7509
|
|
195
|
+
_globals['_STEPMOVEMENT']._serialized_start=7511
|
|
196
|
+
_globals['_STEPMOVEMENT']._serialized_end=7616
|
|
197
|
+
_globals['_CONDITIONCOMBINATION']._serialized_start=7618
|
|
198
|
+
_globals['_CONDITIONCOMBINATION']._serialized_end=7663
|
|
199
|
+
_globals['_WAITINGCONDITION']._serialized_start=7666
|
|
200
|
+
_globals['_WAITINGCONDITION']._serialized_end=7900
|
|
201
|
+
_globals['_TIMERCONDITION']._serialized_start=7902
|
|
202
|
+
_globals['_TIMERCONDITION']._serialized_end=8005
|
|
203
|
+
_globals['_CHANNELCONDITION']._serialized_start=8008
|
|
204
|
+
_globals['_CHANNELCONDITION']._serialized_end=8140
|
|
205
|
+
_globals['_CONDITIONRESULTS']._serialized_start=8143
|
|
206
|
+
_globals['_CONDITIONRESULTS']._serialized_end=8272
|
|
207
|
+
_globals['_TIMERRESULT']._serialized_start=8274
|
|
208
|
+
_globals['_TIMERRESULT']._serialized_end=8357
|
|
209
|
+
_globals['_CHANNELRESULT']._serialized_start=8360
|
|
210
|
+
_globals['_CHANNELRESULT']._serialized_end=8495
|
|
211
|
+
_globals['_CONTINUEASNEWDUMPREQUEST']._serialized_start=8497
|
|
212
|
+
_globals['_CONTINUEASNEWDUMPREQUEST']._serialized_end=8602
|
|
213
|
+
_globals['_CONTINUEASNEWDUMPRESPONSE']._serialized_start=8604
|
|
214
|
+
_globals['_CONTINUEASNEWDUMPRESPONSE']._serialized_end=8710
|
|
215
|
+
_globals['_CHANNELVALUES']._serialized_start=8712
|
|
216
|
+
_globals['_CHANNELVALUES']._serialized_end=8755
|
|
217
|
+
_globals['_STEPEXECUTIONCOMPLETEDCONDITIONS']._serialized_start=8758
|
|
218
|
+
_globals['_STEPEXECUTIONCOMPLETEDCONDITIONS']._serialized_end=8988
|
|
219
|
+
_globals['_STEPEXECUTIONCOMPLETEDCONDITIONS_COMPLETEDTIMERCONDITIONSENTRY']._serialized_start=8899
|
|
220
|
+
_globals['_STEPEXECUTIONCOMPLETEDCONDITIONS_COMPLETEDTIMERCONDITIONSENTRY']._serialized_end=8988
|
|
221
|
+
_globals['_STEPEXECUTIONRESUMEINFO']._serialized_start=8991
|
|
222
|
+
_globals['_STEPEXECUTIONRESUMEINFO']._serialized_end=9229
|
|
223
|
+
_globals['_STEPEXECUTIONCOUNTERINFO']._serialized_start=9232
|
|
224
|
+
_globals['_STEPEXECUTIONCOUNTERINFO']._serialized_end=9822
|
|
225
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPESTARTEDCOUNTENTRY']._serialized_start=9600
|
|
226
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPESTARTEDCOUNTENTRY']._serialized_end=9659
|
|
227
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPECURRENTLYEXECUTINGCOUNTENTRY']._serialized_start=9661
|
|
228
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPECURRENTLYEXECUTINGCOUNTENTRY']._serialized_end=9731
|
|
229
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPACTIVEEXECUTIONNUMSENTRY']._serialized_start=9733
|
|
230
|
+
_globals['_STEPEXECUTIONCOUNTERINFO_STEPACTIVEEXECUTIONNUMSENTRY']._serialized_end=9822
|
|
231
|
+
_globals['_STALESKIPTIMER']._serialized_start=9824
|
|
232
|
+
_globals['_STALESKIPTIMER']._serialized_end=9926
|
|
233
|
+
_globals['_CONTINUEASNEWDUMP']._serialized_start=9929
|
|
234
|
+
_globals['_CONTINUEASNEWDUMP']._serialized_end=10397
|
|
235
|
+
_globals['_CONTINUEASNEWDUMP_CHANNELRECEIVEDENTRY']._serialized_start=10323
|
|
236
|
+
_globals['_CONTINUEASNEWDUMP_CHANNELRECEIVEDENTRY']._serialized_end=10397
|
|
237
|
+
_globals['_CONTINUEASNEWINPUT']._serialized_start=10399
|
|
238
|
+
_globals['_CONTINUEASNEWINPUT']._serialized_end=10453
|
|
239
|
+
_globals['_INTERPRETERWORKFLOWINPUT']._serialized_start=10456
|
|
240
|
+
_globals['_INTERPRETERWORKFLOWINPUT']._serialized_end=10784
|
|
241
|
+
_globals['_INTERPRETERWORKFLOWOUTPUT']._serialized_start=10786
|
|
242
|
+
_globals['_INTERPRETERWORKFLOWOUTPUT']._serialized_end=10873
|
|
243
|
+
_globals['_BLOBSTORECLEANUPWORKFLOWINPUT']._serialized_start=10875
|
|
244
|
+
_globals['_BLOBSTORECLEANUPWORKFLOWINPUT']._serialized_end=10924
|
|
245
|
+
_globals['_BLOBSTORECLEANUPWORKFLOWOUTPUT']._serialized_start=10926
|
|
246
|
+
_globals['_BLOBSTORECLEANUPWORKFLOWOUTPUT']._serialized_end=10981
|
|
247
|
+
_globals['_INVOKEWAITFORMETHODACTIVITYINPUT']._serialized_start=10983
|
|
248
|
+
_globals['_INVOKEWAITFORMETHODACTIVITYINPUT']._serialized_end=11090
|
|
249
|
+
_globals['_INVOKEWAITFORMETHODACTIVITYOUTPUT']._serialized_start=11092
|
|
250
|
+
_globals['_INVOKEWAITFORMETHODACTIVITYOUTPUT']._serialized_end=11179
|
|
251
|
+
_globals['_INVOKEEXECUTEMETHODACTIVITYINPUT']._serialized_start=11181
|
|
252
|
+
_globals['_INVOKEEXECUTEMETHODACTIVITYINPUT']._serialized_end=11288
|
|
253
|
+
_globals['_INVOKEEXECUTEMETHODACTIVITYOUTPUT']._serialized_start=11290
|
|
254
|
+
_globals['_INVOKEEXECUTEMETHODACTIVITYOUTPUT']._serialized_end=11377
|
|
255
|
+
_globals['_DUMPFLOWFORCONTINUEASNEWACTIVITYINPUT']._serialized_start=11379
|
|
256
|
+
_globals['_DUMPFLOWFORCONTINUEASNEWACTIVITYINPUT']._serialized_end=11466
|
|
257
|
+
_globals['_DUMPFLOWFORCONTINUEASNEWACTIVITYOUTPUT']._serialized_start=11468
|
|
258
|
+
_globals['_DUMPFLOWFORCONTINUEASNEWACTIVITYOUTPUT']._serialized_end=11558
|
|
259
|
+
_globals['_INVOKEWORKERRPCACTIVITYINPUT']._serialized_start=11560
|
|
260
|
+
_globals['_INVOKEWORKERRPCACTIVITYINPUT']._serialized_end=11678
|
|
261
|
+
_globals['_INVOKEWORKERRPCACTIVITYOUTPUT']._serialized_start=11680
|
|
262
|
+
_globals['_INVOKEWORKERRPCACTIVITYOUTPUT']._serialized_end=11759
|
|
263
|
+
_globals['_CLEANUPBLOBSTOREACTIVITYINPUT']._serialized_start=11761
|
|
264
|
+
_globals['_CLEANUPBLOBSTOREACTIVITYINPUT']._serialized_end=11810
|
|
265
|
+
_globals['_CLEANUPBLOBSTOREACTIVITYOUTPUT']._serialized_start=11812
|
|
266
|
+
_globals['_CLEANUPBLOBSTOREACTIVITYOUTPUT']._serialized_end=11867
|
|
267
|
+
_globals['_EXECUTERPCSIGNALREQUEST']._serialized_start=11870
|
|
268
|
+
_globals['_EXECUTERPCSIGNALREQUEST']._serialized_end=12129
|
|
269
|
+
_globals['_SKIPTIMERSIGNALREQUEST']._serialized_start=12131
|
|
270
|
+
_globals['_SKIPTIMERSIGNALREQUEST']._serialized_end=12241
|
|
271
|
+
_globals['_FAILFLOWSIGNALREQUEST']._serialized_start=12243
|
|
272
|
+
_globals['_FAILFLOWSIGNALREQUEST']._serialized_end=12282
|
|
273
|
+
_globals['_GETATTRIBUTESQUERYREQUEST']._serialized_start=12284
|
|
274
|
+
_globals['_GETATTRIBUTESQUERYREQUEST']._serialized_end=12343
|
|
275
|
+
_globals['_GETATTRIBUTESQUERYRESPONSE']._serialized_start=12345
|
|
276
|
+
_globals['_GETATTRIBUTESQUERYRESPONSE']._serialized_end=12402
|
|
277
|
+
_globals['_PREPARERPCQUERYREQUEST']._serialized_start=12404
|
|
278
|
+
_globals['_PREPARERPCQUERYREQUEST']._serialized_end=12457
|
|
279
|
+
_globals['_PREPARERPCQUERYRESPONSE']._serialized_start=12460
|
|
280
|
+
_globals['_PREPARERPCQUERYRESPONSE']._serialized_end=12746
|
|
281
|
+
_globals['_PREPARERPCQUERYRESPONSE_CHANNELINFOSENTRY']._serialized_start=6960
|
|
282
|
+
_globals['_PREPARERPCQUERYRESPONSE_CHANNELINFOSENTRY']._serialized_end=7029
|
|
283
|
+
_globals['_TIMERINFO']._serialized_start=12748
|
|
284
|
+
_globals['_TIMERINFO']._serialized_end=12862
|
|
285
|
+
_globals['_TIMERINFOLIST']._serialized_start=12864
|
|
286
|
+
_globals['_TIMERINFOLIST']._serialized_end=12911
|
|
287
|
+
_globals['_GETCURRENTTIMERINFOSQUERYRESPONSE']._serialized_start=12914
|
|
288
|
+
_globals['_GETCURRENTTIMERINFOSQUERYRESPONSE']._serialized_end=13160
|
|
289
|
+
_globals['_GETCURRENTTIMERINFOSQUERYRESPONSE_STEPEXECUTIONCURRENTTIMERINFOSENTRY']._serialized_start=13071
|
|
290
|
+
_globals['_GETCURRENTTIMERINFOSQUERYRESPONSE_STEPEXECUTIONCURRENTTIMERINFOSENTRY']._serialized_end=13160
|
|
291
|
+
_globals['_GETSCHEDULEDGREEDYTIMERTIMESQUERYRESPONSE']._serialized_start=13162
|
|
292
|
+
_globals['_GETSCHEDULEDGREEDYTIMERTIMESQUERYRESPONSE']._serialized_end=13248
|
|
293
|
+
_globals['_DEBUGDUMPRESPONSE']._serialized_start=13251
|
|
294
|
+
_globals['_DEBUGDUMPRESPONSE']._serialized_end=13384
|
|
295
|
+
_globals['_INVOKERPCUPDATERESULT']._serialized_start=13386
|
|
296
|
+
_globals['_INVOKERPCUPDATERESULT']._serialized_end=13451
|
|
297
|
+
_globals['_STEPEXECUTIONNUMBERS']._serialized_start=13453
|
|
298
|
+
_globals['_STEPEXECUTIONNUMBERS']._serialized_end=13492
|
|
299
|
+
_globals['_FLOWSERVICE']._serialized_start=16636
|
|
300
|
+
_globals['_FLOWSERVICE']._serialized_end=17735
|
|
301
|
+
_globals['_WORKERSERVICE']._serialized_start=17738
|
|
302
|
+
_globals['_WORKERSERVICE']._serialized_end=18011
|
|
303
|
+
_globals['_INTERNALSERVICE']._serialized_start=18013
|
|
304
|
+
_globals['_INTERNALSERVICE']._serialized_end=18121
|
|
305
|
+
# @@protoc_insertion_point(module_scope)
|