modal 0.73.102__py3-none-any.whl → 0.73.103__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 +0 -1
- modal/client.pyi +2 -2
- modal/functions.pyi +6 -6
- {modal-0.73.102.dist-info → modal-0.73.103.dist-info}/METADATA +1 -1
- {modal-0.73.102.dist-info → modal-0.73.103.dist-info}/RECORD +13 -13
- modal_proto/api.proto +1 -4
- modal_proto/api_pb2.py +508 -508
- modal_proto/api_pb2.pyi +1 -8
- modal_version/_version_generated.py +1 -1
- {modal-0.73.102.dist-info → modal-0.73.103.dist-info}/LICENSE +0 -0
- {modal-0.73.102.dist-info → modal-0.73.103.dist-info}/WHEEL +0 -0
- {modal-0.73.102.dist-info → modal-0.73.103.dist-info}/entry_points.txt +0 -0
- {modal-0.73.102.dist-info → modal-0.73.103.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -4296,7 +4296,6 @@ class FunctionCreateRequest(google.protobuf.message.Message):
|
|
4296
4296
|
APP_ID_FIELD_NUMBER: builtins.int
|
4297
4297
|
SCHEDULE_FIELD_NUMBER: builtins.int
|
4298
4298
|
EXISTING_FUNCTION_ID_FIELD_NUMBER: builtins.int
|
4299
|
-
DEFER_UPDATES_FIELD_NUMBER: builtins.int
|
4300
4299
|
FUNCTION_DATA_FIELD_NUMBER: builtins.int
|
4301
4300
|
@property
|
4302
4301
|
def function(self) -> global___Function: ...
|
@@ -4305,11 +4304,6 @@ class FunctionCreateRequest(google.protobuf.message.Message):
|
|
4305
4304
|
def schedule(self) -> global___Schedule:
|
4306
4305
|
"""Deprecated: now passed in the Function definition"""
|
4307
4306
|
existing_function_id: builtins.str
|
4308
|
-
defer_updates: builtins.bool
|
4309
|
-
"""This flag tells the server to avoid doing updates in FunctionCreate that should now
|
4310
|
-
be done in AppPublish. Provides a smoother migration onto atomic deployments with 0.64,
|
4311
|
-
and can be deprecated once we no longer support ealier versions.
|
4312
|
-
"""
|
4313
4307
|
@property
|
4314
4308
|
def function_data(self) -> global___FunctionData:
|
4315
4309
|
"""supersedes 'function' field above"""
|
@@ -4320,11 +4314,10 @@ class FunctionCreateRequest(google.protobuf.message.Message):
|
|
4320
4314
|
app_id: builtins.str = ...,
|
4321
4315
|
schedule: global___Schedule | None = ...,
|
4322
4316
|
existing_function_id: builtins.str = ...,
|
4323
|
-
defer_updates: builtins.bool = ...,
|
4324
4317
|
function_data: global___FunctionData | None = ...,
|
4325
4318
|
) -> None: ...
|
4326
4319
|
def HasField(self, field_name: typing_extensions.Literal["function", b"function", "function_data", b"function_data", "schedule", b"schedule"]) -> builtins.bool: ...
|
4327
|
-
def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "
|
4320
|
+
def ClearField(self, field_name: typing_extensions.Literal["app_id", b"app_id", "existing_function_id", b"existing_function_id", "function", b"function", "function_data", b"function_data", "schedule", b"schedule"]) -> None: ...
|
4328
4321
|
|
4329
4322
|
global___FunctionCreateRequest = FunctionCreateRequest
|
4330
4323
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|