scalebox-sdk 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. scalebox/__init__.py +80 -0
  2. scalebox/api/__init__.py +128 -0
  3. scalebox/api/client/__init__.py +8 -0
  4. scalebox/api/client/api/__init__.py +1 -0
  5. scalebox/api/client/api/sandboxes/__init__.py +0 -0
  6. scalebox/api/client/api/sandboxes/delete_sandboxes_sandbox_id.py +161 -0
  7. scalebox/api/client/api/sandboxes/get_sandboxes.py +176 -0
  8. scalebox/api/client/api/sandboxes/get_sandboxes_metrics.py +173 -0
  9. scalebox/api/client/api/sandboxes/get_sandboxes_sandbox_id.py +163 -0
  10. scalebox/api/client/api/sandboxes/get_sandboxes_sandbox_id_logs.py +199 -0
  11. scalebox/api/client/api/sandboxes/get_sandboxes_sandbox_id_metrics.py +214 -0
  12. scalebox/api/client/api/sandboxes/get_v2_sandboxes.py +229 -0
  13. scalebox/api/client/api/sandboxes/post_sandboxes.py +174 -0
  14. scalebox/api/client/api/sandboxes/post_sandboxes_sandbox_id_pause.py +165 -0
  15. scalebox/api/client/api/sandboxes/post_sandboxes_sandbox_id_refreshes.py +182 -0
  16. scalebox/api/client/api/sandboxes/post_sandboxes_sandbox_id_resume.py +190 -0
  17. scalebox/api/client/api/sandboxes/post_sandboxes_sandbox_id_timeout.py +194 -0
  18. scalebox/api/client/client.py +288 -0
  19. scalebox/api/client/errors.py +16 -0
  20. scalebox/api/client/models/__init__.py +81 -0
  21. scalebox/api/client/models/build_log_entry.py +79 -0
  22. scalebox/api/client/models/created_access_token.py +100 -0
  23. scalebox/api/client/models/created_team_api_key.py +166 -0
  24. scalebox/api/client/models/error.py +67 -0
  25. scalebox/api/client/models/identifier_masking_details.py +83 -0
  26. scalebox/api/client/models/listed_sandbox.py +138 -0
  27. scalebox/api/client/models/log_level.py +11 -0
  28. scalebox/api/client/models/new_access_token.py +59 -0
  29. scalebox/api/client/models/new_sandbox.py +125 -0
  30. scalebox/api/client/models/new_team_api_key.py +59 -0
  31. scalebox/api/client/models/node.py +154 -0
  32. scalebox/api/client/models/node_detail.py +152 -0
  33. scalebox/api/client/models/node_status.py +11 -0
  34. scalebox/api/client/models/node_status_change.py +61 -0
  35. scalebox/api/client/models/post_sandboxes_sandbox_id_refreshes_body.py +59 -0
  36. scalebox/api/client/models/post_sandboxes_sandbox_id_timeout_body.py +59 -0
  37. scalebox/api/client/models/resumed_sandbox.py +68 -0
  38. scalebox/api/client/models/sandbox.py +125 -0
  39. scalebox/api/client/models/sandbox_detail.py +178 -0
  40. scalebox/api/client/models/sandbox_log.py +70 -0
  41. scalebox/api/client/models/sandbox_logs.py +73 -0
  42. scalebox/api/client/models/sandbox_metric.py +110 -0
  43. scalebox/api/client/models/sandbox_state.py +9 -0
  44. scalebox/api/client/models/sandboxes_with_metrics.py +59 -0
  45. scalebox/api/client/models/team.py +83 -0
  46. scalebox/api/client/models/team_api_key.py +158 -0
  47. scalebox/api/client/models/team_user.py +68 -0
  48. scalebox/api/client/models/template.py +179 -0
  49. scalebox/api/client/models/template_build.py +117 -0
  50. scalebox/api/client/models/template_build_file_upload.py +70 -0
  51. scalebox/api/client/models/template_build_request.py +115 -0
  52. scalebox/api/client/models/template_build_request_v2.py +88 -0
  53. scalebox/api/client/models/template_build_start_v2.py +114 -0
  54. scalebox/api/client/models/template_build_status.py +11 -0
  55. scalebox/api/client/models/template_step.py +91 -0
  56. scalebox/api/client/models/template_update_request.py +59 -0
  57. scalebox/api/client/models/update_team_api_key.py +59 -0
  58. scalebox/api/client/py.typed +1 -0
  59. scalebox/api/client/types.py +46 -0
  60. scalebox/api/metadata.py +19 -0
  61. scalebox/cli.py +125 -0
  62. scalebox/client/__init__.py +0 -0
  63. scalebox/client/aclient.py +57 -0
  64. scalebox/client/api.proto +460 -0
  65. scalebox/client/buf.gen.yaml +8 -0
  66. scalebox/client/client.py +102 -0
  67. scalebox/client/requirements.txt +5 -0
  68. scalebox/code_interpreter/__init__.py +12 -0
  69. scalebox/code_interpreter/charts.py +230 -0
  70. scalebox/code_interpreter/code_interpreter_async.py +369 -0
  71. scalebox/code_interpreter/code_interpreter_sync.py +317 -0
  72. scalebox/code_interpreter/constants.py +3 -0
  73. scalebox/code_interpreter/exceptions.py +13 -0
  74. scalebox/code_interpreter/models.py +485 -0
  75. scalebox/connection_config.py +92 -0
  76. scalebox/csx_connect/__init__.py +1 -0
  77. scalebox/csx_connect/client.py +485 -0
  78. scalebox/csx_desktop/__init__.py +0 -0
  79. scalebox/csx_desktop/main.py +651 -0
  80. scalebox/exceptions.py +83 -0
  81. scalebox/generated/__init__.py +0 -0
  82. scalebox/generated/api.py +61 -0
  83. scalebox/generated/api_pb2.py +203 -0
  84. scalebox/generated/api_pb2.pyi +956 -0
  85. scalebox/generated/api_pb2_connect.py +1456 -0
  86. scalebox/generated/rpc.py +50 -0
  87. scalebox/generated/versions.py +3 -0
  88. scalebox/requirements.txt +36 -0
  89. scalebox/sandbox/__init__.py +0 -0
  90. scalebox/sandbox/commands/__init__.py +0 -0
  91. scalebox/sandbox/commands/command_handle.py +69 -0
  92. scalebox/sandbox/commands/main.py +39 -0
  93. scalebox/sandbox/filesystem/__init__.py +0 -0
  94. scalebox/sandbox/filesystem/filesystem.py +95 -0
  95. scalebox/sandbox/filesystem/watch_handle.py +60 -0
  96. scalebox/sandbox/main.py +139 -0
  97. scalebox/sandbox/sandbox_api.py +91 -0
  98. scalebox/sandbox/signature.py +40 -0
  99. scalebox/sandbox/utils.py +34 -0
  100. scalebox/sandbox_async/__init__.py +1 -0
  101. scalebox/sandbox_async/commands/command.py +307 -0
  102. scalebox/sandbox_async/commands/command_handle.py +187 -0
  103. scalebox/sandbox_async/commands/pty.py +187 -0
  104. scalebox/sandbox_async/filesystem/filesystem.py +557 -0
  105. scalebox/sandbox_async/filesystem/watch_handle.py +61 -0
  106. scalebox/sandbox_async/main.py +646 -0
  107. scalebox/sandbox_async/sandbox_api.py +365 -0
  108. scalebox/sandbox_async/utils.py +7 -0
  109. scalebox/sandbox_sync/__init__.py +2 -0
  110. scalebox/sandbox_sync/commands/__init__.py +0 -0
  111. scalebox/sandbox_sync/commands/command.py +300 -0
  112. scalebox/sandbox_sync/commands/command_handle.py +150 -0
  113. scalebox/sandbox_sync/commands/pty.py +181 -0
  114. scalebox/sandbox_sync/filesystem/__init__.py +0 -0
  115. scalebox/sandbox_sync/filesystem/filesystem.py +543 -0
  116. scalebox/sandbox_sync/filesystem/watch_handle.py +66 -0
  117. scalebox/sandbox_sync/main.py +790 -0
  118. scalebox/sandbox_sync/sandbox_api.py +356 -0
  119. scalebox/test/CODE_INTERPRETER_TESTS_READY.md +323 -0
  120. scalebox/test/README.md +329 -0
  121. scalebox/test/__init__.py +0 -0
  122. scalebox/test/aclient.py +72 -0
  123. scalebox/test/code_interpreter_centext.py +21 -0
  124. scalebox/test/code_interpreter_centext_sync.py +21 -0
  125. scalebox/test/code_interpreter_test.py +34 -0
  126. scalebox/test/code_interpreter_test_sync.py +34 -0
  127. scalebox/test/run_all_validation_tests.py +334 -0
  128. scalebox/test/run_code_interpreter_tests.sh +67 -0
  129. scalebox/test/run_tests.sh +230 -0
  130. scalebox/test/test_basic.py +78 -0
  131. scalebox/test/test_code_interpreter_async_comprehensive.py +2653 -0
  132. scalebox/test/test_code_interpreter_e2basync_comprehensive.py +2655 -0
  133. scalebox/test/test_code_interpreter_e2bsync_comprehensive.py +3416 -0
  134. scalebox/test/test_code_interpreter_sync_comprehensive.py +3412 -0
  135. scalebox/test/test_e2b_first.py +11 -0
  136. scalebox/test/test_sandbox_async_comprehensive.py +738 -0
  137. scalebox/test/test_sandbox_stress_and_edge_cases.py +778 -0
  138. scalebox/test/test_sandbox_sync_comprehensive.py +770 -0
  139. scalebox/test/test_sandbox_usage_examples.py +987 -0
  140. scalebox/test/testacreate.py +24 -0
  141. scalebox/test/testagetinfo.py +18 -0
  142. scalebox/test/testcodeinterpreter_async.py +508 -0
  143. scalebox/test/testcodeinterpreter_sync.py +239 -0
  144. scalebox/test/testcomputeuse.py +243 -0
  145. scalebox/test/testnovnc.py +12 -0
  146. scalebox/test/testsandbox_async.py +118 -0
  147. scalebox/test/testsandbox_sync.py +38 -0
  148. scalebox/utils/__init__.py +0 -0
  149. scalebox/utils/httpcoreclient.py +297 -0
  150. scalebox/utils/httpxclient.py +403 -0
  151. scalebox/version.py +16 -0
  152. scalebox_sdk-0.1.0.dist-info/METADATA +292 -0
  153. scalebox_sdk-0.1.0.dist-info/RECORD +157 -0
  154. scalebox_sdk-0.1.0.dist-info/WHEEL +5 -0
  155. scalebox_sdk-0.1.0.dist-info/entry_points.txt +2 -0
  156. scalebox_sdk-0.1.0.dist-info/licenses/LICENSE +21 -0
  157. scalebox_sdk-0.1.0.dist-info/top_level.txt +1 -0
