modal 0.72.29__py3-none-any.whl → 0.72.31__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/cloud_bucket_mount.py +4 -0
- modal/cloud_bucket_mount.pyi +4 -0
- modal/functions.pyi +6 -6
- modal/runner.py +12 -1
- {modal-0.72.29.dist-info → modal-0.72.31.dist-info}/METADATA +1 -1
- {modal-0.72.29.dist-info → modal-0.72.31.dist-info}/RECORD +15 -15
- modal_proto/api.proto +1 -0
- modal_proto/api_pb2.py +682 -682
- modal_proto/api_pb2.pyi +7 -2
- modal_version/_version_generated.py +1 -1
- {modal-0.72.29.dist-info → modal-0.72.31.dist-info}/LICENSE +0 -0
- {modal-0.72.29.dist-info → modal-0.72.31.dist-info}/WHEEL +0 -0
- {modal-0.72.29.dist-info → modal-0.72.31.dist-info}/entry_points.txt +0 -0
- {modal-0.72.29.dist-info → modal-0.72.31.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -2237,6 +2237,7 @@ class CloudBucketMount(google.protobuf.message.Message):
|
|
2237
2237
|
REQUESTER_PAYS_FIELD_NUMBER: builtins.int
|
2238
2238
|
BUCKET_ENDPOINT_URL_FIELD_NUMBER: builtins.int
|
2239
2239
|
KEY_PREFIX_FIELD_NUMBER: builtins.int
|
2240
|
+
OIDC_AUTH_ROLE_ARN_FIELD_NUMBER: builtins.int
|
2240
2241
|
bucket_name: builtins.str
|
2241
2242
|
mount_path: builtins.str
|
2242
2243
|
credentials_secret_id: builtins.str
|
@@ -2245,6 +2246,7 @@ class CloudBucketMount(google.protobuf.message.Message):
|
|
2245
2246
|
requester_pays: builtins.bool
|
2246
2247
|
bucket_endpoint_url: builtins.str
|
2247
2248
|
key_prefix: builtins.str
|
2249
|
+
oidc_auth_role_arn: builtins.str
|
2248
2250
|
def __init__(
|
2249
2251
|
self,
|
2250
2252
|
*,
|
@@ -2256,13 +2258,16 @@ class CloudBucketMount(google.protobuf.message.Message):
|
|
2256
2258
|
requester_pays: builtins.bool = ...,
|
2257
2259
|
bucket_endpoint_url: builtins.str | None = ...,
|
2258
2260
|
key_prefix: builtins.str | None = ...,
|
2261
|
+
oidc_auth_role_arn: builtins.str | None = ...,
|
2259
2262
|
) -> None: ...
|
2260
|
-
def HasField(self, field_name: typing_extensions.Literal["_bucket_endpoint_url", b"_bucket_endpoint_url", "_key_prefix", b"_key_prefix", "bucket_endpoint_url", b"bucket_endpoint_url", "key_prefix", b"key_prefix"]) -> builtins.bool: ...
|
2261
|
-
def ClearField(self, field_name: typing_extensions.Literal["_bucket_endpoint_url", b"_bucket_endpoint_url", "_key_prefix", b"_key_prefix", "bucket_endpoint_url", b"bucket_endpoint_url", "bucket_name", b"bucket_name", "bucket_type", b"bucket_type", "credentials_secret_id", b"credentials_secret_id", "key_prefix", b"key_prefix", "mount_path", b"mount_path", "read_only", b"read_only", "requester_pays", b"requester_pays"]) -> None: ...
|
2263
|
+
def HasField(self, field_name: typing_extensions.Literal["_bucket_endpoint_url", b"_bucket_endpoint_url", "_key_prefix", b"_key_prefix", "_oidc_auth_role_arn", b"_oidc_auth_role_arn", "bucket_endpoint_url", b"bucket_endpoint_url", "key_prefix", b"key_prefix", "oidc_auth_role_arn", b"oidc_auth_role_arn"]) -> builtins.bool: ...
|
2264
|
+
def ClearField(self, field_name: typing_extensions.Literal["_bucket_endpoint_url", b"_bucket_endpoint_url", "_key_prefix", b"_key_prefix", "_oidc_auth_role_arn", b"_oidc_auth_role_arn", "bucket_endpoint_url", b"bucket_endpoint_url", "bucket_name", b"bucket_name", "bucket_type", b"bucket_type", "credentials_secret_id", b"credentials_secret_id", "key_prefix", b"key_prefix", "mount_path", b"mount_path", "oidc_auth_role_arn", b"oidc_auth_role_arn", "read_only", b"read_only", "requester_pays", b"requester_pays"]) -> None: ...
|
2262
2265
|
@typing.overload
|
2263
2266
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["_bucket_endpoint_url", b"_bucket_endpoint_url"]) -> typing_extensions.Literal["bucket_endpoint_url"] | None: ...
|
2264
2267
|
@typing.overload
|
2265
2268
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["_key_prefix", b"_key_prefix"]) -> typing_extensions.Literal["key_prefix"] | None: ...
|
2269
|
+
@typing.overload
|
2270
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_oidc_auth_role_arn", b"_oidc_auth_role_arn"]) -> typing_extensions.Literal["oidc_auth_role_arn"] | None: ...
|
2266
2271
|
|
2267
2272
|
global___CloudBucketMount = CloudBucketMount
|
2268
2273
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|