modal 1.1.1.dev32__py3-none-any.whl → 1.1.1.dev34__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.
Potentially problematic release.
This version of modal might be problematic. Click here for more details.
- modal/client.pyi +2 -2
- {modal-1.1.1.dev32.dist-info → modal-1.1.1.dev34.dist-info}/METADATA +1 -1
- {modal-1.1.1.dev32.dist-info → modal-1.1.1.dev34.dist-info}/RECORD +11 -11
- modal_proto/api.proto +2 -0
- modal_proto/api_pb2.py +792 -792
- modal_proto/api_pb2.pyi +9 -2
- modal_version/__init__.py +1 -1
- {modal-1.1.1.dev32.dist-info → modal-1.1.1.dev34.dist-info}/WHEEL +0 -0
- {modal-1.1.1.dev32.dist-info → modal-1.1.1.dev34.dist-info}/entry_points.txt +0 -0
- {modal-1.1.1.dev32.dist-info → modal-1.1.1.dev34.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.1.dev32.dist-info → modal-1.1.1.dev34.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
|
@@ -2737,6 +2737,7 @@ class ContainerArguments(google.protobuf.message.Message):
|
|
|
2737
2737
|
ENVIRONMENT_NAME_FIELD_NUMBER: builtins.int
|
|
2738
2738
|
CHECKPOINT_ID_FIELD_NUMBER: builtins.int
|
|
2739
2739
|
APP_LAYOUT_FIELD_NUMBER: builtins.int
|
|
2740
|
+
INPUT_PLANE_SERVER_URL_FIELD_NUMBER: builtins.int
|
|
2740
2741
|
task_id: builtins.str
|
|
2741
2742
|
function_id: builtins.str
|
|
2742
2743
|
app_id: builtins.str
|
|
@@ -2752,6 +2753,7 @@ class ContainerArguments(google.protobuf.message.Message):
|
|
|
2752
2753
|
checkpoint_id: builtins.str
|
|
2753
2754
|
@property
|
|
2754
2755
|
def app_layout(self) -> global___AppLayout: ...
|
|
2756
|
+
input_plane_server_url: builtins.str
|
|
2755
2757
|
def __init__(
|
|
2756
2758
|
self,
|
|
2757
2759
|
*,
|
|
@@ -2766,9 +2768,10 @@ class ContainerArguments(google.protobuf.message.Message):
|
|
|
2766
2768
|
environment_name: builtins.str = ...,
|
|
2767
2769
|
checkpoint_id: builtins.str | None = ...,
|
|
2768
2770
|
app_layout: global___AppLayout | None = ...,
|
|
2771
|
+
input_plane_server_url: builtins.str = ...,
|
|
2769
2772
|
) -> None: ...
|
|
2770
2773
|
def HasField(self, field_name: typing_extensions.Literal["_checkpoint_id", b"_checkpoint_id", "app_layout", b"app_layout", "checkpoint_id", b"checkpoint_id", "function_def", b"function_def", "proxy_info", b"proxy_info"]) -> builtins.bool: ...
|
|
2771
|
-
def ClearField(self, field_name: typing_extensions.Literal["_checkpoint_id", b"_checkpoint_id", "app_id", b"app_id", "app_layout", b"app_layout", "checkpoint_id", b"checkpoint_id", "environment_name", b"environment_name", "function_def", b"function_def", "function_id", b"function_id", "proxy_info", b"proxy_info", "runtime", b"runtime", "serialized_params", b"serialized_params", "task_id", b"task_id", "tracing_context", b"tracing_context"]) -> None: ...
|
|
2774
|
+
def ClearField(self, field_name: typing_extensions.Literal["_checkpoint_id", b"_checkpoint_id", "app_id", b"app_id", "app_layout", b"app_layout", "checkpoint_id", b"checkpoint_id", "environment_name", b"environment_name", "function_def", b"function_def", "function_id", b"function_id", "input_plane_server_url", b"input_plane_server_url", "proxy_info", b"proxy_info", "runtime", b"runtime", "serialized_params", b"serialized_params", "task_id", b"task_id", "tracing_context", b"tracing_context"]) -> None: ...
|
|
2772
2775
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["_checkpoint_id", b"_checkpoint_id"]) -> typing_extensions.Literal["checkpoint_id"] | None: ...
|
|
2773
2776
|
|
|
2774
2777
|
global___ContainerArguments = ContainerArguments
|
|
@@ -4715,11 +4718,14 @@ class FunctionBindParamsRequest(google.protobuf.message.Message):
|
|
|
4715
4718
|
SERIALIZED_PARAMS_FIELD_NUMBER: builtins.int
|
|
4716
4719
|
FUNCTION_OPTIONS_FIELD_NUMBER: builtins.int
|
|
4717
4720
|
ENVIRONMENT_NAME_FIELD_NUMBER: builtins.int
|
|
4721
|
+
AUTH_SECRET_FIELD_NUMBER: builtins.int
|
|
4718
4722
|
function_id: builtins.str
|
|
4719
4723
|
serialized_params: builtins.bytes
|
|
4720
4724
|
@property
|
|
4721
4725
|
def function_options(self) -> global___FunctionOptions: ...
|
|
4722
4726
|
environment_name: builtins.str
|
|
4727
|
+
auth_secret: builtins.str
|
|
4728
|
+
"""Only used for the input plane."""
|
|
4723
4729
|
def __init__(
|
|
4724
4730
|
self,
|
|
4725
4731
|
*,
|
|
@@ -4727,9 +4733,10 @@ class FunctionBindParamsRequest(google.protobuf.message.Message):
|
|
|
4727
4733
|
serialized_params: builtins.bytes = ...,
|
|
4728
4734
|
function_options: global___FunctionOptions | None = ...,
|
|
4729
4735
|
environment_name: builtins.str = ...,
|
|
4736
|
+
auth_secret: builtins.str = ...,
|
|
4730
4737
|
) -> None: ...
|
|
4731
4738
|
def HasField(self, field_name: typing_extensions.Literal["function_options", b"function_options"]) -> builtins.bool: ...
|
|
4732
|
-
def ClearField(self, field_name: typing_extensions.Literal["environment_name", b"environment_name", "function_id", b"function_id", "function_options", b"function_options", "serialized_params", b"serialized_params"]) -> None: ...
|
|
4739
|
+
def ClearField(self, field_name: typing_extensions.Literal["auth_secret", b"auth_secret", "environment_name", b"environment_name", "function_id", b"function_id", "function_options", b"function_options", "serialized_params", b"serialized_params"]) -> None: ...
|
|
4733
4740
|
|
|
4734
4741
|
global___FunctionBindParamsRequest = FunctionBindParamsRequest
|
|
4735
4742
|
|
modal_version/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|