modal 0.72.34__py3-none-any.whl → 0.72.36__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/client.pyi +2 -2
- modal/functions.py +2 -1
- modal/functions.pyi +6 -6
- modal/sandbox.py +2 -1
- {modal-0.72.34.dist-info → modal-0.72.36.dist-info}/METADATA +1 -1
- {modal-0.72.34.dist-info → modal-0.72.36.dist-info}/RECORD +18 -18
- modal_proto/api.proto +20 -2
- modal_proto/api_grpc.py +32 -0
- modal_proto/api_pb2.py +566 -532
- modal_proto/api_pb2.pyi +56 -2
- modal_proto/api_pb2_grpc.py +67 -1
- modal_proto/api_pb2_grpc.pyi +23 -3
- modal_proto/modal_api_grpc.py +2 -0
- modal_version/_version_generated.py +1 -1
- {modal-0.72.34.dist-info → modal-0.72.36.dist-info}/LICENSE +0 -0
- {modal-0.72.34.dist-info → modal-0.72.36.dist-info}/WHEEL +0 -0
- {modal-0.72.34.dist-info → modal-0.72.36.dist-info}/entry_points.txt +0 -0
- {modal-0.72.34.dist-info → modal-0.72.36.dist-info}/top_level.txt +0 -0
modal/client.pyi
CHANGED
@@ -27,7 +27,7 @@ class _Client:
|
|
27
27
|
_snapshotted: bool
|
28
28
|
|
29
29
|
def __init__(
|
30
|
-
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.72.
|
30
|
+
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.72.36"
|
31
31
|
): ...
|
32
32
|
def is_closed(self) -> bool: ...
|
33
33
|
@property
|
@@ -83,7 +83,7 @@ class Client:
|
|
83
83
|
_snapshotted: bool
|
84
84
|
|
85
85
|
def __init__(
|
86
|
-
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.72.
|
86
|
+
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.72.36"
|
87
87
|
): ...
|
88
88
|
def is_closed(self) -> bool: ...
|
89
89
|
@property
|
modal/functions.py
CHANGED
@@ -785,7 +785,8 @@ class _Function(typing.Generic[P, ReturnType, OriginalReturnType], _Object, type
|
|
785
785
|
task_idle_timeout_secs=container_idle_timeout or 0,
|
786
786
|
concurrency_limit=concurrency_limit or 0,
|
787
787
|
pty_info=pty_info,
|
788
|
-
cloud_provider=cloud_provider,
|
788
|
+
cloud_provider=cloud_provider, # Deprecated at some point
|
789
|
+
cloud_provider_str=cloud.upper() if cloud else "", # Supersedes cloud_provider
|
789
790
|
warm_pool_size=keep_warm or 0,
|
790
791
|
runtime=config.get("function_runtime"),
|
791
792
|
runtime_debug=config.get("function_runtime_debug"),
|
modal/functions.pyi
CHANGED
@@ -463,11 +463,11 @@ class Function(typing.Generic[P, ReturnType, OriginalReturnType], modal.object.O
|
|
463
463
|
|
464
464
|
_call_generator_nowait: ___call_generator_nowait_spec
|
465
465
|
|
466
|
-
class __remote_spec(typing_extensions.Protocol[
|
466
|
+
class __remote_spec(typing_extensions.Protocol[P_INNER, ReturnType_INNER]):
|
467
467
|
def __call__(self, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> ReturnType_INNER: ...
|
468
468
|
async def aio(self, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> ReturnType_INNER: ...
|
469
469
|
|
470
|
-
remote: __remote_spec[
|
470
|
+
remote: __remote_spec[P, ReturnType]
|
471
471
|
|
472
472
|
class __remote_gen_spec(typing_extensions.Protocol):
|
473
473
|
def __call__(self, *args, **kwargs) -> typing.Generator[typing.Any, None, None]: ...
|
@@ -480,17 +480,17 @@ class Function(typing.Generic[P, ReturnType, OriginalReturnType], modal.object.O
|
|
480
480
|
def _get_obj(self) -> typing.Optional[modal.cls.Obj]: ...
|
481
481
|
def local(self, *args: P.args, **kwargs: P.kwargs) -> OriginalReturnType: ...
|
482
482
|
|
483
|
-
class ___experimental_spawn_spec(typing_extensions.Protocol[
|
483
|
+
class ___experimental_spawn_spec(typing_extensions.Protocol[P_INNER, ReturnType_INNER]):
|
484
484
|
def __call__(self, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]: ...
|
485
485
|
async def aio(self, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]: ...
|
486
486
|
|
487
|
-
_experimental_spawn: ___experimental_spawn_spec[
|
487
|
+
_experimental_spawn: ___experimental_spawn_spec[P, ReturnType]
|
488
488
|
|
489
|
-
class __spawn_spec(typing_extensions.Protocol[
|
489
|
+
class __spawn_spec(typing_extensions.Protocol[P_INNER, ReturnType_INNER]):
|
490
490
|
def __call__(self, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]: ...
|
491
491
|
async def aio(self, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]: ...
|
492
492
|
|
493
|
-
spawn: __spawn_spec[
|
493
|
+
spawn: __spawn_spec[P, ReturnType]
|
494
494
|
|
495
495
|
def get_raw_f(self) -> typing.Callable[..., typing.Any]: ...
|
496
496
|
|
modal/sandbox.py
CHANGED
@@ -165,7 +165,8 @@ class _Sandbox(_Object, type_prefix="sb"):
|
|
165
165
|
resources=convert_fn_config_to_resources_config(
|
166
166
|
cpu=cpu, memory=memory, gpu=gpu, ephemeral_disk=ephemeral_disk
|
167
167
|
),
|
168
|
-
cloud_provider=parse_cloud_provider(cloud) if cloud else None,
|
168
|
+
cloud_provider=parse_cloud_provider(cloud) if cloud else None, # Deprecated at some point
|
169
|
+
cloud_provider_str=cloud.upper() if cloud else None, # Supersedes cloud_provider
|
169
170
|
nfs_mounts=network_file_system_mount_protos(validated_network_file_systems, False),
|
170
171
|
runtime_debug=config.get("function_runtime_debug"),
|
171
172
|
cloud_bucket_mounts=cloud_bucket_mounts_to_proto(cloud_bucket_mounts),
|
@@ -20,7 +20,7 @@ modal/app.py,sha256=UOuqlCKlFAjOXCacXmoEMM90FnqFwPRXUhLh0Gi6xzg,45344
|
|
20
20
|
modal/app.pyi,sha256=5D3LkPP6qvTIl2_YgiyhNQ9X4VsOVuxd69a23UmohDg,25477
|
21
21
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
22
22
|
modal/client.py,sha256=8SQawr7P1PNUCq1UmJMUQXG2jIo4Nmdcs311XqrNLRE,15276
|
23
|
-
modal/client.pyi,sha256=
|
23
|
+
modal/client.pyi,sha256=6X3cs5TRTn1yKyl5IPh2O7Tqkk_F6fJIOTw6f7Cb2JQ,7326
|
24
24
|
modal/cloud_bucket_mount.py,sha256=YOe9nnvSr4ZbeCn587d7_VhE9IioZYRvF9VYQTQux08,5914
|
25
25
|
modal/cloud_bucket_mount.pyi,sha256=30T3K1a89l6wzmEJ_J9iWv9SknoGqaZDx59Xs-ZQcmk,1607
|
26
26
|
modal/cls.py,sha256=xHgZZAmymplw0I2YZGAA8raBboixdNKKTrnsxQZI7G8,32159
|
@@ -37,8 +37,8 @@ modal/experimental.py,sha256=npfKbyMpI41uZZs9HW_QiB3E4ykWfDXZbACXXbw6qeA,2385
|
|
37
37
|
modal/file_io.py,sha256=lcMs_E9Xfm0YX1t9U2wNIBPnqHRxmImqjLW1GHqVmyg,20945
|
38
38
|
modal/file_io.pyi,sha256=NrIoB0YjIqZ8MDMe826xAnybT0ww_kxQM3iPLo82REU,8898
|
39
39
|
modal/file_pattern_matcher.py,sha256=dSo7BMQGZBAuoBFOX-e_72HxmF3FLzjQlEtnGtJiaD4,6506
|
40
|
-
modal/functions.py,sha256=
|
41
|
-
modal/functions.pyi,sha256=
|
40
|
+
modal/functions.py,sha256=JLQxVn1VEyQMEFzqT1ibDradkb1mvrATJ41zvfffA4I,68499
|
41
|
+
modal/functions.pyi,sha256=eoXG53WPMnHY7N8dblghdLEBQ47k8uiSSaCDP9LfNxA,25473
|
42
42
|
modal/gpu.py,sha256=rcBwbE-_e2hEUr3VJbr1EgQDRb6aieJKx6G2oQdyBhE,7462
|
43
43
|
modal/image.py,sha256=leeY7fLfFjS0IqTi3D4cRxIDOb80BPtb3jsQfqvVJ8c,90912
|
44
44
|
modal/image.pyi,sha256=X9vj6cwBdYh8q_2cOd-2RSYNMF49ujcy0lrOXh_v1xc,26049
|
@@ -64,7 +64,7 @@ modal/retries.py,sha256=HKR2Q9aNPWkMjQ5nwobqYTuZaSuw0a8lI2zrtY5IW98,5230
|
|
64
64
|
modal/runner.py,sha256=0SCMgKO8lZ9W1C7le1EcgViKERMXpi_-QBd6PF_MH0Q,24450
|
65
65
|
modal/runner.pyi,sha256=YmP4EOCNjjkwSIPi2Gl6hF_ji_ytkxz9dw3iB9KXaOI,5275
|
66
66
|
modal/running_app.py,sha256=v61mapYNV1-O-Uaho5EfJlryMLvIT9We0amUOSvSGx8,1188
|
67
|
-
modal/sandbox.py,sha256=
|
67
|
+
modal/sandbox.py,sha256=Au_CdStaksvu2VY6hGvSjdTxAQEsWs0ksfuuuROqmac,28955
|
68
68
|
modal/sandbox.pyi,sha256=dCyU848YARwQwoYR19o2A9L6rfB5JFz276VGQ-aZId8,20831
|
69
69
|
modal/schedule.py,sha256=0ZFpKs1bOxeo5n3HZjoL7OE2ktsb-_oGtq-WJEPO4tY,2615
|
70
70
|
modal/scheduler_placement.py,sha256=BAREdOY5HzHpzSBqt6jDVR6YC_jYfHMVqOzkyqQfngU,1235
|
@@ -149,13 +149,13 @@ modal_global_objects/mounts/__init__.py,sha256=MIEP8jhXUeGq_eCjYFcqN5b1bxBM4fdk0
|
|
149
149
|
modal_global_objects/mounts/modal_client_package.py,sha256=W0E_yShsRojPzWm6LtIQqNVolapdnrZkm2hVEQuZK_4,767
|
150
150
|
modal_global_objects/mounts/python_standalone.py,sha256=pEML5GaV2_0ahci_1vpfc_FnySpsfi2fhYmFF5I7IiQ,1837
|
151
151
|
modal_proto/__init__.py,sha256=MIEP8jhXUeGq_eCjYFcqN5b1bxBM4fdk0VESpjWR0fc,28
|
152
|
-
modal_proto/api.proto,sha256=
|
153
|
-
modal_proto/api_grpc.py,sha256=
|
154
|
-
modal_proto/api_pb2.py,sha256=
|
155
|
-
modal_proto/api_pb2.pyi,sha256=
|
156
|
-
modal_proto/api_pb2_grpc.py,sha256=
|
157
|
-
modal_proto/api_pb2_grpc.pyi,sha256=
|
158
|
-
modal_proto/modal_api_grpc.py,sha256=
|
152
|
+
modal_proto/api.proto,sha256=hhpsbyLV6Rziyb9pGIw6zVcR30G4ueV3B9qD-8JtwCE,84899
|
153
|
+
modal_proto/api_grpc.py,sha256=UH63GuZR9AQFBgk5UdNEnjREgkejsnMH7H9KaRjzpiY,108244
|
154
|
+
modal_proto/api_pb2.py,sha256=WrVMzHddqlxj1GXpBz4ciqa0L9PVC6uRDxo3OWF3GV0,309536
|
155
|
+
modal_proto/api_pb2.pyi,sha256=rJxZnSSLOI9GjNaGDnRtc9XASiB9128Hnbb01PRAunM,412814
|
156
|
+
modal_proto/api_pb2_grpc.py,sha256=0STIhGJkO5sN2JnGKmoNGT38EK-kti4oXziPi-_hty8,234054
|
157
|
+
modal_proto/api_pb2_grpc.pyi,sha256=KUZw2u9D23f2QI9Khd_FD8HGPOJksPOTiZGLN3HSPuM,54491
|
158
|
+
modal_proto/modal_api_grpc.py,sha256=4sdBOwimIgkh8OmBsiRQHgB2hTBp6mT7lfEukN6GYb4,14444
|
159
159
|
modal_proto/modal_options_grpc.py,sha256=qJ1cuwA54oRqrdTyPTbvfhFZYd9HhJKK5UCwt523r3Y,120
|
160
160
|
modal_proto/options.proto,sha256=a-siq4swVbZPfaFRXAipRZzGP2bq8OsdUvjlyzAeodQ,488
|
161
161
|
modal_proto/options_grpc.py,sha256=M18X3d-8F_cNYSVM3I25dUTO5rZ0rd-vCCfynfh13Nc,125
|
@@ -166,10 +166,10 @@ modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0y
|
|
166
166
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
167
167
|
modal_version/__init__.py,sha256=kGya2ZlItX2zB7oHORs-wvP4PG8lg_mtbi1QIK3G6SQ,470
|
168
168
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
169
|
-
modal_version/_version_generated.py,sha256=
|
170
|
-
modal-0.72.
|
171
|
-
modal-0.72.
|
172
|
-
modal-0.72.
|
173
|
-
modal-0.72.
|
174
|
-
modal-0.72.
|
175
|
-
modal-0.72.
|
169
|
+
modal_version/_version_generated.py,sha256=_-XkotRkA8vwh-9aU2yqrQqZ-npHVab30PojNeEQ6Ko,149
|
170
|
+
modal-0.72.36.dist-info/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
171
|
+
modal-0.72.36.dist-info/METADATA,sha256=5yAsDaawujE-MJ84Qy-ju9383RWwNKd0NMFe7Q57lnY,2329
|
172
|
+
modal-0.72.36.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
173
|
+
modal-0.72.36.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
174
|
+
modal-0.72.36.dist-info/top_level.txt,sha256=1nvYbOSIKcmU50fNrpnQnrrOpj269ei3LzgB6j9xGqg,64
|
175
|
+
modal-0.72.36.dist-info/RECORD,,
|
modal_proto/api.proto
CHANGED
@@ -1163,7 +1163,7 @@ message Function {
|
|
1163
1163
|
|
1164
1164
|
uint32 task_idle_timeout_secs = 25;
|
1165
1165
|
|
1166
|
-
optional CloudProvider cloud_provider = 26;
|
1166
|
+
optional CloudProvider cloud_provider = 26; // Deprecated at some point
|
1167
1167
|
|
1168
1168
|
uint32 warm_pool_size = 27;
|
1169
1169
|
|
@@ -1257,6 +1257,8 @@ message Function {
|
|
1257
1257
|
bool method_definitions_set = 75;
|
1258
1258
|
|
1259
1259
|
bool _experimental_custom_scaling = 76;
|
1260
|
+
|
1261
|
+
string cloud_provider_str = 77; // Supersedes cloud_provider
|
1260
1262
|
}
|
1261
1263
|
|
1262
1264
|
message FunctionAsyncInvokeRequest {
|
@@ -2002,6 +2004,14 @@ message Proxy {
|
|
2002
2004
|
repeated ProxyIp proxy_ips = 4;
|
2003
2005
|
}
|
2004
2006
|
|
2007
|
+
message ProxyAddIpRequest {
|
2008
|
+
string proxy_id = 1 [ (modal.options.audit_target_attr) = true ];
|
2009
|
+
}
|
2010
|
+
|
2011
|
+
message ProxyAddIpResponse {
|
2012
|
+
ProxyIp proxy_ip = 1;
|
2013
|
+
}
|
2014
|
+
|
2005
2015
|
message ProxyCreateRequest {
|
2006
2016
|
string name = 1 [ (modal.options.audit_target_attr) = true ];
|
2007
2017
|
string environment_name = 2;
|
@@ -2054,6 +2064,10 @@ message ProxyListResponse {
|
|
2054
2064
|
repeated Proxy proxies = 1;
|
2055
2065
|
}
|
2056
2066
|
|
2067
|
+
message ProxyRemoveIpRequest {
|
2068
|
+
string proxy_ip = 1 [ (modal.options.audit_target_attr) = true ];
|
2069
|
+
}
|
2070
|
+
|
2057
2071
|
message QueueClearRequest {
|
2058
2072
|
string queue_id = 1;
|
2059
2073
|
bytes partition_key = 2;
|
@@ -2193,7 +2207,7 @@ message Sandbox {
|
|
2193
2207
|
repeated string secret_ids = 4;
|
2194
2208
|
|
2195
2209
|
Resources resources = 5;
|
2196
|
-
CloudProvider cloud_provider = 6;
|
2210
|
+
CloudProvider cloud_provider = 6; // Deprecated at some point
|
2197
2211
|
|
2198
2212
|
uint32 timeout_secs = 7;
|
2199
2213
|
|
@@ -2237,6 +2251,8 @@ message Sandbox {
|
|
2237
2251
|
// Used to pin gVisor version for memory-snapshottable sandboxes.
|
2238
2252
|
// This field is set by the server, not the client.
|
2239
2253
|
optional uint32 snapshot_version = 25;
|
2254
|
+
|
2255
|
+
string cloud_provider_str = 26; // Supersedes cloud_provider
|
2240
2256
|
}
|
2241
2257
|
|
2242
2258
|
message SandboxCreateRequest {
|
@@ -2939,11 +2955,13 @@ service ModalClient {
|
|
2939
2955
|
rpc NotebookKernelPublishResults(NotebookKernelPublishResultsRequest) returns (google.protobuf.Empty);
|
2940
2956
|
|
2941
2957
|
// Proxies
|
2958
|
+
rpc ProxyAddIp(ProxyAddIpRequest) returns (ProxyAddIpResponse);
|
2942
2959
|
rpc ProxyCreate(ProxyCreateRequest) returns (ProxyCreateResponse);
|
2943
2960
|
rpc ProxyDelete(ProxyDeleteRequest) returns (google.protobuf.Empty);
|
2944
2961
|
rpc ProxyGet(ProxyGetRequest) returns (ProxyGetResponse);
|
2945
2962
|
rpc ProxyGetOrCreate(ProxyGetOrCreateRequest) returns (ProxyGetOrCreateResponse);
|
2946
2963
|
rpc ProxyList(google.protobuf.Empty) returns (ProxyListResponse);
|
2964
|
+
rpc ProxyRemoveIp(ProxyRemoveIpRequest) returns (google.protobuf.Empty);
|
2947
2965
|
|
2948
2966
|
// Queues
|
2949
2967
|
rpc QueueClear(QueueClearRequest) returns (google.protobuf.Empty);
|
modal_proto/api_grpc.py
CHANGED
@@ -334,6 +334,10 @@ class ModalClientBase(abc.ABC):
|
|
334
334
|
async def NotebookKernelPublishResults(self, stream: 'grpclib.server.Stream[modal_proto.api_pb2.NotebookKernelPublishResultsRequest, google.protobuf.empty_pb2.Empty]') -> None:
|
335
335
|
pass
|
336
336
|
|
337
|
+
@abc.abstractmethod
|
338
|
+
async def ProxyAddIp(self, stream: 'grpclib.server.Stream[modal_proto.api_pb2.ProxyAddIpRequest, modal_proto.api_pb2.ProxyAddIpResponse]') -> None:
|
339
|
+
pass
|
340
|
+
|
337
341
|
@abc.abstractmethod
|
338
342
|
async def ProxyCreate(self, stream: 'grpclib.server.Stream[modal_proto.api_pb2.ProxyCreateRequest, modal_proto.api_pb2.ProxyCreateResponse]') -> None:
|
339
343
|
pass
|
@@ -354,6 +358,10 @@ class ModalClientBase(abc.ABC):
|
|
354
358
|
async def ProxyList(self, stream: 'grpclib.server.Stream[google.protobuf.empty_pb2.Empty, modal_proto.api_pb2.ProxyListResponse]') -> None:
|
355
359
|
pass
|
356
360
|
|
361
|
+
@abc.abstractmethod
|
362
|
+
async def ProxyRemoveIp(self, stream: 'grpclib.server.Stream[modal_proto.api_pb2.ProxyRemoveIpRequest, google.protobuf.empty_pb2.Empty]') -> None:
|
363
|
+
pass
|
364
|
+
|
357
365
|
@abc.abstractmethod
|
358
366
|
async def QueueClear(self, stream: 'grpclib.server.Stream[modal_proto.api_pb2.QueueClearRequest, google.protobuf.empty_pb2.Empty]') -> None:
|
359
367
|
pass
|
@@ -1050,6 +1058,12 @@ class ModalClientBase(abc.ABC):
|
|
1050
1058
|
modal_proto.api_pb2.NotebookKernelPublishResultsRequest,
|
1051
1059
|
google.protobuf.empty_pb2.Empty,
|
1052
1060
|
),
|
1061
|
+
'/modal.client.ModalClient/ProxyAddIp': grpclib.const.Handler(
|
1062
|
+
self.ProxyAddIp,
|
1063
|
+
grpclib.const.Cardinality.UNARY_UNARY,
|
1064
|
+
modal_proto.api_pb2.ProxyAddIpRequest,
|
1065
|
+
modal_proto.api_pb2.ProxyAddIpResponse,
|
1066
|
+
),
|
1053
1067
|
'/modal.client.ModalClient/ProxyCreate': grpclib.const.Handler(
|
1054
1068
|
self.ProxyCreate,
|
1055
1069
|
grpclib.const.Cardinality.UNARY_UNARY,
|
@@ -1080,6 +1094,12 @@ class ModalClientBase(abc.ABC):
|
|
1080
1094
|
google.protobuf.empty_pb2.Empty,
|
1081
1095
|
modal_proto.api_pb2.ProxyListResponse,
|
1082
1096
|
),
|
1097
|
+
'/modal.client.ModalClient/ProxyRemoveIp': grpclib.const.Handler(
|
1098
|
+
self.ProxyRemoveIp,
|
1099
|
+
grpclib.const.Cardinality.UNARY_UNARY,
|
1100
|
+
modal_proto.api_pb2.ProxyRemoveIpRequest,
|
1101
|
+
google.protobuf.empty_pb2.Empty,
|
1102
|
+
),
|
1083
1103
|
'/modal.client.ModalClient/QueueClear': grpclib.const.Handler(
|
1084
1104
|
self.QueueClear,
|
1085
1105
|
grpclib.const.Cardinality.UNARY_UNARY,
|
@@ -1890,6 +1910,12 @@ class ModalClientStub:
|
|
1890
1910
|
modal_proto.api_pb2.NotebookKernelPublishResultsRequest,
|
1891
1911
|
google.protobuf.empty_pb2.Empty,
|
1892
1912
|
)
|
1913
|
+
self.ProxyAddIp = grpclib.client.UnaryUnaryMethod(
|
1914
|
+
channel,
|
1915
|
+
'/modal.client.ModalClient/ProxyAddIp',
|
1916
|
+
modal_proto.api_pb2.ProxyAddIpRequest,
|
1917
|
+
modal_proto.api_pb2.ProxyAddIpResponse,
|
1918
|
+
)
|
1893
1919
|
self.ProxyCreate = grpclib.client.UnaryUnaryMethod(
|
1894
1920
|
channel,
|
1895
1921
|
'/modal.client.ModalClient/ProxyCreate',
|
@@ -1920,6 +1946,12 @@ class ModalClientStub:
|
|
1920
1946
|
google.protobuf.empty_pb2.Empty,
|
1921
1947
|
modal_proto.api_pb2.ProxyListResponse,
|
1922
1948
|
)
|
1949
|
+
self.ProxyRemoveIp = grpclib.client.UnaryUnaryMethod(
|
1950
|
+
channel,
|
1951
|
+
'/modal.client.ModalClient/ProxyRemoveIp',
|
1952
|
+
modal_proto.api_pb2.ProxyRemoveIpRequest,
|
1953
|
+
google.protobuf.empty_pb2.Empty,
|
1954
|
+
)
|
1923
1955
|
self.QueueClear = grpclib.client.UnaryUnaryMethod(
|
1924
1956
|
channel,
|
1925
1957
|
'/modal.client.ModalClient/QueueClear',
|