modal 1.0.2.dev3__py3-none-any.whl → 1.0.2.dev6__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/_functions.py +6 -0
- modal/_utils/bytes_io_segment_payload.py +6 -2
- modal/client.pyi +2 -2
- modal/image.py +38 -16
- modal/volume.py +13 -8
- modal/volume.pyi +2 -2
- {modal-1.0.2.dev3.dist-info → modal-1.0.2.dev6.dist-info}/METADATA +1 -1
- {modal-1.0.2.dev3.dist-info → modal-1.0.2.dev6.dist-info}/RECORD +16 -16
- modal_proto/api.proto +3 -0
- modal_proto/api_pb2.py +374 -374
- modal_proto/api_pb2.pyi +16 -3
- modal_version/__init__.py +1 -1
- {modal-1.0.2.dev3.dist-info → modal-1.0.2.dev6.dist-info}/WHEEL +0 -0
- {modal-1.0.2.dev3.dist-info → modal-1.0.2.dev6.dist-info}/entry_points.txt +0 -0
- {modal-1.0.2.dev3.dist-info → modal-1.0.2.dev6.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.2.dev3.dist-info → modal-1.0.2.dev6.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -6938,15 +6938,20 @@ class PortSpec(google.protobuf.message.Message):
|
|
6938
6938
|
|
6939
6939
|
PORT_FIELD_NUMBER: builtins.int
|
6940
6940
|
UNENCRYPTED_FIELD_NUMBER: builtins.int
|
6941
|
+
TUNNEL_TYPE_FIELD_NUMBER: builtins.int
|
6941
6942
|
port: builtins.int
|
6942
6943
|
unencrypted: builtins.bool
|
6944
|
+
tunnel_type: builtins.str
|
6943
6945
|
def __init__(
|
6944
6946
|
self,
|
6945
6947
|
*,
|
6946
6948
|
port: builtins.int = ...,
|
6947
6949
|
unencrypted: builtins.bool = ...,
|
6950
|
+
tunnel_type: builtins.str | None = ...,
|
6948
6951
|
) -> None: ...
|
6949
|
-
def
|
6952
|
+
def HasField(self, field_name: typing_extensions.Literal["_tunnel_type", b"_tunnel_type", "tunnel_type", b"tunnel_type"]) -> builtins.bool: ...
|
6953
|
+
def ClearField(self, field_name: typing_extensions.Literal["_tunnel_type", b"_tunnel_type", "port", b"port", "tunnel_type", b"tunnel_type", "unencrypted", b"unencrypted"]) -> None: ...
|
6954
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_tunnel_type", b"_tunnel_type"]) -> typing_extensions.Literal["tunnel_type"] | None: ...
|
6950
6955
|
|
6951
6956
|
global___PortSpec = PortSpec
|
6952
6957
|
|
@@ -8364,13 +8369,16 @@ class Schedule(google.protobuf.message.Message):
|
|
8364
8369
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
8365
8370
|
|
8366
8371
|
CRON_STRING_FIELD_NUMBER: builtins.int
|
8372
|
+
TIMEZONE_FIELD_NUMBER: builtins.int
|
8367
8373
|
cron_string: builtins.str
|
8374
|
+
timezone: builtins.str
|
8368
8375
|
def __init__(
|
8369
8376
|
self,
|
8370
8377
|
*,
|
8371
8378
|
cron_string: builtins.str = ...,
|
8379
|
+
timezone: builtins.str = ...,
|
8372
8380
|
) -> None: ...
|
8373
|
-
def ClearField(self, field_name: typing_extensions.Literal["cron_string", b"cron_string"]) -> None: ...
|
8381
|
+
def ClearField(self, field_name: typing_extensions.Literal["cron_string", b"cron_string", "timezone", b"timezone"]) -> None: ...
|
8374
8382
|
|
8375
8383
|
class Period(google.protobuf.message.Message):
|
8376
8384
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
@@ -9368,15 +9376,20 @@ class TunnelStartRequest(google.protobuf.message.Message):
|
|
9368
9376
|
|
9369
9377
|
PORT_FIELD_NUMBER: builtins.int
|
9370
9378
|
UNENCRYPTED_FIELD_NUMBER: builtins.int
|
9379
|
+
TUNNEL_TYPE_FIELD_NUMBER: builtins.int
|
9371
9380
|
port: builtins.int
|
9372
9381
|
unencrypted: builtins.bool
|
9382
|
+
tunnel_type: builtins.str
|
9373
9383
|
def __init__(
|
9374
9384
|
self,
|
9375
9385
|
*,
|
9376
9386
|
port: builtins.int = ...,
|
9377
9387
|
unencrypted: builtins.bool = ...,
|
9388
|
+
tunnel_type: builtins.str | None = ...,
|
9378
9389
|
) -> None: ...
|
9379
|
-
def
|
9390
|
+
def HasField(self, field_name: typing_extensions.Literal["_tunnel_type", b"_tunnel_type", "tunnel_type", b"tunnel_type"]) -> builtins.bool: ...
|
9391
|
+
def ClearField(self, field_name: typing_extensions.Literal["_tunnel_type", b"_tunnel_type", "port", b"port", "tunnel_type", b"tunnel_type", "unencrypted", b"unencrypted"]) -> None: ...
|
9392
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_tunnel_type", b"_tunnel_type"]) -> typing_extensions.Literal["tunnel_type"] | None: ...
|
9380
9393
|
|
9381
9394
|
global___TunnelStartRequest = TunnelStartRequest
|
9382
9395
|
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|