modal 0.73.78__py3-none-any.whl → 0.73.80__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-0.73.78.dist-info → modal-0.73.80.dist-info}/METADATA +1 -1
- {modal-0.73.78.dist-info → modal-0.73.80.dist-info}/RECORD +11 -11
- modal_proto/api.proto +3 -2
- modal_proto/api_pb2.py +718 -718
- modal_proto/api_pb2.pyi +8 -6
- modal_version/_version_generated.py +1 -1
- {modal-0.73.78.dist-info → modal-0.73.80.dist-info}/LICENSE +0 -0
- {modal-0.73.78.dist-info → modal-0.73.80.dist-info}/WHEEL +0 -0
- {modal-0.73.78.dist-info → modal-0.73.80.dist-info}/entry_points.txt +0 -0
- {modal-0.73.78.dist-info → modal-0.73.80.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -1957,7 +1957,7 @@ class CheckpointInfo(google.protobuf.message.Message):
|
|
1957
1957
|
SIZE_FIELD_NUMBER: builtins.int
|
1958
1958
|
CHECKSUM_IS_FILE_INDEX_FIELD_NUMBER: builtins.int
|
1959
1959
|
ORIGINAL_TASK_ID_FIELD_NUMBER: builtins.int
|
1960
|
-
|
1960
|
+
RUNSC_RUNTIME_VERSION_FIELD_NUMBER: builtins.int
|
1961
1961
|
checksum: builtins.str
|
1962
1962
|
status: global___CheckpointStatus.ValueType
|
1963
1963
|
checkpoint_id: builtins.str
|
@@ -1965,8 +1965,7 @@ class CheckpointInfo(google.protobuf.message.Message):
|
|
1965
1965
|
size: builtins.int
|
1966
1966
|
checksum_is_file_index: builtins.bool
|
1967
1967
|
original_task_id: builtins.str
|
1968
|
-
|
1969
|
-
"""snapshot version used to take the checkpoint"""
|
1968
|
+
runsc_runtime_version: builtins.str
|
1970
1969
|
def __init__(
|
1971
1970
|
self,
|
1972
1971
|
*,
|
@@ -1977,9 +1976,9 @@ class CheckpointInfo(google.protobuf.message.Message):
|
|
1977
1976
|
size: builtins.int = ...,
|
1978
1977
|
checksum_is_file_index: builtins.bool = ...,
|
1979
1978
|
original_task_id: builtins.str = ...,
|
1980
|
-
|
1979
|
+
runsc_runtime_version: builtins.str = ...,
|
1981
1980
|
) -> None: ...
|
1982
|
-
def ClearField(self, field_name: typing_extensions.Literal["checkpoint_id", b"checkpoint_id", "checksum", b"checksum", "checksum_is_file_index", b"checksum_is_file_index", "original_task_id", b"original_task_id", "
|
1981
|
+
def ClearField(self, field_name: typing_extensions.Literal["checkpoint_id", b"checkpoint_id", "checksum", b"checksum", "checksum_is_file_index", b"checksum_is_file_index", "original_task_id", b"original_task_id", "runsc_runtime_version", b"runsc_runtime_version", "runtime_fingerprint", b"runtime_fingerprint", "size", b"size", "status", b"status"]) -> None: ...
|
1983
1982
|
|
1984
1983
|
global___CheckpointInfo = CheckpointInfo
|
1985
1984
|
|
@@ -7470,19 +7469,22 @@ class SandboxInfo(google.protobuf.message.Message):
|
|
7470
7469
|
ID_FIELD_NUMBER: builtins.int
|
7471
7470
|
CREATED_AT_FIELD_NUMBER: builtins.int
|
7472
7471
|
TASK_INFO_FIELD_NUMBER: builtins.int
|
7472
|
+
APP_ID_FIELD_NUMBER: builtins.int
|
7473
7473
|
id: builtins.str
|
7474
7474
|
created_at: builtins.float
|
7475
7475
|
@property
|
7476
7476
|
def task_info(self) -> global___TaskInfo: ...
|
7477
|
+
app_id: builtins.str
|
7477
7478
|
def __init__(
|
7478
7479
|
self,
|
7479
7480
|
*,
|
7480
7481
|
id: builtins.str = ...,
|
7481
7482
|
created_at: builtins.float = ...,
|
7482
7483
|
task_info: global___TaskInfo | None = ...,
|
7484
|
+
app_id: builtins.str = ...,
|
7483
7485
|
) -> None: ...
|
7484
7486
|
def HasField(self, field_name: typing_extensions.Literal["task_info", b"task_info"]) -> builtins.bool: ...
|
7485
|
-
def ClearField(self, field_name: typing_extensions.Literal["created_at", b"created_at", "id", b"id", "task_info", b"task_info"]) -> None: ...
|
7487
|
+
def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "created_at", b"created_at", "id", b"id", "task_info", b"task_info"]) -> None: ...
|
7486
7488
|
|
7487
7489
|
global___SandboxInfo = SandboxInfo
|
7488
7490
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|