scalebox/exceptions.py ADDED
@@ -0,0 +1,83 @@
1
+ def sandbox_timeout_exception(message: str) -> "TimeoutException":
2
+ return TimeoutException(
3
+ f"{message}: This error is likely due to sandbox timeout. You can modify the sandbox timeout by passing 'timeout' when starting the sandbox or calling '.set_timeout' on the sandbox with the desired timeout."
4
+ )
5
+
6
+
7
+ def request_timeout_error() -> Exception:
8
+ return TimeoutException(
9
+ "Request timed out — the 'request_timeout' option can be used to increase this timeout",
10
+ )
11
+
12
+
13
+ def execution_timeout_error() -> Exception:
14
+ return TimeoutException(
15
+ "Execution timed out — the 'timeout' option can be used to increase this timeout",
16
+ )
17
+
18
+
19
+ class SandboxException(Exception):
20
+ """
21
+ Base class for all sandbox errors.
22
+
23
+ Raised when a general sandbox exception occurs.
24
+ """
25
+
26
+ pass
27
+
28
+
29
+ class TimeoutException(SandboxException):
30
+ """
31
+ Raised when a timeout occurs.
32
+
33
+ The `unavailable` exception type is caused by sandbox timeout.\n
34
+ The `canceled` exception type is caused by exceeding request timeout.\n
35
+ The `deadline_exceeded` exception type is caused by exceeding the timeout for process, watch, etc.\n
36
+ The `unknown` exception type is sometimes caused by the sandbox timeout when the request is not processed correctly.\n
37
+ """
38
+
39
+ pass
40
+
41
+
42
+ class InvalidArgumentException(SandboxException):
43
+ """
44
+ Raised when an invalid argument is provided.
45
+ """
46
+
47
+ pass
48
+
49
+
50
+ class NotEnoughSpaceException(SandboxException):
51
+ """
52
+ Raised when there is not enough disk space.
53
+ """
54
+
55
+ pass
56
+
57
+
58
+ class NotFoundException(SandboxException):
59
+ """
60
+ Raised when a resource is not found.
61
+ """
62
+
63
+ pass
64
+
65
+
66
+ class AuthenticationException(SandboxException):
67
+ """
68
+ Raised when authentication fails.
69
+ """
70
+
71
+ pass
72
+
73
+
74
+ class TemplateException(SandboxException):
75
+ """
76
+ Exception raised when the template uses old envd version. It isn't compatible with the new SDK.
77
+ """
78
+
79
+
80
+ class RateLimitException(SandboxException):
81
+ """
82
+ Raised when the API rate limit is exceeded.
83
+ """
File without changes
@@ -0,0 +1,61 @@
1
+ import json
2
+
3
+ import httpx
4
+
5
+ from ..exceptions import (
6
+ AuthenticationException,
7
+ InvalidArgumentException,
8
+ NotEnoughSpaceException,
9
+ NotFoundException,
10
+ SandboxException,
11
+ sandbox_timeout_exception,
12
+ )
13
+
14
+ ENVD_API_UPLOAD_FILES_ROUTE = "/upload"
15
+ ENVD_API_DOWNLOAD_FILES_ROUTE = "/download"
16
+ ENVD_API_FILES_ROUTE = "/files"
17
+ ENVD_API_HEALTH_ROUTE = "/health"
18
+
19
+
20
+ def get_message(e: httpx.Response) -> str:
21
+ try:
22
+ message = e.json().get("message", e.text)
23
+ except json.JSONDecodeError:
24
+ message = e.text
25
+
26
+ return message
27
+
28
+
29
+ def handle_envd_api_exception(res: httpx.Response):
30
+ if res.is_success:
31
+ return
32
+
33
+ res.read()
34
+
35
+ return format_envd_api_exception(res.status_code, get_message(res))
36
+
37
+
38
+ async def ahandle_envd_api_exception(res: httpx.Response):
39
+ if res.is_success:
40
+ return
41
+
42
+ await res.aread()
43
+
44
+ return format_envd_api_exception(res.status_code, get_message(res))
45
+
46
+
47
+ def format_envd_api_exception(status_code: int, message: str):
48
+ if status_code == 400:
49
+ return InvalidArgumentException(message)
50
+ elif status_code == 401:
51
+ return AuthenticationException(message)
52
+ elif status_code == 404:
53
+ return NotFoundException(message)
54
+ elif status_code == 429:
55
+ return SandboxException(f"{message}: The requests are being rate limited.")
56
+ elif status_code == 502:
57
+ return sandbox_timeout_exception(message)
58
+ elif status_code == 507:
59
+ return NotEnoughSpaceException(message)
60
+ else:
61
+ return SandboxException(f"{status_code}: {message}")
@@ -0,0 +1,203 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: api.proto
5
+ # Protobuf Python Version: 6.32.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+
13
+ _runtime_version.ValidateProtobufRuntimeVersion(
14
+ _runtime_version.Domain.PUBLIC, 6, 32, 0, "", "api.proto"
15
+ )
16
+ # @@protoc_insertion_point(imports)
17
+
18
+ _sym_db = _symbol_database.Default()
19
+
20
+
21
+ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
22
+
23
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
24
+ b'\n\tapi.proto\x12\x0csandboxagent\x1a\x1fgoogle/protobuf/timestamp.proto"G\n\x0bMoveRequest\x12\x16\n\x06source\x18\x01 \x01(\tR\x06source\x12 \n\x0b\x64\x65stination\x18\x02 \x01(\tR\x0b\x64\x65stination"=\n\x0cMoveResponse\x12-\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x17.sandboxagent.EntryInfoR\x05\x65ntry"$\n\x0eMakeDirRequest\x12\x12\n\x04path\x18\x01 \x01(\tR\x04path"@\n\x0fMakeDirResponse\x12-\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x17.sandboxagent.EntryInfoR\x05\x65ntry"#\n\rRemoveRequest\x12\x12\n\x04path\x18\x01 \x01(\tR\x04path"\x10\n\x0eRemoveResponse"!\n\x0bStatRequest\x12\x12\n\x04path\x18\x01 \x01(\tR\x04path"=\n\x0cStatResponse\x12-\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x17.sandboxagent.EntryInfoR\x05\x65ntry"\xd5\x02\n\tEntryInfo\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12*\n\x04type\x18\x02 \x01(\x0e\x32\x16.sandboxagent.FileTypeR\x04type\x12\x12\n\x04path\x18\x03 \x01(\tR\x04path\x12\x12\n\x04size\x18\x04 \x01(\x03R\x04size\x12\x12\n\x04mode\x18\x05 \x01(\rR\x04mode\x12 \n\x0bpermissions\x18\x06 \x01(\tR\x0bpermissions\x12\x14\n\x05owner\x18\x07 \x01(\tR\x05owner\x12\x14\n\x05group\x18\x08 \x01(\tR\x05group\x12?\n\rmodified_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0cmodifiedTime\x12*\n\x0esymlink_target\x18\n \x01(\tH\x00R\rsymlinkTarget\x88\x01\x01\x42\x11\n\x0f_symlink_target":\n\x0eListDirRequest\x12\x12\n\x04path\x18\x01 \x01(\tR\x04path\x12\x14\n\x05\x64\x65pth\x18\x02 \x01(\rR\x05\x64\x65pth"D\n\x0fListDirResponse\x12\x31\n\x07\x65ntries\x18\x01 \x03(\x0b\x32\x17.sandboxagent.EntryInfoR\x07\x65ntries"C\n\x0fWatchDirRequest\x12\x12\n\x04path\x18\x01 \x01(\tR\x04path\x12\x1c\n\trecursive\x18\x02 \x01(\x08R\trecursive"R\n\x0f\x46ilesystemEvent\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12+\n\x04type\x18\x02 \x01(\x0e\x32\x17.sandboxagent.EventTypeR\x04type"\x84\x02\n\x10WatchDirResponse\x12\x41\n\x05start\x18\x01 \x01(\x0b\x32).sandboxagent.WatchDirResponse.StartEventH\x00R\x05start\x12?\n\nfilesystem\x18\x02 \x01(\x0b\x32\x1d.sandboxagent.FilesystemEventH\x00R\nfilesystem\x12H\n\tkeepalive\x18\x03 \x01(\x0b\x32(.sandboxagent.WatchDirResponse.KeepAliveH\x00R\tkeepalive\x1a\x0c\n\nStartEvent\x1a\x0b\n\tKeepAliveB\x07\n\x05\x65vent"H\n\x14\x43reateWatcherRequest\x12\x12\n\x04path\x18\x01 \x01(\tR\x04path\x12\x1c\n\trecursive\x18\x02 \x01(\x08R\trecursive"6\n\x15\x43reateWatcherResponse\x12\x1d\n\nwatcher_id\x18\x01 \x01(\tR\twatcherId"8\n\x17GetWatcherEventsRequest\x12\x1d\n\nwatcher_id\x18\x01 \x01(\tR\twatcherId"Q\n\x18GetWatcherEventsResponse\x12\x35\n\x06\x65vents\x18\x01 \x03(\x0b\x32\x1d.sandboxagent.FilesystemEventR\x06\x65vents"5\n\x14RemoveWatcherRequest\x12\x1d\n\nwatcher_id\x18\x01 \x01(\tR\twatcherId"\x17\n\x15RemoveWatcherResponse"a\n\x03PTY\x12*\n\x04size\x18\x01 \x01(\x0b\x32\x16.sandboxagent.PTY.SizeR\x04size\x1a.\n\x04Size\x12\x12\n\x04\x63ols\x18\x01 \x01(\rR\x04\x63ols\x12\x12\n\x04rows\x18\x02 \x01(\rR\x04rows"\xc8\x01\n\rProcessConfig\x12\x10\n\x03\x63md\x18\x01 \x01(\tR\x03\x63md\x12\x12\n\x04\x61rgs\x18\x02 \x03(\tR\x04\x61rgs\x12\x39\n\x04\x65nvs\x18\x03 \x03(\x0b\x32%.sandboxagent.ProcessConfig.EnvsEntryR\x04\x65nvs\x12\x15\n\x03\x63wd\x18\x04 \x01(\tH\x00R\x03\x63wd\x88\x01\x01\x1a\x37\n\tEnvsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x06\n\x04_cwd"\r\n\x0bListRequest"s\n\x0bProcessInfo\x12\x33\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x1b.sandboxagent.ProcessConfigR\x06\x63onfig\x12\x10\n\x03pid\x18\x02 \x01(\rR\x03pid\x12\x15\n\x03tag\x18\x03 \x01(\tH\x00R\x03tag\x88\x01\x01\x42\x06\n\x04_tag"G\n\x0cListResponse\x12\x37\n\tprocesses\x18\x01 \x03(\x0b\x32\x19.sandboxagent.ProcessInfoR\tprocesses"\x96\x01\n\x0cStartRequest\x12\x35\n\x07process\x18\x01 \x01(\x0b\x32\x1b.sandboxagent.ProcessConfigR\x07process\x12(\n\x03pty\x18\x02 \x01(\x0b\x32\x11.sandboxagent.PTYH\x00R\x03pty\x88\x01\x01\x12\x15\n\x03tag\x18\x03 \x01(\tH\x01R\x03tag\x88\x01\x01\x42\x06\n\x04_ptyB\x06\n\x04_tag"z\n\rUpdateRequest\x12\x37\n\x07process\x18\x01 \x01(\x0b\x32\x1d.sandboxagent.ProcessSelectorR\x07process\x12(\n\x03pty\x18\x02 \x01(\x0b\x32\x11.sandboxagent.PTYH\x00R\x03pty\x88\x01\x01\x42\x06\n\x04_pty"\x10\n\x0eUpdateResponse"\x9b\x04\n\x0cProcessEvent\x12=\n\x05start\x18\x01 \x01(\x0b\x32%.sandboxagent.ProcessEvent.StartEventH\x00R\x05start\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.sandboxagent.ProcessEvent.DataEventH\x00R\x04\x64\x61ta\x12\x37\n\x03\x65nd\x18\x03 \x01(\x0b\x32#.sandboxagent.ProcessEvent.EndEventH\x00R\x03\x65nd\x12\x44\n\tkeepalive\x18\x04 \x01(\x0b\x32$.sandboxagent.ProcessEvent.KeepAliveH\x00R\tkeepalive\x1a\x1e\n\nStartEvent\x12\x10\n\x03pid\x18\x01 \x01(\rR\x03pid\x1a]\n\tDataEvent\x12\x18\n\x06stdout\x18\x01 \x01(\x0cH\x00R\x06stdout\x12\x18\n\x06stderr\x18\x02 \x01(\x0cH\x00R\x06stderr\x12\x12\n\x03pty\x18\x03 \x01(\x0cH\x00R\x03ptyB\x08\n\x06output\x1a|\n\x08\x45ndEvent\x12\x1b\n\texit_code\x18\x01 \x01(\x11R\x08\x65xitCode\x12\x16\n\x06\x65xited\x18\x02 \x01(\x08R\x06\x65xited\x12\x16\n\x06status\x18\x03 \x01(\tR\x06status\x12\x19\n\x05\x65rror\x18\x04 \x01(\tH\x00R\x05\x65rror\x88\x01\x01\x42\x08\n\x06_error\x1a\x0b\n\tKeepAliveB\x07\n\x05\x65vent"A\n\rStartResponse\x12\x30\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x1a.sandboxagent.ProcessEventR\x05\x65vent"C\n\x0f\x43onnectResponse\x12\x30\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x1a.sandboxagent.ProcessEventR\x05\x65vent"}\n\x10SendInputRequest\x12\x37\n\x07process\x18\x01 \x01(\x0b\x32\x1d.sandboxagent.ProcessSelectorR\x07process\x12\x30\n\x05input\x18\x02 \x01(\x0b\x32\x1a.sandboxagent.ProcessInputR\x05input"\x13\n\x11SendInputResponse"C\n\x0cProcessInput\x12\x16\n\x05stdin\x18\x01 \x01(\x0cH\x00R\x05stdin\x12\x12\n\x03pty\x18\x02 \x01(\x0cH\x00R\x03ptyB\x07\n\x05input"\x83\x03\n\x12StreamInputRequest\x12\x43\n\x05start\x18\x01 \x01(\x0b\x32+.sandboxagent.StreamInputRequest.StartEventH\x00R\x05start\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.sandboxagent.StreamInputRequest.DataEventH\x00R\x04\x64\x61ta\x12J\n\tkeepalive\x18\x03 \x01(\x0b\x32*.sandboxagent.StreamInputRequest.KeepAliveH\x00R\tkeepalive\x1a\x45\n\nStartEvent\x12\x37\n\x07process\x18\x01 \x01(\x0b\x32\x1d.sandboxagent.ProcessSelectorR\x07process\x1a=\n\tDataEvent\x12\x30\n\x05input\x18\x02 \x01(\x0b\x32\x1a.sandboxagent.ProcessInputR\x05input\x1a\x0b\n\tKeepAliveB\x07\n\x05\x65vent"\x15\n\x13StreamInputResponse"z\n\x11SendSignalRequest\x12\x37\n\x07process\x18\x01 \x01(\x0b\x32\x1d.sandboxagent.ProcessSelectorR\x07process\x12,\n\x06signal\x18\x02 \x01(\x0e\x32\x14.sandboxagent.SignalR\x06signal"\x14\n\x12SendSignalResponse"I\n\x0e\x43onnectRequest\x12\x37\n\x07process\x18\x01 \x01(\x0b\x32\x1d.sandboxagent.ProcessSelectorR\x07process"E\n\x0fProcessSelector\x12\x12\n\x03pid\x18\x01 \x01(\rH\x00R\x03pid\x12\x12\n\x03tag\x18\x02 \x01(\tH\x00R\x03tagB\n\n\x08selector"\xe1\x01\n\x0e\x45xecuteRequest\x12\x1d\n\ncontext_id\x18\x01 \x01(\tR\tcontextId\x12\x12\n\x04\x63ode\x18\x02 \x01(\tR\x04\x63ode\x12\x1a\n\x08language\x18\x03 \x01(\tR\x08language\x12\x44\n\x08\x65nv_vars\x18\x04 \x03(\x0b\x32).sandboxagent.ExecuteRequest.EnvVarsEntryR\x07\x65nvVars\x1a:\n\x0c\x45nvVarsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01"\xd7\x01\n\x0f\x45xecuteResponse\x12.\n\x06stdout\x18\x01 \x01(\x0b\x32\x14.sandboxagent.OutputH\x00R\x06stdout\x12.\n\x06stderr\x18\x02 \x01(\x0b\x32\x14.sandboxagent.OutputH\x00R\x06stderr\x12.\n\x06result\x18\x03 \x01(\x0b\x32\x14.sandboxagent.ResultH\x00R\x06result\x12+\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x13.sandboxagent.ErrorH\x00R\x05\x65rrorB\x07\n\x05\x65vent""\n\x06Output\x12\x18\n\x07\x63ontent\x18\x01 \x01(\tR\x07\x63ontent"\xf4\x04\n\x06Result\x12\x1b\n\texit_code\x18\x01 \x01(\x05R\x08\x65xitCode\x12\x39\n\nstarted_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12;\n\x0b\x66inished_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nfinishedAt\x12\x12\n\x04text\x18\x04 \x01(\tR\x04text\x12\x12\n\x04html\x18\x05 \x01(\tR\x04html\x12\x1a\n\x08markdown\x18\x06 \x01(\tR\x08markdown\x12\x10\n\x03svg\x18\x07 \x01(\tR\x03svg\x12\x10\n\x03png\x18\x08 \x01(\tR\x03png\x12\x12\n\x04jpeg\x18\t \x01(\tR\x04jpeg\x12\x10\n\x03pdf\x18\n \x01(\tR\x03pdf\x12\x14\n\x05latex\x18\x0b \x01(\tR\x05latex\x12\x12\n\x04json\x18\x0c \x01(\tR\x04json\x12\x1e\n\njavascript\x18\r \x01(\tR\njavascript\x12\x12\n\x04\x64\x61ta\x18\x0e \x01(\tR\x04\x64\x61ta\x12)\n\x05\x63hart\x18\x0f \x01(\x0b\x32\x13.sandboxagent.ChartR\x05\x63hart\x12\'\n\x0f\x65xecution_count\x18\x10 \x01(\x05R\x0e\x65xecutionCount\x12$\n\x0eis_main_result\x18\x11 \x01(\x08R\x0cisMainResult\x12\x35\n\x05\x65xtra\x18\x12 \x03(\x0b\x32\x1f.sandboxagent.Result.ExtraEntryR\x05\x65xtra\x1a\x38\n\nExtraEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01"O\n\x05\x45rror\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x12\x1c\n\ttraceback\x18\x03 \x01(\tR\ttraceback"\xd9\x01\n\x05\x43hart\x12\x12\n\x04type\x18\x01 \x01(\tR\x04type\x12\x14\n\x05title\x18\x02 \x01(\tR\x05title\x12\x36\n\x08\x65lements\x18\x03 \x03(\x0b\x32\x1a.sandboxagent.ChartElementR\x08\x65lements\x12\x34\n\x05\x65xtra\x18\x04 \x03(\x0b\x32\x1e.sandboxagent.Chart.ExtraEntryR\x05\x65xtra\x1a\x38\n\nExtraEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01"\xc2\x02\n\x0c\x43hartElement\x12\x38\n\npoint_data\x18\x01 \x01(\x0b\x32\x17.sandboxagent.PointDataH\x00R\tpointData\x12\x32\n\x08\x62\x61r_data\x18\x02 \x01(\x0b\x32\x15.sandboxagent.BarDataH\x00R\x07\x62\x61rData\x12\x32\n\x08pie_data\x18\x03 \x01(\x0b\x32\x15.sandboxagent.PieDataH\x00R\x07pieData\x12K\n\x10\x62ox_whisker_data\x18\x04 \x01(\x0b\x32\x1f.sandboxagent.BoxAndWhiskerDataH\x00R\x0e\x62oxWhiskerData\x12\x38\n\x0cnested_chart\x18\x05 \x01(\x0b\x32\x13.sandboxagent.ChartH\x00R\x0bnestedChartB\t\n\x07\x65lement"N\n\tPointData\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12+\n\x06points\x18\x02 \x03(\x0b\x32\x13.sandboxagent.PointR\x06points"y\n\x05Point\x12\x15\n\x05x_str\x18\x01 \x01(\tH\x00R\x04xStr\x12\x15\n\x05x_num\x18\x02 \x01(\x01H\x00R\x04xNum\x12\x15\n\x05y_str\x18\x03 \x01(\tH\x01R\x04yStr\x12\x15\n\x05y_num\x18\x04 \x01(\x01H\x01R\x04yNumB\t\n\x07x_valueB\t\n\x07y_value"K\n\x07\x42\x61rData\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x14\n\x05group\x18\x02 \x01(\tR\x05group\x12\x14\n\x05value\x18\x03 \x01(\tR\x05value"M\n\x07PieData\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x14\n\x05\x61ngle\x18\x02 \x01(\x01R\x05\x61ngle\x12\x16\n\x06radius\x18\x03 \x01(\x01R\x06radius"\xcf\x01\n\x11\x42oxAndWhiskerData\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x10\n\x03min\x18\x02 \x01(\x01R\x03min\x12%\n\x0e\x66irst_quartile\x18\x03 \x01(\x01R\rfirstQuartile\x12\x16\n\x06median\x18\x04 \x01(\x01R\x06median\x12%\n\x0ethird_quartile\x18\x05 \x01(\x01R\rthirdQuartile\x12\x10\n\x03max\x18\x06 \x01(\x01R\x03max\x12\x1a\n\x08outliers\x18\x07 \x03(\x01R\x08outliers"\x94\x01\n\x07\x43hart2D\x12\x17\n\x07x_label\x18\x01 \x01(\tR\x06xLabel\x12\x17\n\x07y_label\x18\x02 \x01(\tR\x06yLabel\x12\x15\n\x06x_unit\x18\x03 \x01(\tR\x05xUnit\x12\x15\n\x06y_unit\x18\x04 \x01(\tR\x05yUnit\x12)\n\x05\x63hart\x18\x05 \x01(\x0b\x32\x13.sandboxagent.ChartR\x05\x63hart"\xea\x01\n\nPointChart\x12\x17\n\x07x_ticks\x18\x01 \x03(\tR\x06xTicks\x12"\n\rx_tick_labels\x18\x02 \x03(\tR\x0bxTickLabels\x12\x17\n\x07x_scale\x18\x03 \x01(\tR\x06xScale\x12\x17\n\x07y_ticks\x18\x04 \x03(\tR\x06yTicks\x12"\n\ry_tick_labels\x18\x05 \x03(\tR\x0byTickLabels\x12\x17\n\x07y_scale\x18\x06 \x01(\tR\x06yScale\x12\x30\n\x08\x63hart_2d\x18\x07 \x01(\x0b\x32\x15.sandboxagent.Chart2DR\x07\x63hart2d"D\n\x14\x43reateContextRequest\x12\x1a\n\x08language\x18\x01 \x01(\tR\x08language\x12\x10\n\x03\x63wd\x18\x02 \x01(\tR\x03\x63wd"\xfd\x01\n\x07\x43ontext\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1a\n\x08language\x18\x02 \x01(\tR\x08language\x12\x10\n\x03\x63wd\x18\x03 \x01(\tR\x03\x63wd\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12=\n\x08\x65nv_vars\x18\x05 \x03(\x0b\x32".sandboxagent.Context.EnvVarsEntryR\x07\x65nvVars\x1a:\n\x0c\x45nvVarsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01"6\n\x15\x44\x65stroyContextRequest\x12\x1d\n\ncontext_id\x18\x01 \x01(\tR\tcontextId"2\n\x16\x44\x65stroyContextResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success*R\n\x08\x46ileType\x12\x19\n\x15\x46ILE_TYPE_UNSPECIFIED\x10\x00\x12\x12\n\x0e\x46ILE_TYPE_FILE\x10\x01\x12\x17\n\x13\x46ILE_TYPE_DIRECTORY\x10\x02*\x98\x01\n\tEventType\x12\x1a\n\x16\x45VENT_TYPE_UNSPECIFIED\x10\x00\x12\x15\n\x11\x45VENT_TYPE_CREATE\x10\x01\x12\x14\n\x10\x45VENT_TYPE_WRITE\x10\x02\x12\x15\n\x11\x45VENT_TYPE_REMOVE\x10\x03\x12\x15\n\x11\x45VENT_TYPE_RENAME\x10\x04\x12\x14\n\x10\x45VENT_TYPE_CHMOD\x10\x05*H\n\x06Signal\x12\x16\n\x12SIGNAL_UNSPECIFIED\x10\x00\x12\x12\n\x0eSIGNAL_SIGTERM\x10\x0f\x12\x12\n\x0eSIGNAL_SIGKILL\x10\t2\xc3\x05\n\nFilesystem\x12=\n\x04Stat\x12\x19.sandboxagent.StatRequest\x1a\x1a.sandboxagent.StatResponse\x12\x46\n\x07MakeDir\x12\x1c.sandboxagent.MakeDirRequest\x1a\x1d.sandboxagent.MakeDirResponse\x12=\n\x04Move\x12\x19.sandboxagent.MoveRequest\x1a\x1a.sandboxagent.MoveResponse\x12\x46\n\x07ListDir\x12\x1c.sandboxagent.ListDirRequest\x1a\x1d.sandboxagent.ListDirResponse\x12\x43\n\x06Remove\x12\x1b.sandboxagent.RemoveRequest\x1a\x1c.sandboxagent.RemoveResponse\x12K\n\x08WatchDir\x12\x1d.sandboxagent.WatchDirRequest\x1a\x1e.sandboxagent.WatchDirResponse0\x01\x12X\n\rCreateWatcher\x12".sandboxagent.CreateWatcherRequest\x1a#.sandboxagent.CreateWatcherResponse\x12\x61\n\x10GetWatcherEvents\x12%.sandboxagent.GetWatcherEventsRequest\x1a&.sandboxagent.GetWatcherEventsResponse\x12X\n\rRemoveWatcher\x12".sandboxagent.RemoveWatcherRequest\x1a#.sandboxagent.RemoveWatcherResponse2\x90\x04\n\x07Process\x12=\n\x04List\x12\x19.sandboxagent.ListRequest\x1a\x1a.sandboxagent.ListResponse\x12H\n\x07\x43onnect\x12\x1c.sandboxagent.ConnectRequest\x1a\x1d.sandboxagent.ConnectResponse0\x01\x12\x42\n\x05Start\x12\x1a.sandboxagent.StartRequest\x1a\x1b.sandboxagent.StartResponse0\x01\x12\x43\n\x06Update\x12\x1b.sandboxagent.UpdateRequest\x1a\x1c.sandboxagent.UpdateResponse\x12T\n\x0bStreamInput\x12 .sandboxagent.StreamInputRequest\x1a!.sandboxagent.StreamInputResponse(\x01\x12L\n\tSendInput\x12\x1e.sandboxagent.SendInputRequest\x1a\x1f.sandboxagent.SendInputResponse\x12O\n\nSendSignal\x12\x1f.sandboxagent.SendSignalRequest\x1a .sandboxagent.SendSignalResponse2^\n\x10\x45xecutionService\x12J\n\x07\x45xecute\x12\x1c.sandboxagent.ExecuteRequest\x1a\x1d.sandboxagent.ExecuteResponse"\x00\x30\x01\x32\xbd\x01\n\x0e\x43ontextService\x12L\n\rCreateContext\x12".sandboxagent.CreateContextRequest\x1a\x15.sandboxagent.Context"\x00\x12]\n\x0e\x44\x65stroyContext\x12#.sandboxagent.DestroyContextRequest\x1a$.sandboxagent.DestroyContextResponse"\x00\x42\x06Z\x04./pbb\x06proto3'
25
+ )
26
+
27
+ _globals = globals()
28
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
29
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, "api_pb2", _globals)
30
+ if not _descriptor._USE_C_DESCRIPTORS:
31
+ _globals["DESCRIPTOR"]._loaded_options = None
32
+ _globals["DESCRIPTOR"]._serialized_options = b"Z\004./pb"
33
+ _globals["_PROCESSCONFIG_ENVSENTRY"]._loaded_options = None
34
+ _globals["_PROCESSCONFIG_ENVSENTRY"]._serialized_options = b"8\001"
35
+ _globals["_EXECUTEREQUEST_ENVVARSENTRY"]._loaded_options = None
36
+ _globals["_EXECUTEREQUEST_ENVVARSENTRY"]._serialized_options = b"8\001"
37
+ _globals["_RESULT_EXTRAENTRY"]._loaded_options = None
38
+ _globals["_RESULT_EXTRAENTRY"]._serialized_options = b"8\001"
39
+ _globals["_CHART_EXTRAENTRY"]._loaded_options = None
40
+ _globals["_CHART_EXTRAENTRY"]._serialized_options = b"8\001"
41
+ _globals["_CONTEXT_ENVVARSENTRY"]._loaded_options = None
42
+ _globals["_CONTEXT_ENVVARSENTRY"]._serialized_options = b"8\001"
43
+ _globals["_FILETYPE"]._serialized_start = 7226
44
+ _globals["_FILETYPE"]._serialized_end = 7308
45
+ _globals["_EVENTTYPE"]._serialized_start = 7311
46
+ _globals["_EVENTTYPE"]._serialized_end = 7463
47
+ _globals["_SIGNAL"]._serialized_start = 7465
48
+ _globals["_SIGNAL"]._serialized_end = 7537
49
+ _globals["_MOVEREQUEST"]._serialized_start = 60
50
+ _globals["_MOVEREQUEST"]._serialized_end = 131
51
+ _globals["_MOVERESPONSE"]._serialized_start = 133
52
+ _globals["_MOVERESPONSE"]._serialized_end = 194
53
+ _globals["_MAKEDIRREQUEST"]._serialized_start = 196
54
+ _globals["_MAKEDIRREQUEST"]._serialized_end = 232
55
+ _globals["_MAKEDIRRESPONSE"]._serialized_start = 234
56
+ _globals["_MAKEDIRRESPONSE"]._serialized_end = 298
57
+ _globals["_REMOVEREQUEST"]._serialized_start = 300
58
+ _globals["_REMOVEREQUEST"]._serialized_end = 335
59
+ _globals["_REMOVERESPONSE"]._serialized_start = 337
60
+ _globals["_REMOVERESPONSE"]._serialized_end = 353
61
+ _globals["_STATREQUEST"]._serialized_start = 355
62
+ _globals["_STATREQUEST"]._serialized_end = 388
63
+ _globals["_STATRESPONSE"]._serialized_start = 390
64
+ _globals["_STATRESPONSE"]._serialized_end = 451
65
+ _globals["_ENTRYINFO"]._serialized_start = 454
66
+ _globals["_ENTRYINFO"]._serialized_end = 795
67
+ _globals["_LISTDIRREQUEST"]._serialized_start = 797
68
+ _globals["_LISTDIRREQUEST"]._serialized_end = 855
69
+ _globals["_LISTDIRRESPONSE"]._serialized_start = 857
70
+ _globals["_LISTDIRRESPONSE"]._serialized_end = 925
71
+ _globals["_WATCHDIRREQUEST"]._serialized_start = 927
72
+ _globals["_WATCHDIRREQUEST"]._serialized_end = 994
73
+ _globals["_FILESYSTEMEVENT"]._serialized_start = 996
74
+ _globals["_FILESYSTEMEVENT"]._serialized_end = 1078
75
+ _globals["_WATCHDIRRESPONSE"]._serialized_start = 1081
76
+ _globals["_WATCHDIRRESPONSE"]._serialized_end = 1341
77
+ _globals["_WATCHDIRRESPONSE_STARTEVENT"]._serialized_start = 1307
78
+ _globals["_WATCHDIRRESPONSE_STARTEVENT"]._serialized_end = 1319
79
+ _globals["_WATCHDIRRESPONSE_KEEPALIVE"]._serialized_start = 1321
80
+ _globals["_WATCHDIRRESPONSE_KEEPALIVE"]._serialized_end = 1332
81
+ _globals["_CREATEWATCHERREQUEST"]._serialized_start = 1343
82
+ _globals["_CREATEWATCHERREQUEST"]._serialized_end = 1415
83
+ _globals["_CREATEWATCHERRESPONSE"]._serialized_start = 1417
84
+ _globals["_CREATEWATCHERRESPONSE"]._serialized_end = 1471
85
+ _globals["_GETWATCHEREVENTSREQUEST"]._serialized_start = 1473
86
+ _globals["_GETWATCHEREVENTSREQUEST"]._serialized_end = 1529
87
+ _globals["_GETWATCHEREVENTSRESPONSE"]._serialized_start = 1531
88
+ _globals["_GETWATCHEREVENTSRESPONSE"]._serialized_end = 1612
89
+ _globals["_REMOVEWATCHERREQUEST"]._serialized_start = 1614
90
+ _globals["_REMOVEWATCHERREQUEST"]._serialized_end = 1667
91
+ _globals["_REMOVEWATCHERRESPONSE"]._serialized_start = 1669
92
+ _globals["_REMOVEWATCHERRESPONSE"]._serialized_end = 1692
93
+ _globals["_PTY"]._serialized_start = 1694
94
+ _globals["_PTY"]._serialized_end = 1791
95
+ _globals["_PTY_SIZE"]._serialized_start = 1745
96
+ _globals["_PTY_SIZE"]._serialized_end = 1791
97
+ _globals["_PROCESSCONFIG"]._serialized_start = 1794
98
+ _globals["_PROCESSCONFIG"]._serialized_end = 1994
99
+ _globals["_PROCESSCONFIG_ENVSENTRY"]._serialized_start = 1931
100
+ _globals["_PROCESSCONFIG_ENVSENTRY"]._serialized_end = 1986
101
+ _globals["_LISTREQUEST"]._serialized_start = 1996
102
+ _globals["_LISTREQUEST"]._serialized_end = 2009
103
+ _globals["_PROCESSINFO"]._serialized_start = 2011
104
+ _globals["_PROCESSINFO"]._serialized_end = 2126
105
+ _globals["_LISTRESPONSE"]._serialized_start = 2128
106
+ _globals["_LISTRESPONSE"]._serialized_end = 2199
107
+ _globals["_STARTREQUEST"]._serialized_start = 2202
108
+ _globals["_STARTREQUEST"]._serialized_end = 2352
109
+ _globals["_UPDATEREQUEST"]._serialized_start = 2354
110
+ _globals["_UPDATEREQUEST"]._serialized_end = 2476
111
+ _globals["_UPDATERESPONSE"]._serialized_start = 2478
112
+ _globals["_UPDATERESPONSE"]._serialized_end = 2494
113
+ _globals["_PROCESSEVENT"]._serialized_start = 2497
114
+ _globals["_PROCESSEVENT"]._serialized_end = 3036
115
+ _globals["_PROCESSEVENT_STARTEVENT"]._serialized_start = 2763
116
+ _globals["_PROCESSEVENT_STARTEVENT"]._serialized_end = 2793
117
+ _globals["_PROCESSEVENT_DATAEVENT"]._serialized_start = 2795
118
+ _globals["_PROCESSEVENT_DATAEVENT"]._serialized_end = 2888
119
+ _globals["_PROCESSEVENT_ENDEVENT"]._serialized_start = 2890
120
+ _globals["_PROCESSEVENT_ENDEVENT"]._serialized_end = 3014
121
+ _globals["_PROCESSEVENT_KEEPALIVE"]._serialized_start = 1321
122
+ _globals["_PROCESSEVENT_KEEPALIVE"]._serialized_end = 1332
123
+ _globals["_STARTRESPONSE"]._serialized_start = 3038
124
+ _globals["_STARTRESPONSE"]._serialized_end = 3103
125
+ _globals["_CONNECTRESPONSE"]._serialized_start = 3105
126
+ _globals["_CONNECTRESPONSE"]._serialized_end = 3172
127
+ _globals["_SENDINPUTREQUEST"]._serialized_start = 3174
128
+ _globals["_SENDINPUTREQUEST"]._serialized_end = 3299
129
+ _globals["_SENDINPUTRESPONSE"]._serialized_start = 3301
130
+ _globals["_SENDINPUTRESPONSE"]._serialized_end = 3320
131
+ _globals["_PROCESSINPUT"]._serialized_start = 3322
132
+ _globals["_PROCESSINPUT"]._serialized_end = 3389
133
+ _globals["_STREAMINPUTREQUEST"]._serialized_start = 3392
134
+ _globals["_STREAMINPUTREQUEST"]._serialized_end = 3779
135
+ _globals["_STREAMINPUTREQUEST_STARTEVENT"]._serialized_start = 3625
136
+ _globals["_STREAMINPUTREQUEST_STARTEVENT"]._serialized_end = 3694
137
+ _globals["_STREAMINPUTREQUEST_DATAEVENT"]._serialized_start = 3696
138
+ _globals["_STREAMINPUTREQUEST_DATAEVENT"]._serialized_end = 3757
139
+ _globals["_STREAMINPUTREQUEST_KEEPALIVE"]._serialized_start = 1321
140
+ _globals["_STREAMINPUTREQUEST_KEEPALIVE"]._serialized_end = 1332
141
+ _globals["_STREAMINPUTRESPONSE"]._serialized_start = 3781
142
+ _globals["_STREAMINPUTRESPONSE"]._serialized_end = 3802
143
+ _globals["_SENDSIGNALREQUEST"]._serialized_start = 3804
144
+ _globals["_SENDSIGNALREQUEST"]._serialized_end = 3926
145
+ _globals["_SENDSIGNALRESPONSE"]._serialized_start = 3928
146
+ _globals["_SENDSIGNALRESPONSE"]._serialized_end = 3948
147
+ _globals["_CONNECTREQUEST"]._serialized_start = 3950
148
+ _globals["_CONNECTREQUEST"]._serialized_end = 4023
149
+ _globals["_PROCESSSELECTOR"]._serialized_start = 4025
150
+ _globals["_PROCESSSELECTOR"]._serialized_end = 4094
151
+ _globals["_EXECUTEREQUEST"]._serialized_start = 4097
152
+ _globals["_EXECUTEREQUEST"]._serialized_end = 4322
153
+ _globals["_EXECUTEREQUEST_ENVVARSENTRY"]._serialized_start = 4264
154
+ _globals["_EXECUTEREQUEST_ENVVARSENTRY"]._serialized_end = 4322
155
+ _globals["_EXECUTERESPONSE"]._serialized_start = 4325
156
+ _globals["_EXECUTERESPONSE"]._serialized_end = 4540
157
+ _globals["_OUTPUT"]._serialized_start = 4542
158
+ _globals["_OUTPUT"]._serialized_end = 4576
159
+ _globals["_RESULT"]._serialized_start = 4579
160
+ _globals["_RESULT"]._serialized_end = 5207
161
+ _globals["_RESULT_EXTRAENTRY"]._serialized_start = 5151
162
+ _globals["_RESULT_EXTRAENTRY"]._serialized_end = 5207
163
+ _globals["_ERROR"]._serialized_start = 5209
164
+ _globals["_ERROR"]._serialized_end = 5288
165
+ _globals["_CHART"]._serialized_start = 5291
166
+ _globals["_CHART"]._serialized_end = 5508
167
+ _globals["_CHART_EXTRAENTRY"]._serialized_start = 5151
168
+ _globals["_CHART_EXTRAENTRY"]._serialized_end = 5207
169
+ _globals["_CHARTELEMENT"]._serialized_start = 5511
170
+ _globals["_CHARTELEMENT"]._serialized_end = 5833
171
+ _globals["_POINTDATA"]._serialized_start = 5835
172
+ _globals["_POINTDATA"]._serialized_end = 5913
173
+ _globals["_POINT"]._serialized_start = 5915
174
+ _globals["_POINT"]._serialized_end = 6036
175
+ _globals["_BARDATA"]._serialized_start = 6038
176
+ _globals["_BARDATA"]._serialized_end = 6113
177
+ _globals["_PIEDATA"]._serialized_start = 6115
178
+ _globals["_PIEDATA"]._serialized_end = 6192
179
+ _globals["_BOXANDWHISKERDATA"]._serialized_start = 6195
180
+ _globals["_BOXANDWHISKERDATA"]._serialized_end = 6402
181
+ _globals["_CHART2D"]._serialized_start = 6405
182
+ _globals["_CHART2D"]._serialized_end = 6553
183
+ _globals["_POINTCHART"]._serialized_start = 6556
184
+ _globals["_POINTCHART"]._serialized_end = 6790
185
+ _globals["_CREATECONTEXTREQUEST"]._serialized_start = 6792
186
+ _globals["_CREATECONTEXTREQUEST"]._serialized_end = 6860
187
+ _globals["_CONTEXT"]._serialized_start = 6863
188
+ _globals["_CONTEXT"]._serialized_end = 7116
189
+ _globals["_CONTEXT_ENVVARSENTRY"]._serialized_start = 4264
190
+ _globals["_CONTEXT_ENVVARSENTRY"]._serialized_end = 4322
191
+ _globals["_DESTROYCONTEXTREQUEST"]._serialized_start = 7118
192
+ _globals["_DESTROYCONTEXTREQUEST"]._serialized_end = 7172
193
+ _globals["_DESTROYCONTEXTRESPONSE"]._serialized_start = 7174
194
+ _globals["_DESTROYCONTEXTRESPONSE"]._serialized_end = 7224
195
+ _globals["_FILESYSTEM"]._serialized_start = 7540
196
+ _globals["_FILESYSTEM"]._serialized_end = 8247
197
+ _globals["_PROCESS"]._serialized_start = 8250
198
+ _globals["_PROCESS"]._serialized_end = 8778
199
+ _globals["_EXECUTIONSERVICE"]._serialized_start = 8780
200
+ _globals["_EXECUTIONSERVICE"]._serialized_end = 8874
201
+ _globals["_CONTEXTSERVICE"]._serialized_start = 8877
202
+ _globals["_CONTEXTSERVICE"]._serialized_end = 9066
203
+ # @@protoc_insertion_point(module_scope)