modal 0.73.73__py3-none-any.whl → 0.73.74__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.73.dist-info → modal-0.73.74.dist-info}/METADATA +1 -1
- {modal-0.73.73.dist-info → modal-0.73.74.dist-info}/RECORD +11 -11
- modal_proto/api.proto +2 -0
- modal_proto/api_pb2.py +410 -410
- modal_proto/api_pb2.pyi +5 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.73.73.dist-info → modal-0.73.74.dist-info}/LICENSE +0 -0
- {modal-0.73.73.dist-info → modal-0.73.74.dist-info}/WHEEL +0 -0
- {modal-0.73.73.dist-info → modal-0.73.74.dist-info}/entry_points.txt +0 -0
- {modal-0.73.73.dist-info → modal-0.73.74.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -5686,6 +5686,7 @@ class ImageGetOrCreateRequest(google.protobuf.message.Message):
|
|
5686
5686
|
NAMESPACE_FIELD_NUMBER: builtins.int
|
5687
5687
|
BUILDER_VERSION_FIELD_NUMBER: builtins.int
|
5688
5688
|
ALLOW_GLOBAL_DEPLOYMENT_FIELD_NUMBER: builtins.int
|
5689
|
+
IGNORE_CACHE_FIELD_NUMBER: builtins.int
|
5689
5690
|
@property
|
5690
5691
|
def image(self) -> global___Image: ...
|
5691
5692
|
app_id: builtins.str
|
@@ -5697,6 +5698,8 @@ class ImageGetOrCreateRequest(google.protobuf.message.Message):
|
|
5697
5698
|
builder_version: builtins.str
|
5698
5699
|
allow_global_deployment: builtins.bool
|
5699
5700
|
"""Only admins can publish global images, but this provides an extra failsafe"""
|
5701
|
+
ignore_cache: builtins.bool
|
5702
|
+
"""Force the Image to build but don't clobber any Images with the same recipe in the cache"""
|
5700
5703
|
def __init__(
|
5701
5704
|
self,
|
5702
5705
|
*,
|
@@ -5708,9 +5711,10 @@ class ImageGetOrCreateRequest(google.protobuf.message.Message):
|
|
5708
5711
|
namespace: global___DeploymentNamespace.ValueType = ...,
|
5709
5712
|
builder_version: builtins.str = ...,
|
5710
5713
|
allow_global_deployment: builtins.bool = ...,
|
5714
|
+
ignore_cache: builtins.bool = ...,
|
5711
5715
|
) -> None: ...
|
5712
5716
|
def HasField(self, field_name: typing_extensions.Literal["image", b"image"]) -> builtins.bool: ...
|
5713
|
-
def ClearField(self, field_name: typing_extensions.Literal["allow_global_deployment", b"allow_global_deployment", "app_id", b"app_id", "build_function_id", b"build_function_id", "builder_version", b"builder_version", "existing_image_id", b"existing_image_id", "force_build", b"force_build", "image", b"image", "namespace", b"namespace"]) -> None: ...
|
5717
|
+
def ClearField(self, field_name: typing_extensions.Literal["allow_global_deployment", b"allow_global_deployment", "app_id", b"app_id", "build_function_id", b"build_function_id", "builder_version", b"builder_version", "existing_image_id", b"existing_image_id", "force_build", b"force_build", "ignore_cache", b"ignore_cache", "image", b"image", "namespace", b"namespace"]) -> None: ...
|
5714
5718
|
|
5715
5719
|
global___ImageGetOrCreateRequest = ImageGetOrCreateRequest
|
5716
5720
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|