modal 0.62.16__py3-none-any.whl → 0.72.11__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.
- modal/__init__.py +17 -13
- modal/__main__.py +41 -3
- modal/_clustered_functions.py +80 -0
- modal/_clustered_functions.pyi +22 -0
- modal/_container_entrypoint.py +420 -937
- modal/_ipython.py +3 -13
- modal/_location.py +17 -10
- modal/_output.py +243 -99
- modal/_pty.py +2 -2
- modal/_resolver.py +55 -59
- modal/_resources.py +51 -0
- modal/_runtime/__init__.py +1 -0
- modal/_runtime/asgi.py +519 -0
- modal/_runtime/container_io_manager.py +1036 -0
- modal/_runtime/execution_context.py +89 -0
- modal/_runtime/telemetry.py +169 -0
- modal/_runtime/user_code_imports.py +356 -0
- modal/_serialization.py +134 -9
- modal/_traceback.py +47 -187
- modal/_tunnel.py +52 -16
- modal/_tunnel.pyi +19 -36
- modal/_utils/app_utils.py +3 -17
- modal/_utils/async_utils.py +479 -100
- modal/_utils/blob_utils.py +157 -186
- modal/_utils/bytes_io_segment_payload.py +97 -0
- modal/_utils/deprecation.py +89 -0
- modal/_utils/docker_utils.py +98 -0
- modal/_utils/function_utils.py +460 -171
- modal/_utils/grpc_testing.py +47 -31
- modal/_utils/grpc_utils.py +62 -109
- modal/_utils/hash_utils.py +61 -19
- modal/_utils/http_utils.py +39 -9
- modal/_utils/logger.py +2 -1
- modal/_utils/mount_utils.py +34 -16
- modal/_utils/name_utils.py +58 -0
- modal/_utils/package_utils.py +14 -1
- modal/_utils/pattern_utils.py +205 -0
- modal/_utils/rand_pb_testing.py +5 -7
- modal/_utils/shell_utils.py +15 -49
- modal/_vendor/a2wsgi_wsgi.py +62 -72
- modal/_vendor/cloudpickle.py +1 -1
- modal/_watcher.py +14 -12
- modal/app.py +1003 -314
- modal/app.pyi +540 -264
- modal/call_graph.py +7 -6
- modal/cli/_download.py +63 -53
- modal/cli/_traceback.py +200 -0
- modal/cli/app.py +205 -45
- modal/cli/config.py +12 -5
- modal/cli/container.py +62 -14
- modal/cli/dict.py +128 -0
- modal/cli/entry_point.py +26 -13
- modal/cli/environment.py +40 -9
- modal/cli/import_refs.py +64 -58
- modal/cli/launch.py +32 -18
- modal/cli/network_file_system.py +64 -83
- modal/cli/profile.py +1 -1
- modal/cli/programs/run_jupyter.py +35 -10
- modal/cli/programs/vscode.py +60 -10
- modal/cli/queues.py +131 -0
- modal/cli/run.py +234 -131
- modal/cli/secret.py +8 -7
- modal/cli/token.py +7 -2
- modal/cli/utils.py +79 -10
- modal/cli/volume.py +110 -109
- modal/client.py +250 -144
- modal/client.pyi +157 -118
- modal/cloud_bucket_mount.py +108 -34
- modal/cloud_bucket_mount.pyi +32 -38
- modal/cls.py +535 -148
- modal/cls.pyi +190 -146
- modal/config.py +41 -19
- modal/container_process.py +177 -0
- modal/container_process.pyi +82 -0
- modal/dict.py +111 -65
- modal/dict.pyi +136 -131
- modal/environments.py +106 -5
- modal/environments.pyi +77 -25
- modal/exception.py +34 -43
- modal/experimental.py +61 -2
- modal/extensions/ipython.py +5 -5
- modal/file_io.py +537 -0
- modal/file_io.pyi +235 -0
- modal/file_pattern_matcher.py +197 -0
- modal/functions.py +906 -911
- modal/functions.pyi +466 -430
- modal/gpu.py +57 -44
- modal/image.py +1089 -479
- modal/image.pyi +584 -228
- modal/io_streams.py +434 -0
- modal/io_streams.pyi +122 -0
- modal/mount.py +314 -101
- modal/mount.pyi +241 -235
- modal/network_file_system.py +92 -92
- modal/network_file_system.pyi +152 -110
- modal/object.py +67 -36
- modal/object.pyi +166 -143
- modal/output.py +63 -0
- modal/parallel_map.py +434 -0
- modal/parallel_map.pyi +75 -0
- modal/partial_function.py +282 -117
- modal/partial_function.pyi +222 -129
- modal/proxy.py +15 -12
- modal/proxy.pyi +3 -8
- modal/queue.py +182 -65
- modal/queue.pyi +218 -118
- modal/requirements/2024.04.txt +29 -0
- modal/requirements/2024.10.txt +16 -0
- modal/requirements/README.md +21 -0
- modal/requirements/base-images.json +22 -0
- modal/retries.py +48 -7
- modal/runner.py +459 -156
- modal/runner.pyi +135 -71
- modal/running_app.py +38 -0
- modal/sandbox.py +514 -236
- modal/sandbox.pyi +397 -169
- modal/schedule.py +4 -4
- modal/scheduler_placement.py +20 -3
- modal/secret.py +56 -31
- modal/secret.pyi +62 -42
- modal/serving.py +51 -56
- modal/serving.pyi +44 -36
- modal/stream_type.py +15 -0
- modal/token_flow.py +5 -3
- modal/token_flow.pyi +37 -32
- modal/volume.py +285 -157
- modal/volume.pyi +249 -184
- {modal-0.62.16.dist-info → modal-0.72.11.dist-info}/METADATA +7 -7
- modal-0.72.11.dist-info/RECORD +174 -0
- {modal-0.62.16.dist-info → modal-0.72.11.dist-info}/top_level.txt +0 -1
- modal_docs/gen_reference_docs.py +3 -1
- modal_docs/mdmd/mdmd.py +0 -1
- modal_docs/mdmd/signatures.py +5 -2
- modal_global_objects/images/base_images.py +28 -0
- modal_global_objects/mounts/python_standalone.py +2 -2
- modal_proto/__init__.py +1 -1
- modal_proto/api.proto +1288 -533
- modal_proto/api_grpc.py +856 -456
- modal_proto/api_pb2.py +2165 -1157
- modal_proto/api_pb2.pyi +8859 -0
- modal_proto/api_pb2_grpc.py +1674 -855
- modal_proto/api_pb2_grpc.pyi +1416 -0
- modal_proto/modal_api_grpc.py +149 -0
- modal_proto/modal_options_grpc.py +3 -0
- modal_proto/options_pb2.pyi +20 -0
- modal_proto/options_pb2_grpc.pyi +7 -0
- modal_proto/py.typed +0 -0
- modal_version/__init__.py +1 -1
- modal_version/_version_generated.py +2 -2
- modal/_asgi.py +0 -370
- modal/_container_entrypoint.pyi +0 -378
- modal/_container_exec.py +0 -128
- modal/_sandbox_shell.py +0 -49
- modal/shared_volume.py +0 -23
- modal/shared_volume.pyi +0 -24
- modal/stub.py +0 -783
- modal/stub.pyi +0 -332
- modal-0.62.16.dist-info/RECORD +0 -198
- modal_global_objects/images/conda.py +0 -15
- modal_global_objects/images/debian_slim.py +0 -15
- modal_global_objects/images/micromamba.py +0 -15
- test/__init__.py +0 -1
- test/aio_test.py +0 -12
- test/async_utils_test.py +0 -262
- test/blob_test.py +0 -67
- test/cli_imports_test.py +0 -149
- test/cli_test.py +0 -659
- test/client_test.py +0 -194
- test/cls_test.py +0 -630
- test/config_test.py +0 -137
- test/conftest.py +0 -1420
- test/container_app_test.py +0 -32
- test/container_test.py +0 -1389
- test/cpu_test.py +0 -23
- test/decorator_test.py +0 -85
- test/deprecation_test.py +0 -34
- test/dict_test.py +0 -33
- test/e2e_test.py +0 -68
- test/error_test.py +0 -7
- test/function_serialization_test.py +0 -32
- test/function_test.py +0 -653
- test/function_utils_test.py +0 -101
- test/gpu_test.py +0 -159
- test/grpc_utils_test.py +0 -141
- test/helpers.py +0 -42
- test/image_test.py +0 -669
- test/live_reload_test.py +0 -80
- test/lookup_test.py +0 -70
- test/mdmd_test.py +0 -329
- test/mount_test.py +0 -162
- test/mounted_files_test.py +0 -329
- test/network_file_system_test.py +0 -181
- test/notebook_test.py +0 -66
- test/object_test.py +0 -41
- test/package_utils_test.py +0 -25
- test/queue_test.py +0 -97
- test/resolver_test.py +0 -58
- test/retries_test.py +0 -67
- test/runner_test.py +0 -85
- test/sandbox_test.py +0 -191
- test/schedule_test.py +0 -15
- test/scheduler_placement_test.py +0 -29
- test/secret_test.py +0 -78
- test/serialization_test.py +0 -42
- test/stub_composition_test.py +0 -10
- test/stub_test.py +0 -360
- test/test_asgi_wrapper.py +0 -234
- test/token_flow_test.py +0 -18
- test/traceback_test.py +0 -135
- test/tunnel_test.py +0 -29
- test/utils_test.py +0 -88
- test/version_test.py +0 -14
- test/volume_test.py +0 -341
- test/watcher_test.py +0 -30
- test/webhook_test.py +0 -146
- /modal/{requirements.312.txt → requirements/2023.12.312.txt} +0 -0
- /modal/{requirements.txt → requirements/2023.12.txt} +0 -0
- {modal-0.62.16.dist-info → modal-0.72.11.dist-info}/LICENSE +0 -0
- {modal-0.62.16.dist-info → modal-0.72.11.dist-info}/WHEEL +0 -0
- {modal-0.62.16.dist-info → modal-0.72.11.dist-info}/entry_points.txt +0 -0
modal_proto/api_pb2_grpc.py
CHANGED
@@ -15,66 +15,86 @@ class ModalClientStub(object):
|
|
15
15
|
Args:
|
16
16
|
channel: A grpc.Channel.
|
17
17
|
"""
|
18
|
+
self.AppClientDisconnect = channel.unary_unary(
|
19
|
+
'/modal.client.ModalClient/AppClientDisconnect',
|
20
|
+
request_serializer=modal__proto_dot_api__pb2.AppClientDisconnectRequest.SerializeToString,
|
21
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
22
|
+
)
|
18
23
|
self.AppCreate = channel.unary_unary(
|
19
24
|
'/modal.client.ModalClient/AppCreate',
|
20
25
|
request_serializer=modal__proto_dot_api__pb2.AppCreateRequest.SerializeToString,
|
21
26
|
response_deserializer=modal__proto_dot_api__pb2.AppCreateResponse.FromString,
|
22
27
|
)
|
23
|
-
self.
|
24
|
-
'/modal.client.ModalClient/
|
25
|
-
request_serializer=modal__proto_dot_api__pb2.
|
26
|
-
response_deserializer=
|
28
|
+
self.AppDeploy = channel.unary_unary(
|
29
|
+
'/modal.client.ModalClient/AppDeploy',
|
30
|
+
request_serializer=modal__proto_dot_api__pb2.AppDeployRequest.SerializeToString,
|
31
|
+
response_deserializer=modal__proto_dot_api__pb2.AppDeployResponse.FromString,
|
32
|
+
)
|
33
|
+
self.AppDeploymentHistory = channel.unary_unary(
|
34
|
+
'/modal.client.ModalClient/AppDeploymentHistory',
|
35
|
+
request_serializer=modal__proto_dot_api__pb2.AppDeploymentHistoryRequest.SerializeToString,
|
36
|
+
response_deserializer=modal__proto_dot_api__pb2.AppDeploymentHistoryResponse.FromString,
|
37
|
+
)
|
38
|
+
self.AppGetByDeploymentName = channel.unary_unary(
|
39
|
+
'/modal.client.ModalClient/AppGetByDeploymentName',
|
40
|
+
request_serializer=modal__proto_dot_api__pb2.AppGetByDeploymentNameRequest.SerializeToString,
|
41
|
+
response_deserializer=modal__proto_dot_api__pb2.AppGetByDeploymentNameResponse.FromString,
|
42
|
+
)
|
43
|
+
self.AppGetLayout = channel.unary_unary(
|
44
|
+
'/modal.client.ModalClient/AppGetLayout',
|
45
|
+
request_serializer=modal__proto_dot_api__pb2.AppGetLayoutRequest.SerializeToString,
|
46
|
+
response_deserializer=modal__proto_dot_api__pb2.AppGetLayoutResponse.FromString,
|
27
47
|
)
|
28
48
|
self.AppGetLogs = channel.unary_stream(
|
29
49
|
'/modal.client.ModalClient/AppGetLogs',
|
30
50
|
request_serializer=modal__proto_dot_api__pb2.AppGetLogsRequest.SerializeToString,
|
31
51
|
response_deserializer=modal__proto_dot_api__pb2.TaskLogsBatch.FromString,
|
32
52
|
)
|
33
|
-
self.AppSetObjects = channel.unary_unary(
|
34
|
-
'/modal.client.ModalClient/AppSetObjects',
|
35
|
-
request_serializer=modal__proto_dot_api__pb2.AppSetObjectsRequest.SerializeToString,
|
36
|
-
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
37
|
-
)
|
38
53
|
self.AppGetObjects = channel.unary_unary(
|
39
54
|
'/modal.client.ModalClient/AppGetObjects',
|
40
55
|
request_serializer=modal__proto_dot_api__pb2.AppGetObjectsRequest.SerializeToString,
|
41
56
|
response_deserializer=modal__proto_dot_api__pb2.AppGetObjectsResponse.FromString,
|
42
57
|
)
|
58
|
+
self.AppGetOrCreate = channel.unary_unary(
|
59
|
+
'/modal.client.ModalClient/AppGetOrCreate',
|
60
|
+
request_serializer=modal__proto_dot_api__pb2.AppGetOrCreateRequest.SerializeToString,
|
61
|
+
response_deserializer=modal__proto_dot_api__pb2.AppGetOrCreateResponse.FromString,
|
62
|
+
)
|
63
|
+
self.AppHeartbeat = channel.unary_unary(
|
64
|
+
'/modal.client.ModalClient/AppHeartbeat',
|
65
|
+
request_serializer=modal__proto_dot_api__pb2.AppHeartbeatRequest.SerializeToString,
|
66
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
67
|
+
)
|
43
68
|
self.AppList = channel.unary_unary(
|
44
69
|
'/modal.client.ModalClient/AppList',
|
45
70
|
request_serializer=modal__proto_dot_api__pb2.AppListRequest.SerializeToString,
|
46
71
|
response_deserializer=modal__proto_dot_api__pb2.AppListResponse.FromString,
|
47
72
|
)
|
48
|
-
self.
|
49
|
-
'/modal.client.ModalClient/
|
50
|
-
request_serializer=modal__proto_dot_api__pb2.
|
51
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
73
|
+
self.AppLookup = channel.unary_unary(
|
74
|
+
'/modal.client.ModalClient/AppLookup',
|
75
|
+
request_serializer=modal__proto_dot_api__pb2.AppLookupRequest.SerializeToString,
|
76
|
+
response_deserializer=modal__proto_dot_api__pb2.AppLookupResponse.FromString,
|
52
77
|
)
|
53
|
-
self.
|
54
|
-
'/modal.client.ModalClient/
|
55
|
-
request_serializer=modal__proto_dot_api__pb2.
|
56
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
78
|
+
self.AppPublish = channel.unary_unary(
|
79
|
+
'/modal.client.ModalClient/AppPublish',
|
80
|
+
request_serializer=modal__proto_dot_api__pb2.AppPublishRequest.SerializeToString,
|
81
|
+
response_deserializer=modal__proto_dot_api__pb2.AppPublishResponse.FromString,
|
57
82
|
)
|
58
|
-
self.
|
59
|
-
'/modal.client.ModalClient/
|
60
|
-
request_serializer=modal__proto_dot_api__pb2.
|
61
|
-
response_deserializer=
|
83
|
+
self.AppRollback = channel.unary_unary(
|
84
|
+
'/modal.client.ModalClient/AppRollback',
|
85
|
+
request_serializer=modal__proto_dot_api__pb2.AppRollbackRequest.SerializeToString,
|
86
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
62
87
|
)
|
63
|
-
self.
|
64
|
-
'/modal.client.ModalClient/
|
65
|
-
request_serializer=modal__proto_dot_api__pb2.
|
66
|
-
response_deserializer=
|
88
|
+
self.AppSetObjects = channel.unary_unary(
|
89
|
+
'/modal.client.ModalClient/AppSetObjects',
|
90
|
+
request_serializer=modal__proto_dot_api__pb2.AppSetObjectsRequest.SerializeToString,
|
91
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
67
92
|
)
|
68
93
|
self.AppStop = channel.unary_unary(
|
69
94
|
'/modal.client.ModalClient/AppStop',
|
70
95
|
request_serializer=modal__proto_dot_api__pb2.AppStopRequest.SerializeToString,
|
71
96
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
72
97
|
)
|
73
|
-
self.AppHeartbeat = channel.unary_unary(
|
74
|
-
'/modal.client.ModalClient/AppHeartbeat',
|
75
|
-
request_serializer=modal__proto_dot_api__pb2.AppHeartbeatRequest.SerializeToString,
|
76
|
-
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
77
|
-
)
|
78
98
|
self.BlobCreate = channel.unary_unary(
|
79
99
|
'/modal.client.ModalClient/BlobCreate',
|
80
100
|
request_serializer=modal__proto_dot_api__pb2.BlobCreateRequest.SerializeToString,
|
@@ -95,26 +115,16 @@ class ModalClientStub(object):
|
|
95
115
|
request_serializer=modal__proto_dot_api__pb2.ClassGetRequest.SerializeToString,
|
96
116
|
response_deserializer=modal__proto_dot_api__pb2.ClassGetResponse.FromString,
|
97
117
|
)
|
98
|
-
self.ClientCreate = channel.unary_unary(
|
99
|
-
'/modal.client.ModalClient/ClientCreate',
|
100
|
-
request_serializer=modal__proto_dot_api__pb2.ClientCreateRequest.SerializeToString,
|
101
|
-
response_deserializer=modal__proto_dot_api__pb2.ClientCreateResponse.FromString,
|
102
|
-
)
|
103
118
|
self.ClientHello = channel.unary_unary(
|
104
119
|
'/modal.client.ModalClient/ClientHello',
|
105
120
|
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
106
121
|
response_deserializer=modal__proto_dot_api__pb2.ClientHelloResponse.FromString,
|
107
122
|
)
|
108
|
-
self.
|
109
|
-
'/modal.client.ModalClient/
|
110
|
-
request_serializer=modal__proto_dot_api__pb2.
|
123
|
+
self.ContainerCheckpoint = channel.unary_unary(
|
124
|
+
'/modal.client.ModalClient/ContainerCheckpoint',
|
125
|
+
request_serializer=modal__proto_dot_api__pb2.ContainerCheckpointRequest.SerializeToString,
|
111
126
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
112
127
|
)
|
113
|
-
self.ContainerHeartbeat = channel.unary_unary(
|
114
|
-
'/modal.client.ModalClient/ContainerHeartbeat',
|
115
|
-
request_serializer=modal__proto_dot_api__pb2.ContainerHeartbeatRequest.SerializeToString,
|
116
|
-
response_deserializer=modal__proto_dot_api__pb2.ContainerHeartbeatResponse.FromString,
|
117
|
-
)
|
118
128
|
self.ContainerExec = channel.unary_unary(
|
119
129
|
'/modal.client.ModalClient/ContainerExec',
|
120
130
|
request_serializer=modal__proto_dot_api__pb2.ContainerExecRequest.SerializeToString,
|
@@ -130,20 +140,65 @@ class ModalClientStub(object):
|
|
130
140
|
request_serializer=modal__proto_dot_api__pb2.ContainerExecPutInputRequest.SerializeToString,
|
131
141
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
132
142
|
)
|
133
|
-
self.
|
134
|
-
'/modal.client.ModalClient/
|
135
|
-
request_serializer=modal__proto_dot_api__pb2.
|
143
|
+
self.ContainerExecWait = channel.unary_unary(
|
144
|
+
'/modal.client.ModalClient/ContainerExecWait',
|
145
|
+
request_serializer=modal__proto_dot_api__pb2.ContainerExecWaitRequest.SerializeToString,
|
146
|
+
response_deserializer=modal__proto_dot_api__pb2.ContainerExecWaitResponse.FromString,
|
147
|
+
)
|
148
|
+
self.ContainerFilesystemExec = channel.unary_unary(
|
149
|
+
'/modal.client.ModalClient/ContainerFilesystemExec',
|
150
|
+
request_serializer=modal__proto_dot_api__pb2.ContainerFilesystemExecRequest.SerializeToString,
|
151
|
+
response_deserializer=modal__proto_dot_api__pb2.ContainerFilesystemExecResponse.FromString,
|
152
|
+
)
|
153
|
+
self.ContainerFilesystemExecGetOutput = channel.unary_stream(
|
154
|
+
'/modal.client.ModalClient/ContainerFilesystemExecGetOutput',
|
155
|
+
request_serializer=modal__proto_dot_api__pb2.ContainerFilesystemExecGetOutputRequest.SerializeToString,
|
156
|
+
response_deserializer=modal__proto_dot_api__pb2.FilesystemRuntimeOutputBatch.FromString,
|
157
|
+
)
|
158
|
+
self.ContainerHeartbeat = channel.unary_unary(
|
159
|
+
'/modal.client.ModalClient/ContainerHeartbeat',
|
160
|
+
request_serializer=modal__proto_dot_api__pb2.ContainerHeartbeatRequest.SerializeToString,
|
161
|
+
response_deserializer=modal__proto_dot_api__pb2.ContainerHeartbeatResponse.FromString,
|
162
|
+
)
|
163
|
+
self.ContainerHello = channel.unary_unary(
|
164
|
+
'/modal.client.ModalClient/ContainerHello',
|
165
|
+
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
166
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
167
|
+
)
|
168
|
+
self.ContainerLog = channel.unary_unary(
|
169
|
+
'/modal.client.ModalClient/ContainerLog',
|
170
|
+
request_serializer=modal__proto_dot_api__pb2.ContainerLogRequest.SerializeToString,
|
136
171
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
137
172
|
)
|
173
|
+
self.ContainerStop = channel.unary_unary(
|
174
|
+
'/modal.client.ModalClient/ContainerStop',
|
175
|
+
request_serializer=modal__proto_dot_api__pb2.ContainerStopRequest.SerializeToString,
|
176
|
+
response_deserializer=modal__proto_dot_api__pb2.ContainerStopResponse.FromString,
|
177
|
+
)
|
138
178
|
self.DictClear = channel.unary_unary(
|
139
179
|
'/modal.client.ModalClient/DictClear',
|
140
180
|
request_serializer=modal__proto_dot_api__pb2.DictClearRequest.SerializeToString,
|
141
181
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
142
182
|
)
|
143
|
-
self.
|
144
|
-
'/modal.client.ModalClient/
|
145
|
-
request_serializer=modal__proto_dot_api__pb2.
|
146
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
183
|
+
self.DictContains = channel.unary_unary(
|
184
|
+
'/modal.client.ModalClient/DictContains',
|
185
|
+
request_serializer=modal__proto_dot_api__pb2.DictContainsRequest.SerializeToString,
|
186
|
+
response_deserializer=modal__proto_dot_api__pb2.DictContainsResponse.FromString,
|
187
|
+
)
|
188
|
+
self.DictContents = channel.unary_stream(
|
189
|
+
'/modal.client.ModalClient/DictContents',
|
190
|
+
request_serializer=modal__proto_dot_api__pb2.DictContentsRequest.SerializeToString,
|
191
|
+
response_deserializer=modal__proto_dot_api__pb2.DictEntry.FromString,
|
192
|
+
)
|
193
|
+
self.DictDelete = channel.unary_unary(
|
194
|
+
'/modal.client.ModalClient/DictDelete',
|
195
|
+
request_serializer=modal__proto_dot_api__pb2.DictDeleteRequest.SerializeToString,
|
196
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
197
|
+
)
|
198
|
+
self.DictGet = channel.unary_unary(
|
199
|
+
'/modal.client.ModalClient/DictGet',
|
200
|
+
request_serializer=modal__proto_dot_api__pb2.DictGetRequest.SerializeToString,
|
201
|
+
response_deserializer=modal__proto_dot_api__pb2.DictGetResponse.FromString,
|
147
202
|
)
|
148
203
|
self.DictGetOrCreate = channel.unary_unary(
|
149
204
|
'/modal.client.ModalClient/DictGetOrCreate',
|
@@ -155,30 +210,30 @@ class ModalClientStub(object):
|
|
155
210
|
request_serializer=modal__proto_dot_api__pb2.DictHeartbeatRequest.SerializeToString,
|
156
211
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
157
212
|
)
|
158
|
-
self.
|
159
|
-
'/modal.client.ModalClient/
|
160
|
-
request_serializer=modal__proto_dot_api__pb2.
|
161
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
213
|
+
self.DictLen = channel.unary_unary(
|
214
|
+
'/modal.client.ModalClient/DictLen',
|
215
|
+
request_serializer=modal__proto_dot_api__pb2.DictLenRequest.SerializeToString,
|
216
|
+
response_deserializer=modal__proto_dot_api__pb2.DictLenResponse.FromString,
|
162
217
|
)
|
163
|
-
self.
|
164
|
-
'/modal.client.ModalClient/
|
165
|
-
request_serializer=modal__proto_dot_api__pb2.
|
166
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
218
|
+
self.DictList = channel.unary_unary(
|
219
|
+
'/modal.client.ModalClient/DictList',
|
220
|
+
request_serializer=modal__proto_dot_api__pb2.DictListRequest.SerializeToString,
|
221
|
+
response_deserializer=modal__proto_dot_api__pb2.DictListResponse.FromString,
|
167
222
|
)
|
168
223
|
self.DictPop = channel.unary_unary(
|
169
224
|
'/modal.client.ModalClient/DictPop',
|
170
225
|
request_serializer=modal__proto_dot_api__pb2.DictPopRequest.SerializeToString,
|
171
226
|
response_deserializer=modal__proto_dot_api__pb2.DictPopResponse.FromString,
|
172
227
|
)
|
173
|
-
self.
|
174
|
-
'/modal.client.ModalClient/
|
175
|
-
request_serializer=modal__proto_dot_api__pb2.
|
176
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
228
|
+
self.DictUpdate = channel.unary_unary(
|
229
|
+
'/modal.client.ModalClient/DictUpdate',
|
230
|
+
request_serializer=modal__proto_dot_api__pb2.DictUpdateRequest.SerializeToString,
|
231
|
+
response_deserializer=modal__proto_dot_api__pb2.DictUpdateResponse.FromString,
|
177
232
|
)
|
178
|
-
self.
|
179
|
-
'/modal.client.ModalClient/
|
180
|
-
request_serializer=modal__proto_dot_api__pb2.
|
181
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
233
|
+
self.DomainCertificateVerify = channel.unary_unary(
|
234
|
+
'/modal.client.ModalClient/DomainCertificateVerify',
|
235
|
+
request_serializer=modal__proto_dot_api__pb2.DomainCertificateVerifyRequest.SerializeToString,
|
236
|
+
response_deserializer=modal__proto_dot_api__pb2.DomainCertificateVerifyResponse.FromString,
|
182
237
|
)
|
183
238
|
self.DomainCreate = channel.unary_unary(
|
184
239
|
'/modal.client.ModalClient/DomainCreate',
|
@@ -190,36 +245,66 @@ class ModalClientStub(object):
|
|
190
245
|
request_serializer=modal__proto_dot_api__pb2.DomainListRequest.SerializeToString,
|
191
246
|
response_deserializer=modal__proto_dot_api__pb2.DomainListResponse.FromString,
|
192
247
|
)
|
193
|
-
self.DomainCertificateVerify = channel.unary_unary(
|
194
|
-
'/modal.client.ModalClient/DomainCertificateVerify',
|
195
|
-
request_serializer=modal__proto_dot_api__pb2.DomainCertificateVerifyRequest.SerializeToString,
|
196
|
-
response_deserializer=modal__proto_dot_api__pb2.DomainCertificateVerifyResponse.FromString,
|
197
|
-
)
|
198
248
|
self.EnvironmentCreate = channel.unary_unary(
|
199
249
|
'/modal.client.ModalClient/EnvironmentCreate',
|
200
250
|
request_serializer=modal__proto_dot_api__pb2.EnvironmentCreateRequest.SerializeToString,
|
201
251
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
202
252
|
)
|
203
|
-
self.EnvironmentList = channel.unary_unary(
|
204
|
-
'/modal.client.ModalClient/EnvironmentList',
|
205
|
-
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
206
|
-
response_deserializer=modal__proto_dot_api__pb2.EnvironmentListResponse.FromString,
|
207
|
-
)
|
208
253
|
self.EnvironmentDelete = channel.unary_unary(
|
209
254
|
'/modal.client.ModalClient/EnvironmentDelete',
|
210
255
|
request_serializer=modal__proto_dot_api__pb2.EnvironmentDeleteRequest.SerializeToString,
|
211
256
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
212
257
|
)
|
258
|
+
self.EnvironmentGetOrCreate = channel.unary_unary(
|
259
|
+
'/modal.client.ModalClient/EnvironmentGetOrCreate',
|
260
|
+
request_serializer=modal__proto_dot_api__pb2.EnvironmentGetOrCreateRequest.SerializeToString,
|
261
|
+
response_deserializer=modal__proto_dot_api__pb2.EnvironmentGetOrCreateResponse.FromString,
|
262
|
+
)
|
263
|
+
self.EnvironmentList = channel.unary_unary(
|
264
|
+
'/modal.client.ModalClient/EnvironmentList',
|
265
|
+
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
266
|
+
response_deserializer=modal__proto_dot_api__pb2.EnvironmentListResponse.FromString,
|
267
|
+
)
|
213
268
|
self.EnvironmentUpdate = channel.unary_unary(
|
214
269
|
'/modal.client.ModalClient/EnvironmentUpdate',
|
215
270
|
request_serializer=modal__proto_dot_api__pb2.EnvironmentUpdateRequest.SerializeToString,
|
216
271
|
response_deserializer=modal__proto_dot_api__pb2.EnvironmentListItem.FromString,
|
217
272
|
)
|
273
|
+
self.FunctionAsyncInvoke = channel.unary_unary(
|
274
|
+
'/modal.client.ModalClient/FunctionAsyncInvoke',
|
275
|
+
request_serializer=modal__proto_dot_api__pb2.FunctionAsyncInvokeRequest.SerializeToString,
|
276
|
+
response_deserializer=modal__proto_dot_api__pb2.FunctionAsyncInvokeResponse.FromString,
|
277
|
+
)
|
218
278
|
self.FunctionBindParams = channel.unary_unary(
|
219
279
|
'/modal.client.ModalClient/FunctionBindParams',
|
220
280
|
request_serializer=modal__proto_dot_api__pb2.FunctionBindParamsRequest.SerializeToString,
|
221
281
|
response_deserializer=modal__proto_dot_api__pb2.FunctionBindParamsResponse.FromString,
|
222
282
|
)
|
283
|
+
self.FunctionCallCancel = channel.unary_unary(
|
284
|
+
'/modal.client.ModalClient/FunctionCallCancel',
|
285
|
+
request_serializer=modal__proto_dot_api__pb2.FunctionCallCancelRequest.SerializeToString,
|
286
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
287
|
+
)
|
288
|
+
self.FunctionCallGetDataIn = channel.unary_stream(
|
289
|
+
'/modal.client.ModalClient/FunctionCallGetDataIn',
|
290
|
+
request_serializer=modal__proto_dot_api__pb2.FunctionCallGetDataRequest.SerializeToString,
|
291
|
+
response_deserializer=modal__proto_dot_api__pb2.DataChunk.FromString,
|
292
|
+
)
|
293
|
+
self.FunctionCallGetDataOut = channel.unary_stream(
|
294
|
+
'/modal.client.ModalClient/FunctionCallGetDataOut',
|
295
|
+
request_serializer=modal__proto_dot_api__pb2.FunctionCallGetDataRequest.SerializeToString,
|
296
|
+
response_deserializer=modal__proto_dot_api__pb2.DataChunk.FromString,
|
297
|
+
)
|
298
|
+
self.FunctionCallList = channel.unary_unary(
|
299
|
+
'/modal.client.ModalClient/FunctionCallList',
|
300
|
+
request_serializer=modal__proto_dot_api__pb2.FunctionCallListRequest.SerializeToString,
|
301
|
+
response_deserializer=modal__proto_dot_api__pb2.FunctionCallListResponse.FromString,
|
302
|
+
)
|
303
|
+
self.FunctionCallPutDataOut = channel.unary_unary(
|
304
|
+
'/modal.client.ModalClient/FunctionCallPutDataOut',
|
305
|
+
request_serializer=modal__proto_dot_api__pb2.FunctionCallPutDataRequest.SerializeToString,
|
306
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
307
|
+
)
|
223
308
|
self.FunctionCreate = channel.unary_unary(
|
224
309
|
'/modal.client.ModalClient/FunctionCreate',
|
225
310
|
request_serializer=modal__proto_dot_api__pb2.FunctionCreateRequest.SerializeToString,
|
@@ -240,6 +325,11 @@ class ModalClientStub(object):
|
|
240
325
|
request_serializer=modal__proto_dot_api__pb2.FunctionGetCurrentStatsRequest.SerializeToString,
|
241
326
|
response_deserializer=modal__proto_dot_api__pb2.FunctionStats.FromString,
|
242
327
|
)
|
328
|
+
self.FunctionGetDynamicConcurrency = channel.unary_unary(
|
329
|
+
'/modal.client.ModalClient/FunctionGetDynamicConcurrency',
|
330
|
+
request_serializer=modal__proto_dot_api__pb2.FunctionGetDynamicConcurrencyRequest.SerializeToString,
|
331
|
+
response_deserializer=modal__proto_dot_api__pb2.FunctionGetDynamicConcurrencyResponse.FromString,
|
332
|
+
)
|
243
333
|
self.FunctionGetInputs = channel.unary_unary(
|
244
334
|
'/modal.client.ModalClient/FunctionGetInputs',
|
245
335
|
request_serializer=modal__proto_dot_api__pb2.FunctionGetInputsRequest.SerializeToString,
|
@@ -275,41 +365,26 @@ class ModalClientStub(object):
|
|
275
365
|
request_serializer=modal__proto_dot_api__pb2.FunctionPutOutputsRequest.SerializeToString,
|
276
366
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
277
367
|
)
|
278
|
-
self.
|
279
|
-
'/modal.client.ModalClient/
|
280
|
-
request_serializer=modal__proto_dot_api__pb2.
|
281
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
282
|
-
)
|
283
|
-
self.FunctionCallCancel = channel.unary_unary(
|
284
|
-
'/modal.client.ModalClient/FunctionCallCancel',
|
285
|
-
request_serializer=modal__proto_dot_api__pb2.FunctionCallCancelRequest.SerializeToString,
|
286
|
-
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
287
|
-
)
|
288
|
-
self.FunctionCallList = channel.unary_unary(
|
289
|
-
'/modal.client.ModalClient/FunctionCallList',
|
290
|
-
request_serializer=modal__proto_dot_api__pb2.FunctionCallListRequest.SerializeToString,
|
291
|
-
response_deserializer=modal__proto_dot_api__pb2.FunctionCallListResponse.FromString,
|
292
|
-
)
|
293
|
-
self.FunctionCallGetDataIn = channel.unary_stream(
|
294
|
-
'/modal.client.ModalClient/FunctionCallGetDataIn',
|
295
|
-
request_serializer=modal__proto_dot_api__pb2.FunctionCallGetDataRequest.SerializeToString,
|
296
|
-
response_deserializer=modal__proto_dot_api__pb2.DataChunk.FromString,
|
297
|
-
)
|
298
|
-
self.FunctionCallGetDataOut = channel.unary_stream(
|
299
|
-
'/modal.client.ModalClient/FunctionCallGetDataOut',
|
300
|
-
request_serializer=modal__proto_dot_api__pb2.FunctionCallGetDataRequest.SerializeToString,
|
301
|
-
response_deserializer=modal__proto_dot_api__pb2.DataChunk.FromString,
|
302
|
-
)
|
303
|
-
self.FunctionCallPutDataOut = channel.unary_unary(
|
304
|
-
'/modal.client.ModalClient/FunctionCallPutDataOut',
|
305
|
-
request_serializer=modal__proto_dot_api__pb2.FunctionCallPutDataRequest.SerializeToString,
|
306
|
-
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
368
|
+
self.FunctionRetryInputs = channel.unary_unary(
|
369
|
+
'/modal.client.ModalClient/FunctionRetryInputs',
|
370
|
+
request_serializer=modal__proto_dot_api__pb2.FunctionRetryInputsRequest.SerializeToString,
|
371
|
+
response_deserializer=modal__proto_dot_api__pb2.FunctionRetryInputsResponse.FromString,
|
307
372
|
)
|
308
373
|
self.FunctionStartPtyShell = channel.unary_unary(
|
309
374
|
'/modal.client.ModalClient/FunctionStartPtyShell',
|
310
375
|
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
311
376
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
312
377
|
)
|
378
|
+
self.FunctionUpdateSchedulingParams = channel.unary_unary(
|
379
|
+
'/modal.client.ModalClient/FunctionUpdateSchedulingParams',
|
380
|
+
request_serializer=modal__proto_dot_api__pb2.FunctionUpdateSchedulingParamsRequest.SerializeToString,
|
381
|
+
response_deserializer=modal__proto_dot_api__pb2.FunctionUpdateSchedulingParamsResponse.FromString,
|
382
|
+
)
|
383
|
+
self.ImageFromId = channel.unary_unary(
|
384
|
+
'/modal.client.ModalClient/ImageFromId',
|
385
|
+
request_serializer=modal__proto_dot_api__pb2.ImageFromIdRequest.SerializeToString,
|
386
|
+
response_deserializer=modal__proto_dot_api__pb2.ImageFromIdResponse.FromString,
|
387
|
+
)
|
313
388
|
self.ImageGetOrCreate = channel.unary_unary(
|
314
389
|
'/modal.client.ModalClient/ImageGetOrCreate',
|
315
390
|
request_serializer=modal__proto_dot_api__pb2.ImageGetOrCreateRequest.SerializeToString,
|
@@ -320,116 +395,166 @@ class ModalClientStub(object):
|
|
320
395
|
request_serializer=modal__proto_dot_api__pb2.ImageJoinStreamingRequest.SerializeToString,
|
321
396
|
response_deserializer=modal__proto_dot_api__pb2.ImageJoinStreamingResponse.FromString,
|
322
397
|
)
|
398
|
+
self.MountGetOrCreate = channel.unary_unary(
|
399
|
+
'/modal.client.ModalClient/MountGetOrCreate',
|
400
|
+
request_serializer=modal__proto_dot_api__pb2.MountGetOrCreateRequest.SerializeToString,
|
401
|
+
response_deserializer=modal__proto_dot_api__pb2.MountGetOrCreateResponse.FromString,
|
402
|
+
)
|
323
403
|
self.MountPutFile = channel.unary_unary(
|
324
404
|
'/modal.client.ModalClient/MountPutFile',
|
325
405
|
request_serializer=modal__proto_dot_api__pb2.MountPutFileRequest.SerializeToString,
|
326
406
|
response_deserializer=modal__proto_dot_api__pb2.MountPutFileResponse.FromString,
|
327
407
|
)
|
328
|
-
self.
|
329
|
-
'/modal.client.ModalClient/
|
330
|
-
request_serializer=modal__proto_dot_api__pb2.
|
331
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
408
|
+
self.ProxyCreate = channel.unary_unary(
|
409
|
+
'/modal.client.ModalClient/ProxyCreate',
|
410
|
+
request_serializer=modal__proto_dot_api__pb2.ProxyCreateRequest.SerializeToString,
|
411
|
+
response_deserializer=modal__proto_dot_api__pb2.ProxyCreateResponse.FromString,
|
332
412
|
)
|
333
|
-
self.
|
334
|
-
'/modal.client.ModalClient/
|
335
|
-
request_serializer=modal__proto_dot_api__pb2.
|
336
|
-
response_deserializer=
|
413
|
+
self.ProxyDelete = channel.unary_unary(
|
414
|
+
'/modal.client.ModalClient/ProxyDelete',
|
415
|
+
request_serializer=modal__proto_dot_api__pb2.ProxyDeleteRequest.SerializeToString,
|
416
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
417
|
+
)
|
418
|
+
self.ProxyGet = channel.unary_unary(
|
419
|
+
'/modal.client.ModalClient/ProxyGet',
|
420
|
+
request_serializer=modal__proto_dot_api__pb2.ProxyGetRequest.SerializeToString,
|
421
|
+
response_deserializer=modal__proto_dot_api__pb2.ProxyGetResponse.FromString,
|
337
422
|
)
|
338
423
|
self.ProxyGetOrCreate = channel.unary_unary(
|
339
424
|
'/modal.client.ModalClient/ProxyGetOrCreate',
|
340
425
|
request_serializer=modal__proto_dot_api__pb2.ProxyGetOrCreateRequest.SerializeToString,
|
341
426
|
response_deserializer=modal__proto_dot_api__pb2.ProxyGetOrCreateResponse.FromString,
|
342
427
|
)
|
343
|
-
self.
|
344
|
-
'/modal.client.ModalClient/
|
345
|
-
request_serializer=
|
346
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
428
|
+
self.ProxyList = channel.unary_unary(
|
429
|
+
'/modal.client.ModalClient/ProxyList',
|
430
|
+
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
431
|
+
response_deserializer=modal__proto_dot_api__pb2.ProxyListResponse.FromString,
|
347
432
|
)
|
348
|
-
self.
|
349
|
-
'/modal.client.ModalClient/
|
350
|
-
request_serializer=modal__proto_dot_api__pb2.
|
351
|
-
response_deserializer=
|
433
|
+
self.QueueClear = channel.unary_unary(
|
434
|
+
'/modal.client.ModalClient/QueueClear',
|
435
|
+
request_serializer=modal__proto_dot_api__pb2.QueueClearRequest.SerializeToString,
|
436
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
437
|
+
)
|
438
|
+
self.QueueDelete = channel.unary_unary(
|
439
|
+
'/modal.client.ModalClient/QueueDelete',
|
440
|
+
request_serializer=modal__proto_dot_api__pb2.QueueDeleteRequest.SerializeToString,
|
441
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
352
442
|
)
|
353
443
|
self.QueueGet = channel.unary_unary(
|
354
444
|
'/modal.client.ModalClient/QueueGet',
|
355
445
|
request_serializer=modal__proto_dot_api__pb2.QueueGetRequest.SerializeToString,
|
356
446
|
response_deserializer=modal__proto_dot_api__pb2.QueueGetResponse.FromString,
|
357
447
|
)
|
448
|
+
self.QueueGetOrCreate = channel.unary_unary(
|
449
|
+
'/modal.client.ModalClient/QueueGetOrCreate',
|
450
|
+
request_serializer=modal__proto_dot_api__pb2.QueueGetOrCreateRequest.SerializeToString,
|
451
|
+
response_deserializer=modal__proto_dot_api__pb2.QueueGetOrCreateResponse.FromString,
|
452
|
+
)
|
358
453
|
self.QueueHeartbeat = channel.unary_unary(
|
359
454
|
'/modal.client.ModalClient/QueueHeartbeat',
|
360
455
|
request_serializer=modal__proto_dot_api__pb2.QueueHeartbeatRequest.SerializeToString,
|
361
456
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
362
457
|
)
|
363
|
-
self.QueuePut = channel.unary_unary(
|
364
|
-
'/modal.client.ModalClient/QueuePut',
|
365
|
-
request_serializer=modal__proto_dot_api__pb2.QueuePutRequest.SerializeToString,
|
366
|
-
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
367
|
-
)
|
368
458
|
self.QueueLen = channel.unary_unary(
|
369
459
|
'/modal.client.ModalClient/QueueLen',
|
370
460
|
request_serializer=modal__proto_dot_api__pb2.QueueLenRequest.SerializeToString,
|
371
461
|
response_deserializer=modal__proto_dot_api__pb2.QueueLenResponse.FromString,
|
372
462
|
)
|
463
|
+
self.QueueList = channel.unary_unary(
|
464
|
+
'/modal.client.ModalClient/QueueList',
|
465
|
+
request_serializer=modal__proto_dot_api__pb2.QueueListRequest.SerializeToString,
|
466
|
+
response_deserializer=modal__proto_dot_api__pb2.QueueListResponse.FromString,
|
467
|
+
)
|
468
|
+
self.QueueNextItems = channel.unary_unary(
|
469
|
+
'/modal.client.ModalClient/QueueNextItems',
|
470
|
+
request_serializer=modal__proto_dot_api__pb2.QueueNextItemsRequest.SerializeToString,
|
471
|
+
response_deserializer=modal__proto_dot_api__pb2.QueueNextItemsResponse.FromString,
|
472
|
+
)
|
473
|
+
self.QueuePut = channel.unary_unary(
|
474
|
+
'/modal.client.ModalClient/QueuePut',
|
475
|
+
request_serializer=modal__proto_dot_api__pb2.QueuePutRequest.SerializeToString,
|
476
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
477
|
+
)
|
373
478
|
self.SandboxCreate = channel.unary_unary(
|
374
479
|
'/modal.client.ModalClient/SandboxCreate',
|
375
480
|
request_serializer=modal__proto_dot_api__pb2.SandboxCreateRequest.SerializeToString,
|
376
481
|
response_deserializer=modal__proto_dot_api__pb2.SandboxCreateResponse.FromString,
|
377
482
|
)
|
378
|
-
self.SandboxGetTaskId = channel.unary_unary(
|
379
|
-
'/modal.client.ModalClient/SandboxGetTaskId',
|
380
|
-
request_serializer=modal__proto_dot_api__pb2.SandboxGetTaskIdRequest.SerializeToString,
|
381
|
-
response_deserializer=modal__proto_dot_api__pb2.SandboxGetTaskIdResponse.FromString,
|
382
|
-
)
|
383
483
|
self.SandboxGetLogs = channel.unary_stream(
|
384
484
|
'/modal.client.ModalClient/SandboxGetLogs',
|
385
485
|
request_serializer=modal__proto_dot_api__pb2.SandboxGetLogsRequest.SerializeToString,
|
386
486
|
response_deserializer=modal__proto_dot_api__pb2.TaskLogsBatch.FromString,
|
387
487
|
)
|
388
|
-
self.
|
389
|
-
'/modal.client.ModalClient/
|
390
|
-
request_serializer=modal__proto_dot_api__pb2.
|
391
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
488
|
+
self.SandboxGetTaskId = channel.unary_unary(
|
489
|
+
'/modal.client.ModalClient/SandboxGetTaskId',
|
490
|
+
request_serializer=modal__proto_dot_api__pb2.SandboxGetTaskIdRequest.SerializeToString,
|
491
|
+
response_deserializer=modal__proto_dot_api__pb2.SandboxGetTaskIdResponse.FromString,
|
492
|
+
)
|
493
|
+
self.SandboxGetTunnels = channel.unary_unary(
|
494
|
+
'/modal.client.ModalClient/SandboxGetTunnels',
|
495
|
+
request_serializer=modal__proto_dot_api__pb2.SandboxGetTunnelsRequest.SerializeToString,
|
496
|
+
response_deserializer=modal__proto_dot_api__pb2.SandboxGetTunnelsResponse.FromString,
|
392
497
|
)
|
393
498
|
self.SandboxList = channel.unary_unary(
|
394
499
|
'/modal.client.ModalClient/SandboxList',
|
395
500
|
request_serializer=modal__proto_dot_api__pb2.SandboxListRequest.SerializeToString,
|
396
501
|
response_deserializer=modal__proto_dot_api__pb2.SandboxListResponse.FromString,
|
397
502
|
)
|
398
|
-
self.
|
399
|
-
'/modal.client.ModalClient/
|
400
|
-
request_serializer=modal__proto_dot_api__pb2.
|
401
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
503
|
+
self.SandboxSnapshotFs = channel.unary_unary(
|
504
|
+
'/modal.client.ModalClient/SandboxSnapshotFs',
|
505
|
+
request_serializer=modal__proto_dot_api__pb2.SandboxSnapshotFsRequest.SerializeToString,
|
506
|
+
response_deserializer=modal__proto_dot_api__pb2.SandboxSnapshotFsResponse.FromString,
|
402
507
|
)
|
403
508
|
self.SandboxStdinWrite = channel.unary_unary(
|
404
509
|
'/modal.client.ModalClient/SandboxStdinWrite',
|
405
510
|
request_serializer=modal__proto_dot_api__pb2.SandboxStdinWriteRequest.SerializeToString,
|
406
511
|
response_deserializer=modal__proto_dot_api__pb2.SandboxStdinWriteResponse.FromString,
|
407
512
|
)
|
408
|
-
self.
|
409
|
-
'/modal.client.ModalClient/
|
410
|
-
request_serializer=modal__proto_dot_api__pb2.
|
411
|
-
response_deserializer=
|
513
|
+
self.SandboxTagsSet = channel.unary_unary(
|
514
|
+
'/modal.client.ModalClient/SandboxTagsSet',
|
515
|
+
request_serializer=modal__proto_dot_api__pb2.SandboxTagsSetRequest.SerializeToString,
|
516
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
412
517
|
)
|
413
|
-
self.
|
414
|
-
'/modal.client.ModalClient/
|
415
|
-
request_serializer=modal__proto_dot_api__pb2.
|
416
|
-
response_deserializer=modal__proto_dot_api__pb2.
|
518
|
+
self.SandboxTerminate = channel.unary_unary(
|
519
|
+
'/modal.client.ModalClient/SandboxTerminate',
|
520
|
+
request_serializer=modal__proto_dot_api__pb2.SandboxTerminateRequest.SerializeToString,
|
521
|
+
response_deserializer=modal__proto_dot_api__pb2.SandboxTerminateResponse.FromString,
|
417
522
|
)
|
418
|
-
self.
|
419
|
-
'/modal.client.ModalClient/
|
523
|
+
self.SandboxWait = channel.unary_unary(
|
524
|
+
'/modal.client.ModalClient/SandboxWait',
|
525
|
+
request_serializer=modal__proto_dot_api__pb2.SandboxWaitRequest.SerializeToString,
|
526
|
+
response_deserializer=modal__proto_dot_api__pb2.SandboxWaitResponse.FromString,
|
527
|
+
)
|
528
|
+
self.SecretDelete = channel.unary_unary(
|
529
|
+
'/modal.client.ModalClient/SecretDelete',
|
530
|
+
request_serializer=modal__proto_dot_api__pb2.SecretDeleteRequest.SerializeToString,
|
531
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
532
|
+
)
|
533
|
+
self.SecretGetOrCreate = channel.unary_unary(
|
534
|
+
'/modal.client.ModalClient/SecretGetOrCreate',
|
535
|
+
request_serializer=modal__proto_dot_api__pb2.SecretGetOrCreateRequest.SerializeToString,
|
536
|
+
response_deserializer=modal__proto_dot_api__pb2.SecretGetOrCreateResponse.FromString,
|
537
|
+
)
|
538
|
+
self.SecretList = channel.unary_unary(
|
539
|
+
'/modal.client.ModalClient/SecretList',
|
420
540
|
request_serializer=modal__proto_dot_api__pb2.SecretListRequest.SerializeToString,
|
421
541
|
response_deserializer=modal__proto_dot_api__pb2.SecretListResponse.FromString,
|
422
542
|
)
|
543
|
+
self.SharedVolumeDelete = channel.unary_unary(
|
544
|
+
'/modal.client.ModalClient/SharedVolumeDelete',
|
545
|
+
request_serializer=modal__proto_dot_api__pb2.SharedVolumeDeleteRequest.SerializeToString,
|
546
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
547
|
+
)
|
548
|
+
self.SharedVolumeGetFile = channel.unary_unary(
|
549
|
+
'/modal.client.ModalClient/SharedVolumeGetFile',
|
550
|
+
request_serializer=modal__proto_dot_api__pb2.SharedVolumeGetFileRequest.SerializeToString,
|
551
|
+
response_deserializer=modal__proto_dot_api__pb2.SharedVolumeGetFileResponse.FromString,
|
552
|
+
)
|
423
553
|
self.SharedVolumeGetOrCreate = channel.unary_unary(
|
424
554
|
'/modal.client.ModalClient/SharedVolumeGetOrCreate',
|
425
555
|
request_serializer=modal__proto_dot_api__pb2.SharedVolumeGetOrCreateRequest.SerializeToString,
|
426
556
|
response_deserializer=modal__proto_dot_api__pb2.SharedVolumeGetOrCreateResponse.FromString,
|
427
557
|
)
|
428
|
-
self.SharedVolumeCreate = channel.unary_unary(
|
429
|
-
'/modal.client.ModalClient/SharedVolumeCreate',
|
430
|
-
request_serializer=modal__proto_dot_api__pb2.SharedVolumeCreateRequest.SerializeToString,
|
431
|
-
response_deserializer=modal__proto_dot_api__pb2.SharedVolumeCreateResponse.FromString,
|
432
|
-
)
|
433
558
|
self.SharedVolumeHeartbeat = channel.unary_unary(
|
434
559
|
'/modal.client.ModalClient/SharedVolumeHeartbeat',
|
435
560
|
request_serializer=modal__proto_dot_api__pb2.SharedVolumeHeartbeatRequest.SerializeToString,
|
@@ -455,30 +580,30 @@ class ModalClientStub(object):
|
|
455
580
|
request_serializer=modal__proto_dot_api__pb2.SharedVolumePutFileRequest.SerializeToString,
|
456
581
|
response_deserializer=modal__proto_dot_api__pb2.SharedVolumePutFileResponse.FromString,
|
457
582
|
)
|
458
|
-
self.SharedVolumeGetFile = channel.unary_unary(
|
459
|
-
'/modal.client.ModalClient/SharedVolumeGetFile',
|
460
|
-
request_serializer=modal__proto_dot_api__pb2.SharedVolumeGetFileRequest.SerializeToString,
|
461
|
-
response_deserializer=modal__proto_dot_api__pb2.SharedVolumeGetFileResponse.FromString,
|
462
|
-
)
|
463
583
|
self.SharedVolumeRemoveFile = channel.unary_unary(
|
464
584
|
'/modal.client.ModalClient/SharedVolumeRemoveFile',
|
465
585
|
request_serializer=modal__proto_dot_api__pb2.SharedVolumeRemoveFileRequest.SerializeToString,
|
466
586
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
467
587
|
)
|
468
|
-
self.
|
469
|
-
'/modal.client.ModalClient/
|
470
|
-
request_serializer=modal__proto_dot_api__pb2.
|
471
|
-
response_deserializer=
|
588
|
+
self.TaskClusterHello = channel.unary_unary(
|
589
|
+
'/modal.client.ModalClient/TaskClusterHello',
|
590
|
+
request_serializer=modal__proto_dot_api__pb2.TaskClusterHelloRequest.SerializeToString,
|
591
|
+
response_deserializer=modal__proto_dot_api__pb2.TaskClusterHelloResponse.FromString,
|
592
|
+
)
|
593
|
+
self.TaskCurrentInputs = channel.unary_unary(
|
594
|
+
'/modal.client.ModalClient/TaskCurrentInputs',
|
595
|
+
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
596
|
+
response_deserializer=modal__proto_dot_api__pb2.TaskCurrentInputsResponse.FromString,
|
472
597
|
)
|
473
598
|
self.TaskList = channel.unary_unary(
|
474
599
|
'/modal.client.ModalClient/TaskList',
|
475
600
|
request_serializer=modal__proto_dot_api__pb2.TaskListRequest.SerializeToString,
|
476
601
|
response_deserializer=modal__proto_dot_api__pb2.TaskListResponse.FromString,
|
477
602
|
)
|
478
|
-
self.
|
479
|
-
'/modal.client.ModalClient/
|
480
|
-
request_serializer=
|
481
|
-
response_deserializer=
|
603
|
+
self.TaskResult = channel.unary_unary(
|
604
|
+
'/modal.client.ModalClient/TaskResult',
|
605
|
+
request_serializer=modal__proto_dot_api__pb2.TaskResultRequest.SerializeToString,
|
606
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
482
607
|
)
|
483
608
|
self.TokenFlowCreate = channel.unary_unary(
|
484
609
|
'/modal.client.ModalClient/TokenFlowCreate',
|
@@ -500,26 +625,16 @@ class ModalClientStub(object):
|
|
500
625
|
request_serializer=modal__proto_dot_api__pb2.TunnelStopRequest.SerializeToString,
|
501
626
|
response_deserializer=modal__proto_dot_api__pb2.TunnelStopResponse.FromString,
|
502
627
|
)
|
503
|
-
self.VolumeGetOrCreate = channel.unary_unary(
|
504
|
-
'/modal.client.ModalClient/VolumeGetOrCreate',
|
505
|
-
request_serializer=modal__proto_dot_api__pb2.VolumeGetOrCreateRequest.SerializeToString,
|
506
|
-
response_deserializer=modal__proto_dot_api__pb2.VolumeGetOrCreateResponse.FromString,
|
507
|
-
)
|
508
|
-
self.VolumeCreate = channel.unary_unary(
|
509
|
-
'/modal.client.ModalClient/VolumeCreate',
|
510
|
-
request_serializer=modal__proto_dot_api__pb2.VolumeCreateRequest.SerializeToString,
|
511
|
-
response_deserializer=modal__proto_dot_api__pb2.VolumeCreateResponse.FromString,
|
512
|
-
)
|
513
|
-
self.VolumeHeartbeat = channel.unary_unary(
|
514
|
-
'/modal.client.ModalClient/VolumeHeartbeat',
|
515
|
-
request_serializer=modal__proto_dot_api__pb2.VolumeHeartbeatRequest.SerializeToString,
|
516
|
-
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
517
|
-
)
|
518
628
|
self.VolumeCommit = channel.unary_unary(
|
519
629
|
'/modal.client.ModalClient/VolumeCommit',
|
520
630
|
request_serializer=modal__proto_dot_api__pb2.VolumeCommitRequest.SerializeToString,
|
521
631
|
response_deserializer=modal__proto_dot_api__pb2.VolumeCommitResponse.FromString,
|
522
632
|
)
|
633
|
+
self.VolumeCopyFiles = channel.unary_unary(
|
634
|
+
'/modal.client.ModalClient/VolumeCopyFiles',
|
635
|
+
request_serializer=modal__proto_dot_api__pb2.VolumeCopyFilesRequest.SerializeToString,
|
636
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
637
|
+
)
|
523
638
|
self.VolumeDelete = channel.unary_unary(
|
524
639
|
'/modal.client.ModalClient/VolumeDelete',
|
525
640
|
request_serializer=modal__proto_dot_api__pb2.VolumeDeleteRequest.SerializeToString,
|
@@ -530,6 +645,16 @@ class ModalClientStub(object):
|
|
530
645
|
request_serializer=modal__proto_dot_api__pb2.VolumeGetFileRequest.SerializeToString,
|
531
646
|
response_deserializer=modal__proto_dot_api__pb2.VolumeGetFileResponse.FromString,
|
532
647
|
)
|
648
|
+
self.VolumeGetOrCreate = channel.unary_unary(
|
649
|
+
'/modal.client.ModalClient/VolumeGetOrCreate',
|
650
|
+
request_serializer=modal__proto_dot_api__pb2.VolumeGetOrCreateRequest.SerializeToString,
|
651
|
+
response_deserializer=modal__proto_dot_api__pb2.VolumeGetOrCreateResponse.FromString,
|
652
|
+
)
|
653
|
+
self.VolumeHeartbeat = channel.unary_unary(
|
654
|
+
'/modal.client.ModalClient/VolumeHeartbeat',
|
655
|
+
request_serializer=modal__proto_dot_api__pb2.VolumeHeartbeatRequest.SerializeToString,
|
656
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
657
|
+
)
|
533
658
|
self.VolumeList = channel.unary_unary(
|
534
659
|
'/modal.client.ModalClient/VolumeList',
|
535
660
|
request_serializer=modal__proto_dot_api__pb2.VolumeListRequest.SerializeToString,
|
@@ -555,9 +680,9 @@ class ModalClientStub(object):
|
|
555
680
|
request_serializer=modal__proto_dot_api__pb2.VolumeRemoveFileRequest.SerializeToString,
|
556
681
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
557
682
|
)
|
558
|
-
self.
|
559
|
-
'/modal.client.ModalClient/
|
560
|
-
request_serializer=modal__proto_dot_api__pb2.
|
683
|
+
self.VolumeRename = channel.unary_unary(
|
684
|
+
'/modal.client.ModalClient/VolumeRename',
|
685
|
+
request_serializer=modal__proto_dot_api__pb2.VolumeRenameRequest.SerializeToString,
|
561
686
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
562
687
|
)
|
563
688
|
self.WorkspaceNameLookup = channel.unary_unary(
|
@@ -570,125 +695,137 @@ class ModalClientStub(object):
|
|
570
695
|
class ModalClientServicer(object):
|
571
696
|
"""Missing associated documentation comment in .proto file."""
|
572
697
|
|
573
|
-
def
|
698
|
+
def AppClientDisconnect(self, request, context):
|
574
699
|
"""Apps
|
575
700
|
"""
|
576
701
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
577
702
|
context.set_details('Method not implemented!')
|
578
703
|
raise NotImplementedError('Method not implemented!')
|
579
704
|
|
580
|
-
def
|
705
|
+
def AppCreate(self, request, context):
|
581
706
|
"""Missing associated documentation comment in .proto file."""
|
582
707
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
583
708
|
context.set_details('Method not implemented!')
|
584
709
|
raise NotImplementedError('Method not implemented!')
|
585
710
|
|
586
|
-
def
|
711
|
+
def AppDeploy(self, request, context):
|
587
712
|
"""Missing associated documentation comment in .proto file."""
|
588
713
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
589
714
|
context.set_details('Method not implemented!')
|
590
715
|
raise NotImplementedError('Method not implemented!')
|
591
716
|
|
592
|
-
def
|
717
|
+
def AppDeploymentHistory(self, request, context):
|
593
718
|
"""Missing associated documentation comment in .proto file."""
|
594
719
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
595
720
|
context.set_details('Method not implemented!')
|
596
721
|
raise NotImplementedError('Method not implemented!')
|
597
722
|
|
598
|
-
def
|
723
|
+
def AppGetByDeploymentName(self, request, context):
|
599
724
|
"""Missing associated documentation comment in .proto file."""
|
600
725
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
601
726
|
context.set_details('Method not implemented!')
|
602
727
|
raise NotImplementedError('Method not implemented!')
|
603
728
|
|
604
|
-
def
|
729
|
+
def AppGetLayout(self, request, context):
|
605
730
|
"""Missing associated documentation comment in .proto file."""
|
606
731
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
607
732
|
context.set_details('Method not implemented!')
|
608
733
|
raise NotImplementedError('Method not implemented!')
|
609
734
|
|
610
|
-
def
|
735
|
+
def AppGetLogs(self, request, context):
|
611
736
|
"""Missing associated documentation comment in .proto file."""
|
612
737
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
613
738
|
context.set_details('Method not implemented!')
|
614
739
|
raise NotImplementedError('Method not implemented!')
|
615
740
|
|
616
|
-
def
|
741
|
+
def AppGetObjects(self, request, context):
|
617
742
|
"""Missing associated documentation comment in .proto file."""
|
618
743
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
619
744
|
context.set_details('Method not implemented!')
|
620
745
|
raise NotImplementedError('Method not implemented!')
|
621
746
|
|
622
|
-
def
|
747
|
+
def AppGetOrCreate(self, request, context):
|
623
748
|
"""Missing associated documentation comment in .proto file."""
|
624
749
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
625
750
|
context.set_details('Method not implemented!')
|
626
751
|
raise NotImplementedError('Method not implemented!')
|
627
752
|
|
628
|
-
def
|
753
|
+
def AppHeartbeat(self, request, context):
|
629
754
|
"""Missing associated documentation comment in .proto file."""
|
630
755
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
631
756
|
context.set_details('Method not implemented!')
|
632
757
|
raise NotImplementedError('Method not implemented!')
|
633
758
|
|
634
|
-
def
|
759
|
+
def AppList(self, request, context):
|
635
760
|
"""Missing associated documentation comment in .proto file."""
|
636
761
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
637
762
|
context.set_details('Method not implemented!')
|
638
763
|
raise NotImplementedError('Method not implemented!')
|
639
764
|
|
640
|
-
def
|
765
|
+
def AppLookup(self, request, context):
|
641
766
|
"""Missing associated documentation comment in .proto file."""
|
642
767
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
643
768
|
context.set_details('Method not implemented!')
|
644
769
|
raise NotImplementedError('Method not implemented!')
|
645
770
|
|
646
|
-
def
|
647
|
-
"""
|
648
|
-
"""
|
771
|
+
def AppPublish(self, request, context):
|
772
|
+
"""Missing associated documentation comment in .proto file."""
|
649
773
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
650
774
|
context.set_details('Method not implemented!')
|
651
775
|
raise NotImplementedError('Method not implemented!')
|
652
776
|
|
653
|
-
def
|
777
|
+
def AppRollback(self, request, context):
|
654
778
|
"""Missing associated documentation comment in .proto file."""
|
655
779
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
656
780
|
context.set_details('Method not implemented!')
|
657
781
|
raise NotImplementedError('Method not implemented!')
|
658
782
|
|
659
|
-
def
|
660
|
-
"""
|
661
|
-
"""
|
783
|
+
def AppSetObjects(self, request, context):
|
784
|
+
"""Missing associated documentation comment in .proto file."""
|
662
785
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
663
786
|
context.set_details('Method not implemented!')
|
664
787
|
raise NotImplementedError('Method not implemented!')
|
665
788
|
|
666
|
-
def
|
789
|
+
def AppStop(self, request, context):
|
667
790
|
"""Missing associated documentation comment in .proto file."""
|
668
791
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
669
792
|
context.set_details('Method not implemented!')
|
670
793
|
raise NotImplementedError('Method not implemented!')
|
671
794
|
|
672
|
-
def
|
673
|
-
"""
|
795
|
+
def BlobCreate(self, request, context):
|
796
|
+
"""Blobs
|
674
797
|
"""
|
675
798
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
676
799
|
context.set_details('Method not implemented!')
|
677
800
|
raise NotImplementedError('Method not implemented!')
|
678
801
|
|
679
|
-
def
|
802
|
+
def BlobGet(self, request, context):
|
680
803
|
"""Missing associated documentation comment in .proto file."""
|
681
804
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
682
805
|
context.set_details('Method not implemented!')
|
683
806
|
raise NotImplementedError('Method not implemented!')
|
684
807
|
|
685
|
-
def
|
808
|
+
def ClassCreate(self, request, context):
|
809
|
+
"""Classes
|
810
|
+
"""
|
811
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
812
|
+
context.set_details('Method not implemented!')
|
813
|
+
raise NotImplementedError('Method not implemented!')
|
814
|
+
|
815
|
+
def ClassGet(self, request, context):
|
686
816
|
"""Missing associated documentation comment in .proto file."""
|
687
817
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
688
818
|
context.set_details('Method not implemented!')
|
689
819
|
raise NotImplementedError('Method not implemented!')
|
690
820
|
|
691
|
-
def
|
821
|
+
def ClientHello(self, request, context):
|
822
|
+
"""Clients
|
823
|
+
"""
|
824
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
825
|
+
context.set_details('Method not implemented!')
|
826
|
+
raise NotImplementedError('Method not implemented!')
|
827
|
+
|
828
|
+
def ContainerCheckpoint(self, request, context):
|
692
829
|
"""Container
|
693
830
|
"""
|
694
831
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
@@ -713,53 +850,51 @@ class ModalClientServicer(object):
|
|
713
850
|
context.set_details('Method not implemented!')
|
714
851
|
raise NotImplementedError('Method not implemented!')
|
715
852
|
|
716
|
-
def
|
717
|
-
"""
|
718
|
-
"""
|
853
|
+
def ContainerExecWait(self, request, context):
|
854
|
+
"""Missing associated documentation comment in .proto file."""
|
719
855
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
720
856
|
context.set_details('Method not implemented!')
|
721
857
|
raise NotImplementedError('Method not implemented!')
|
722
858
|
|
723
|
-
def
|
724
|
-
"""
|
725
|
-
"""
|
859
|
+
def ContainerFilesystemExec(self, request, context):
|
860
|
+
"""Missing associated documentation comment in .proto file."""
|
726
861
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
727
862
|
context.set_details('Method not implemented!')
|
728
863
|
raise NotImplementedError('Method not implemented!')
|
729
864
|
|
730
|
-
def
|
731
|
-
"""
|
732
|
-
"""
|
865
|
+
def ContainerFilesystemExecGetOutput(self, request, context):
|
866
|
+
"""Missing associated documentation comment in .proto file."""
|
733
867
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
734
868
|
context.set_details('Method not implemented!')
|
735
869
|
raise NotImplementedError('Method not implemented!')
|
736
870
|
|
737
|
-
def
|
871
|
+
def ContainerHeartbeat(self, request, context):
|
738
872
|
"""Missing associated documentation comment in .proto file."""
|
739
873
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
740
874
|
context.set_details('Method not implemented!')
|
741
875
|
raise NotImplementedError('Method not implemented!')
|
742
876
|
|
743
|
-
def
|
877
|
+
def ContainerHello(self, request, context):
|
744
878
|
"""Missing associated documentation comment in .proto file."""
|
745
879
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
746
880
|
context.set_details('Method not implemented!')
|
747
881
|
raise NotImplementedError('Method not implemented!')
|
748
882
|
|
749
|
-
def
|
883
|
+
def ContainerLog(self, request, context):
|
750
884
|
"""Missing associated documentation comment in .proto file."""
|
751
885
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
752
886
|
context.set_details('Method not implemented!')
|
753
887
|
raise NotImplementedError('Method not implemented!')
|
754
888
|
|
755
|
-
def
|
889
|
+
def ContainerStop(self, request, context):
|
756
890
|
"""Missing associated documentation comment in .proto file."""
|
757
891
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
758
892
|
context.set_details('Method not implemented!')
|
759
893
|
raise NotImplementedError('Method not implemented!')
|
760
894
|
|
761
|
-
def
|
762
|
-
"""
|
895
|
+
def DictClear(self, request, context):
|
896
|
+
"""Dicts
|
897
|
+
"""
|
763
898
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
764
899
|
context.set_details('Method not implemented!')
|
765
900
|
raise NotImplementedError('Method not implemented!')
|
@@ -770,146 +905,124 @@ class ModalClientServicer(object):
|
|
770
905
|
context.set_details('Method not implemented!')
|
771
906
|
raise NotImplementedError('Method not implemented!')
|
772
907
|
|
773
|
-
def
|
908
|
+
def DictContents(self, request, context):
|
774
909
|
"""Missing associated documentation comment in .proto file."""
|
775
910
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
776
911
|
context.set_details('Method not implemented!')
|
777
912
|
raise NotImplementedError('Method not implemented!')
|
778
913
|
|
779
|
-
def
|
780
|
-
"""Domains
|
781
|
-
"""
|
782
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
783
|
-
context.set_details('Method not implemented!')
|
784
|
-
raise NotImplementedError('Method not implemented!')
|
785
|
-
|
786
|
-
def DomainList(self, request, context):
|
914
|
+
def DictDelete(self, request, context):
|
787
915
|
"""Missing associated documentation comment in .proto file."""
|
788
916
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
789
917
|
context.set_details('Method not implemented!')
|
790
918
|
raise NotImplementedError('Method not implemented!')
|
791
919
|
|
792
|
-
def
|
920
|
+
def DictGet(self, request, context):
|
793
921
|
"""Missing associated documentation comment in .proto file."""
|
794
922
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
795
923
|
context.set_details('Method not implemented!')
|
796
924
|
raise NotImplementedError('Method not implemented!')
|
797
925
|
|
798
|
-
def
|
799
|
-
"""Environments
|
800
|
-
"""
|
801
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
802
|
-
context.set_details('Method not implemented!')
|
803
|
-
raise NotImplementedError('Method not implemented!')
|
804
|
-
|
805
|
-
def EnvironmentList(self, request, context):
|
926
|
+
def DictGetOrCreate(self, request, context):
|
806
927
|
"""Missing associated documentation comment in .proto file."""
|
807
928
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
808
929
|
context.set_details('Method not implemented!')
|
809
930
|
raise NotImplementedError('Method not implemented!')
|
810
931
|
|
811
|
-
def
|
932
|
+
def DictHeartbeat(self, request, context):
|
812
933
|
"""Missing associated documentation comment in .proto file."""
|
813
934
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
814
935
|
context.set_details('Method not implemented!')
|
815
936
|
raise NotImplementedError('Method not implemented!')
|
816
937
|
|
817
|
-
def
|
938
|
+
def DictLen(self, request, context):
|
818
939
|
"""Missing associated documentation comment in .proto file."""
|
819
940
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
820
941
|
context.set_details('Method not implemented!')
|
821
942
|
raise NotImplementedError('Method not implemented!')
|
822
943
|
|
823
|
-
def
|
824
|
-
"""
|
825
|
-
"""
|
944
|
+
def DictList(self, request, context):
|
945
|
+
"""Missing associated documentation comment in .proto file."""
|
826
946
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
827
947
|
context.set_details('Method not implemented!')
|
828
948
|
raise NotImplementedError('Method not implemented!')
|
829
949
|
|
830
|
-
def
|
950
|
+
def DictPop(self, request, context):
|
831
951
|
"""Missing associated documentation comment in .proto file."""
|
832
952
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
833
953
|
context.set_details('Method not implemented!')
|
834
954
|
raise NotImplementedError('Method not implemented!')
|
835
955
|
|
836
|
-
def
|
956
|
+
def DictUpdate(self, request, context):
|
837
957
|
"""Missing associated documentation comment in .proto file."""
|
838
958
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
839
959
|
context.set_details('Method not implemented!')
|
840
960
|
raise NotImplementedError('Method not implemented!')
|
841
961
|
|
842
|
-
def
|
843
|
-
"""
|
962
|
+
def DomainCertificateVerify(self, request, context):
|
963
|
+
"""Domains
|
964
|
+
"""
|
844
965
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
845
966
|
context.set_details('Method not implemented!')
|
846
967
|
raise NotImplementedError('Method not implemented!')
|
847
968
|
|
848
|
-
def
|
969
|
+
def DomainCreate(self, request, context):
|
849
970
|
"""Missing associated documentation comment in .proto file."""
|
850
971
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
851
972
|
context.set_details('Method not implemented!')
|
852
973
|
raise NotImplementedError('Method not implemented!')
|
853
974
|
|
854
|
-
def
|
855
|
-
"""
|
856
|
-
"""
|
975
|
+
def DomainList(self, request, context):
|
976
|
+
"""Missing associated documentation comment in .proto file."""
|
857
977
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
858
978
|
context.set_details('Method not implemented!')
|
859
979
|
raise NotImplementedError('Method not implemented!')
|
860
980
|
|
861
|
-
def
|
862
|
-
"""
|
981
|
+
def EnvironmentCreate(self, request, context):
|
982
|
+
"""Environments
|
863
983
|
"""
|
864
984
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
865
985
|
context.set_details('Method not implemented!')
|
866
986
|
raise NotImplementedError('Method not implemented!')
|
867
987
|
|
868
|
-
def
|
988
|
+
def EnvironmentDelete(self, request, context):
|
869
989
|
"""Missing associated documentation comment in .proto file."""
|
870
990
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
871
991
|
context.set_details('Method not implemented!')
|
872
992
|
raise NotImplementedError('Method not implemented!')
|
873
993
|
|
874
|
-
def
|
994
|
+
def EnvironmentGetOrCreate(self, request, context):
|
875
995
|
"""Missing associated documentation comment in .proto file."""
|
876
996
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
877
997
|
context.set_details('Method not implemented!')
|
878
998
|
raise NotImplementedError('Method not implemented!')
|
879
999
|
|
880
|
-
def
|
1000
|
+
def EnvironmentList(self, request, context):
|
881
1001
|
"""Missing associated documentation comment in .proto file."""
|
882
1002
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
883
1003
|
context.set_details('Method not implemented!')
|
884
1004
|
raise NotImplementedError('Method not implemented!')
|
885
1005
|
|
886
|
-
def
|
1006
|
+
def EnvironmentUpdate(self, request, context):
|
887
1007
|
"""Missing associated documentation comment in .proto file."""
|
888
1008
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
889
1009
|
context.set_details('Method not implemented!')
|
890
1010
|
raise NotImplementedError('Method not implemented!')
|
891
1011
|
|
892
|
-
def
|
893
|
-
"""
|
1012
|
+
def FunctionAsyncInvoke(self, request, context):
|
1013
|
+
"""Functions
|
894
1014
|
"""
|
895
1015
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
896
1016
|
context.set_details('Method not implemented!')
|
897
1017
|
raise NotImplementedError('Method not implemented!')
|
898
1018
|
|
899
|
-
def
|
1019
|
+
def FunctionBindParams(self, request, context):
|
900
1020
|
"""Missing associated documentation comment in .proto file."""
|
901
1021
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
902
1022
|
context.set_details('Method not implemented!')
|
903
1023
|
raise NotImplementedError('Method not implemented!')
|
904
1024
|
|
905
1025
|
def FunctionCallCancel(self, request, context):
|
906
|
-
"""Function calls
|
907
|
-
"""
|
908
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
909
|
-
context.set_details('Method not implemented!')
|
910
|
-
raise NotImplementedError('Method not implemented!')
|
911
|
-
|
912
|
-
def FunctionCallList(self, request, context):
|
913
1026
|
"""Missing associated documentation comment in .proto file."""
|
914
1027
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
915
1028
|
context.set_details('Method not implemented!')
|
@@ -927,104 +1040,231 @@ class ModalClientServicer(object):
|
|
927
1040
|
context.set_details('Method not implemented!')
|
928
1041
|
raise NotImplementedError('Method not implemented!')
|
929
1042
|
|
930
|
-
def
|
1043
|
+
def FunctionCallList(self, request, context):
|
931
1044
|
"""Missing associated documentation comment in .proto file."""
|
932
1045
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
933
1046
|
context.set_details('Method not implemented!')
|
934
1047
|
raise NotImplementedError('Method not implemented!')
|
935
1048
|
|
936
|
-
def
|
937
|
-
"""
|
938
|
-
"""
|
1049
|
+
def FunctionCallPutDataOut(self, request, context):
|
1050
|
+
"""Missing associated documentation comment in .proto file."""
|
939
1051
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
940
1052
|
context.set_details('Method not implemented!')
|
941
1053
|
raise NotImplementedError('Method not implemented!')
|
942
1054
|
|
943
|
-
def
|
944
|
-
"""
|
945
|
-
"""
|
1055
|
+
def FunctionCreate(self, request, context):
|
1056
|
+
"""Missing associated documentation comment in .proto file."""
|
946
1057
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
947
1058
|
context.set_details('Method not implemented!')
|
948
1059
|
raise NotImplementedError('Method not implemented!')
|
949
1060
|
|
950
|
-
def
|
1061
|
+
def FunctionGet(self, request, context):
|
951
1062
|
"""Missing associated documentation comment in .proto file."""
|
952
1063
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
953
1064
|
context.set_details('Method not implemented!')
|
954
1065
|
raise NotImplementedError('Method not implemented!')
|
955
1066
|
|
956
|
-
def
|
957
|
-
"""
|
958
|
-
"""
|
1067
|
+
def FunctionGetCallGraph(self, request, context):
|
1068
|
+
"""Missing associated documentation comment in .proto file."""
|
959
1069
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
960
1070
|
context.set_details('Method not implemented!')
|
961
1071
|
raise NotImplementedError('Method not implemented!')
|
962
1072
|
|
963
|
-
def
|
1073
|
+
def FunctionGetCurrentStats(self, request, context):
|
964
1074
|
"""Missing associated documentation comment in .proto file."""
|
965
1075
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
966
1076
|
context.set_details('Method not implemented!')
|
967
1077
|
raise NotImplementedError('Method not implemented!')
|
968
1078
|
|
969
|
-
def
|
1079
|
+
def FunctionGetDynamicConcurrency(self, request, context):
|
970
1080
|
"""Missing associated documentation comment in .proto file."""
|
971
1081
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
972
1082
|
context.set_details('Method not implemented!')
|
973
1083
|
raise NotImplementedError('Method not implemented!')
|
974
1084
|
|
975
|
-
def
|
976
|
-
"""
|
1085
|
+
def FunctionGetInputs(self, request, context):
|
1086
|
+
"""For containers to request next call
|
977
1087
|
"""
|
978
1088
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
979
1089
|
context.set_details('Method not implemented!')
|
980
1090
|
raise NotImplementedError('Method not implemented!')
|
981
1091
|
|
982
|
-
def
|
983
|
-
"""
|
1092
|
+
def FunctionGetOutputs(self, request, context):
|
1093
|
+
"""Returns the next result(s) for an entire function call (FunctionMap)
|
984
1094
|
"""
|
985
1095
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
986
1096
|
context.set_details('Method not implemented!')
|
987
1097
|
raise NotImplementedError('Method not implemented!')
|
988
1098
|
|
989
|
-
def
|
1099
|
+
def FunctionGetSerialized(self, request, context):
|
990
1100
|
"""Missing associated documentation comment in .proto file."""
|
991
1101
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
992
1102
|
context.set_details('Method not implemented!')
|
993
1103
|
raise NotImplementedError('Method not implemented!')
|
994
1104
|
|
995
|
-
def
|
1105
|
+
def FunctionMap(self, request, context):
|
996
1106
|
"""Missing associated documentation comment in .proto file."""
|
997
1107
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
998
1108
|
context.set_details('Method not implemented!')
|
999
1109
|
raise NotImplementedError('Method not implemented!')
|
1000
1110
|
|
1001
|
-
def
|
1111
|
+
def FunctionPrecreate(self, request, context):
|
1002
1112
|
"""Missing associated documentation comment in .proto file."""
|
1003
1113
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1004
1114
|
context.set_details('Method not implemented!')
|
1005
1115
|
raise NotImplementedError('Method not implemented!')
|
1006
1116
|
|
1007
|
-
def
|
1117
|
+
def FunctionPutInputs(self, request, context):
|
1008
1118
|
"""Missing associated documentation comment in .proto file."""
|
1009
1119
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1010
1120
|
context.set_details('Method not implemented!')
|
1011
1121
|
raise NotImplementedError('Method not implemented!')
|
1012
1122
|
|
1013
|
-
def
|
1014
|
-
"""
|
1123
|
+
def FunctionPutOutputs(self, request, context):
|
1124
|
+
"""For containers to return result
|
1125
|
+
"""
|
1015
1126
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1016
1127
|
context.set_details('Method not implemented!')
|
1017
1128
|
raise NotImplementedError('Method not implemented!')
|
1018
1129
|
|
1019
|
-
def
|
1020
|
-
"""
|
1021
|
-
"""
|
1130
|
+
def FunctionRetryInputs(self, request, context):
|
1131
|
+
"""Missing associated documentation comment in .proto file."""
|
1022
1132
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1023
1133
|
context.set_details('Method not implemented!')
|
1024
1134
|
raise NotImplementedError('Method not implemented!')
|
1025
1135
|
|
1026
|
-
def
|
1027
|
-
"""
|
1136
|
+
def FunctionStartPtyShell(self, request, context):
|
1137
|
+
"""Missing associated documentation comment in .proto file."""
|
1138
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1139
|
+
context.set_details('Method not implemented!')
|
1140
|
+
raise NotImplementedError('Method not implemented!')
|
1141
|
+
|
1142
|
+
def FunctionUpdateSchedulingParams(self, request, context):
|
1143
|
+
"""Missing associated documentation comment in .proto file."""
|
1144
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1145
|
+
context.set_details('Method not implemented!')
|
1146
|
+
raise NotImplementedError('Method not implemented!')
|
1147
|
+
|
1148
|
+
def ImageFromId(self, request, context):
|
1149
|
+
"""Images
|
1150
|
+
"""
|
1151
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1152
|
+
context.set_details('Method not implemented!')
|
1153
|
+
raise NotImplementedError('Method not implemented!')
|
1154
|
+
|
1155
|
+
def ImageGetOrCreate(self, request, context):
|
1156
|
+
"""Missing associated documentation comment in .proto file."""
|
1157
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1158
|
+
context.set_details('Method not implemented!')
|
1159
|
+
raise NotImplementedError('Method not implemented!')
|
1160
|
+
|
1161
|
+
def ImageJoinStreaming(self, request, context):
|
1162
|
+
"""Missing associated documentation comment in .proto file."""
|
1163
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1164
|
+
context.set_details('Method not implemented!')
|
1165
|
+
raise NotImplementedError('Method not implemented!')
|
1166
|
+
|
1167
|
+
def MountGetOrCreate(self, request, context):
|
1168
|
+
"""Mounts
|
1169
|
+
"""
|
1170
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1171
|
+
context.set_details('Method not implemented!')
|
1172
|
+
raise NotImplementedError('Method not implemented!')
|
1173
|
+
|
1174
|
+
def MountPutFile(self, request, context):
|
1175
|
+
"""Missing associated documentation comment in .proto file."""
|
1176
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1177
|
+
context.set_details('Method not implemented!')
|
1178
|
+
raise NotImplementedError('Method not implemented!')
|
1179
|
+
|
1180
|
+
def ProxyCreate(self, request, context):
|
1181
|
+
"""Proxies
|
1182
|
+
"""
|
1183
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1184
|
+
context.set_details('Method not implemented!')
|
1185
|
+
raise NotImplementedError('Method not implemented!')
|
1186
|
+
|
1187
|
+
def ProxyDelete(self, request, context):
|
1188
|
+
"""Missing associated documentation comment in .proto file."""
|
1189
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1190
|
+
context.set_details('Method not implemented!')
|
1191
|
+
raise NotImplementedError('Method not implemented!')
|
1192
|
+
|
1193
|
+
def ProxyGet(self, request, context):
|
1194
|
+
"""Missing associated documentation comment in .proto file."""
|
1195
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1196
|
+
context.set_details('Method not implemented!')
|
1197
|
+
raise NotImplementedError('Method not implemented!')
|
1198
|
+
|
1199
|
+
def ProxyGetOrCreate(self, request, context):
|
1200
|
+
"""Missing associated documentation comment in .proto file."""
|
1201
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1202
|
+
context.set_details('Method not implemented!')
|
1203
|
+
raise NotImplementedError('Method not implemented!')
|
1204
|
+
|
1205
|
+
def ProxyList(self, request, context):
|
1206
|
+
"""Missing associated documentation comment in .proto file."""
|
1207
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1208
|
+
context.set_details('Method not implemented!')
|
1209
|
+
raise NotImplementedError('Method not implemented!')
|
1210
|
+
|
1211
|
+
def QueueClear(self, request, context):
|
1212
|
+
"""Queues
|
1213
|
+
"""
|
1214
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1215
|
+
context.set_details('Method not implemented!')
|
1216
|
+
raise NotImplementedError('Method not implemented!')
|
1217
|
+
|
1218
|
+
def QueueDelete(self, request, context):
|
1219
|
+
"""Missing associated documentation comment in .proto file."""
|
1220
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1221
|
+
context.set_details('Method not implemented!')
|
1222
|
+
raise NotImplementedError('Method not implemented!')
|
1223
|
+
|
1224
|
+
def QueueGet(self, request, context):
|
1225
|
+
"""Missing associated documentation comment in .proto file."""
|
1226
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1227
|
+
context.set_details('Method not implemented!')
|
1228
|
+
raise NotImplementedError('Method not implemented!')
|
1229
|
+
|
1230
|
+
def QueueGetOrCreate(self, request, context):
|
1231
|
+
"""Missing associated documentation comment in .proto file."""
|
1232
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1233
|
+
context.set_details('Method not implemented!')
|
1234
|
+
raise NotImplementedError('Method not implemented!')
|
1235
|
+
|
1236
|
+
def QueueHeartbeat(self, request, context):
|
1237
|
+
"""Missing associated documentation comment in .proto file."""
|
1238
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1239
|
+
context.set_details('Method not implemented!')
|
1240
|
+
raise NotImplementedError('Method not implemented!')
|
1241
|
+
|
1242
|
+
def QueueLen(self, request, context):
|
1243
|
+
"""Missing associated documentation comment in .proto file."""
|
1244
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1245
|
+
context.set_details('Method not implemented!')
|
1246
|
+
raise NotImplementedError('Method not implemented!')
|
1247
|
+
|
1248
|
+
def QueueList(self, request, context):
|
1249
|
+
"""Missing associated documentation comment in .proto file."""
|
1250
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1251
|
+
context.set_details('Method not implemented!')
|
1252
|
+
raise NotImplementedError('Method not implemented!')
|
1253
|
+
|
1254
|
+
def QueueNextItems(self, request, context):
|
1255
|
+
"""Missing associated documentation comment in .proto file."""
|
1256
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1257
|
+
context.set_details('Method not implemented!')
|
1258
|
+
raise NotImplementedError('Method not implemented!')
|
1259
|
+
|
1260
|
+
def QueuePut(self, request, context):
|
1261
|
+
"""Missing associated documentation comment in .proto file."""
|
1262
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1263
|
+
context.set_details('Method not implemented!')
|
1264
|
+
raise NotImplementedError('Method not implemented!')
|
1265
|
+
|
1266
|
+
def SandboxCreate(self, request, context):
|
1267
|
+
"""Sandboxes
|
1028
1268
|
"""
|
1029
1269
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1030
1270
|
context.set_details('Method not implemented!')
|
@@ -1036,7 +1276,14 @@ class ModalClientServicer(object):
|
|
1036
1276
|
context.set_details('Method not implemented!')
|
1037
1277
|
raise NotImplementedError('Method not implemented!')
|
1038
1278
|
|
1039
|
-
def
|
1279
|
+
def SandboxGetTaskId(self, request, context):
|
1280
|
+
"""needed for modal container exec
|
1281
|
+
"""
|
1282
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1283
|
+
context.set_details('Method not implemented!')
|
1284
|
+
raise NotImplementedError('Method not implemented!')
|
1285
|
+
|
1286
|
+
def SandboxGetTunnels(self, request, context):
|
1040
1287
|
"""Missing associated documentation comment in .proto file."""
|
1041
1288
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1042
1289
|
context.set_details('Method not implemented!')
|
@@ -1048,7 +1295,7 @@ class ModalClientServicer(object):
|
|
1048
1295
|
context.set_details('Method not implemented!')
|
1049
1296
|
raise NotImplementedError('Method not implemented!')
|
1050
1297
|
|
1051
|
-
def
|
1298
|
+
def SandboxSnapshotFs(self, request, context):
|
1052
1299
|
"""Missing associated documentation comment in .proto file."""
|
1053
1300
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1054
1301
|
context.set_details('Method not implemented!')
|
@@ -1060,9 +1307,26 @@ class ModalClientServicer(object):
|
|
1060
1307
|
context.set_details('Method not implemented!')
|
1061
1308
|
raise NotImplementedError('Method not implemented!')
|
1062
1309
|
|
1063
|
-
def
|
1310
|
+
def SandboxTagsSet(self, request, context):
|
1311
|
+
"""Missing associated documentation comment in .proto file."""
|
1312
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1313
|
+
context.set_details('Method not implemented!')
|
1314
|
+
raise NotImplementedError('Method not implemented!')
|
1315
|
+
|
1316
|
+
def SandboxTerminate(self, request, context):
|
1317
|
+
"""Missing associated documentation comment in .proto file."""
|
1318
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1319
|
+
context.set_details('Method not implemented!')
|
1320
|
+
raise NotImplementedError('Method not implemented!')
|
1321
|
+
|
1322
|
+
def SandboxWait(self, request, context):
|
1323
|
+
"""Missing associated documentation comment in .proto file."""
|
1324
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1325
|
+
context.set_details('Method not implemented!')
|
1326
|
+
raise NotImplementedError('Method not implemented!')
|
1327
|
+
|
1328
|
+
def SecretDelete(self, request, context):
|
1064
1329
|
"""Secrets
|
1065
|
-
Not used by client anymore
|
1066
1330
|
"""
|
1067
1331
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1068
1332
|
context.set_details('Method not implemented!')
|
@@ -1080,14 +1344,20 @@ class ModalClientServicer(object):
|
|
1080
1344
|
context.set_details('Method not implemented!')
|
1081
1345
|
raise NotImplementedError('Method not implemented!')
|
1082
1346
|
|
1083
|
-
def
|
1347
|
+
def SharedVolumeDelete(self, request, context):
|
1084
1348
|
"""SharedVolumes
|
1085
1349
|
"""
|
1086
1350
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1087
1351
|
context.set_details('Method not implemented!')
|
1088
1352
|
raise NotImplementedError('Method not implemented!')
|
1089
1353
|
|
1090
|
-
def
|
1354
|
+
def SharedVolumeGetFile(self, request, context):
|
1355
|
+
"""Missing associated documentation comment in .proto file."""
|
1356
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1357
|
+
context.set_details('Method not implemented!')
|
1358
|
+
raise NotImplementedError('Method not implemented!')
|
1359
|
+
|
1360
|
+
def SharedVolumeGetOrCreate(self, request, context):
|
1091
1361
|
"""Missing associated documentation comment in .proto file."""
|
1092
1362
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1093
1363
|
context.set_details('Method not implemented!')
|
@@ -1123,21 +1393,21 @@ class ModalClientServicer(object):
|
|
1123
1393
|
context.set_details('Method not implemented!')
|
1124
1394
|
raise NotImplementedError('Method not implemented!')
|
1125
1395
|
|
1126
|
-
def
|
1396
|
+
def SharedVolumeRemoveFile(self, request, context):
|
1127
1397
|
"""Missing associated documentation comment in .proto file."""
|
1128
1398
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1129
1399
|
context.set_details('Method not implemented!')
|
1130
1400
|
raise NotImplementedError('Method not implemented!')
|
1131
1401
|
|
1132
|
-
def
|
1133
|
-
"""
|
1402
|
+
def TaskClusterHello(self, request, context):
|
1403
|
+
"""Tasks
|
1404
|
+
"""
|
1134
1405
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1135
1406
|
context.set_details('Method not implemented!')
|
1136
1407
|
raise NotImplementedError('Method not implemented!')
|
1137
1408
|
|
1138
|
-
def
|
1139
|
-
"""
|
1140
|
-
"""
|
1409
|
+
def TaskCurrentInputs(self, request, context):
|
1410
|
+
"""Missing associated documentation comment in .proto file."""
|
1141
1411
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1142
1412
|
context.set_details('Method not implemented!')
|
1143
1413
|
raise NotImplementedError('Method not implemented!')
|
@@ -1148,9 +1418,8 @@ class ModalClientServicer(object):
|
|
1148
1418
|
context.set_details('Method not implemented!')
|
1149
1419
|
raise NotImplementedError('Method not implemented!')
|
1150
1420
|
|
1151
|
-
def
|
1152
|
-
"""
|
1153
|
-
"""
|
1421
|
+
def TaskResult(self, request, context):
|
1422
|
+
"""Missing associated documentation comment in .proto file."""
|
1154
1423
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1155
1424
|
context.set_details('Method not implemented!')
|
1156
1425
|
raise NotImplementedError('Method not implemented!')
|
@@ -1181,38 +1450,38 @@ class ModalClientServicer(object):
|
|
1181
1450
|
context.set_details('Method not implemented!')
|
1182
1451
|
raise NotImplementedError('Method not implemented!')
|
1183
1452
|
|
1184
|
-
def
|
1453
|
+
def VolumeCommit(self, request, context):
|
1185
1454
|
"""Volumes
|
1186
1455
|
"""
|
1187
1456
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1188
1457
|
context.set_details('Method not implemented!')
|
1189
1458
|
raise NotImplementedError('Method not implemented!')
|
1190
1459
|
|
1191
|
-
def
|
1460
|
+
def VolumeCopyFiles(self, request, context):
|
1192
1461
|
"""Missing associated documentation comment in .proto file."""
|
1193
1462
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1194
1463
|
context.set_details('Method not implemented!')
|
1195
1464
|
raise NotImplementedError('Method not implemented!')
|
1196
1465
|
|
1197
|
-
def
|
1466
|
+
def VolumeDelete(self, request, context):
|
1198
1467
|
"""Missing associated documentation comment in .proto file."""
|
1199
1468
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1200
1469
|
context.set_details('Method not implemented!')
|
1201
1470
|
raise NotImplementedError('Method not implemented!')
|
1202
1471
|
|
1203
|
-
def
|
1472
|
+
def VolumeGetFile(self, request, context):
|
1204
1473
|
"""Missing associated documentation comment in .proto file."""
|
1205
1474
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1206
1475
|
context.set_details('Method not implemented!')
|
1207
1476
|
raise NotImplementedError('Method not implemented!')
|
1208
1477
|
|
1209
|
-
def
|
1478
|
+
def VolumeGetOrCreate(self, request, context):
|
1210
1479
|
"""Missing associated documentation comment in .proto file."""
|
1211
1480
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1212
1481
|
context.set_details('Method not implemented!')
|
1213
1482
|
raise NotImplementedError('Method not implemented!')
|
1214
1483
|
|
1215
|
-
def
|
1484
|
+
def VolumeHeartbeat(self, request, context):
|
1216
1485
|
"""Missing associated documentation comment in .proto file."""
|
1217
1486
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1218
1487
|
context.set_details('Method not implemented!')
|
@@ -1248,7 +1517,7 @@ class ModalClientServicer(object):
|
|
1248
1517
|
context.set_details('Method not implemented!')
|
1249
1518
|
raise NotImplementedError('Method not implemented!')
|
1250
1519
|
|
1251
|
-
def
|
1520
|
+
def VolumeRename(self, request, context):
|
1252
1521
|
"""Missing associated documentation comment in .proto file."""
|
1253
1522
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
1254
1523
|
context.set_details('Method not implemented!')
|
@@ -1264,66 +1533,86 @@ class ModalClientServicer(object):
|
|
1264
1533
|
|
1265
1534
|
def add_ModalClientServicer_to_server(servicer, server):
|
1266
1535
|
rpc_method_handlers = {
|
1536
|
+
'AppClientDisconnect': grpc.unary_unary_rpc_method_handler(
|
1537
|
+
servicer.AppClientDisconnect,
|
1538
|
+
request_deserializer=modal__proto_dot_api__pb2.AppClientDisconnectRequest.FromString,
|
1539
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1540
|
+
),
|
1267
1541
|
'AppCreate': grpc.unary_unary_rpc_method_handler(
|
1268
1542
|
servicer.AppCreate,
|
1269
1543
|
request_deserializer=modal__proto_dot_api__pb2.AppCreateRequest.FromString,
|
1270
1544
|
response_serializer=modal__proto_dot_api__pb2.AppCreateResponse.SerializeToString,
|
1271
1545
|
),
|
1272
|
-
'
|
1273
|
-
servicer.
|
1274
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1275
|
-
response_serializer=
|
1546
|
+
'AppDeploy': grpc.unary_unary_rpc_method_handler(
|
1547
|
+
servicer.AppDeploy,
|
1548
|
+
request_deserializer=modal__proto_dot_api__pb2.AppDeployRequest.FromString,
|
1549
|
+
response_serializer=modal__proto_dot_api__pb2.AppDeployResponse.SerializeToString,
|
1550
|
+
),
|
1551
|
+
'AppDeploymentHistory': grpc.unary_unary_rpc_method_handler(
|
1552
|
+
servicer.AppDeploymentHistory,
|
1553
|
+
request_deserializer=modal__proto_dot_api__pb2.AppDeploymentHistoryRequest.FromString,
|
1554
|
+
response_serializer=modal__proto_dot_api__pb2.AppDeploymentHistoryResponse.SerializeToString,
|
1555
|
+
),
|
1556
|
+
'AppGetByDeploymentName': grpc.unary_unary_rpc_method_handler(
|
1557
|
+
servicer.AppGetByDeploymentName,
|
1558
|
+
request_deserializer=modal__proto_dot_api__pb2.AppGetByDeploymentNameRequest.FromString,
|
1559
|
+
response_serializer=modal__proto_dot_api__pb2.AppGetByDeploymentNameResponse.SerializeToString,
|
1560
|
+
),
|
1561
|
+
'AppGetLayout': grpc.unary_unary_rpc_method_handler(
|
1562
|
+
servicer.AppGetLayout,
|
1563
|
+
request_deserializer=modal__proto_dot_api__pb2.AppGetLayoutRequest.FromString,
|
1564
|
+
response_serializer=modal__proto_dot_api__pb2.AppGetLayoutResponse.SerializeToString,
|
1276
1565
|
),
|
1277
1566
|
'AppGetLogs': grpc.unary_stream_rpc_method_handler(
|
1278
1567
|
servicer.AppGetLogs,
|
1279
1568
|
request_deserializer=modal__proto_dot_api__pb2.AppGetLogsRequest.FromString,
|
1280
1569
|
response_serializer=modal__proto_dot_api__pb2.TaskLogsBatch.SerializeToString,
|
1281
1570
|
),
|
1282
|
-
'AppSetObjects': grpc.unary_unary_rpc_method_handler(
|
1283
|
-
servicer.AppSetObjects,
|
1284
|
-
request_deserializer=modal__proto_dot_api__pb2.AppSetObjectsRequest.FromString,
|
1285
|
-
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1286
|
-
),
|
1287
1571
|
'AppGetObjects': grpc.unary_unary_rpc_method_handler(
|
1288
1572
|
servicer.AppGetObjects,
|
1289
1573
|
request_deserializer=modal__proto_dot_api__pb2.AppGetObjectsRequest.FromString,
|
1290
1574
|
response_serializer=modal__proto_dot_api__pb2.AppGetObjectsResponse.SerializeToString,
|
1291
1575
|
),
|
1576
|
+
'AppGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1577
|
+
servicer.AppGetOrCreate,
|
1578
|
+
request_deserializer=modal__proto_dot_api__pb2.AppGetOrCreateRequest.FromString,
|
1579
|
+
response_serializer=modal__proto_dot_api__pb2.AppGetOrCreateResponse.SerializeToString,
|
1580
|
+
),
|
1581
|
+
'AppHeartbeat': grpc.unary_unary_rpc_method_handler(
|
1582
|
+
servicer.AppHeartbeat,
|
1583
|
+
request_deserializer=modal__proto_dot_api__pb2.AppHeartbeatRequest.FromString,
|
1584
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1585
|
+
),
|
1292
1586
|
'AppList': grpc.unary_unary_rpc_method_handler(
|
1293
1587
|
servicer.AppList,
|
1294
1588
|
request_deserializer=modal__proto_dot_api__pb2.AppListRequest.FromString,
|
1295
1589
|
response_serializer=modal__proto_dot_api__pb2.AppListResponse.SerializeToString,
|
1296
1590
|
),
|
1297
|
-
'
|
1298
|
-
servicer.
|
1299
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1300
|
-
response_serializer=modal__proto_dot_api__pb2.
|
1591
|
+
'AppLookup': grpc.unary_unary_rpc_method_handler(
|
1592
|
+
servicer.AppLookup,
|
1593
|
+
request_deserializer=modal__proto_dot_api__pb2.AppLookupRequest.FromString,
|
1594
|
+
response_serializer=modal__proto_dot_api__pb2.AppLookupResponse.SerializeToString,
|
1301
1595
|
),
|
1302
|
-
'
|
1303
|
-
servicer.
|
1304
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1305
|
-
response_serializer=modal__proto_dot_api__pb2.
|
1596
|
+
'AppPublish': grpc.unary_unary_rpc_method_handler(
|
1597
|
+
servicer.AppPublish,
|
1598
|
+
request_deserializer=modal__proto_dot_api__pb2.AppPublishRequest.FromString,
|
1599
|
+
response_serializer=modal__proto_dot_api__pb2.AppPublishResponse.SerializeToString,
|
1306
1600
|
),
|
1307
|
-
'
|
1308
|
-
servicer.
|
1309
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1310
|
-
response_serializer=
|
1601
|
+
'AppRollback': grpc.unary_unary_rpc_method_handler(
|
1602
|
+
servicer.AppRollback,
|
1603
|
+
request_deserializer=modal__proto_dot_api__pb2.AppRollbackRequest.FromString,
|
1604
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1311
1605
|
),
|
1312
|
-
'
|
1313
|
-
servicer.
|
1314
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1315
|
-
response_serializer=
|
1606
|
+
'AppSetObjects': grpc.unary_unary_rpc_method_handler(
|
1607
|
+
servicer.AppSetObjects,
|
1608
|
+
request_deserializer=modal__proto_dot_api__pb2.AppSetObjectsRequest.FromString,
|
1609
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1316
1610
|
),
|
1317
1611
|
'AppStop': grpc.unary_unary_rpc_method_handler(
|
1318
1612
|
servicer.AppStop,
|
1319
1613
|
request_deserializer=modal__proto_dot_api__pb2.AppStopRequest.FromString,
|
1320
1614
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1321
1615
|
),
|
1322
|
-
'AppHeartbeat': grpc.unary_unary_rpc_method_handler(
|
1323
|
-
servicer.AppHeartbeat,
|
1324
|
-
request_deserializer=modal__proto_dot_api__pb2.AppHeartbeatRequest.FromString,
|
1325
|
-
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1326
|
-
),
|
1327
1616
|
'BlobCreate': grpc.unary_unary_rpc_method_handler(
|
1328
1617
|
servicer.BlobCreate,
|
1329
1618
|
request_deserializer=modal__proto_dot_api__pb2.BlobCreateRequest.FromString,
|
@@ -1344,26 +1633,16 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1344
1633
|
request_deserializer=modal__proto_dot_api__pb2.ClassGetRequest.FromString,
|
1345
1634
|
response_serializer=modal__proto_dot_api__pb2.ClassGetResponse.SerializeToString,
|
1346
1635
|
),
|
1347
|
-
'ClientCreate': grpc.unary_unary_rpc_method_handler(
|
1348
|
-
servicer.ClientCreate,
|
1349
|
-
request_deserializer=modal__proto_dot_api__pb2.ClientCreateRequest.FromString,
|
1350
|
-
response_serializer=modal__proto_dot_api__pb2.ClientCreateResponse.SerializeToString,
|
1351
|
-
),
|
1352
1636
|
'ClientHello': grpc.unary_unary_rpc_method_handler(
|
1353
1637
|
servicer.ClientHello,
|
1354
1638
|
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
1355
1639
|
response_serializer=modal__proto_dot_api__pb2.ClientHelloResponse.SerializeToString,
|
1356
1640
|
),
|
1357
|
-
'
|
1358
|
-
servicer.
|
1359
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1641
|
+
'ContainerCheckpoint': grpc.unary_unary_rpc_method_handler(
|
1642
|
+
servicer.ContainerCheckpoint,
|
1643
|
+
request_deserializer=modal__proto_dot_api__pb2.ContainerCheckpointRequest.FromString,
|
1360
1644
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1361
1645
|
),
|
1362
|
-
'ContainerHeartbeat': grpc.unary_unary_rpc_method_handler(
|
1363
|
-
servicer.ContainerHeartbeat,
|
1364
|
-
request_deserializer=modal__proto_dot_api__pb2.ContainerHeartbeatRequest.FromString,
|
1365
|
-
response_serializer=modal__proto_dot_api__pb2.ContainerHeartbeatResponse.SerializeToString,
|
1366
|
-
),
|
1367
1646
|
'ContainerExec': grpc.unary_unary_rpc_method_handler(
|
1368
1647
|
servicer.ContainerExec,
|
1369
1648
|
request_deserializer=modal__proto_dot_api__pb2.ContainerExecRequest.FromString,
|
@@ -1379,56 +1658,101 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1379
1658
|
request_deserializer=modal__proto_dot_api__pb2.ContainerExecPutInputRequest.FromString,
|
1380
1659
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1381
1660
|
),
|
1382
|
-
'
|
1383
|
-
servicer.
|
1384
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1385
|
-
response_serializer=
|
1386
|
-
),
|
1387
|
-
'DictClear': grpc.unary_unary_rpc_method_handler(
|
1388
|
-
servicer.DictClear,
|
1389
|
-
request_deserializer=modal__proto_dot_api__pb2.DictClearRequest.FromString,
|
1390
|
-
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1661
|
+
'ContainerExecWait': grpc.unary_unary_rpc_method_handler(
|
1662
|
+
servicer.ContainerExecWait,
|
1663
|
+
request_deserializer=modal__proto_dot_api__pb2.ContainerExecWaitRequest.FromString,
|
1664
|
+
response_serializer=modal__proto_dot_api__pb2.ContainerExecWaitResponse.SerializeToString,
|
1391
1665
|
),
|
1392
|
-
'
|
1393
|
-
servicer.
|
1394
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1395
|
-
response_serializer=modal__proto_dot_api__pb2.
|
1666
|
+
'ContainerFilesystemExec': grpc.unary_unary_rpc_method_handler(
|
1667
|
+
servicer.ContainerFilesystemExec,
|
1668
|
+
request_deserializer=modal__proto_dot_api__pb2.ContainerFilesystemExecRequest.FromString,
|
1669
|
+
response_serializer=modal__proto_dot_api__pb2.ContainerFilesystemExecResponse.SerializeToString,
|
1396
1670
|
),
|
1397
|
-
'
|
1398
|
-
servicer.
|
1399
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1400
|
-
response_serializer=modal__proto_dot_api__pb2.
|
1671
|
+
'ContainerFilesystemExecGetOutput': grpc.unary_stream_rpc_method_handler(
|
1672
|
+
servicer.ContainerFilesystemExecGetOutput,
|
1673
|
+
request_deserializer=modal__proto_dot_api__pb2.ContainerFilesystemExecGetOutputRequest.FromString,
|
1674
|
+
response_serializer=modal__proto_dot_api__pb2.FilesystemRuntimeOutputBatch.SerializeToString,
|
1401
1675
|
),
|
1402
|
-
'
|
1403
|
-
servicer.
|
1404
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1676
|
+
'ContainerHeartbeat': grpc.unary_unary_rpc_method_handler(
|
1677
|
+
servicer.ContainerHeartbeat,
|
1678
|
+
request_deserializer=modal__proto_dot_api__pb2.ContainerHeartbeatRequest.FromString,
|
1679
|
+
response_serializer=modal__proto_dot_api__pb2.ContainerHeartbeatResponse.SerializeToString,
|
1680
|
+
),
|
1681
|
+
'ContainerHello': grpc.unary_unary_rpc_method_handler(
|
1682
|
+
servicer.ContainerHello,
|
1683
|
+
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
1405
1684
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1406
1685
|
),
|
1407
|
-
'
|
1408
|
-
servicer.
|
1409
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1410
|
-
response_serializer=
|
1686
|
+
'ContainerLog': grpc.unary_unary_rpc_method_handler(
|
1687
|
+
servicer.ContainerLog,
|
1688
|
+
request_deserializer=modal__proto_dot_api__pb2.ContainerLogRequest.FromString,
|
1689
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1411
1690
|
),
|
1412
|
-
'
|
1413
|
-
servicer.
|
1414
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1415
|
-
response_serializer=modal__proto_dot_api__pb2.
|
1691
|
+
'ContainerStop': grpc.unary_unary_rpc_method_handler(
|
1692
|
+
servicer.ContainerStop,
|
1693
|
+
request_deserializer=modal__proto_dot_api__pb2.ContainerStopRequest.FromString,
|
1694
|
+
response_serializer=modal__proto_dot_api__pb2.ContainerStopResponse.SerializeToString,
|
1416
1695
|
),
|
1417
|
-
'
|
1418
|
-
servicer.
|
1419
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1420
|
-
response_serializer=
|
1696
|
+
'DictClear': grpc.unary_unary_rpc_method_handler(
|
1697
|
+
servicer.DictClear,
|
1698
|
+
request_deserializer=modal__proto_dot_api__pb2.DictClearRequest.FromString,
|
1699
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1421
1700
|
),
|
1422
1701
|
'DictContains': grpc.unary_unary_rpc_method_handler(
|
1423
1702
|
servicer.DictContains,
|
1424
1703
|
request_deserializer=modal__proto_dot_api__pb2.DictContainsRequest.FromString,
|
1425
1704
|
response_serializer=modal__proto_dot_api__pb2.DictContainsResponse.SerializeToString,
|
1426
1705
|
),
|
1706
|
+
'DictContents': grpc.unary_stream_rpc_method_handler(
|
1707
|
+
servicer.DictContents,
|
1708
|
+
request_deserializer=modal__proto_dot_api__pb2.DictContentsRequest.FromString,
|
1709
|
+
response_serializer=modal__proto_dot_api__pb2.DictEntry.SerializeToString,
|
1710
|
+
),
|
1711
|
+
'DictDelete': grpc.unary_unary_rpc_method_handler(
|
1712
|
+
servicer.DictDelete,
|
1713
|
+
request_deserializer=modal__proto_dot_api__pb2.DictDeleteRequest.FromString,
|
1714
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1715
|
+
),
|
1716
|
+
'DictGet': grpc.unary_unary_rpc_method_handler(
|
1717
|
+
servicer.DictGet,
|
1718
|
+
request_deserializer=modal__proto_dot_api__pb2.DictGetRequest.FromString,
|
1719
|
+
response_serializer=modal__proto_dot_api__pb2.DictGetResponse.SerializeToString,
|
1720
|
+
),
|
1721
|
+
'DictGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1722
|
+
servicer.DictGetOrCreate,
|
1723
|
+
request_deserializer=modal__proto_dot_api__pb2.DictGetOrCreateRequest.FromString,
|
1724
|
+
response_serializer=modal__proto_dot_api__pb2.DictGetOrCreateResponse.SerializeToString,
|
1725
|
+
),
|
1726
|
+
'DictHeartbeat': grpc.unary_unary_rpc_method_handler(
|
1727
|
+
servicer.DictHeartbeat,
|
1728
|
+
request_deserializer=modal__proto_dot_api__pb2.DictHeartbeatRequest.FromString,
|
1729
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1730
|
+
),
|
1427
1731
|
'DictLen': grpc.unary_unary_rpc_method_handler(
|
1428
1732
|
servicer.DictLen,
|
1429
1733
|
request_deserializer=modal__proto_dot_api__pb2.DictLenRequest.FromString,
|
1430
1734
|
response_serializer=modal__proto_dot_api__pb2.DictLenResponse.SerializeToString,
|
1431
1735
|
),
|
1736
|
+
'DictList': grpc.unary_unary_rpc_method_handler(
|
1737
|
+
servicer.DictList,
|
1738
|
+
request_deserializer=modal__proto_dot_api__pb2.DictListRequest.FromString,
|
1739
|
+
response_serializer=modal__proto_dot_api__pb2.DictListResponse.SerializeToString,
|
1740
|
+
),
|
1741
|
+
'DictPop': grpc.unary_unary_rpc_method_handler(
|
1742
|
+
servicer.DictPop,
|
1743
|
+
request_deserializer=modal__proto_dot_api__pb2.DictPopRequest.FromString,
|
1744
|
+
response_serializer=modal__proto_dot_api__pb2.DictPopResponse.SerializeToString,
|
1745
|
+
),
|
1746
|
+
'DictUpdate': grpc.unary_unary_rpc_method_handler(
|
1747
|
+
servicer.DictUpdate,
|
1748
|
+
request_deserializer=modal__proto_dot_api__pb2.DictUpdateRequest.FromString,
|
1749
|
+
response_serializer=modal__proto_dot_api__pb2.DictUpdateResponse.SerializeToString,
|
1750
|
+
),
|
1751
|
+
'DomainCertificateVerify': grpc.unary_unary_rpc_method_handler(
|
1752
|
+
servicer.DomainCertificateVerify,
|
1753
|
+
request_deserializer=modal__proto_dot_api__pb2.DomainCertificateVerifyRequest.FromString,
|
1754
|
+
response_serializer=modal__proto_dot_api__pb2.DomainCertificateVerifyResponse.SerializeToString,
|
1755
|
+
),
|
1432
1756
|
'DomainCreate': grpc.unary_unary_rpc_method_handler(
|
1433
1757
|
servicer.DomainCreate,
|
1434
1758
|
request_deserializer=modal__proto_dot_api__pb2.DomainCreateRequest.FromString,
|
@@ -1439,36 +1763,66 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1439
1763
|
request_deserializer=modal__proto_dot_api__pb2.DomainListRequest.FromString,
|
1440
1764
|
response_serializer=modal__proto_dot_api__pb2.DomainListResponse.SerializeToString,
|
1441
1765
|
),
|
1442
|
-
'DomainCertificateVerify': grpc.unary_unary_rpc_method_handler(
|
1443
|
-
servicer.DomainCertificateVerify,
|
1444
|
-
request_deserializer=modal__proto_dot_api__pb2.DomainCertificateVerifyRequest.FromString,
|
1445
|
-
response_serializer=modal__proto_dot_api__pb2.DomainCertificateVerifyResponse.SerializeToString,
|
1446
|
-
),
|
1447
1766
|
'EnvironmentCreate': grpc.unary_unary_rpc_method_handler(
|
1448
1767
|
servicer.EnvironmentCreate,
|
1449
1768
|
request_deserializer=modal__proto_dot_api__pb2.EnvironmentCreateRequest.FromString,
|
1450
1769
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1451
1770
|
),
|
1452
|
-
'EnvironmentList': grpc.unary_unary_rpc_method_handler(
|
1453
|
-
servicer.EnvironmentList,
|
1454
|
-
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
1455
|
-
response_serializer=modal__proto_dot_api__pb2.EnvironmentListResponse.SerializeToString,
|
1456
|
-
),
|
1457
1771
|
'EnvironmentDelete': grpc.unary_unary_rpc_method_handler(
|
1458
1772
|
servicer.EnvironmentDelete,
|
1459
1773
|
request_deserializer=modal__proto_dot_api__pb2.EnvironmentDeleteRequest.FromString,
|
1460
1774
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1461
1775
|
),
|
1776
|
+
'EnvironmentGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1777
|
+
servicer.EnvironmentGetOrCreate,
|
1778
|
+
request_deserializer=modal__proto_dot_api__pb2.EnvironmentGetOrCreateRequest.FromString,
|
1779
|
+
response_serializer=modal__proto_dot_api__pb2.EnvironmentGetOrCreateResponse.SerializeToString,
|
1780
|
+
),
|
1781
|
+
'EnvironmentList': grpc.unary_unary_rpc_method_handler(
|
1782
|
+
servicer.EnvironmentList,
|
1783
|
+
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
1784
|
+
response_serializer=modal__proto_dot_api__pb2.EnvironmentListResponse.SerializeToString,
|
1785
|
+
),
|
1462
1786
|
'EnvironmentUpdate': grpc.unary_unary_rpc_method_handler(
|
1463
1787
|
servicer.EnvironmentUpdate,
|
1464
1788
|
request_deserializer=modal__proto_dot_api__pb2.EnvironmentUpdateRequest.FromString,
|
1465
1789
|
response_serializer=modal__proto_dot_api__pb2.EnvironmentListItem.SerializeToString,
|
1466
1790
|
),
|
1791
|
+
'FunctionAsyncInvoke': grpc.unary_unary_rpc_method_handler(
|
1792
|
+
servicer.FunctionAsyncInvoke,
|
1793
|
+
request_deserializer=modal__proto_dot_api__pb2.FunctionAsyncInvokeRequest.FromString,
|
1794
|
+
response_serializer=modal__proto_dot_api__pb2.FunctionAsyncInvokeResponse.SerializeToString,
|
1795
|
+
),
|
1467
1796
|
'FunctionBindParams': grpc.unary_unary_rpc_method_handler(
|
1468
1797
|
servicer.FunctionBindParams,
|
1469
1798
|
request_deserializer=modal__proto_dot_api__pb2.FunctionBindParamsRequest.FromString,
|
1470
1799
|
response_serializer=modal__proto_dot_api__pb2.FunctionBindParamsResponse.SerializeToString,
|
1471
1800
|
),
|
1801
|
+
'FunctionCallCancel': grpc.unary_unary_rpc_method_handler(
|
1802
|
+
servicer.FunctionCallCancel,
|
1803
|
+
request_deserializer=modal__proto_dot_api__pb2.FunctionCallCancelRequest.FromString,
|
1804
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1805
|
+
),
|
1806
|
+
'FunctionCallGetDataIn': grpc.unary_stream_rpc_method_handler(
|
1807
|
+
servicer.FunctionCallGetDataIn,
|
1808
|
+
request_deserializer=modal__proto_dot_api__pb2.FunctionCallGetDataRequest.FromString,
|
1809
|
+
response_serializer=modal__proto_dot_api__pb2.DataChunk.SerializeToString,
|
1810
|
+
),
|
1811
|
+
'FunctionCallGetDataOut': grpc.unary_stream_rpc_method_handler(
|
1812
|
+
servicer.FunctionCallGetDataOut,
|
1813
|
+
request_deserializer=modal__proto_dot_api__pb2.FunctionCallGetDataRequest.FromString,
|
1814
|
+
response_serializer=modal__proto_dot_api__pb2.DataChunk.SerializeToString,
|
1815
|
+
),
|
1816
|
+
'FunctionCallList': grpc.unary_unary_rpc_method_handler(
|
1817
|
+
servicer.FunctionCallList,
|
1818
|
+
request_deserializer=modal__proto_dot_api__pb2.FunctionCallListRequest.FromString,
|
1819
|
+
response_serializer=modal__proto_dot_api__pb2.FunctionCallListResponse.SerializeToString,
|
1820
|
+
),
|
1821
|
+
'FunctionCallPutDataOut': grpc.unary_unary_rpc_method_handler(
|
1822
|
+
servicer.FunctionCallPutDataOut,
|
1823
|
+
request_deserializer=modal__proto_dot_api__pb2.FunctionCallPutDataRequest.FromString,
|
1824
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1825
|
+
),
|
1472
1826
|
'FunctionCreate': grpc.unary_unary_rpc_method_handler(
|
1473
1827
|
servicer.FunctionCreate,
|
1474
1828
|
request_deserializer=modal__proto_dot_api__pb2.FunctionCreateRequest.FromString,
|
@@ -1489,6 +1843,11 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1489
1843
|
request_deserializer=modal__proto_dot_api__pb2.FunctionGetCurrentStatsRequest.FromString,
|
1490
1844
|
response_serializer=modal__proto_dot_api__pb2.FunctionStats.SerializeToString,
|
1491
1845
|
),
|
1846
|
+
'FunctionGetDynamicConcurrency': grpc.unary_unary_rpc_method_handler(
|
1847
|
+
servicer.FunctionGetDynamicConcurrency,
|
1848
|
+
request_deserializer=modal__proto_dot_api__pb2.FunctionGetDynamicConcurrencyRequest.FromString,
|
1849
|
+
response_serializer=modal__proto_dot_api__pb2.FunctionGetDynamicConcurrencyResponse.SerializeToString,
|
1850
|
+
),
|
1492
1851
|
'FunctionGetInputs': grpc.unary_unary_rpc_method_handler(
|
1493
1852
|
servicer.FunctionGetInputs,
|
1494
1853
|
request_deserializer=modal__proto_dot_api__pb2.FunctionGetInputsRequest.FromString,
|
@@ -1524,41 +1883,26 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1524
1883
|
request_deserializer=modal__proto_dot_api__pb2.FunctionPutOutputsRequest.FromString,
|
1525
1884
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1526
1885
|
),
|
1527
|
-
'
|
1528
|
-
servicer.
|
1529
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1530
|
-
response_serializer=modal__proto_dot_api__pb2.
|
1531
|
-
),
|
1532
|
-
'FunctionCallCancel': grpc.unary_unary_rpc_method_handler(
|
1533
|
-
servicer.FunctionCallCancel,
|
1534
|
-
request_deserializer=modal__proto_dot_api__pb2.FunctionCallCancelRequest.FromString,
|
1535
|
-
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1536
|
-
),
|
1537
|
-
'FunctionCallList': grpc.unary_unary_rpc_method_handler(
|
1538
|
-
servicer.FunctionCallList,
|
1539
|
-
request_deserializer=modal__proto_dot_api__pb2.FunctionCallListRequest.FromString,
|
1540
|
-
response_serializer=modal__proto_dot_api__pb2.FunctionCallListResponse.SerializeToString,
|
1541
|
-
),
|
1542
|
-
'FunctionCallGetDataIn': grpc.unary_stream_rpc_method_handler(
|
1543
|
-
servicer.FunctionCallGetDataIn,
|
1544
|
-
request_deserializer=modal__proto_dot_api__pb2.FunctionCallGetDataRequest.FromString,
|
1545
|
-
response_serializer=modal__proto_dot_api__pb2.DataChunk.SerializeToString,
|
1546
|
-
),
|
1547
|
-
'FunctionCallGetDataOut': grpc.unary_stream_rpc_method_handler(
|
1548
|
-
servicer.FunctionCallGetDataOut,
|
1549
|
-
request_deserializer=modal__proto_dot_api__pb2.FunctionCallGetDataRequest.FromString,
|
1550
|
-
response_serializer=modal__proto_dot_api__pb2.DataChunk.SerializeToString,
|
1551
|
-
),
|
1552
|
-
'FunctionCallPutDataOut': grpc.unary_unary_rpc_method_handler(
|
1553
|
-
servicer.FunctionCallPutDataOut,
|
1554
|
-
request_deserializer=modal__proto_dot_api__pb2.FunctionCallPutDataRequest.FromString,
|
1555
|
-
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1886
|
+
'FunctionRetryInputs': grpc.unary_unary_rpc_method_handler(
|
1887
|
+
servicer.FunctionRetryInputs,
|
1888
|
+
request_deserializer=modal__proto_dot_api__pb2.FunctionRetryInputsRequest.FromString,
|
1889
|
+
response_serializer=modal__proto_dot_api__pb2.FunctionRetryInputsResponse.SerializeToString,
|
1556
1890
|
),
|
1557
1891
|
'FunctionStartPtyShell': grpc.unary_unary_rpc_method_handler(
|
1558
1892
|
servicer.FunctionStartPtyShell,
|
1559
1893
|
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
1560
1894
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1561
1895
|
),
|
1896
|
+
'FunctionUpdateSchedulingParams': grpc.unary_unary_rpc_method_handler(
|
1897
|
+
servicer.FunctionUpdateSchedulingParams,
|
1898
|
+
request_deserializer=modal__proto_dot_api__pb2.FunctionUpdateSchedulingParamsRequest.FromString,
|
1899
|
+
response_serializer=modal__proto_dot_api__pb2.FunctionUpdateSchedulingParamsResponse.SerializeToString,
|
1900
|
+
),
|
1901
|
+
'ImageFromId': grpc.unary_unary_rpc_method_handler(
|
1902
|
+
servicer.ImageFromId,
|
1903
|
+
request_deserializer=modal__proto_dot_api__pb2.ImageFromIdRequest.FromString,
|
1904
|
+
response_serializer=modal__proto_dot_api__pb2.ImageFromIdResponse.SerializeToString,
|
1905
|
+
),
|
1562
1906
|
'ImageGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1563
1907
|
servicer.ImageGetOrCreate,
|
1564
1908
|
request_deserializer=modal__proto_dot_api__pb2.ImageGetOrCreateRequest.FromString,
|
@@ -1569,95 +1913,140 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1569
1913
|
request_deserializer=modal__proto_dot_api__pb2.ImageJoinStreamingRequest.FromString,
|
1570
1914
|
response_serializer=modal__proto_dot_api__pb2.ImageJoinStreamingResponse.SerializeToString,
|
1571
1915
|
),
|
1916
|
+
'MountGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1917
|
+
servicer.MountGetOrCreate,
|
1918
|
+
request_deserializer=modal__proto_dot_api__pb2.MountGetOrCreateRequest.FromString,
|
1919
|
+
response_serializer=modal__proto_dot_api__pb2.MountGetOrCreateResponse.SerializeToString,
|
1920
|
+
),
|
1572
1921
|
'MountPutFile': grpc.unary_unary_rpc_method_handler(
|
1573
1922
|
servicer.MountPutFile,
|
1574
1923
|
request_deserializer=modal__proto_dot_api__pb2.MountPutFileRequest.FromString,
|
1575
1924
|
response_serializer=modal__proto_dot_api__pb2.MountPutFileResponse.SerializeToString,
|
1576
1925
|
),
|
1577
|
-
'
|
1578
|
-
servicer.
|
1579
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1580
|
-
response_serializer=modal__proto_dot_api__pb2.
|
1926
|
+
'ProxyCreate': grpc.unary_unary_rpc_method_handler(
|
1927
|
+
servicer.ProxyCreate,
|
1928
|
+
request_deserializer=modal__proto_dot_api__pb2.ProxyCreateRequest.FromString,
|
1929
|
+
response_serializer=modal__proto_dot_api__pb2.ProxyCreateResponse.SerializeToString,
|
1581
1930
|
),
|
1582
|
-
'
|
1583
|
-
servicer.
|
1584
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1585
|
-
response_serializer=
|
1931
|
+
'ProxyDelete': grpc.unary_unary_rpc_method_handler(
|
1932
|
+
servicer.ProxyDelete,
|
1933
|
+
request_deserializer=modal__proto_dot_api__pb2.ProxyDeleteRequest.FromString,
|
1934
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1935
|
+
),
|
1936
|
+
'ProxyGet': grpc.unary_unary_rpc_method_handler(
|
1937
|
+
servicer.ProxyGet,
|
1938
|
+
request_deserializer=modal__proto_dot_api__pb2.ProxyGetRequest.FromString,
|
1939
|
+
response_serializer=modal__proto_dot_api__pb2.ProxyGetResponse.SerializeToString,
|
1586
1940
|
),
|
1587
1941
|
'ProxyGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1588
1942
|
servicer.ProxyGetOrCreate,
|
1589
1943
|
request_deserializer=modal__proto_dot_api__pb2.ProxyGetOrCreateRequest.FromString,
|
1590
1944
|
response_serializer=modal__proto_dot_api__pb2.ProxyGetOrCreateResponse.SerializeToString,
|
1591
1945
|
),
|
1592
|
-
'
|
1593
|
-
servicer.
|
1594
|
-
request_deserializer=
|
1595
|
-
response_serializer=modal__proto_dot_api__pb2.
|
1946
|
+
'ProxyList': grpc.unary_unary_rpc_method_handler(
|
1947
|
+
servicer.ProxyList,
|
1948
|
+
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
1949
|
+
response_serializer=modal__proto_dot_api__pb2.ProxyListResponse.SerializeToString,
|
1596
1950
|
),
|
1597
|
-
'
|
1598
|
-
servicer.
|
1599
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1600
|
-
response_serializer=
|
1951
|
+
'QueueClear': grpc.unary_unary_rpc_method_handler(
|
1952
|
+
servicer.QueueClear,
|
1953
|
+
request_deserializer=modal__proto_dot_api__pb2.QueueClearRequest.FromString,
|
1954
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1955
|
+
),
|
1956
|
+
'QueueDelete': grpc.unary_unary_rpc_method_handler(
|
1957
|
+
servicer.QueueDelete,
|
1958
|
+
request_deserializer=modal__proto_dot_api__pb2.QueueDeleteRequest.FromString,
|
1959
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1601
1960
|
),
|
1602
1961
|
'QueueGet': grpc.unary_unary_rpc_method_handler(
|
1603
1962
|
servicer.QueueGet,
|
1604
1963
|
request_deserializer=modal__proto_dot_api__pb2.QueueGetRequest.FromString,
|
1605
1964
|
response_serializer=modal__proto_dot_api__pb2.QueueGetResponse.SerializeToString,
|
1606
1965
|
),
|
1966
|
+
'QueueGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1967
|
+
servicer.QueueGetOrCreate,
|
1968
|
+
request_deserializer=modal__proto_dot_api__pb2.QueueGetOrCreateRequest.FromString,
|
1969
|
+
response_serializer=modal__proto_dot_api__pb2.QueueGetOrCreateResponse.SerializeToString,
|
1970
|
+
),
|
1607
1971
|
'QueueHeartbeat': grpc.unary_unary_rpc_method_handler(
|
1608
1972
|
servicer.QueueHeartbeat,
|
1609
1973
|
request_deserializer=modal__proto_dot_api__pb2.QueueHeartbeatRequest.FromString,
|
1610
1974
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1611
1975
|
),
|
1612
|
-
'QueuePut': grpc.unary_unary_rpc_method_handler(
|
1613
|
-
servicer.QueuePut,
|
1614
|
-
request_deserializer=modal__proto_dot_api__pb2.QueuePutRequest.FromString,
|
1615
|
-
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1616
|
-
),
|
1617
1976
|
'QueueLen': grpc.unary_unary_rpc_method_handler(
|
1618
1977
|
servicer.QueueLen,
|
1619
1978
|
request_deserializer=modal__proto_dot_api__pb2.QueueLenRequest.FromString,
|
1620
1979
|
response_serializer=modal__proto_dot_api__pb2.QueueLenResponse.SerializeToString,
|
1621
1980
|
),
|
1981
|
+
'QueueList': grpc.unary_unary_rpc_method_handler(
|
1982
|
+
servicer.QueueList,
|
1983
|
+
request_deserializer=modal__proto_dot_api__pb2.QueueListRequest.FromString,
|
1984
|
+
response_serializer=modal__proto_dot_api__pb2.QueueListResponse.SerializeToString,
|
1985
|
+
),
|
1986
|
+
'QueueNextItems': grpc.unary_unary_rpc_method_handler(
|
1987
|
+
servicer.QueueNextItems,
|
1988
|
+
request_deserializer=modal__proto_dot_api__pb2.QueueNextItemsRequest.FromString,
|
1989
|
+
response_serializer=modal__proto_dot_api__pb2.QueueNextItemsResponse.SerializeToString,
|
1990
|
+
),
|
1991
|
+
'QueuePut': grpc.unary_unary_rpc_method_handler(
|
1992
|
+
servicer.QueuePut,
|
1993
|
+
request_deserializer=modal__proto_dot_api__pb2.QueuePutRequest.FromString,
|
1994
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1995
|
+
),
|
1622
1996
|
'SandboxCreate': grpc.unary_unary_rpc_method_handler(
|
1623
1997
|
servicer.SandboxCreate,
|
1624
1998
|
request_deserializer=modal__proto_dot_api__pb2.SandboxCreateRequest.FromString,
|
1625
1999
|
response_serializer=modal__proto_dot_api__pb2.SandboxCreateResponse.SerializeToString,
|
1626
2000
|
),
|
1627
|
-
'SandboxGetTaskId': grpc.unary_unary_rpc_method_handler(
|
1628
|
-
servicer.SandboxGetTaskId,
|
1629
|
-
request_deserializer=modal__proto_dot_api__pb2.SandboxGetTaskIdRequest.FromString,
|
1630
|
-
response_serializer=modal__proto_dot_api__pb2.SandboxGetTaskIdResponse.SerializeToString,
|
1631
|
-
),
|
1632
2001
|
'SandboxGetLogs': grpc.unary_stream_rpc_method_handler(
|
1633
2002
|
servicer.SandboxGetLogs,
|
1634
2003
|
request_deserializer=modal__proto_dot_api__pb2.SandboxGetLogsRequest.FromString,
|
1635
2004
|
response_serializer=modal__proto_dot_api__pb2.TaskLogsBatch.SerializeToString,
|
1636
2005
|
),
|
1637
|
-
'
|
1638
|
-
servicer.
|
1639
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1640
|
-
response_serializer=modal__proto_dot_api__pb2.
|
2006
|
+
'SandboxGetTaskId': grpc.unary_unary_rpc_method_handler(
|
2007
|
+
servicer.SandboxGetTaskId,
|
2008
|
+
request_deserializer=modal__proto_dot_api__pb2.SandboxGetTaskIdRequest.FromString,
|
2009
|
+
response_serializer=modal__proto_dot_api__pb2.SandboxGetTaskIdResponse.SerializeToString,
|
2010
|
+
),
|
2011
|
+
'SandboxGetTunnels': grpc.unary_unary_rpc_method_handler(
|
2012
|
+
servicer.SandboxGetTunnels,
|
2013
|
+
request_deserializer=modal__proto_dot_api__pb2.SandboxGetTunnelsRequest.FromString,
|
2014
|
+
response_serializer=modal__proto_dot_api__pb2.SandboxGetTunnelsResponse.SerializeToString,
|
1641
2015
|
),
|
1642
2016
|
'SandboxList': grpc.unary_unary_rpc_method_handler(
|
1643
2017
|
servicer.SandboxList,
|
1644
2018
|
request_deserializer=modal__proto_dot_api__pb2.SandboxListRequest.FromString,
|
1645
2019
|
response_serializer=modal__proto_dot_api__pb2.SandboxListResponse.SerializeToString,
|
1646
2020
|
),
|
1647
|
-
'
|
1648
|
-
servicer.
|
1649
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1650
|
-
response_serializer=modal__proto_dot_api__pb2.
|
2021
|
+
'SandboxSnapshotFs': grpc.unary_unary_rpc_method_handler(
|
2022
|
+
servicer.SandboxSnapshotFs,
|
2023
|
+
request_deserializer=modal__proto_dot_api__pb2.SandboxSnapshotFsRequest.FromString,
|
2024
|
+
response_serializer=modal__proto_dot_api__pb2.SandboxSnapshotFsResponse.SerializeToString,
|
1651
2025
|
),
|
1652
2026
|
'SandboxStdinWrite': grpc.unary_unary_rpc_method_handler(
|
1653
2027
|
servicer.SandboxStdinWrite,
|
1654
2028
|
request_deserializer=modal__proto_dot_api__pb2.SandboxStdinWriteRequest.FromString,
|
1655
2029
|
response_serializer=modal__proto_dot_api__pb2.SandboxStdinWriteResponse.SerializeToString,
|
1656
2030
|
),
|
1657
|
-
'
|
1658
|
-
servicer.
|
1659
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1660
|
-
response_serializer=
|
2031
|
+
'SandboxTagsSet': grpc.unary_unary_rpc_method_handler(
|
2032
|
+
servicer.SandboxTagsSet,
|
2033
|
+
request_deserializer=modal__proto_dot_api__pb2.SandboxTagsSetRequest.FromString,
|
2034
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
2035
|
+
),
|
2036
|
+
'SandboxTerminate': grpc.unary_unary_rpc_method_handler(
|
2037
|
+
servicer.SandboxTerminate,
|
2038
|
+
request_deserializer=modal__proto_dot_api__pb2.SandboxTerminateRequest.FromString,
|
2039
|
+
response_serializer=modal__proto_dot_api__pb2.SandboxTerminateResponse.SerializeToString,
|
2040
|
+
),
|
2041
|
+
'SandboxWait': grpc.unary_unary_rpc_method_handler(
|
2042
|
+
servicer.SandboxWait,
|
2043
|
+
request_deserializer=modal__proto_dot_api__pb2.SandboxWaitRequest.FromString,
|
2044
|
+
response_serializer=modal__proto_dot_api__pb2.SandboxWaitResponse.SerializeToString,
|
2045
|
+
),
|
2046
|
+
'SecretDelete': grpc.unary_unary_rpc_method_handler(
|
2047
|
+
servicer.SecretDelete,
|
2048
|
+
request_deserializer=modal__proto_dot_api__pb2.SecretDeleteRequest.FromString,
|
2049
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1661
2050
|
),
|
1662
2051
|
'SecretGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1663
2052
|
servicer.SecretGetOrCreate,
|
@@ -1669,16 +2058,21 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1669
2058
|
request_deserializer=modal__proto_dot_api__pb2.SecretListRequest.FromString,
|
1670
2059
|
response_serializer=modal__proto_dot_api__pb2.SecretListResponse.SerializeToString,
|
1671
2060
|
),
|
2061
|
+
'SharedVolumeDelete': grpc.unary_unary_rpc_method_handler(
|
2062
|
+
servicer.SharedVolumeDelete,
|
2063
|
+
request_deserializer=modal__proto_dot_api__pb2.SharedVolumeDeleteRequest.FromString,
|
2064
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
2065
|
+
),
|
2066
|
+
'SharedVolumeGetFile': grpc.unary_unary_rpc_method_handler(
|
2067
|
+
servicer.SharedVolumeGetFile,
|
2068
|
+
request_deserializer=modal__proto_dot_api__pb2.SharedVolumeGetFileRequest.FromString,
|
2069
|
+
response_serializer=modal__proto_dot_api__pb2.SharedVolumeGetFileResponse.SerializeToString,
|
2070
|
+
),
|
1672
2071
|
'SharedVolumeGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1673
2072
|
servicer.SharedVolumeGetOrCreate,
|
1674
2073
|
request_deserializer=modal__proto_dot_api__pb2.SharedVolumeGetOrCreateRequest.FromString,
|
1675
2074
|
response_serializer=modal__proto_dot_api__pb2.SharedVolumeGetOrCreateResponse.SerializeToString,
|
1676
2075
|
),
|
1677
|
-
'SharedVolumeCreate': grpc.unary_unary_rpc_method_handler(
|
1678
|
-
servicer.SharedVolumeCreate,
|
1679
|
-
request_deserializer=modal__proto_dot_api__pb2.SharedVolumeCreateRequest.FromString,
|
1680
|
-
response_serializer=modal__proto_dot_api__pb2.SharedVolumeCreateResponse.SerializeToString,
|
1681
|
-
),
|
1682
2076
|
'SharedVolumeHeartbeat': grpc.unary_unary_rpc_method_handler(
|
1683
2077
|
servicer.SharedVolumeHeartbeat,
|
1684
2078
|
request_deserializer=modal__proto_dot_api__pb2.SharedVolumeHeartbeatRequest.FromString,
|
@@ -1704,30 +2098,30 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1704
2098
|
request_deserializer=modal__proto_dot_api__pb2.SharedVolumePutFileRequest.FromString,
|
1705
2099
|
response_serializer=modal__proto_dot_api__pb2.SharedVolumePutFileResponse.SerializeToString,
|
1706
2100
|
),
|
1707
|
-
'SharedVolumeGetFile': grpc.unary_unary_rpc_method_handler(
|
1708
|
-
servicer.SharedVolumeGetFile,
|
1709
|
-
request_deserializer=modal__proto_dot_api__pb2.SharedVolumeGetFileRequest.FromString,
|
1710
|
-
response_serializer=modal__proto_dot_api__pb2.SharedVolumeGetFileResponse.SerializeToString,
|
1711
|
-
),
|
1712
2101
|
'SharedVolumeRemoveFile': grpc.unary_unary_rpc_method_handler(
|
1713
2102
|
servicer.SharedVolumeRemoveFile,
|
1714
2103
|
request_deserializer=modal__proto_dot_api__pb2.SharedVolumeRemoveFileRequest.FromString,
|
1715
2104
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1716
2105
|
),
|
1717
|
-
'
|
1718
|
-
servicer.
|
1719
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1720
|
-
response_serializer=
|
2106
|
+
'TaskClusterHello': grpc.unary_unary_rpc_method_handler(
|
2107
|
+
servicer.TaskClusterHello,
|
2108
|
+
request_deserializer=modal__proto_dot_api__pb2.TaskClusterHelloRequest.FromString,
|
2109
|
+
response_serializer=modal__proto_dot_api__pb2.TaskClusterHelloResponse.SerializeToString,
|
2110
|
+
),
|
2111
|
+
'TaskCurrentInputs': grpc.unary_unary_rpc_method_handler(
|
2112
|
+
servicer.TaskCurrentInputs,
|
2113
|
+
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2114
|
+
response_serializer=modal__proto_dot_api__pb2.TaskCurrentInputsResponse.SerializeToString,
|
1721
2115
|
),
|
1722
2116
|
'TaskList': grpc.unary_unary_rpc_method_handler(
|
1723
2117
|
servicer.TaskList,
|
1724
2118
|
request_deserializer=modal__proto_dot_api__pb2.TaskListRequest.FromString,
|
1725
2119
|
response_serializer=modal__proto_dot_api__pb2.TaskListResponse.SerializeToString,
|
1726
2120
|
),
|
1727
|
-
'
|
1728
|
-
servicer.
|
1729
|
-
request_deserializer=
|
1730
|
-
response_serializer=
|
2121
|
+
'TaskResult': grpc.unary_unary_rpc_method_handler(
|
2122
|
+
servicer.TaskResult,
|
2123
|
+
request_deserializer=modal__proto_dot_api__pb2.TaskResultRequest.FromString,
|
2124
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1731
2125
|
),
|
1732
2126
|
'TokenFlowCreate': grpc.unary_unary_rpc_method_handler(
|
1733
2127
|
servicer.TokenFlowCreate,
|
@@ -1749,26 +2143,16 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1749
2143
|
request_deserializer=modal__proto_dot_api__pb2.TunnelStopRequest.FromString,
|
1750
2144
|
response_serializer=modal__proto_dot_api__pb2.TunnelStopResponse.SerializeToString,
|
1751
2145
|
),
|
1752
|
-
'VolumeGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
1753
|
-
servicer.VolumeGetOrCreate,
|
1754
|
-
request_deserializer=modal__proto_dot_api__pb2.VolumeGetOrCreateRequest.FromString,
|
1755
|
-
response_serializer=modal__proto_dot_api__pb2.VolumeGetOrCreateResponse.SerializeToString,
|
1756
|
-
),
|
1757
|
-
'VolumeCreate': grpc.unary_unary_rpc_method_handler(
|
1758
|
-
servicer.VolumeCreate,
|
1759
|
-
request_deserializer=modal__proto_dot_api__pb2.VolumeCreateRequest.FromString,
|
1760
|
-
response_serializer=modal__proto_dot_api__pb2.VolumeCreateResponse.SerializeToString,
|
1761
|
-
),
|
1762
|
-
'VolumeHeartbeat': grpc.unary_unary_rpc_method_handler(
|
1763
|
-
servicer.VolumeHeartbeat,
|
1764
|
-
request_deserializer=modal__proto_dot_api__pb2.VolumeHeartbeatRequest.FromString,
|
1765
|
-
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1766
|
-
),
|
1767
2146
|
'VolumeCommit': grpc.unary_unary_rpc_method_handler(
|
1768
2147
|
servicer.VolumeCommit,
|
1769
2148
|
request_deserializer=modal__proto_dot_api__pb2.VolumeCommitRequest.FromString,
|
1770
2149
|
response_serializer=modal__proto_dot_api__pb2.VolumeCommitResponse.SerializeToString,
|
1771
2150
|
),
|
2151
|
+
'VolumeCopyFiles': grpc.unary_unary_rpc_method_handler(
|
2152
|
+
servicer.VolumeCopyFiles,
|
2153
|
+
request_deserializer=modal__proto_dot_api__pb2.VolumeCopyFilesRequest.FromString,
|
2154
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
2155
|
+
),
|
1772
2156
|
'VolumeDelete': grpc.unary_unary_rpc_method_handler(
|
1773
2157
|
servicer.VolumeDelete,
|
1774
2158
|
request_deserializer=modal__proto_dot_api__pb2.VolumeDeleteRequest.FromString,
|
@@ -1779,12 +2163,22 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1779
2163
|
request_deserializer=modal__proto_dot_api__pb2.VolumeGetFileRequest.FromString,
|
1780
2164
|
response_serializer=modal__proto_dot_api__pb2.VolumeGetFileResponse.SerializeToString,
|
1781
2165
|
),
|
1782
|
-
'
|
1783
|
-
servicer.
|
1784
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
1785
|
-
response_serializer=modal__proto_dot_api__pb2.
|
1786
|
-
),
|
1787
|
-
'
|
2166
|
+
'VolumeGetOrCreate': grpc.unary_unary_rpc_method_handler(
|
2167
|
+
servicer.VolumeGetOrCreate,
|
2168
|
+
request_deserializer=modal__proto_dot_api__pb2.VolumeGetOrCreateRequest.FromString,
|
2169
|
+
response_serializer=modal__proto_dot_api__pb2.VolumeGetOrCreateResponse.SerializeToString,
|
2170
|
+
),
|
2171
|
+
'VolumeHeartbeat': grpc.unary_unary_rpc_method_handler(
|
2172
|
+
servicer.VolumeHeartbeat,
|
2173
|
+
request_deserializer=modal__proto_dot_api__pb2.VolumeHeartbeatRequest.FromString,
|
2174
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
2175
|
+
),
|
2176
|
+
'VolumeList': grpc.unary_unary_rpc_method_handler(
|
2177
|
+
servicer.VolumeList,
|
2178
|
+
request_deserializer=modal__proto_dot_api__pb2.VolumeListRequest.FromString,
|
2179
|
+
response_serializer=modal__proto_dot_api__pb2.VolumeListResponse.SerializeToString,
|
2180
|
+
),
|
2181
|
+
'VolumeListFiles': grpc.unary_stream_rpc_method_handler(
|
1788
2182
|
servicer.VolumeListFiles,
|
1789
2183
|
request_deserializer=modal__proto_dot_api__pb2.VolumeListFilesRequest.FromString,
|
1790
2184
|
response_serializer=modal__proto_dot_api__pb2.VolumeListFilesResponse.SerializeToString,
|
@@ -1804,9 +2198,9 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1804
2198
|
request_deserializer=modal__proto_dot_api__pb2.VolumeRemoveFileRequest.FromString,
|
1805
2199
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1806
2200
|
),
|
1807
|
-
'
|
1808
|
-
servicer.
|
1809
|
-
request_deserializer=modal__proto_dot_api__pb2.
|
2201
|
+
'VolumeRename': grpc.unary_unary_rpc_method_handler(
|
2202
|
+
servicer.VolumeRename,
|
2203
|
+
request_deserializer=modal__proto_dot_api__pb2.VolumeRenameRequest.FromString,
|
1810
2204
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
1811
2205
|
),
|
1812
2206
|
'WorkspaceNameLookup': grpc.unary_unary_rpc_method_handler(
|
@@ -1824,6 +2218,23 @@ def add_ModalClientServicer_to_server(servicer, server):
|
|
1824
2218
|
class ModalClient(object):
|
1825
2219
|
"""Missing associated documentation comment in .proto file."""
|
1826
2220
|
|
2221
|
+
@staticmethod
|
2222
|
+
def AppClientDisconnect(request,
|
2223
|
+
target,
|
2224
|
+
options=(),
|
2225
|
+
channel_credentials=None,
|
2226
|
+
call_credentials=None,
|
2227
|
+
insecure=False,
|
2228
|
+
compression=None,
|
2229
|
+
wait_for_ready=None,
|
2230
|
+
timeout=None,
|
2231
|
+
metadata=None):
|
2232
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppClientDisconnect',
|
2233
|
+
modal__proto_dot_api__pb2.AppClientDisconnectRequest.SerializeToString,
|
2234
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2235
|
+
options, channel_credentials,
|
2236
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2237
|
+
|
1827
2238
|
@staticmethod
|
1828
2239
|
def AppCreate(request,
|
1829
2240
|
target,
|
@@ -1842,7 +2253,7 @@ class ModalClient(object):
|
|
1842
2253
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1843
2254
|
|
1844
2255
|
@staticmethod
|
1845
|
-
def
|
2256
|
+
def AppDeploy(request,
|
1846
2257
|
target,
|
1847
2258
|
options=(),
|
1848
2259
|
channel_credentials=None,
|
@@ -1852,14 +2263,14 @@ class ModalClient(object):
|
|
1852
2263
|
wait_for_ready=None,
|
1853
2264
|
timeout=None,
|
1854
2265
|
metadata=None):
|
1855
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
1856
|
-
modal__proto_dot_api__pb2.
|
1857
|
-
|
2266
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppDeploy',
|
2267
|
+
modal__proto_dot_api__pb2.AppDeployRequest.SerializeToString,
|
2268
|
+
modal__proto_dot_api__pb2.AppDeployResponse.FromString,
|
1858
2269
|
options, channel_credentials,
|
1859
2270
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1860
2271
|
|
1861
2272
|
@staticmethod
|
1862
|
-
def
|
2273
|
+
def AppDeploymentHistory(request,
|
1863
2274
|
target,
|
1864
2275
|
options=(),
|
1865
2276
|
channel_credentials=None,
|
@@ -1869,14 +2280,14 @@ class ModalClient(object):
|
|
1869
2280
|
wait_for_ready=None,
|
1870
2281
|
timeout=None,
|
1871
2282
|
metadata=None):
|
1872
|
-
return grpc.experimental.
|
1873
|
-
modal__proto_dot_api__pb2.
|
1874
|
-
modal__proto_dot_api__pb2.
|
2283
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppDeploymentHistory',
|
2284
|
+
modal__proto_dot_api__pb2.AppDeploymentHistoryRequest.SerializeToString,
|
2285
|
+
modal__proto_dot_api__pb2.AppDeploymentHistoryResponse.FromString,
|
1875
2286
|
options, channel_credentials,
|
1876
2287
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1877
2288
|
|
1878
2289
|
@staticmethod
|
1879
|
-
def
|
2290
|
+
def AppGetByDeploymentName(request,
|
1880
2291
|
target,
|
1881
2292
|
options=(),
|
1882
2293
|
channel_credentials=None,
|
@@ -1886,9 +2297,43 @@ class ModalClient(object):
|
|
1886
2297
|
wait_for_ready=None,
|
1887
2298
|
timeout=None,
|
1888
2299
|
metadata=None):
|
1889
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
1890
|
-
modal__proto_dot_api__pb2.
|
1891
|
-
|
2300
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppGetByDeploymentName',
|
2301
|
+
modal__proto_dot_api__pb2.AppGetByDeploymentNameRequest.SerializeToString,
|
2302
|
+
modal__proto_dot_api__pb2.AppGetByDeploymentNameResponse.FromString,
|
2303
|
+
options, channel_credentials,
|
2304
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2305
|
+
|
2306
|
+
@staticmethod
|
2307
|
+
def AppGetLayout(request,
|
2308
|
+
target,
|
2309
|
+
options=(),
|
2310
|
+
channel_credentials=None,
|
2311
|
+
call_credentials=None,
|
2312
|
+
insecure=False,
|
2313
|
+
compression=None,
|
2314
|
+
wait_for_ready=None,
|
2315
|
+
timeout=None,
|
2316
|
+
metadata=None):
|
2317
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppGetLayout',
|
2318
|
+
modal__proto_dot_api__pb2.AppGetLayoutRequest.SerializeToString,
|
2319
|
+
modal__proto_dot_api__pb2.AppGetLayoutResponse.FromString,
|
2320
|
+
options, channel_credentials,
|
2321
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2322
|
+
|
2323
|
+
@staticmethod
|
2324
|
+
def AppGetLogs(request,
|
2325
|
+
target,
|
2326
|
+
options=(),
|
2327
|
+
channel_credentials=None,
|
2328
|
+
call_credentials=None,
|
2329
|
+
insecure=False,
|
2330
|
+
compression=None,
|
2331
|
+
wait_for_ready=None,
|
2332
|
+
timeout=None,
|
2333
|
+
metadata=None):
|
2334
|
+
return grpc.experimental.unary_stream(request, target, '/modal.client.ModalClient/AppGetLogs',
|
2335
|
+
modal__proto_dot_api__pb2.AppGetLogsRequest.SerializeToString,
|
2336
|
+
modal__proto_dot_api__pb2.TaskLogsBatch.FromString,
|
1892
2337
|
options, channel_credentials,
|
1893
2338
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1894
2339
|
|
@@ -1910,7 +2355,7 @@ class ModalClient(object):
|
|
1910
2355
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1911
2356
|
|
1912
2357
|
@staticmethod
|
1913
|
-
def
|
2358
|
+
def AppGetOrCreate(request,
|
1914
2359
|
target,
|
1915
2360
|
options=(),
|
1916
2361
|
channel_credentials=None,
|
@@ -1920,14 +2365,14 @@ class ModalClient(object):
|
|
1920
2365
|
wait_for_ready=None,
|
1921
2366
|
timeout=None,
|
1922
2367
|
metadata=None):
|
1923
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
1924
|
-
modal__proto_dot_api__pb2.
|
1925
|
-
modal__proto_dot_api__pb2.
|
2368
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppGetOrCreate',
|
2369
|
+
modal__proto_dot_api__pb2.AppGetOrCreateRequest.SerializeToString,
|
2370
|
+
modal__proto_dot_api__pb2.AppGetOrCreateResponse.FromString,
|
1926
2371
|
options, channel_credentials,
|
1927
2372
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1928
2373
|
|
1929
2374
|
@staticmethod
|
1930
|
-
def
|
2375
|
+
def AppHeartbeat(request,
|
1931
2376
|
target,
|
1932
2377
|
options=(),
|
1933
2378
|
channel_credentials=None,
|
@@ -1937,14 +2382,14 @@ class ModalClient(object):
|
|
1937
2382
|
wait_for_ready=None,
|
1938
2383
|
timeout=None,
|
1939
2384
|
metadata=None):
|
1940
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
1941
|
-
modal__proto_dot_api__pb2.
|
1942
|
-
|
2385
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppHeartbeat',
|
2386
|
+
modal__proto_dot_api__pb2.AppHeartbeatRequest.SerializeToString,
|
2387
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
1943
2388
|
options, channel_credentials,
|
1944
2389
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1945
2390
|
|
1946
2391
|
@staticmethod
|
1947
|
-
def
|
2392
|
+
def AppList(request,
|
1948
2393
|
target,
|
1949
2394
|
options=(),
|
1950
2395
|
channel_credentials=None,
|
@@ -1954,14 +2399,14 @@ class ModalClient(object):
|
|
1954
2399
|
wait_for_ready=None,
|
1955
2400
|
timeout=None,
|
1956
2401
|
metadata=None):
|
1957
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
1958
|
-
modal__proto_dot_api__pb2.
|
1959
|
-
modal__proto_dot_api__pb2.
|
2402
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppList',
|
2403
|
+
modal__proto_dot_api__pb2.AppListRequest.SerializeToString,
|
2404
|
+
modal__proto_dot_api__pb2.AppListResponse.FromString,
|
1960
2405
|
options, channel_credentials,
|
1961
2406
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1962
2407
|
|
1963
2408
|
@staticmethod
|
1964
|
-
def
|
2409
|
+
def AppLookup(request,
|
1965
2410
|
target,
|
1966
2411
|
options=(),
|
1967
2412
|
channel_credentials=None,
|
@@ -1971,14 +2416,14 @@ class ModalClient(object):
|
|
1971
2416
|
wait_for_ready=None,
|
1972
2417
|
timeout=None,
|
1973
2418
|
metadata=None):
|
1974
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
1975
|
-
modal__proto_dot_api__pb2.
|
1976
|
-
modal__proto_dot_api__pb2.
|
2419
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppLookup',
|
2420
|
+
modal__proto_dot_api__pb2.AppLookupRequest.SerializeToString,
|
2421
|
+
modal__proto_dot_api__pb2.AppLookupResponse.FromString,
|
1977
2422
|
options, channel_credentials,
|
1978
2423
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1979
2424
|
|
1980
2425
|
@staticmethod
|
1981
|
-
def
|
2426
|
+
def AppPublish(request,
|
1982
2427
|
target,
|
1983
2428
|
options=(),
|
1984
2429
|
channel_credentials=None,
|
@@ -1988,14 +2433,14 @@ class ModalClient(object):
|
|
1988
2433
|
wait_for_ready=None,
|
1989
2434
|
timeout=None,
|
1990
2435
|
metadata=None):
|
1991
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
1992
|
-
modal__proto_dot_api__pb2.
|
1993
|
-
modal__proto_dot_api__pb2.
|
2436
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppPublish',
|
2437
|
+
modal__proto_dot_api__pb2.AppPublishRequest.SerializeToString,
|
2438
|
+
modal__proto_dot_api__pb2.AppPublishResponse.FromString,
|
1994
2439
|
options, channel_credentials,
|
1995
2440
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1996
2441
|
|
1997
2442
|
@staticmethod
|
1998
|
-
def
|
2443
|
+
def AppRollback(request,
|
1999
2444
|
target,
|
2000
2445
|
options=(),
|
2001
2446
|
channel_credentials=None,
|
@@ -2005,14 +2450,14 @@ class ModalClient(object):
|
|
2005
2450
|
wait_for_ready=None,
|
2006
2451
|
timeout=None,
|
2007
2452
|
metadata=None):
|
2008
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2009
|
-
modal__proto_dot_api__pb2.
|
2453
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppRollback',
|
2454
|
+
modal__proto_dot_api__pb2.AppRollbackRequest.SerializeToString,
|
2010
2455
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2011
2456
|
options, channel_credentials,
|
2012
2457
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2013
2458
|
|
2014
2459
|
@staticmethod
|
2015
|
-
def
|
2460
|
+
def AppSetObjects(request,
|
2016
2461
|
target,
|
2017
2462
|
options=(),
|
2018
2463
|
channel_credentials=None,
|
@@ -2022,8 +2467,25 @@ class ModalClient(object):
|
|
2022
2467
|
wait_for_ready=None,
|
2023
2468
|
timeout=None,
|
2024
2469
|
metadata=None):
|
2025
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2026
|
-
modal__proto_dot_api__pb2.
|
2470
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppSetObjects',
|
2471
|
+
modal__proto_dot_api__pb2.AppSetObjectsRequest.SerializeToString,
|
2472
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2473
|
+
options, channel_credentials,
|
2474
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2475
|
+
|
2476
|
+
@staticmethod
|
2477
|
+
def AppStop(request,
|
2478
|
+
target,
|
2479
|
+
options=(),
|
2480
|
+
channel_credentials=None,
|
2481
|
+
call_credentials=None,
|
2482
|
+
insecure=False,
|
2483
|
+
compression=None,
|
2484
|
+
wait_for_ready=None,
|
2485
|
+
timeout=None,
|
2486
|
+
metadata=None):
|
2487
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/AppStop',
|
2488
|
+
modal__proto_dot_api__pb2.AppStopRequest.SerializeToString,
|
2027
2489
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2028
2490
|
options, channel_credentials,
|
2029
2491
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
@@ -2080,7 +2542,347 @@ class ModalClient(object):
|
|
2080
2542
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2081
2543
|
|
2082
2544
|
@staticmethod
|
2083
|
-
def ClassGet(request,
|
2545
|
+
def ClassGet(request,
|
2546
|
+
target,
|
2547
|
+
options=(),
|
2548
|
+
channel_credentials=None,
|
2549
|
+
call_credentials=None,
|
2550
|
+
insecure=False,
|
2551
|
+
compression=None,
|
2552
|
+
wait_for_ready=None,
|
2553
|
+
timeout=None,
|
2554
|
+
metadata=None):
|
2555
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ClassGet',
|
2556
|
+
modal__proto_dot_api__pb2.ClassGetRequest.SerializeToString,
|
2557
|
+
modal__proto_dot_api__pb2.ClassGetResponse.FromString,
|
2558
|
+
options, channel_credentials,
|
2559
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2560
|
+
|
2561
|
+
@staticmethod
|
2562
|
+
def ClientHello(request,
|
2563
|
+
target,
|
2564
|
+
options=(),
|
2565
|
+
channel_credentials=None,
|
2566
|
+
call_credentials=None,
|
2567
|
+
insecure=False,
|
2568
|
+
compression=None,
|
2569
|
+
wait_for_ready=None,
|
2570
|
+
timeout=None,
|
2571
|
+
metadata=None):
|
2572
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ClientHello',
|
2573
|
+
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
2574
|
+
modal__proto_dot_api__pb2.ClientHelloResponse.FromString,
|
2575
|
+
options, channel_credentials,
|
2576
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2577
|
+
|
2578
|
+
@staticmethod
|
2579
|
+
def ContainerCheckpoint(request,
|
2580
|
+
target,
|
2581
|
+
options=(),
|
2582
|
+
channel_credentials=None,
|
2583
|
+
call_credentials=None,
|
2584
|
+
insecure=False,
|
2585
|
+
compression=None,
|
2586
|
+
wait_for_ready=None,
|
2587
|
+
timeout=None,
|
2588
|
+
metadata=None):
|
2589
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ContainerCheckpoint',
|
2590
|
+
modal__proto_dot_api__pb2.ContainerCheckpointRequest.SerializeToString,
|
2591
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2592
|
+
options, channel_credentials,
|
2593
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2594
|
+
|
2595
|
+
@staticmethod
|
2596
|
+
def ContainerExec(request,
|
2597
|
+
target,
|
2598
|
+
options=(),
|
2599
|
+
channel_credentials=None,
|
2600
|
+
call_credentials=None,
|
2601
|
+
insecure=False,
|
2602
|
+
compression=None,
|
2603
|
+
wait_for_ready=None,
|
2604
|
+
timeout=None,
|
2605
|
+
metadata=None):
|
2606
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ContainerExec',
|
2607
|
+
modal__proto_dot_api__pb2.ContainerExecRequest.SerializeToString,
|
2608
|
+
modal__proto_dot_api__pb2.ContainerExecResponse.FromString,
|
2609
|
+
options, channel_credentials,
|
2610
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2611
|
+
|
2612
|
+
@staticmethod
|
2613
|
+
def ContainerExecGetOutput(request,
|
2614
|
+
target,
|
2615
|
+
options=(),
|
2616
|
+
channel_credentials=None,
|
2617
|
+
call_credentials=None,
|
2618
|
+
insecure=False,
|
2619
|
+
compression=None,
|
2620
|
+
wait_for_ready=None,
|
2621
|
+
timeout=None,
|
2622
|
+
metadata=None):
|
2623
|
+
return grpc.experimental.unary_stream(request, target, '/modal.client.ModalClient/ContainerExecGetOutput',
|
2624
|
+
modal__proto_dot_api__pb2.ContainerExecGetOutputRequest.SerializeToString,
|
2625
|
+
modal__proto_dot_api__pb2.RuntimeOutputBatch.FromString,
|
2626
|
+
options, channel_credentials,
|
2627
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2628
|
+
|
2629
|
+
@staticmethod
|
2630
|
+
def ContainerExecPutInput(request,
|
2631
|
+
target,
|
2632
|
+
options=(),
|
2633
|
+
channel_credentials=None,
|
2634
|
+
call_credentials=None,
|
2635
|
+
insecure=False,
|
2636
|
+
compression=None,
|
2637
|
+
wait_for_ready=None,
|
2638
|
+
timeout=None,
|
2639
|
+
metadata=None):
|
2640
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ContainerExecPutInput',
|
2641
|
+
modal__proto_dot_api__pb2.ContainerExecPutInputRequest.SerializeToString,
|
2642
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2643
|
+
options, channel_credentials,
|
2644
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2645
|
+
|
2646
|
+
@staticmethod
|
2647
|
+
def ContainerExecWait(request,
|
2648
|
+
target,
|
2649
|
+
options=(),
|
2650
|
+
channel_credentials=None,
|
2651
|
+
call_credentials=None,
|
2652
|
+
insecure=False,
|
2653
|
+
compression=None,
|
2654
|
+
wait_for_ready=None,
|
2655
|
+
timeout=None,
|
2656
|
+
metadata=None):
|
2657
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ContainerExecWait',
|
2658
|
+
modal__proto_dot_api__pb2.ContainerExecWaitRequest.SerializeToString,
|
2659
|
+
modal__proto_dot_api__pb2.ContainerExecWaitResponse.FromString,
|
2660
|
+
options, channel_credentials,
|
2661
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2662
|
+
|
2663
|
+
@staticmethod
|
2664
|
+
def ContainerFilesystemExec(request,
|
2665
|
+
target,
|
2666
|
+
options=(),
|
2667
|
+
channel_credentials=None,
|
2668
|
+
call_credentials=None,
|
2669
|
+
insecure=False,
|
2670
|
+
compression=None,
|
2671
|
+
wait_for_ready=None,
|
2672
|
+
timeout=None,
|
2673
|
+
metadata=None):
|
2674
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ContainerFilesystemExec',
|
2675
|
+
modal__proto_dot_api__pb2.ContainerFilesystemExecRequest.SerializeToString,
|
2676
|
+
modal__proto_dot_api__pb2.ContainerFilesystemExecResponse.FromString,
|
2677
|
+
options, channel_credentials,
|
2678
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2679
|
+
|
2680
|
+
@staticmethod
|
2681
|
+
def ContainerFilesystemExecGetOutput(request,
|
2682
|
+
target,
|
2683
|
+
options=(),
|
2684
|
+
channel_credentials=None,
|
2685
|
+
call_credentials=None,
|
2686
|
+
insecure=False,
|
2687
|
+
compression=None,
|
2688
|
+
wait_for_ready=None,
|
2689
|
+
timeout=None,
|
2690
|
+
metadata=None):
|
2691
|
+
return grpc.experimental.unary_stream(request, target, '/modal.client.ModalClient/ContainerFilesystemExecGetOutput',
|
2692
|
+
modal__proto_dot_api__pb2.ContainerFilesystemExecGetOutputRequest.SerializeToString,
|
2693
|
+
modal__proto_dot_api__pb2.FilesystemRuntimeOutputBatch.FromString,
|
2694
|
+
options, channel_credentials,
|
2695
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2696
|
+
|
2697
|
+
@staticmethod
|
2698
|
+
def ContainerHeartbeat(request,
|
2699
|
+
target,
|
2700
|
+
options=(),
|
2701
|
+
channel_credentials=None,
|
2702
|
+
call_credentials=None,
|
2703
|
+
insecure=False,
|
2704
|
+
compression=None,
|
2705
|
+
wait_for_ready=None,
|
2706
|
+
timeout=None,
|
2707
|
+
metadata=None):
|
2708
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ContainerHeartbeat',
|
2709
|
+
modal__proto_dot_api__pb2.ContainerHeartbeatRequest.SerializeToString,
|
2710
|
+
modal__proto_dot_api__pb2.ContainerHeartbeatResponse.FromString,
|
2711
|
+
options, channel_credentials,
|
2712
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2713
|
+
|
2714
|
+
@staticmethod
|
2715
|
+
def ContainerHello(request,
|
2716
|
+
target,
|
2717
|
+
options=(),
|
2718
|
+
channel_credentials=None,
|
2719
|
+
call_credentials=None,
|
2720
|
+
insecure=False,
|
2721
|
+
compression=None,
|
2722
|
+
wait_for_ready=None,
|
2723
|
+
timeout=None,
|
2724
|
+
metadata=None):
|
2725
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ContainerHello',
|
2726
|
+
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
2727
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2728
|
+
options, channel_credentials,
|
2729
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2730
|
+
|
2731
|
+
@staticmethod
|
2732
|
+
def ContainerLog(request,
|
2733
|
+
target,
|
2734
|
+
options=(),
|
2735
|
+
channel_credentials=None,
|
2736
|
+
call_credentials=None,
|
2737
|
+
insecure=False,
|
2738
|
+
compression=None,
|
2739
|
+
wait_for_ready=None,
|
2740
|
+
timeout=None,
|
2741
|
+
metadata=None):
|
2742
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ContainerLog',
|
2743
|
+
modal__proto_dot_api__pb2.ContainerLogRequest.SerializeToString,
|
2744
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2745
|
+
options, channel_credentials,
|
2746
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2747
|
+
|
2748
|
+
@staticmethod
|
2749
|
+
def ContainerStop(request,
|
2750
|
+
target,
|
2751
|
+
options=(),
|
2752
|
+
channel_credentials=None,
|
2753
|
+
call_credentials=None,
|
2754
|
+
insecure=False,
|
2755
|
+
compression=None,
|
2756
|
+
wait_for_ready=None,
|
2757
|
+
timeout=None,
|
2758
|
+
metadata=None):
|
2759
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ContainerStop',
|
2760
|
+
modal__proto_dot_api__pb2.ContainerStopRequest.SerializeToString,
|
2761
|
+
modal__proto_dot_api__pb2.ContainerStopResponse.FromString,
|
2762
|
+
options, channel_credentials,
|
2763
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2764
|
+
|
2765
|
+
@staticmethod
|
2766
|
+
def DictClear(request,
|
2767
|
+
target,
|
2768
|
+
options=(),
|
2769
|
+
channel_credentials=None,
|
2770
|
+
call_credentials=None,
|
2771
|
+
insecure=False,
|
2772
|
+
compression=None,
|
2773
|
+
wait_for_ready=None,
|
2774
|
+
timeout=None,
|
2775
|
+
metadata=None):
|
2776
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictClear',
|
2777
|
+
modal__proto_dot_api__pb2.DictClearRequest.SerializeToString,
|
2778
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2779
|
+
options, channel_credentials,
|
2780
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2781
|
+
|
2782
|
+
@staticmethod
|
2783
|
+
def DictContains(request,
|
2784
|
+
target,
|
2785
|
+
options=(),
|
2786
|
+
channel_credentials=None,
|
2787
|
+
call_credentials=None,
|
2788
|
+
insecure=False,
|
2789
|
+
compression=None,
|
2790
|
+
wait_for_ready=None,
|
2791
|
+
timeout=None,
|
2792
|
+
metadata=None):
|
2793
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictContains',
|
2794
|
+
modal__proto_dot_api__pb2.DictContainsRequest.SerializeToString,
|
2795
|
+
modal__proto_dot_api__pb2.DictContainsResponse.FromString,
|
2796
|
+
options, channel_credentials,
|
2797
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2798
|
+
|
2799
|
+
@staticmethod
|
2800
|
+
def DictContents(request,
|
2801
|
+
target,
|
2802
|
+
options=(),
|
2803
|
+
channel_credentials=None,
|
2804
|
+
call_credentials=None,
|
2805
|
+
insecure=False,
|
2806
|
+
compression=None,
|
2807
|
+
wait_for_ready=None,
|
2808
|
+
timeout=None,
|
2809
|
+
metadata=None):
|
2810
|
+
return grpc.experimental.unary_stream(request, target, '/modal.client.ModalClient/DictContents',
|
2811
|
+
modal__proto_dot_api__pb2.DictContentsRequest.SerializeToString,
|
2812
|
+
modal__proto_dot_api__pb2.DictEntry.FromString,
|
2813
|
+
options, channel_credentials,
|
2814
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2815
|
+
|
2816
|
+
@staticmethod
|
2817
|
+
def DictDelete(request,
|
2818
|
+
target,
|
2819
|
+
options=(),
|
2820
|
+
channel_credentials=None,
|
2821
|
+
call_credentials=None,
|
2822
|
+
insecure=False,
|
2823
|
+
compression=None,
|
2824
|
+
wait_for_ready=None,
|
2825
|
+
timeout=None,
|
2826
|
+
metadata=None):
|
2827
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictDelete',
|
2828
|
+
modal__proto_dot_api__pb2.DictDeleteRequest.SerializeToString,
|
2829
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2830
|
+
options, channel_credentials,
|
2831
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2832
|
+
|
2833
|
+
@staticmethod
|
2834
|
+
def DictGet(request,
|
2835
|
+
target,
|
2836
|
+
options=(),
|
2837
|
+
channel_credentials=None,
|
2838
|
+
call_credentials=None,
|
2839
|
+
insecure=False,
|
2840
|
+
compression=None,
|
2841
|
+
wait_for_ready=None,
|
2842
|
+
timeout=None,
|
2843
|
+
metadata=None):
|
2844
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictGet',
|
2845
|
+
modal__proto_dot_api__pb2.DictGetRequest.SerializeToString,
|
2846
|
+
modal__proto_dot_api__pb2.DictGetResponse.FromString,
|
2847
|
+
options, channel_credentials,
|
2848
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2849
|
+
|
2850
|
+
@staticmethod
|
2851
|
+
def DictGetOrCreate(request,
|
2852
|
+
target,
|
2853
|
+
options=(),
|
2854
|
+
channel_credentials=None,
|
2855
|
+
call_credentials=None,
|
2856
|
+
insecure=False,
|
2857
|
+
compression=None,
|
2858
|
+
wait_for_ready=None,
|
2859
|
+
timeout=None,
|
2860
|
+
metadata=None):
|
2861
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictGetOrCreate',
|
2862
|
+
modal__proto_dot_api__pb2.DictGetOrCreateRequest.SerializeToString,
|
2863
|
+
modal__proto_dot_api__pb2.DictGetOrCreateResponse.FromString,
|
2864
|
+
options, channel_credentials,
|
2865
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2866
|
+
|
2867
|
+
@staticmethod
|
2868
|
+
def DictHeartbeat(request,
|
2869
|
+
target,
|
2870
|
+
options=(),
|
2871
|
+
channel_credentials=None,
|
2872
|
+
call_credentials=None,
|
2873
|
+
insecure=False,
|
2874
|
+
compression=None,
|
2875
|
+
wait_for_ready=None,
|
2876
|
+
timeout=None,
|
2877
|
+
metadata=None):
|
2878
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictHeartbeat',
|
2879
|
+
modal__proto_dot_api__pb2.DictHeartbeatRequest.SerializeToString,
|
2880
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2881
|
+
options, channel_credentials,
|
2882
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2883
|
+
|
2884
|
+
@staticmethod
|
2885
|
+
def DictLen(request,
|
2084
2886
|
target,
|
2085
2887
|
options=(),
|
2086
2888
|
channel_credentials=None,
|
@@ -2090,14 +2892,14 @@ class ModalClient(object):
|
|
2090
2892
|
wait_for_ready=None,
|
2091
2893
|
timeout=None,
|
2092
2894
|
metadata=None):
|
2093
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2094
|
-
modal__proto_dot_api__pb2.
|
2095
|
-
modal__proto_dot_api__pb2.
|
2895
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictLen',
|
2896
|
+
modal__proto_dot_api__pb2.DictLenRequest.SerializeToString,
|
2897
|
+
modal__proto_dot_api__pb2.DictLenResponse.FromString,
|
2096
2898
|
options, channel_credentials,
|
2097
2899
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2098
2900
|
|
2099
2901
|
@staticmethod
|
2100
|
-
def
|
2902
|
+
def DictList(request,
|
2101
2903
|
target,
|
2102
2904
|
options=(),
|
2103
2905
|
channel_credentials=None,
|
@@ -2107,14 +2909,14 @@ class ModalClient(object):
|
|
2107
2909
|
wait_for_ready=None,
|
2108
2910
|
timeout=None,
|
2109
2911
|
metadata=None):
|
2110
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2111
|
-
modal__proto_dot_api__pb2.
|
2112
|
-
modal__proto_dot_api__pb2.
|
2912
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictList',
|
2913
|
+
modal__proto_dot_api__pb2.DictListRequest.SerializeToString,
|
2914
|
+
modal__proto_dot_api__pb2.DictListResponse.FromString,
|
2113
2915
|
options, channel_credentials,
|
2114
2916
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2115
2917
|
|
2116
2918
|
@staticmethod
|
2117
|
-
def
|
2919
|
+
def DictPop(request,
|
2118
2920
|
target,
|
2119
2921
|
options=(),
|
2120
2922
|
channel_credentials=None,
|
@@ -2124,14 +2926,14 @@ class ModalClient(object):
|
|
2124
2926
|
wait_for_ready=None,
|
2125
2927
|
timeout=None,
|
2126
2928
|
metadata=None):
|
2127
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2128
|
-
|
2129
|
-
modal__proto_dot_api__pb2.
|
2929
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictPop',
|
2930
|
+
modal__proto_dot_api__pb2.DictPopRequest.SerializeToString,
|
2931
|
+
modal__proto_dot_api__pb2.DictPopResponse.FromString,
|
2130
2932
|
options, channel_credentials,
|
2131
2933
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2132
2934
|
|
2133
2935
|
@staticmethod
|
2134
|
-
def
|
2936
|
+
def DictUpdate(request,
|
2135
2937
|
target,
|
2136
2938
|
options=(),
|
2137
2939
|
channel_credentials=None,
|
@@ -2141,14 +2943,14 @@ class ModalClient(object):
|
|
2141
2943
|
wait_for_ready=None,
|
2142
2944
|
timeout=None,
|
2143
2945
|
metadata=None):
|
2144
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2145
|
-
modal__proto_dot_api__pb2.
|
2146
|
-
|
2946
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DictUpdate',
|
2947
|
+
modal__proto_dot_api__pb2.DictUpdateRequest.SerializeToString,
|
2948
|
+
modal__proto_dot_api__pb2.DictUpdateResponse.FromString,
|
2147
2949
|
options, channel_credentials,
|
2148
2950
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2149
2951
|
|
2150
2952
|
@staticmethod
|
2151
|
-
def
|
2953
|
+
def DomainCertificateVerify(request,
|
2152
2954
|
target,
|
2153
2955
|
options=(),
|
2154
2956
|
channel_credentials=None,
|
@@ -2158,14 +2960,14 @@ class ModalClient(object):
|
|
2158
2960
|
wait_for_ready=None,
|
2159
2961
|
timeout=None,
|
2160
2962
|
metadata=None):
|
2161
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2162
|
-
modal__proto_dot_api__pb2.
|
2163
|
-
modal__proto_dot_api__pb2.
|
2963
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DomainCertificateVerify',
|
2964
|
+
modal__proto_dot_api__pb2.DomainCertificateVerifyRequest.SerializeToString,
|
2965
|
+
modal__proto_dot_api__pb2.DomainCertificateVerifyResponse.FromString,
|
2164
2966
|
options, channel_credentials,
|
2165
2967
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2166
2968
|
|
2167
2969
|
@staticmethod
|
2168
|
-
def
|
2970
|
+
def DomainCreate(request,
|
2169
2971
|
target,
|
2170
2972
|
options=(),
|
2171
2973
|
channel_credentials=None,
|
@@ -2175,14 +2977,14 @@ class ModalClient(object):
|
|
2175
2977
|
wait_for_ready=None,
|
2176
2978
|
timeout=None,
|
2177
2979
|
metadata=None):
|
2178
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2179
|
-
modal__proto_dot_api__pb2.
|
2180
|
-
modal__proto_dot_api__pb2.
|
2980
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DomainCreate',
|
2981
|
+
modal__proto_dot_api__pb2.DomainCreateRequest.SerializeToString,
|
2982
|
+
modal__proto_dot_api__pb2.DomainCreateResponse.FromString,
|
2181
2983
|
options, channel_credentials,
|
2182
2984
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2183
2985
|
|
2184
2986
|
@staticmethod
|
2185
|
-
def
|
2987
|
+
def DomainList(request,
|
2186
2988
|
target,
|
2187
2989
|
options=(),
|
2188
2990
|
channel_credentials=None,
|
@@ -2192,14 +2994,14 @@ class ModalClient(object):
|
|
2192
2994
|
wait_for_ready=None,
|
2193
2995
|
timeout=None,
|
2194
2996
|
metadata=None):
|
2195
|
-
return grpc.experimental.
|
2196
|
-
modal__proto_dot_api__pb2.
|
2197
|
-
modal__proto_dot_api__pb2.
|
2997
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/DomainList',
|
2998
|
+
modal__proto_dot_api__pb2.DomainListRequest.SerializeToString,
|
2999
|
+
modal__proto_dot_api__pb2.DomainListResponse.FromString,
|
2198
3000
|
options, channel_credentials,
|
2199
3001
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2200
3002
|
|
2201
3003
|
@staticmethod
|
2202
|
-
def
|
3004
|
+
def EnvironmentCreate(request,
|
2203
3005
|
target,
|
2204
3006
|
options=(),
|
2205
3007
|
channel_credentials=None,
|
@@ -2209,14 +3011,14 @@ class ModalClient(object):
|
|
2209
3011
|
wait_for_ready=None,
|
2210
3012
|
timeout=None,
|
2211
3013
|
metadata=None):
|
2212
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2213
|
-
modal__proto_dot_api__pb2.
|
3014
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/EnvironmentCreate',
|
3015
|
+
modal__proto_dot_api__pb2.EnvironmentCreateRequest.SerializeToString,
|
2214
3016
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2215
3017
|
options, channel_credentials,
|
2216
3018
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2217
3019
|
|
2218
3020
|
@staticmethod
|
2219
|
-
def
|
3021
|
+
def EnvironmentDelete(request,
|
2220
3022
|
target,
|
2221
3023
|
options=(),
|
2222
3024
|
channel_credentials=None,
|
@@ -2226,14 +3028,14 @@ class ModalClient(object):
|
|
2226
3028
|
wait_for_ready=None,
|
2227
3029
|
timeout=None,
|
2228
3030
|
metadata=None):
|
2229
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2230
|
-
modal__proto_dot_api__pb2.
|
3031
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/EnvironmentDelete',
|
3032
|
+
modal__proto_dot_api__pb2.EnvironmentDeleteRequest.SerializeToString,
|
2231
3033
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2232
3034
|
options, channel_credentials,
|
2233
3035
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2234
3036
|
|
2235
3037
|
@staticmethod
|
2236
|
-
def
|
3038
|
+
def EnvironmentGetOrCreate(request,
|
2237
3039
|
target,
|
2238
3040
|
options=(),
|
2239
3041
|
channel_credentials=None,
|
@@ -2243,14 +3045,14 @@ class ModalClient(object):
|
|
2243
3045
|
wait_for_ready=None,
|
2244
3046
|
timeout=None,
|
2245
3047
|
metadata=None):
|
2246
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2247
|
-
modal__proto_dot_api__pb2.
|
2248
|
-
|
3048
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/EnvironmentGetOrCreate',
|
3049
|
+
modal__proto_dot_api__pb2.EnvironmentGetOrCreateRequest.SerializeToString,
|
3050
|
+
modal__proto_dot_api__pb2.EnvironmentGetOrCreateResponse.FromString,
|
2249
3051
|
options, channel_credentials,
|
2250
3052
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2251
3053
|
|
2252
3054
|
@staticmethod
|
2253
|
-
def
|
3055
|
+
def EnvironmentList(request,
|
2254
3056
|
target,
|
2255
3057
|
options=(),
|
2256
3058
|
channel_credentials=None,
|
@@ -2260,14 +3062,14 @@ class ModalClient(object):
|
|
2260
3062
|
wait_for_ready=None,
|
2261
3063
|
timeout=None,
|
2262
3064
|
metadata=None):
|
2263
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2264
|
-
|
2265
|
-
modal__proto_dot_api__pb2.
|
3065
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/EnvironmentList',
|
3066
|
+
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
3067
|
+
modal__proto_dot_api__pb2.EnvironmentListResponse.FromString,
|
2266
3068
|
options, channel_credentials,
|
2267
3069
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2268
3070
|
|
2269
3071
|
@staticmethod
|
2270
|
-
def
|
3072
|
+
def EnvironmentUpdate(request,
|
2271
3073
|
target,
|
2272
3074
|
options=(),
|
2273
3075
|
channel_credentials=None,
|
@@ -2277,14 +3079,14 @@ class ModalClient(object):
|
|
2277
3079
|
wait_for_ready=None,
|
2278
3080
|
timeout=None,
|
2279
3081
|
metadata=None):
|
2280
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2281
|
-
modal__proto_dot_api__pb2.
|
2282
|
-
modal__proto_dot_api__pb2.
|
3082
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/EnvironmentUpdate',
|
3083
|
+
modal__proto_dot_api__pb2.EnvironmentUpdateRequest.SerializeToString,
|
3084
|
+
modal__proto_dot_api__pb2.EnvironmentListItem.FromString,
|
2283
3085
|
options, channel_credentials,
|
2284
3086
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2285
3087
|
|
2286
3088
|
@staticmethod
|
2287
|
-
def
|
3089
|
+
def FunctionAsyncInvoke(request,
|
2288
3090
|
target,
|
2289
3091
|
options=(),
|
2290
3092
|
channel_credentials=None,
|
@@ -2294,14 +3096,14 @@ class ModalClient(object):
|
|
2294
3096
|
wait_for_ready=None,
|
2295
3097
|
timeout=None,
|
2296
3098
|
metadata=None):
|
2297
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2298
|
-
modal__proto_dot_api__pb2.
|
2299
|
-
|
3099
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionAsyncInvoke',
|
3100
|
+
modal__proto_dot_api__pb2.FunctionAsyncInvokeRequest.SerializeToString,
|
3101
|
+
modal__proto_dot_api__pb2.FunctionAsyncInvokeResponse.FromString,
|
2300
3102
|
options, channel_credentials,
|
2301
3103
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2302
3104
|
|
2303
3105
|
@staticmethod
|
2304
|
-
def
|
3106
|
+
def FunctionBindParams(request,
|
2305
3107
|
target,
|
2306
3108
|
options=(),
|
2307
3109
|
channel_credentials=None,
|
@@ -2311,14 +3113,14 @@ class ModalClient(object):
|
|
2311
3113
|
wait_for_ready=None,
|
2312
3114
|
timeout=None,
|
2313
3115
|
metadata=None):
|
2314
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2315
|
-
modal__proto_dot_api__pb2.
|
2316
|
-
modal__proto_dot_api__pb2.
|
3116
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionBindParams',
|
3117
|
+
modal__proto_dot_api__pb2.FunctionBindParamsRequest.SerializeToString,
|
3118
|
+
modal__proto_dot_api__pb2.FunctionBindParamsResponse.FromString,
|
2317
3119
|
options, channel_credentials,
|
2318
3120
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2319
3121
|
|
2320
3122
|
@staticmethod
|
2321
|
-
def
|
3123
|
+
def FunctionCallCancel(request,
|
2322
3124
|
target,
|
2323
3125
|
options=(),
|
2324
3126
|
channel_credentials=None,
|
@@ -2328,14 +3130,14 @@ class ModalClient(object):
|
|
2328
3130
|
wait_for_ready=None,
|
2329
3131
|
timeout=None,
|
2330
3132
|
metadata=None):
|
2331
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2332
|
-
modal__proto_dot_api__pb2.
|
2333
|
-
|
3133
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionCallCancel',
|
3134
|
+
modal__proto_dot_api__pb2.FunctionCallCancelRequest.SerializeToString,
|
3135
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2334
3136
|
options, channel_credentials,
|
2335
3137
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2336
3138
|
|
2337
3139
|
@staticmethod
|
2338
|
-
def
|
3140
|
+
def FunctionCallGetDataIn(request,
|
2339
3141
|
target,
|
2340
3142
|
options=(),
|
2341
3143
|
channel_credentials=None,
|
@@ -2345,14 +3147,14 @@ class ModalClient(object):
|
|
2345
3147
|
wait_for_ready=None,
|
2346
3148
|
timeout=None,
|
2347
3149
|
metadata=None):
|
2348
|
-
return grpc.experimental.
|
2349
|
-
modal__proto_dot_api__pb2.
|
2350
|
-
modal__proto_dot_api__pb2.
|
3150
|
+
return grpc.experimental.unary_stream(request, target, '/modal.client.ModalClient/FunctionCallGetDataIn',
|
3151
|
+
modal__proto_dot_api__pb2.FunctionCallGetDataRequest.SerializeToString,
|
3152
|
+
modal__proto_dot_api__pb2.DataChunk.FromString,
|
2351
3153
|
options, channel_credentials,
|
2352
3154
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2353
3155
|
|
2354
3156
|
@staticmethod
|
2355
|
-
def
|
3157
|
+
def FunctionCallGetDataOut(request,
|
2356
3158
|
target,
|
2357
3159
|
options=(),
|
2358
3160
|
channel_credentials=None,
|
@@ -2362,14 +3164,14 @@ class ModalClient(object):
|
|
2362
3164
|
wait_for_ready=None,
|
2363
3165
|
timeout=None,
|
2364
3166
|
metadata=None):
|
2365
|
-
return grpc.experimental.
|
2366
|
-
modal__proto_dot_api__pb2.
|
2367
|
-
modal__proto_dot_api__pb2.
|
3167
|
+
return grpc.experimental.unary_stream(request, target, '/modal.client.ModalClient/FunctionCallGetDataOut',
|
3168
|
+
modal__proto_dot_api__pb2.FunctionCallGetDataRequest.SerializeToString,
|
3169
|
+
modal__proto_dot_api__pb2.DataChunk.FromString,
|
2368
3170
|
options, channel_credentials,
|
2369
3171
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2370
3172
|
|
2371
3173
|
@staticmethod
|
2372
|
-
def
|
3174
|
+
def FunctionCallList(request,
|
2373
3175
|
target,
|
2374
3176
|
options=(),
|
2375
3177
|
channel_credentials=None,
|
@@ -2379,14 +3181,14 @@ class ModalClient(object):
|
|
2379
3181
|
wait_for_ready=None,
|
2380
3182
|
timeout=None,
|
2381
3183
|
metadata=None):
|
2382
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2383
|
-
modal__proto_dot_api__pb2.
|
2384
|
-
modal__proto_dot_api__pb2.
|
3184
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionCallList',
|
3185
|
+
modal__proto_dot_api__pb2.FunctionCallListRequest.SerializeToString,
|
3186
|
+
modal__proto_dot_api__pb2.FunctionCallListResponse.FromString,
|
2385
3187
|
options, channel_credentials,
|
2386
3188
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2387
3189
|
|
2388
3190
|
@staticmethod
|
2389
|
-
def
|
3191
|
+
def FunctionCallPutDataOut(request,
|
2390
3192
|
target,
|
2391
3193
|
options=(),
|
2392
3194
|
channel_credentials=None,
|
@@ -2396,14 +3198,14 @@ class ModalClient(object):
|
|
2396
3198
|
wait_for_ready=None,
|
2397
3199
|
timeout=None,
|
2398
3200
|
metadata=None):
|
2399
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2400
|
-
modal__proto_dot_api__pb2.
|
2401
|
-
|
3201
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionCallPutDataOut',
|
3202
|
+
modal__proto_dot_api__pb2.FunctionCallPutDataRequest.SerializeToString,
|
3203
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2402
3204
|
options, channel_credentials,
|
2403
3205
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2404
3206
|
|
2405
3207
|
@staticmethod
|
2406
|
-
def
|
3208
|
+
def FunctionCreate(request,
|
2407
3209
|
target,
|
2408
3210
|
options=(),
|
2409
3211
|
channel_credentials=None,
|
@@ -2413,14 +3215,14 @@ class ModalClient(object):
|
|
2413
3215
|
wait_for_ready=None,
|
2414
3216
|
timeout=None,
|
2415
3217
|
metadata=None):
|
2416
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2417
|
-
modal__proto_dot_api__pb2.
|
2418
|
-
modal__proto_dot_api__pb2.
|
3218
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionCreate',
|
3219
|
+
modal__proto_dot_api__pb2.FunctionCreateRequest.SerializeToString,
|
3220
|
+
modal__proto_dot_api__pb2.FunctionCreateResponse.FromString,
|
2419
3221
|
options, channel_credentials,
|
2420
3222
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2421
3223
|
|
2422
3224
|
@staticmethod
|
2423
|
-
def
|
3225
|
+
def FunctionGet(request,
|
2424
3226
|
target,
|
2425
3227
|
options=(),
|
2426
3228
|
channel_credentials=None,
|
@@ -2430,14 +3232,14 @@ class ModalClient(object):
|
|
2430
3232
|
wait_for_ready=None,
|
2431
3233
|
timeout=None,
|
2432
3234
|
metadata=None):
|
2433
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2434
|
-
modal__proto_dot_api__pb2.
|
2435
|
-
modal__proto_dot_api__pb2.
|
3235
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionGet',
|
3236
|
+
modal__proto_dot_api__pb2.FunctionGetRequest.SerializeToString,
|
3237
|
+
modal__proto_dot_api__pb2.FunctionGetResponse.FromString,
|
2436
3238
|
options, channel_credentials,
|
2437
3239
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2438
3240
|
|
2439
3241
|
@staticmethod
|
2440
|
-
def
|
3242
|
+
def FunctionGetCallGraph(request,
|
2441
3243
|
target,
|
2442
3244
|
options=(),
|
2443
3245
|
channel_credentials=None,
|
@@ -2447,14 +3249,14 @@ class ModalClient(object):
|
|
2447
3249
|
wait_for_ready=None,
|
2448
3250
|
timeout=None,
|
2449
3251
|
metadata=None):
|
2450
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2451
|
-
modal__proto_dot_api__pb2.
|
2452
|
-
|
3252
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionGetCallGraph',
|
3253
|
+
modal__proto_dot_api__pb2.FunctionGetCallGraphRequest.SerializeToString,
|
3254
|
+
modal__proto_dot_api__pb2.FunctionGetCallGraphResponse.FromString,
|
2453
3255
|
options, channel_credentials,
|
2454
3256
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2455
3257
|
|
2456
3258
|
@staticmethod
|
2457
|
-
def
|
3259
|
+
def FunctionGetCurrentStats(request,
|
2458
3260
|
target,
|
2459
3261
|
options=(),
|
2460
3262
|
channel_credentials=None,
|
@@ -2464,14 +3266,14 @@ class ModalClient(object):
|
|
2464
3266
|
wait_for_ready=None,
|
2465
3267
|
timeout=None,
|
2466
3268
|
metadata=None):
|
2467
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2468
|
-
|
2469
|
-
modal__proto_dot_api__pb2.
|
3269
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionGetCurrentStats',
|
3270
|
+
modal__proto_dot_api__pb2.FunctionGetCurrentStatsRequest.SerializeToString,
|
3271
|
+
modal__proto_dot_api__pb2.FunctionStats.FromString,
|
2470
3272
|
options, channel_credentials,
|
2471
3273
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2472
3274
|
|
2473
3275
|
@staticmethod
|
2474
|
-
def
|
3276
|
+
def FunctionGetDynamicConcurrency(request,
|
2475
3277
|
target,
|
2476
3278
|
options=(),
|
2477
3279
|
channel_credentials=None,
|
@@ -2481,14 +3283,14 @@ class ModalClient(object):
|
|
2481
3283
|
wait_for_ready=None,
|
2482
3284
|
timeout=None,
|
2483
3285
|
metadata=None):
|
2484
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2485
|
-
modal__proto_dot_api__pb2.
|
2486
|
-
|
3286
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionGetDynamicConcurrency',
|
3287
|
+
modal__proto_dot_api__pb2.FunctionGetDynamicConcurrencyRequest.SerializeToString,
|
3288
|
+
modal__proto_dot_api__pb2.FunctionGetDynamicConcurrencyResponse.FromString,
|
2487
3289
|
options, channel_credentials,
|
2488
3290
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2489
3291
|
|
2490
3292
|
@staticmethod
|
2491
|
-
def
|
3293
|
+
def FunctionGetInputs(request,
|
2492
3294
|
target,
|
2493
3295
|
options=(),
|
2494
3296
|
channel_credentials=None,
|
@@ -2498,14 +3300,14 @@ class ModalClient(object):
|
|
2498
3300
|
wait_for_ready=None,
|
2499
3301
|
timeout=None,
|
2500
3302
|
metadata=None):
|
2501
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2502
|
-
modal__proto_dot_api__pb2.
|
2503
|
-
modal__proto_dot_api__pb2.
|
3303
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionGetInputs',
|
3304
|
+
modal__proto_dot_api__pb2.FunctionGetInputsRequest.SerializeToString,
|
3305
|
+
modal__proto_dot_api__pb2.FunctionGetInputsResponse.FromString,
|
2504
3306
|
options, channel_credentials,
|
2505
3307
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2506
3308
|
|
2507
3309
|
@staticmethod
|
2508
|
-
def
|
3310
|
+
def FunctionGetOutputs(request,
|
2509
3311
|
target,
|
2510
3312
|
options=(),
|
2511
3313
|
channel_credentials=None,
|
@@ -2515,14 +3317,14 @@ class ModalClient(object):
|
|
2515
3317
|
wait_for_ready=None,
|
2516
3318
|
timeout=None,
|
2517
3319
|
metadata=None):
|
2518
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2519
|
-
modal__proto_dot_api__pb2.
|
2520
|
-
modal__proto_dot_api__pb2.
|
3320
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionGetOutputs',
|
3321
|
+
modal__proto_dot_api__pb2.FunctionGetOutputsRequest.SerializeToString,
|
3322
|
+
modal__proto_dot_api__pb2.FunctionGetOutputsResponse.FromString,
|
2521
3323
|
options, channel_credentials,
|
2522
3324
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2523
3325
|
|
2524
3326
|
@staticmethod
|
2525
|
-
def
|
3327
|
+
def FunctionGetSerialized(request,
|
2526
3328
|
target,
|
2527
3329
|
options=(),
|
2528
3330
|
channel_credentials=None,
|
@@ -2532,14 +3334,14 @@ class ModalClient(object):
|
|
2532
3334
|
wait_for_ready=None,
|
2533
3335
|
timeout=None,
|
2534
3336
|
metadata=None):
|
2535
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2536
|
-
modal__proto_dot_api__pb2.
|
2537
|
-
modal__proto_dot_api__pb2.
|
3337
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionGetSerialized',
|
3338
|
+
modal__proto_dot_api__pb2.FunctionGetSerializedRequest.SerializeToString,
|
3339
|
+
modal__proto_dot_api__pb2.FunctionGetSerializedResponse.FromString,
|
2538
3340
|
options, channel_credentials,
|
2539
3341
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2540
3342
|
|
2541
3343
|
@staticmethod
|
2542
|
-
def
|
3344
|
+
def FunctionMap(request,
|
2543
3345
|
target,
|
2544
3346
|
options=(),
|
2545
3347
|
channel_credentials=None,
|
@@ -2549,14 +3351,14 @@ class ModalClient(object):
|
|
2549
3351
|
wait_for_ready=None,
|
2550
3352
|
timeout=None,
|
2551
3353
|
metadata=None):
|
2552
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2553
|
-
modal__proto_dot_api__pb2.
|
2554
|
-
modal__proto_dot_api__pb2.
|
3354
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionMap',
|
3355
|
+
modal__proto_dot_api__pb2.FunctionMapRequest.SerializeToString,
|
3356
|
+
modal__proto_dot_api__pb2.FunctionMapResponse.FromString,
|
2555
3357
|
options, channel_credentials,
|
2556
3358
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2557
3359
|
|
2558
3360
|
@staticmethod
|
2559
|
-
def
|
3361
|
+
def FunctionPrecreate(request,
|
2560
3362
|
target,
|
2561
3363
|
options=(),
|
2562
3364
|
channel_credentials=None,
|
@@ -2566,14 +3368,14 @@ class ModalClient(object):
|
|
2566
3368
|
wait_for_ready=None,
|
2567
3369
|
timeout=None,
|
2568
3370
|
metadata=None):
|
2569
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2570
|
-
modal__proto_dot_api__pb2.
|
2571
|
-
modal__proto_dot_api__pb2.
|
3371
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionPrecreate',
|
3372
|
+
modal__proto_dot_api__pb2.FunctionPrecreateRequest.SerializeToString,
|
3373
|
+
modal__proto_dot_api__pb2.FunctionPrecreateResponse.FromString,
|
2572
3374
|
options, channel_credentials,
|
2573
3375
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2574
3376
|
|
2575
3377
|
@staticmethod
|
2576
|
-
def
|
3378
|
+
def FunctionPutInputs(request,
|
2577
3379
|
target,
|
2578
3380
|
options=(),
|
2579
3381
|
channel_credentials=None,
|
@@ -2583,14 +3385,14 @@ class ModalClient(object):
|
|
2583
3385
|
wait_for_ready=None,
|
2584
3386
|
timeout=None,
|
2585
3387
|
metadata=None):
|
2586
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2587
|
-
modal__proto_dot_api__pb2.
|
2588
|
-
modal__proto_dot_api__pb2.
|
3388
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionPutInputs',
|
3389
|
+
modal__proto_dot_api__pb2.FunctionPutInputsRequest.SerializeToString,
|
3390
|
+
modal__proto_dot_api__pb2.FunctionPutInputsResponse.FromString,
|
2589
3391
|
options, channel_credentials,
|
2590
3392
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2591
3393
|
|
2592
3394
|
@staticmethod
|
2593
|
-
def
|
3395
|
+
def FunctionPutOutputs(request,
|
2594
3396
|
target,
|
2595
3397
|
options=(),
|
2596
3398
|
channel_credentials=None,
|
@@ -2600,14 +3402,14 @@ class ModalClient(object):
|
|
2600
3402
|
wait_for_ready=None,
|
2601
3403
|
timeout=None,
|
2602
3404
|
metadata=None):
|
2603
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2604
|
-
modal__proto_dot_api__pb2.
|
2605
|
-
|
3405
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionPutOutputs',
|
3406
|
+
modal__proto_dot_api__pb2.FunctionPutOutputsRequest.SerializeToString,
|
3407
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2606
3408
|
options, channel_credentials,
|
2607
3409
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2608
3410
|
|
2609
3411
|
@staticmethod
|
2610
|
-
def
|
3412
|
+
def FunctionRetryInputs(request,
|
2611
3413
|
target,
|
2612
3414
|
options=(),
|
2613
3415
|
channel_credentials=None,
|
@@ -2617,14 +3419,14 @@ class ModalClient(object):
|
|
2617
3419
|
wait_for_ready=None,
|
2618
3420
|
timeout=None,
|
2619
3421
|
metadata=None):
|
2620
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2621
|
-
modal__proto_dot_api__pb2.
|
2622
|
-
modal__proto_dot_api__pb2.
|
3422
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionRetryInputs',
|
3423
|
+
modal__proto_dot_api__pb2.FunctionRetryInputsRequest.SerializeToString,
|
3424
|
+
modal__proto_dot_api__pb2.FunctionRetryInputsResponse.FromString,
|
2623
3425
|
options, channel_credentials,
|
2624
3426
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2625
3427
|
|
2626
3428
|
@staticmethod
|
2627
|
-
def
|
3429
|
+
def FunctionStartPtyShell(request,
|
2628
3430
|
target,
|
2629
3431
|
options=(),
|
2630
3432
|
channel_credentials=None,
|
@@ -2634,14 +3436,14 @@ class ModalClient(object):
|
|
2634
3436
|
wait_for_ready=None,
|
2635
3437
|
timeout=None,
|
2636
3438
|
metadata=None):
|
2637
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2638
|
-
|
2639
|
-
|
3439
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionStartPtyShell',
|
3440
|
+
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
3441
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2640
3442
|
options, channel_credentials,
|
2641
3443
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2642
3444
|
|
2643
3445
|
@staticmethod
|
2644
|
-
def
|
3446
|
+
def FunctionUpdateSchedulingParams(request,
|
2645
3447
|
target,
|
2646
3448
|
options=(),
|
2647
3449
|
channel_credentials=None,
|
@@ -2651,14 +3453,14 @@ class ModalClient(object):
|
|
2651
3453
|
wait_for_ready=None,
|
2652
3454
|
timeout=None,
|
2653
3455
|
metadata=None):
|
2654
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2655
|
-
modal__proto_dot_api__pb2.
|
2656
|
-
modal__proto_dot_api__pb2.
|
3456
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/FunctionUpdateSchedulingParams',
|
3457
|
+
modal__proto_dot_api__pb2.FunctionUpdateSchedulingParamsRequest.SerializeToString,
|
3458
|
+
modal__proto_dot_api__pb2.FunctionUpdateSchedulingParamsResponse.FromString,
|
2657
3459
|
options, channel_credentials,
|
2658
3460
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2659
3461
|
|
2660
3462
|
@staticmethod
|
2661
|
-
def
|
3463
|
+
def ImageFromId(request,
|
2662
3464
|
target,
|
2663
3465
|
options=(),
|
2664
3466
|
channel_credentials=None,
|
@@ -2668,14 +3470,14 @@ class ModalClient(object):
|
|
2668
3470
|
wait_for_ready=None,
|
2669
3471
|
timeout=None,
|
2670
3472
|
metadata=None):
|
2671
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2672
|
-
modal__proto_dot_api__pb2.
|
2673
|
-
modal__proto_dot_api__pb2.
|
3473
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ImageFromId',
|
3474
|
+
modal__proto_dot_api__pb2.ImageFromIdRequest.SerializeToString,
|
3475
|
+
modal__proto_dot_api__pb2.ImageFromIdResponse.FromString,
|
2674
3476
|
options, channel_credentials,
|
2675
3477
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2676
3478
|
|
2677
3479
|
@staticmethod
|
2678
|
-
def
|
3480
|
+
def ImageGetOrCreate(request,
|
2679
3481
|
target,
|
2680
3482
|
options=(),
|
2681
3483
|
channel_credentials=None,
|
@@ -2685,14 +3487,14 @@ class ModalClient(object):
|
|
2685
3487
|
wait_for_ready=None,
|
2686
3488
|
timeout=None,
|
2687
3489
|
metadata=None):
|
2688
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2689
|
-
modal__proto_dot_api__pb2.
|
2690
|
-
modal__proto_dot_api__pb2.
|
3490
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ImageGetOrCreate',
|
3491
|
+
modal__proto_dot_api__pb2.ImageGetOrCreateRequest.SerializeToString,
|
3492
|
+
modal__proto_dot_api__pb2.ImageGetOrCreateResponse.FromString,
|
2691
3493
|
options, channel_credentials,
|
2692
3494
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2693
3495
|
|
2694
3496
|
@staticmethod
|
2695
|
-
def
|
3497
|
+
def ImageJoinStreaming(request,
|
2696
3498
|
target,
|
2697
3499
|
options=(),
|
2698
3500
|
channel_credentials=None,
|
@@ -2700,16 +3502,16 @@ class ModalClient(object):
|
|
2700
3502
|
insecure=False,
|
2701
3503
|
compression=None,
|
2702
3504
|
wait_for_ready=None,
|
2703
|
-
timeout=None,
|
2704
|
-
metadata=None):
|
2705
|
-
return grpc.experimental.
|
2706
|
-
modal__proto_dot_api__pb2.
|
2707
|
-
|
3505
|
+
timeout=None,
|
3506
|
+
metadata=None):
|
3507
|
+
return grpc.experimental.unary_stream(request, target, '/modal.client.ModalClient/ImageJoinStreaming',
|
3508
|
+
modal__proto_dot_api__pb2.ImageJoinStreamingRequest.SerializeToString,
|
3509
|
+
modal__proto_dot_api__pb2.ImageJoinStreamingResponse.FromString,
|
2708
3510
|
options, channel_credentials,
|
2709
3511
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2710
3512
|
|
2711
3513
|
@staticmethod
|
2712
|
-
def
|
3514
|
+
def MountGetOrCreate(request,
|
2713
3515
|
target,
|
2714
3516
|
options=(),
|
2715
3517
|
channel_credentials=None,
|
@@ -2719,14 +3521,14 @@ class ModalClient(object):
|
|
2719
3521
|
wait_for_ready=None,
|
2720
3522
|
timeout=None,
|
2721
3523
|
metadata=None):
|
2722
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2723
|
-
modal__proto_dot_api__pb2.
|
2724
|
-
modal__proto_dot_api__pb2.
|
3524
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/MountGetOrCreate',
|
3525
|
+
modal__proto_dot_api__pb2.MountGetOrCreateRequest.SerializeToString,
|
3526
|
+
modal__proto_dot_api__pb2.MountGetOrCreateResponse.FromString,
|
2725
3527
|
options, channel_credentials,
|
2726
3528
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2727
3529
|
|
2728
3530
|
@staticmethod
|
2729
|
-
def
|
3531
|
+
def MountPutFile(request,
|
2730
3532
|
target,
|
2731
3533
|
options=(),
|
2732
3534
|
channel_credentials=None,
|
@@ -2736,14 +3538,14 @@ class ModalClient(object):
|
|
2736
3538
|
wait_for_ready=None,
|
2737
3539
|
timeout=None,
|
2738
3540
|
metadata=None):
|
2739
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2740
|
-
modal__proto_dot_api__pb2.
|
2741
|
-
|
3541
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/MountPutFile',
|
3542
|
+
modal__proto_dot_api__pb2.MountPutFileRequest.SerializeToString,
|
3543
|
+
modal__proto_dot_api__pb2.MountPutFileResponse.FromString,
|
2742
3544
|
options, channel_credentials,
|
2743
3545
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2744
3546
|
|
2745
3547
|
@staticmethod
|
2746
|
-
def
|
3548
|
+
def ProxyCreate(request,
|
2747
3549
|
target,
|
2748
3550
|
options=(),
|
2749
3551
|
channel_credentials=None,
|
@@ -2753,14 +3555,14 @@ class ModalClient(object):
|
|
2753
3555
|
wait_for_ready=None,
|
2754
3556
|
timeout=None,
|
2755
3557
|
metadata=None):
|
2756
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2757
|
-
modal__proto_dot_api__pb2.
|
2758
|
-
modal__proto_dot_api__pb2.
|
3558
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ProxyCreate',
|
3559
|
+
modal__proto_dot_api__pb2.ProxyCreateRequest.SerializeToString,
|
3560
|
+
modal__proto_dot_api__pb2.ProxyCreateResponse.FromString,
|
2759
3561
|
options, channel_credentials,
|
2760
3562
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2761
3563
|
|
2762
3564
|
@staticmethod
|
2763
|
-
def
|
3565
|
+
def ProxyDelete(request,
|
2764
3566
|
target,
|
2765
3567
|
options=(),
|
2766
3568
|
channel_credentials=None,
|
@@ -2770,14 +3572,14 @@ class ModalClient(object):
|
|
2770
3572
|
wait_for_ready=None,
|
2771
3573
|
timeout=None,
|
2772
3574
|
metadata=None):
|
2773
|
-
return grpc.experimental.
|
2774
|
-
modal__proto_dot_api__pb2.
|
2775
|
-
|
3575
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ProxyDelete',
|
3576
|
+
modal__proto_dot_api__pb2.ProxyDeleteRequest.SerializeToString,
|
3577
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2776
3578
|
options, channel_credentials,
|
2777
3579
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2778
3580
|
|
2779
3581
|
@staticmethod
|
2780
|
-
def
|
3582
|
+
def ProxyGet(request,
|
2781
3583
|
target,
|
2782
3584
|
options=(),
|
2783
3585
|
channel_credentials=None,
|
@@ -2787,14 +3589,14 @@ class ModalClient(object):
|
|
2787
3589
|
wait_for_ready=None,
|
2788
3590
|
timeout=None,
|
2789
3591
|
metadata=None):
|
2790
|
-
return grpc.experimental.
|
2791
|
-
modal__proto_dot_api__pb2.
|
2792
|
-
modal__proto_dot_api__pb2.
|
3592
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ProxyGet',
|
3593
|
+
modal__proto_dot_api__pb2.ProxyGetRequest.SerializeToString,
|
3594
|
+
modal__proto_dot_api__pb2.ProxyGetResponse.FromString,
|
2793
3595
|
options, channel_credentials,
|
2794
3596
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2795
3597
|
|
2796
3598
|
@staticmethod
|
2797
|
-
def
|
3599
|
+
def ProxyGetOrCreate(request,
|
2798
3600
|
target,
|
2799
3601
|
options=(),
|
2800
3602
|
channel_credentials=None,
|
@@ -2804,14 +3606,14 @@ class ModalClient(object):
|
|
2804
3606
|
wait_for_ready=None,
|
2805
3607
|
timeout=None,
|
2806
3608
|
metadata=None):
|
2807
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2808
|
-
modal__proto_dot_api__pb2.
|
2809
|
-
|
3609
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ProxyGetOrCreate',
|
3610
|
+
modal__proto_dot_api__pb2.ProxyGetOrCreateRequest.SerializeToString,
|
3611
|
+
modal__proto_dot_api__pb2.ProxyGetOrCreateResponse.FromString,
|
2810
3612
|
options, channel_credentials,
|
2811
3613
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2812
3614
|
|
2813
3615
|
@staticmethod
|
2814
|
-
def
|
3616
|
+
def ProxyList(request,
|
2815
3617
|
target,
|
2816
3618
|
options=(),
|
2817
3619
|
channel_credentials=None,
|
@@ -2821,14 +3623,14 @@ class ModalClient(object):
|
|
2821
3623
|
wait_for_ready=None,
|
2822
3624
|
timeout=None,
|
2823
3625
|
metadata=None):
|
2824
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3626
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/ProxyList',
|
2825
3627
|
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
2826
|
-
|
3628
|
+
modal__proto_dot_api__pb2.ProxyListResponse.FromString,
|
2827
3629
|
options, channel_credentials,
|
2828
3630
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2829
3631
|
|
2830
3632
|
@staticmethod
|
2831
|
-
def
|
3633
|
+
def QueueClear(request,
|
2832
3634
|
target,
|
2833
3635
|
options=(),
|
2834
3636
|
channel_credentials=None,
|
@@ -2838,14 +3640,14 @@ class ModalClient(object):
|
|
2838
3640
|
wait_for_ready=None,
|
2839
3641
|
timeout=None,
|
2840
3642
|
metadata=None):
|
2841
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2842
|
-
modal__proto_dot_api__pb2.
|
2843
|
-
|
3643
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/QueueClear',
|
3644
|
+
modal__proto_dot_api__pb2.QueueClearRequest.SerializeToString,
|
3645
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2844
3646
|
options, channel_credentials,
|
2845
3647
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2846
3648
|
|
2847
3649
|
@staticmethod
|
2848
|
-
def
|
3650
|
+
def QueueDelete(request,
|
2849
3651
|
target,
|
2850
3652
|
options=(),
|
2851
3653
|
channel_credentials=None,
|
@@ -2855,14 +3657,14 @@ class ModalClient(object):
|
|
2855
3657
|
wait_for_ready=None,
|
2856
3658
|
timeout=None,
|
2857
3659
|
metadata=None):
|
2858
|
-
return grpc.experimental.
|
2859
|
-
modal__proto_dot_api__pb2.
|
2860
|
-
|
3660
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/QueueDelete',
|
3661
|
+
modal__proto_dot_api__pb2.QueueDeleteRequest.SerializeToString,
|
3662
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2861
3663
|
options, channel_credentials,
|
2862
3664
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2863
3665
|
|
2864
3666
|
@staticmethod
|
2865
|
-
def
|
3667
|
+
def QueueGet(request,
|
2866
3668
|
target,
|
2867
3669
|
options=(),
|
2868
3670
|
channel_credentials=None,
|
@@ -2872,14 +3674,14 @@ class ModalClient(object):
|
|
2872
3674
|
wait_for_ready=None,
|
2873
3675
|
timeout=None,
|
2874
3676
|
metadata=None):
|
2875
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2876
|
-
modal__proto_dot_api__pb2.
|
2877
|
-
modal__proto_dot_api__pb2.
|
3677
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/QueueGet',
|
3678
|
+
modal__proto_dot_api__pb2.QueueGetRequest.SerializeToString,
|
3679
|
+
modal__proto_dot_api__pb2.QueueGetResponse.FromString,
|
2878
3680
|
options, channel_credentials,
|
2879
3681
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2880
3682
|
|
2881
3683
|
@staticmethod
|
2882
|
-
def
|
3684
|
+
def QueueGetOrCreate(request,
|
2883
3685
|
target,
|
2884
3686
|
options=(),
|
2885
3687
|
channel_credentials=None,
|
@@ -2889,14 +3691,14 @@ class ModalClient(object):
|
|
2889
3691
|
wait_for_ready=None,
|
2890
3692
|
timeout=None,
|
2891
3693
|
metadata=None):
|
2892
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2893
|
-
modal__proto_dot_api__pb2.
|
2894
|
-
modal__proto_dot_api__pb2.
|
3694
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/QueueGetOrCreate',
|
3695
|
+
modal__proto_dot_api__pb2.QueueGetOrCreateRequest.SerializeToString,
|
3696
|
+
modal__proto_dot_api__pb2.QueueGetOrCreateResponse.FromString,
|
2895
3697
|
options, channel_credentials,
|
2896
3698
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2897
3699
|
|
2898
3700
|
@staticmethod
|
2899
|
-
def
|
3701
|
+
def QueueHeartbeat(request,
|
2900
3702
|
target,
|
2901
3703
|
options=(),
|
2902
3704
|
channel_credentials=None,
|
@@ -2906,14 +3708,14 @@ class ModalClient(object):
|
|
2906
3708
|
wait_for_ready=None,
|
2907
3709
|
timeout=None,
|
2908
3710
|
metadata=None):
|
2909
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2910
|
-
modal__proto_dot_api__pb2.
|
2911
|
-
|
3711
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/QueueHeartbeat',
|
3712
|
+
modal__proto_dot_api__pb2.QueueHeartbeatRequest.SerializeToString,
|
3713
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2912
3714
|
options, channel_credentials,
|
2913
3715
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2914
3716
|
|
2915
3717
|
@staticmethod
|
2916
|
-
def
|
3718
|
+
def QueueLen(request,
|
2917
3719
|
target,
|
2918
3720
|
options=(),
|
2919
3721
|
channel_credentials=None,
|
@@ -2923,14 +3725,14 @@ class ModalClient(object):
|
|
2923
3725
|
wait_for_ready=None,
|
2924
3726
|
timeout=None,
|
2925
3727
|
metadata=None):
|
2926
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2927
|
-
modal__proto_dot_api__pb2.
|
2928
|
-
modal__proto_dot_api__pb2.
|
3728
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/QueueLen',
|
3729
|
+
modal__proto_dot_api__pb2.QueueLenRequest.SerializeToString,
|
3730
|
+
modal__proto_dot_api__pb2.QueueLenResponse.FromString,
|
2929
3731
|
options, channel_credentials,
|
2930
3732
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2931
3733
|
|
2932
3734
|
@staticmethod
|
2933
|
-
def
|
3735
|
+
def QueueList(request,
|
2934
3736
|
target,
|
2935
3737
|
options=(),
|
2936
3738
|
channel_credentials=None,
|
@@ -2940,14 +3742,14 @@ class ModalClient(object):
|
|
2940
3742
|
wait_for_ready=None,
|
2941
3743
|
timeout=None,
|
2942
3744
|
metadata=None):
|
2943
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2944
|
-
modal__proto_dot_api__pb2.
|
2945
|
-
modal__proto_dot_api__pb2.
|
3745
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/QueueList',
|
3746
|
+
modal__proto_dot_api__pb2.QueueListRequest.SerializeToString,
|
3747
|
+
modal__proto_dot_api__pb2.QueueListResponse.FromString,
|
2946
3748
|
options, channel_credentials,
|
2947
3749
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2948
3750
|
|
2949
3751
|
@staticmethod
|
2950
|
-
def
|
3752
|
+
def QueueNextItems(request,
|
2951
3753
|
target,
|
2952
3754
|
options=(),
|
2953
3755
|
channel_credentials=None,
|
@@ -2957,14 +3759,14 @@ class ModalClient(object):
|
|
2957
3759
|
wait_for_ready=None,
|
2958
3760
|
timeout=None,
|
2959
3761
|
metadata=None):
|
2960
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2961
|
-
modal__proto_dot_api__pb2.
|
2962
|
-
modal__proto_dot_api__pb2.
|
3762
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/QueueNextItems',
|
3763
|
+
modal__proto_dot_api__pb2.QueueNextItemsRequest.SerializeToString,
|
3764
|
+
modal__proto_dot_api__pb2.QueueNextItemsResponse.FromString,
|
2963
3765
|
options, channel_credentials,
|
2964
3766
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2965
3767
|
|
2966
3768
|
@staticmethod
|
2967
|
-
def
|
3769
|
+
def QueuePut(request,
|
2968
3770
|
target,
|
2969
3771
|
options=(),
|
2970
3772
|
channel_credentials=None,
|
@@ -2974,14 +3776,14 @@ class ModalClient(object):
|
|
2974
3776
|
wait_for_ready=None,
|
2975
3777
|
timeout=None,
|
2976
3778
|
metadata=None):
|
2977
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2978
|
-
modal__proto_dot_api__pb2.
|
2979
|
-
|
3779
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/QueuePut',
|
3780
|
+
modal__proto_dot_api__pb2.QueuePutRequest.SerializeToString,
|
3781
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
2980
3782
|
options, channel_credentials,
|
2981
3783
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2982
3784
|
|
2983
3785
|
@staticmethod
|
2984
|
-
def
|
3786
|
+
def SandboxCreate(request,
|
2985
3787
|
target,
|
2986
3788
|
options=(),
|
2987
3789
|
channel_credentials=None,
|
@@ -2991,14 +3793,14 @@ class ModalClient(object):
|
|
2991
3793
|
wait_for_ready=None,
|
2992
3794
|
timeout=None,
|
2993
3795
|
metadata=None):
|
2994
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
2995
|
-
modal__proto_dot_api__pb2.
|
2996
|
-
|
3796
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SandboxCreate',
|
3797
|
+
modal__proto_dot_api__pb2.SandboxCreateRequest.SerializeToString,
|
3798
|
+
modal__proto_dot_api__pb2.SandboxCreateResponse.FromString,
|
2997
3799
|
options, channel_credentials,
|
2998
3800
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
2999
3801
|
|
3000
3802
|
@staticmethod
|
3001
|
-
def
|
3803
|
+
def SandboxGetLogs(request,
|
3002
3804
|
target,
|
3003
3805
|
options=(),
|
3004
3806
|
channel_credentials=None,
|
@@ -3008,14 +3810,14 @@ class ModalClient(object):
|
|
3008
3810
|
wait_for_ready=None,
|
3009
3811
|
timeout=None,
|
3010
3812
|
metadata=None):
|
3011
|
-
return grpc.experimental.
|
3012
|
-
modal__proto_dot_api__pb2.
|
3013
|
-
|
3813
|
+
return grpc.experimental.unary_stream(request, target, '/modal.client.ModalClient/SandboxGetLogs',
|
3814
|
+
modal__proto_dot_api__pb2.SandboxGetLogsRequest.SerializeToString,
|
3815
|
+
modal__proto_dot_api__pb2.TaskLogsBatch.FromString,
|
3014
3816
|
options, channel_credentials,
|
3015
3817
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3016
3818
|
|
3017
3819
|
@staticmethod
|
3018
|
-
def
|
3820
|
+
def SandboxGetTaskId(request,
|
3019
3821
|
target,
|
3020
3822
|
options=(),
|
3021
3823
|
channel_credentials=None,
|
@@ -3025,14 +3827,14 @@ class ModalClient(object):
|
|
3025
3827
|
wait_for_ready=None,
|
3026
3828
|
timeout=None,
|
3027
3829
|
metadata=None):
|
3028
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3029
|
-
modal__proto_dot_api__pb2.
|
3030
|
-
modal__proto_dot_api__pb2.
|
3830
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SandboxGetTaskId',
|
3831
|
+
modal__proto_dot_api__pb2.SandboxGetTaskIdRequest.SerializeToString,
|
3832
|
+
modal__proto_dot_api__pb2.SandboxGetTaskIdResponse.FromString,
|
3031
3833
|
options, channel_credentials,
|
3032
3834
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3033
3835
|
|
3034
3836
|
@staticmethod
|
3035
|
-
def
|
3837
|
+
def SandboxGetTunnels(request,
|
3036
3838
|
target,
|
3037
3839
|
options=(),
|
3038
3840
|
channel_credentials=None,
|
@@ -3042,14 +3844,14 @@ class ModalClient(object):
|
|
3042
3844
|
wait_for_ready=None,
|
3043
3845
|
timeout=None,
|
3044
3846
|
metadata=None):
|
3045
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3046
|
-
modal__proto_dot_api__pb2.
|
3047
|
-
modal__proto_dot_api__pb2.
|
3847
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SandboxGetTunnels',
|
3848
|
+
modal__proto_dot_api__pb2.SandboxGetTunnelsRequest.SerializeToString,
|
3849
|
+
modal__proto_dot_api__pb2.SandboxGetTunnelsResponse.FromString,
|
3048
3850
|
options, channel_credentials,
|
3049
3851
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3050
3852
|
|
3051
3853
|
@staticmethod
|
3052
|
-
def
|
3854
|
+
def SandboxList(request,
|
3053
3855
|
target,
|
3054
3856
|
options=(),
|
3055
3857
|
channel_credentials=None,
|
@@ -3059,14 +3861,14 @@ class ModalClient(object):
|
|
3059
3861
|
wait_for_ready=None,
|
3060
3862
|
timeout=None,
|
3061
3863
|
metadata=None):
|
3062
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3063
|
-
modal__proto_dot_api__pb2.
|
3064
|
-
modal__proto_dot_api__pb2.
|
3864
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SandboxList',
|
3865
|
+
modal__proto_dot_api__pb2.SandboxListRequest.SerializeToString,
|
3866
|
+
modal__proto_dot_api__pb2.SandboxListResponse.FromString,
|
3065
3867
|
options, channel_credentials,
|
3066
3868
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3067
3869
|
|
3068
3870
|
@staticmethod
|
3069
|
-
def
|
3871
|
+
def SandboxSnapshotFs(request,
|
3070
3872
|
target,
|
3071
3873
|
options=(),
|
3072
3874
|
channel_credentials=None,
|
@@ -3076,14 +3878,14 @@ class ModalClient(object):
|
|
3076
3878
|
wait_for_ready=None,
|
3077
3879
|
timeout=None,
|
3078
3880
|
metadata=None):
|
3079
|
-
return grpc.experimental.
|
3080
|
-
modal__proto_dot_api__pb2.
|
3081
|
-
modal__proto_dot_api__pb2.
|
3881
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SandboxSnapshotFs',
|
3882
|
+
modal__proto_dot_api__pb2.SandboxSnapshotFsRequest.SerializeToString,
|
3883
|
+
modal__proto_dot_api__pb2.SandboxSnapshotFsResponse.FromString,
|
3082
3884
|
options, channel_credentials,
|
3083
3885
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3084
3886
|
|
3085
3887
|
@staticmethod
|
3086
|
-
def
|
3888
|
+
def SandboxStdinWrite(request,
|
3087
3889
|
target,
|
3088
3890
|
options=(),
|
3089
3891
|
channel_credentials=None,
|
@@ -3093,14 +3895,14 @@ class ModalClient(object):
|
|
3093
3895
|
wait_for_ready=None,
|
3094
3896
|
timeout=None,
|
3095
3897
|
metadata=None):
|
3096
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3097
|
-
modal__proto_dot_api__pb2.
|
3098
|
-
modal__proto_dot_api__pb2.
|
3898
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SandboxStdinWrite',
|
3899
|
+
modal__proto_dot_api__pb2.SandboxStdinWriteRequest.SerializeToString,
|
3900
|
+
modal__proto_dot_api__pb2.SandboxStdinWriteResponse.FromString,
|
3099
3901
|
options, channel_credentials,
|
3100
3902
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3101
3903
|
|
3102
3904
|
@staticmethod
|
3103
|
-
def
|
3905
|
+
def SandboxTagsSet(request,
|
3104
3906
|
target,
|
3105
3907
|
options=(),
|
3106
3908
|
channel_credentials=None,
|
@@ -3110,9 +3912,9 @@ class ModalClient(object):
|
|
3110
3912
|
wait_for_ready=None,
|
3111
3913
|
timeout=None,
|
3112
3914
|
metadata=None):
|
3113
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3114
|
-
modal__proto_dot_api__pb2.
|
3115
|
-
|
3915
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SandboxTagsSet',
|
3916
|
+
modal__proto_dot_api__pb2.SandboxTagsSetRequest.SerializeToString,
|
3917
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
3116
3918
|
options, channel_credentials,
|
3117
3919
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3118
3920
|
|
@@ -3134,7 +3936,7 @@ class ModalClient(object):
|
|
3134
3936
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3135
3937
|
|
3136
3938
|
@staticmethod
|
3137
|
-
def
|
3939
|
+
def SandboxWait(request,
|
3138
3940
|
target,
|
3139
3941
|
options=(),
|
3140
3942
|
channel_credentials=None,
|
@@ -3144,14 +3946,14 @@ class ModalClient(object):
|
|
3144
3946
|
wait_for_ready=None,
|
3145
3947
|
timeout=None,
|
3146
3948
|
metadata=None):
|
3147
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3148
|
-
modal__proto_dot_api__pb2.
|
3149
|
-
modal__proto_dot_api__pb2.
|
3949
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SandboxWait',
|
3950
|
+
modal__proto_dot_api__pb2.SandboxWaitRequest.SerializeToString,
|
3951
|
+
modal__proto_dot_api__pb2.SandboxWaitResponse.FromString,
|
3150
3952
|
options, channel_credentials,
|
3151
3953
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3152
3954
|
|
3153
3955
|
@staticmethod
|
3154
|
-
def
|
3956
|
+
def SecretDelete(request,
|
3155
3957
|
target,
|
3156
3958
|
options=(),
|
3157
3959
|
channel_credentials=None,
|
@@ -3161,9 +3963,9 @@ class ModalClient(object):
|
|
3161
3963
|
wait_for_ready=None,
|
3162
3964
|
timeout=None,
|
3163
3965
|
metadata=None):
|
3164
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3165
|
-
modal__proto_dot_api__pb2.
|
3166
|
-
|
3966
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SecretDelete',
|
3967
|
+
modal__proto_dot_api__pb2.SecretDeleteRequest.SerializeToString,
|
3968
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
3167
3969
|
options, channel_credentials,
|
3168
3970
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3169
3971
|
|
@@ -3202,7 +4004,7 @@ class ModalClient(object):
|
|
3202
4004
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3203
4005
|
|
3204
4006
|
@staticmethod
|
3205
|
-
def
|
4007
|
+
def SharedVolumeDelete(request,
|
3206
4008
|
target,
|
3207
4009
|
options=(),
|
3208
4010
|
channel_credentials=None,
|
@@ -3212,14 +4014,31 @@ class ModalClient(object):
|
|
3212
4014
|
wait_for_ready=None,
|
3213
4015
|
timeout=None,
|
3214
4016
|
metadata=None):
|
3215
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3216
|
-
modal__proto_dot_api__pb2.
|
3217
|
-
|
4017
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SharedVolumeDelete',
|
4018
|
+
modal__proto_dot_api__pb2.SharedVolumeDeleteRequest.SerializeToString,
|
4019
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
4020
|
+
options, channel_credentials,
|
4021
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
4022
|
+
|
4023
|
+
@staticmethod
|
4024
|
+
def SharedVolumeGetFile(request,
|
4025
|
+
target,
|
4026
|
+
options=(),
|
4027
|
+
channel_credentials=None,
|
4028
|
+
call_credentials=None,
|
4029
|
+
insecure=False,
|
4030
|
+
compression=None,
|
4031
|
+
wait_for_ready=None,
|
4032
|
+
timeout=None,
|
4033
|
+
metadata=None):
|
4034
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SharedVolumeGetFile',
|
4035
|
+
modal__proto_dot_api__pb2.SharedVolumeGetFileRequest.SerializeToString,
|
4036
|
+
modal__proto_dot_api__pb2.SharedVolumeGetFileResponse.FromString,
|
3218
4037
|
options, channel_credentials,
|
3219
4038
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3220
4039
|
|
3221
4040
|
@staticmethod
|
3222
|
-
def
|
4041
|
+
def SharedVolumeGetOrCreate(request,
|
3223
4042
|
target,
|
3224
4043
|
options=(),
|
3225
4044
|
channel_credentials=None,
|
@@ -3229,9 +4048,9 @@ class ModalClient(object):
|
|
3229
4048
|
wait_for_ready=None,
|
3230
4049
|
timeout=None,
|
3231
4050
|
metadata=None):
|
3232
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3233
|
-
modal__proto_dot_api__pb2.
|
3234
|
-
modal__proto_dot_api__pb2.
|
4051
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SharedVolumeGetOrCreate',
|
4052
|
+
modal__proto_dot_api__pb2.SharedVolumeGetOrCreateRequest.SerializeToString,
|
4053
|
+
modal__proto_dot_api__pb2.SharedVolumeGetOrCreateResponse.FromString,
|
3235
4054
|
options, channel_credentials,
|
3236
4055
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3237
4056
|
|
@@ -3321,7 +4140,7 @@ class ModalClient(object):
|
|
3321
4140
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3322
4141
|
|
3323
4142
|
@staticmethod
|
3324
|
-
def
|
4143
|
+
def SharedVolumeRemoveFile(request,
|
3325
4144
|
target,
|
3326
4145
|
options=(),
|
3327
4146
|
channel_credentials=None,
|
@@ -3331,14 +4150,14 @@ class ModalClient(object):
|
|
3331
4150
|
wait_for_ready=None,
|
3332
4151
|
timeout=None,
|
3333
4152
|
metadata=None):
|
3334
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3335
|
-
modal__proto_dot_api__pb2.
|
3336
|
-
|
4153
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/SharedVolumeRemoveFile',
|
4154
|
+
modal__proto_dot_api__pb2.SharedVolumeRemoveFileRequest.SerializeToString,
|
4155
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
3337
4156
|
options, channel_credentials,
|
3338
4157
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3339
4158
|
|
3340
4159
|
@staticmethod
|
3341
|
-
def
|
4160
|
+
def TaskClusterHello(request,
|
3342
4161
|
target,
|
3343
4162
|
options=(),
|
3344
4163
|
channel_credentials=None,
|
@@ -3348,14 +4167,14 @@ class ModalClient(object):
|
|
3348
4167
|
wait_for_ready=None,
|
3349
4168
|
timeout=None,
|
3350
4169
|
metadata=None):
|
3351
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3352
|
-
modal__proto_dot_api__pb2.
|
3353
|
-
|
4170
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/TaskClusterHello',
|
4171
|
+
modal__proto_dot_api__pb2.TaskClusterHelloRequest.SerializeToString,
|
4172
|
+
modal__proto_dot_api__pb2.TaskClusterHelloResponse.FromString,
|
3354
4173
|
options, channel_credentials,
|
3355
4174
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3356
4175
|
|
3357
4176
|
@staticmethod
|
3358
|
-
def
|
4177
|
+
def TaskCurrentInputs(request,
|
3359
4178
|
target,
|
3360
4179
|
options=(),
|
3361
4180
|
channel_credentials=None,
|
@@ -3365,9 +4184,9 @@ class ModalClient(object):
|
|
3365
4184
|
wait_for_ready=None,
|
3366
4185
|
timeout=None,
|
3367
4186
|
metadata=None):
|
3368
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3369
|
-
|
3370
|
-
|
4187
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/TaskCurrentInputs',
|
4188
|
+
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
4189
|
+
modal__proto_dot_api__pb2.TaskCurrentInputsResponse.FromString,
|
3371
4190
|
options, channel_credentials,
|
3372
4191
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3373
4192
|
|
@@ -3389,7 +4208,7 @@ class ModalClient(object):
|
|
3389
4208
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3390
4209
|
|
3391
4210
|
@staticmethod
|
3392
|
-
def
|
4211
|
+
def TaskResult(request,
|
3393
4212
|
target,
|
3394
4213
|
options=(),
|
3395
4214
|
channel_credentials=None,
|
@@ -3399,9 +4218,9 @@ class ModalClient(object):
|
|
3399
4218
|
wait_for_ready=None,
|
3400
4219
|
timeout=None,
|
3401
4220
|
metadata=None):
|
3402
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3403
|
-
|
3404
|
-
|
4221
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/TaskResult',
|
4222
|
+
modal__proto_dot_api__pb2.TaskResultRequest.SerializeToString,
|
4223
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
3405
4224
|
options, channel_credentials,
|
3406
4225
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3407
4226
|
|
@@ -3474,7 +4293,7 @@ class ModalClient(object):
|
|
3474
4293
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3475
4294
|
|
3476
4295
|
@staticmethod
|
3477
|
-
def
|
4296
|
+
def VolumeCommit(request,
|
3478
4297
|
target,
|
3479
4298
|
options=(),
|
3480
4299
|
channel_credentials=None,
|
@@ -3484,14 +4303,14 @@ class ModalClient(object):
|
|
3484
4303
|
wait_for_ready=None,
|
3485
4304
|
timeout=None,
|
3486
4305
|
metadata=None):
|
3487
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3488
|
-
modal__proto_dot_api__pb2.
|
3489
|
-
modal__proto_dot_api__pb2.
|
4306
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/VolumeCommit',
|
4307
|
+
modal__proto_dot_api__pb2.VolumeCommitRequest.SerializeToString,
|
4308
|
+
modal__proto_dot_api__pb2.VolumeCommitResponse.FromString,
|
3490
4309
|
options, channel_credentials,
|
3491
4310
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3492
4311
|
|
3493
4312
|
@staticmethod
|
3494
|
-
def
|
4313
|
+
def VolumeCopyFiles(request,
|
3495
4314
|
target,
|
3496
4315
|
options=(),
|
3497
4316
|
channel_credentials=None,
|
@@ -3501,14 +4320,14 @@ class ModalClient(object):
|
|
3501
4320
|
wait_for_ready=None,
|
3502
4321
|
timeout=None,
|
3503
4322
|
metadata=None):
|
3504
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3505
|
-
modal__proto_dot_api__pb2.
|
3506
|
-
|
4323
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/VolumeCopyFiles',
|
4324
|
+
modal__proto_dot_api__pb2.VolumeCopyFilesRequest.SerializeToString,
|
4325
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
3507
4326
|
options, channel_credentials,
|
3508
4327
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3509
4328
|
|
3510
4329
|
@staticmethod
|
3511
|
-
def
|
4330
|
+
def VolumeDelete(request,
|
3512
4331
|
target,
|
3513
4332
|
options=(),
|
3514
4333
|
channel_credentials=None,
|
@@ -3518,14 +4337,14 @@ class ModalClient(object):
|
|
3518
4337
|
wait_for_ready=None,
|
3519
4338
|
timeout=None,
|
3520
4339
|
metadata=None):
|
3521
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3522
|
-
modal__proto_dot_api__pb2.
|
4340
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/VolumeDelete',
|
4341
|
+
modal__proto_dot_api__pb2.VolumeDeleteRequest.SerializeToString,
|
3523
4342
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
3524
4343
|
options, channel_credentials,
|
3525
4344
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3526
4345
|
|
3527
4346
|
@staticmethod
|
3528
|
-
def
|
4347
|
+
def VolumeGetFile(request,
|
3529
4348
|
target,
|
3530
4349
|
options=(),
|
3531
4350
|
channel_credentials=None,
|
@@ -3535,14 +4354,14 @@ class ModalClient(object):
|
|
3535
4354
|
wait_for_ready=None,
|
3536
4355
|
timeout=None,
|
3537
4356
|
metadata=None):
|
3538
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3539
|
-
modal__proto_dot_api__pb2.
|
3540
|
-
modal__proto_dot_api__pb2.
|
4357
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/VolumeGetFile',
|
4358
|
+
modal__proto_dot_api__pb2.VolumeGetFileRequest.SerializeToString,
|
4359
|
+
modal__proto_dot_api__pb2.VolumeGetFileResponse.FromString,
|
3541
4360
|
options, channel_credentials,
|
3542
4361
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3543
4362
|
|
3544
4363
|
@staticmethod
|
3545
|
-
def
|
4364
|
+
def VolumeGetOrCreate(request,
|
3546
4365
|
target,
|
3547
4366
|
options=(),
|
3548
4367
|
channel_credentials=None,
|
@@ -3552,14 +4371,14 @@ class ModalClient(object):
|
|
3552
4371
|
wait_for_ready=None,
|
3553
4372
|
timeout=None,
|
3554
4373
|
metadata=None):
|
3555
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3556
|
-
modal__proto_dot_api__pb2.
|
3557
|
-
|
4374
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/VolumeGetOrCreate',
|
4375
|
+
modal__proto_dot_api__pb2.VolumeGetOrCreateRequest.SerializeToString,
|
4376
|
+
modal__proto_dot_api__pb2.VolumeGetOrCreateResponse.FromString,
|
3558
4377
|
options, channel_credentials,
|
3559
4378
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3560
4379
|
|
3561
4380
|
@staticmethod
|
3562
|
-
def
|
4381
|
+
def VolumeHeartbeat(request,
|
3563
4382
|
target,
|
3564
4383
|
options=(),
|
3565
4384
|
channel_credentials=None,
|
@@ -3569,9 +4388,9 @@ class ModalClient(object):
|
|
3569
4388
|
wait_for_ready=None,
|
3570
4389
|
timeout=None,
|
3571
4390
|
metadata=None):
|
3572
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3573
|
-
modal__proto_dot_api__pb2.
|
3574
|
-
|
4391
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/VolumeHeartbeat',
|
4392
|
+
modal__proto_dot_api__pb2.VolumeHeartbeatRequest.SerializeToString,
|
4393
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
3575
4394
|
options, channel_credentials,
|
3576
4395
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3577
4396
|
|
@@ -3661,7 +4480,7 @@ class ModalClient(object):
|
|
3661
4480
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
3662
4481
|
|
3663
4482
|
@staticmethod
|
3664
|
-
def
|
4483
|
+
def VolumeRename(request,
|
3665
4484
|
target,
|
3666
4485
|
options=(),
|
3667
4486
|
channel_credentials=None,
|
@@ -3671,8 +4490,8 @@ class ModalClient(object):
|
|
3671
4490
|
wait_for_ready=None,
|
3672
4491
|
timeout=None,
|
3673
4492
|
metadata=None):
|
3674
|
-
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/
|
3675
|
-
modal__proto_dot_api__pb2.
|
4493
|
+
return grpc.experimental.unary_unary(request, target, '/modal.client.ModalClient/VolumeRename',
|
4494
|
+
modal__proto_dot_api__pb2.VolumeRenameRequest.SerializeToString,
|
3676
4495
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
3677
4496
|
options, channel_credentials,
|
3678
4497
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|