modal 1.0.5.dev7__py3-none-any.whl → 1.0.5.dev8__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-1.0.5.dev7.dist-info → modal-1.0.5.dev8.dist-info}/METADATA +1 -1
- {modal-1.0.5.dev7.dist-info → modal-1.0.5.dev8.dist-info}/RECORD +11 -11
- modal_proto/api.proto +13 -0
- modal_proto/api_pb2.py +800 -780
- modal_proto/api_pb2.pyi +47 -2
- modal_version/__init__.py +1 -1
- {modal-1.0.5.dev7.dist-info → modal-1.0.5.dev8.dist-info}/WHEEL +0 -0
- {modal-1.0.5.dev7.dist-info → modal-1.0.5.dev8.dist-info}/entry_points.txt +0 -0
- {modal-1.0.5.dev7.dist-info → modal-1.0.5.dev8.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.5.dev7.dist-info → modal-1.0.5.dev8.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -2039,20 +2039,35 @@ class BlobCreateResponse(google.protobuf.message.Message):
|
|
2039
2039
|
BLOB_ID_FIELD_NUMBER: builtins.int
|
2040
2040
|
UPLOAD_URL_FIELD_NUMBER: builtins.int
|
2041
2041
|
MULTIPART_FIELD_NUMBER: builtins.int
|
2042
|
+
BLOB_IDS_FIELD_NUMBER: builtins.int
|
2043
|
+
UPLOAD_URLS_FIELD_NUMBER: builtins.int
|
2044
|
+
MULTIPARTS_FIELD_NUMBER: builtins.int
|
2042
2045
|
blob_id: builtins.str
|
2043
2046
|
upload_url: builtins.str
|
2044
2047
|
@property
|
2045
2048
|
def multipart(self) -> global___MultiPartUpload: ...
|
2049
|
+
@property
|
2050
|
+
def blob_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
|
2051
|
+
@property
|
2052
|
+
def upload_urls(self) -> global___UploadUrlList: ...
|
2053
|
+
@property
|
2054
|
+
def multiparts(self) -> global___MultiPartUploadList: ...
|
2046
2055
|
def __init__(
|
2047
2056
|
self,
|
2048
2057
|
*,
|
2049
2058
|
blob_id: builtins.str = ...,
|
2050
2059
|
upload_url: builtins.str = ...,
|
2051
2060
|
multipart: global___MultiPartUpload | None = ...,
|
2061
|
+
blob_ids: collections.abc.Iterable[builtins.str] | None = ...,
|
2062
|
+
upload_urls: global___UploadUrlList | None = ...,
|
2063
|
+
multiparts: global___MultiPartUploadList | None = ...,
|
2052
2064
|
) -> None: ...
|
2053
|
-
def HasField(self, field_name: typing_extensions.Literal["multipart", b"multipart", "upload_type_oneof", b"upload_type_oneof", "upload_url", b"upload_url"]) -> builtins.bool: ...
|
2054
|
-
def ClearField(self, field_name: typing_extensions.Literal["blob_id", b"blob_id", "multipart", b"multipart", "upload_type_oneof", b"upload_type_oneof", "upload_url", b"upload_url"]) -> None: ...
|
2065
|
+
def HasField(self, field_name: typing_extensions.Literal["multipart", b"multipart", "multiparts", b"multiparts", "upload_type_oneof", b"upload_type_oneof", "upload_types_oneof", b"upload_types_oneof", "upload_url", b"upload_url", "upload_urls", b"upload_urls"]) -> builtins.bool: ...
|
2066
|
+
def ClearField(self, field_name: typing_extensions.Literal["blob_id", b"blob_id", "blob_ids", b"blob_ids", "multipart", b"multipart", "multiparts", b"multiparts", "upload_type_oneof", b"upload_type_oneof", "upload_types_oneof", b"upload_types_oneof", "upload_url", b"upload_url", "upload_urls", b"upload_urls"]) -> None: ...
|
2067
|
+
@typing.overload
|
2055
2068
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["upload_type_oneof", b"upload_type_oneof"]) -> typing_extensions.Literal["upload_url", "multipart"] | None: ...
|
2069
|
+
@typing.overload
|
2070
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["upload_types_oneof", b"upload_types_oneof"]) -> typing_extensions.Literal["upload_urls", "multiparts"] | None: ...
|
2056
2071
|
|
2057
2072
|
global___BlobCreateResponse = BlobCreateResponse
|
2058
2073
|
|
@@ -6625,6 +6640,21 @@ class MultiPartUpload(google.protobuf.message.Message):
|
|
6625
6640
|
|
6626
6641
|
global___MultiPartUpload = MultiPartUpload
|
6627
6642
|
|
6643
|
+
class MultiPartUploadList(google.protobuf.message.Message):
|
6644
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
6645
|
+
|
6646
|
+
ITEMS_FIELD_NUMBER: builtins.int
|
6647
|
+
@property
|
6648
|
+
def items(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___MultiPartUpload]: ...
|
6649
|
+
def __init__(
|
6650
|
+
self,
|
6651
|
+
*,
|
6652
|
+
items: collections.abc.Iterable[global___MultiPartUpload] | None = ...,
|
6653
|
+
) -> None: ...
|
6654
|
+
def ClearField(self, field_name: typing_extensions.Literal["items", b"items"]) -> None: ...
|
6655
|
+
|
6656
|
+
global___MultiPartUploadList = MultiPartUploadList
|
6657
|
+
|
6628
6658
|
class NetworkAccess(google.protobuf.message.Message):
|
6629
6659
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
6630
6660
|
|
@@ -9487,6 +9517,21 @@ class TunnelStopResponse(google.protobuf.message.Message):
|
|
9487
9517
|
|
9488
9518
|
global___TunnelStopResponse = TunnelStopResponse
|
9489
9519
|
|
9520
|
+
class UploadUrlList(google.protobuf.message.Message):
|
9521
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
9522
|
+
|
9523
|
+
ITEMS_FIELD_NUMBER: builtins.int
|
9524
|
+
@property
|
9525
|
+
def items(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
|
9526
|
+
def __init__(
|
9527
|
+
self,
|
9528
|
+
*,
|
9529
|
+
items: collections.abc.Iterable[builtins.str] | None = ...,
|
9530
|
+
) -> None: ...
|
9531
|
+
def ClearField(self, field_name: typing_extensions.Literal["items", b"items"]) -> None: ...
|
9532
|
+
|
9533
|
+
global___UploadUrlList = UploadUrlList
|
9534
|
+
|
9490
9535
|
class VolumeCommitRequest(google.protobuf.message.Message):
|
9491
9536
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
9492
9537
|
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|