anyscale 0.26.38__py3-none-any.whl → 0.26.39__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.
- anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py +31 -3
- anyscale/service/_private/service_sdk.py +1 -0
- anyscale/version.py +1 -1
- {anyscale-0.26.38.dist-info → anyscale-0.26.39.dist-info}/METADATA +1 -1
- {anyscale-0.26.38.dist-info → anyscale-0.26.39.dist-info}/RECORD +10 -10
- {anyscale-0.26.38.dist-info → anyscale-0.26.39.dist-info}/LICENSE +0 -0
- {anyscale-0.26.38.dist-info → anyscale-0.26.39.dist-info}/NOTICE +0 -0
- {anyscale-0.26.38.dist-info → anyscale-0.26.39.dist-info}/WHEEL +0 -0
- {anyscale-0.26.38.dist-info → anyscale-0.26.39.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.38.dist-info → anyscale-0.26.39.dist-info}/top_level.txt +0 -0
|
@@ -36,17 +36,19 @@ class CloudDataBucketPresignedUrlRequest(object):
|
|
|
36
36
|
'file_type': 'CloudDataBucketFileType',
|
|
37
37
|
'file_name': 'str',
|
|
38
38
|
'access_mode': 'CloudDataBucketAccessMode',
|
|
39
|
-
'scope': 'CloudDataBucketRequestScope'
|
|
39
|
+
'scope': 'CloudDataBucketRequestScope',
|
|
40
|
+
'cloud_deployment_id': 'str'
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
attribute_map = {
|
|
43
44
|
'file_type': 'file_type',
|
|
44
45
|
'file_name': 'file_name',
|
|
45
46
|
'access_mode': 'access_mode',
|
|
46
|
-
'scope': 'scope'
|
|
47
|
+
'scope': 'scope',
|
|
48
|
+
'cloud_deployment_id': 'cloud_deployment_id'
|
|
47
49
|
}
|
|
48
50
|
|
|
49
|
-
def __init__(self, file_type=None, file_name=None, access_mode=None, scope=None, local_vars_configuration=None): # noqa: E501
|
|
51
|
+
def __init__(self, file_type=None, file_name=None, access_mode=None, scope=None, cloud_deployment_id=None, local_vars_configuration=None): # noqa: E501
|
|
50
52
|
"""CloudDataBucketPresignedUrlRequest - a model defined in OpenAPI""" # noqa: E501
|
|
51
53
|
if local_vars_configuration is None:
|
|
52
54
|
local_vars_configuration = Configuration()
|
|
@@ -56,6 +58,7 @@ class CloudDataBucketPresignedUrlRequest(object):
|
|
|
56
58
|
self._file_name = None
|
|
57
59
|
self._access_mode = None
|
|
58
60
|
self._scope = None
|
|
61
|
+
self._cloud_deployment_id = None
|
|
59
62
|
self.discriminator = None
|
|
60
63
|
|
|
61
64
|
self.file_type = file_type
|
|
@@ -63,6 +66,8 @@ class CloudDataBucketPresignedUrlRequest(object):
|
|
|
63
66
|
self.access_mode = access_mode
|
|
64
67
|
if scope is not None:
|
|
65
68
|
self.scope = scope
|
|
69
|
+
if cloud_deployment_id is not None:
|
|
70
|
+
self.cloud_deployment_id = cloud_deployment_id
|
|
66
71
|
|
|
67
72
|
@property
|
|
68
73
|
def file_type(self):
|
|
@@ -162,6 +167,29 @@ class CloudDataBucketPresignedUrlRequest(object):
|
|
|
162
167
|
|
|
163
168
|
self._scope = scope
|
|
164
169
|
|
|
170
|
+
@property
|
|
171
|
+
def cloud_deployment_id(self):
|
|
172
|
+
"""Gets the cloud_deployment_id of this CloudDataBucketPresignedUrlRequest. # noqa: E501
|
|
173
|
+
|
|
174
|
+
The cloud deployment ID of the bucket to generate a presigned URL for. If not specified, the primary cloud deployment for the cloud will be used. # noqa: E501
|
|
175
|
+
|
|
176
|
+
:return: The cloud_deployment_id of this CloudDataBucketPresignedUrlRequest. # noqa: E501
|
|
177
|
+
:rtype: str
|
|
178
|
+
"""
|
|
179
|
+
return self._cloud_deployment_id
|
|
180
|
+
|
|
181
|
+
@cloud_deployment_id.setter
|
|
182
|
+
def cloud_deployment_id(self, cloud_deployment_id):
|
|
183
|
+
"""Sets the cloud_deployment_id of this CloudDataBucketPresignedUrlRequest.
|
|
184
|
+
|
|
185
|
+
The cloud deployment ID of the bucket to generate a presigned URL for. If not specified, the primary cloud deployment for the cloud will be used. # noqa: E501
|
|
186
|
+
|
|
187
|
+
:param cloud_deployment_id: The cloud_deployment_id of this CloudDataBucketPresignedUrlRequest. # noqa: E501
|
|
188
|
+
:type: str
|
|
189
|
+
"""
|
|
190
|
+
|
|
191
|
+
self._cloud_deployment_id = cloud_deployment_id
|
|
192
|
+
|
|
165
193
|
def to_dict(self):
|
|
166
194
|
"""Returns the model properties as a dict"""
|
|
167
195
|
result = {}
|
|
@@ -78,6 +78,7 @@ class PrivateServiceSDK(WorkloadSDK):
|
|
|
78
78
|
cloud_id=cloud_id,
|
|
79
79
|
autopopulate_in_workspace=autopopulate_in_workspace,
|
|
80
80
|
additional_py_modules=config.py_modules,
|
|
81
|
+
py_executable_override=config.py_executable,
|
|
81
82
|
)
|
|
82
83
|
new_runtime_envs = self.override_and_load_requirements_files(
|
|
83
84
|
new_runtime_envs,
|
anyscale/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.26.
|
|
1
|
+
__version__ = "0.26.39"
|
|
@@ -28,7 +28,7 @@ anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
|
|
|
28
28
|
anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
|
|
29
29
|
anyscale/telemetry.py,sha256=wklWABN8wtq8Cq3ptPFEeQQC9xjKP5ytxybCuWAvNI0,15229
|
|
30
30
|
anyscale/util.py,sha256=14AHIhl4c4hKAW4gLZIvy5w56-zDjcPmrdWqazsvnHU,41860
|
|
31
|
-
anyscale/version.py,sha256=
|
|
31
|
+
anyscale/version.py,sha256=_ZbrPLn9Sd33bHq1MeHMMwsQwtg8l6F4LTTwEHAo8ww,24
|
|
32
32
|
anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
|
|
33
33
|
anyscale/_private/anyscale_client/README.md,sha256=gk8obk7kqg6VWoUHcqDMwJULh35tYKEZFC0UF_dixGA,718
|
|
34
34
|
anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
|
|
@@ -192,7 +192,7 @@ anyscale/client/openapi_client/models/cloud_data_bucket_file_type.py,sha256=3-qb
|
|
|
192
192
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_info.py,sha256=oDuxszeCGe8_mMBx84yIE9uQypMRNDvUoN8CR84QaDQ,10068
|
|
193
193
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_request.py,sha256=1a5lhtKDaXO46Mrdm6s5HMGFuoj5o_4kkEc7gFTadiI,5268
|
|
194
194
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_upload_scheme.py,sha256=5si79TIn1yIdm52omXlmNmyrfHgbCykKPmVXtOIlWXQ,2943
|
|
195
|
-
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py,sha256=
|
|
195
|
+
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_request.py,sha256=E2OwezVPluHQngJmM5MGxhExW58R6IefF0dO4T2di5Y,8708
|
|
196
196
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_response.py,sha256=zJA18_gxkpKOo1b4R7MakUBBM8DX-WLFuAVIfxRmP6U,10827
|
|
197
197
|
anyscale/client/openapi_client/models/cloud_data_bucket_presigned_url_scheme.py,sha256=Vpnb4gAa6TBj0p5OfiIzLTWFGZ3Xd5s7jXdOJw06msM,2916
|
|
198
198
|
anyscale/client/openapi_client/models/cloud_data_bucket_request_scope.py,sha256=IqPon7rEzfGPfSifMNzUZZDXv2NS-v9D0Zab57WFnYw,2901
|
|
@@ -1021,7 +1021,7 @@ anyscale/sdk/anyscale_client/models/worker_node_type.py,sha256=bI3sPVPA4t4axjdbj
|
|
|
1021
1021
|
anyscale/service/__init__.py,sha256=8L7JynFGOfZ28WIDTUM-ipzbrChZ_ZqadJuIhApTvFM,7988
|
|
1022
1022
|
anyscale/service/commands.py,sha256=cef52vv7KlUX_vOhQubUOM9t3rT4NbE_GNhllCFZWvg,14384
|
|
1023
1023
|
anyscale/service/models.py,sha256=In9Nn6xYWSpKwjYaMe1zyRWs1gU-g9J-tNt74BQh0js,25985
|
|
1024
|
-
anyscale/service/_private/service_sdk.py,sha256=
|
|
1024
|
+
anyscale/service/_private/service_sdk.py,sha256=FS9r3Ku-lf2yV6h9HrAiZr5gREWUV-7omdF9dWxoeVc,34979
|
|
1025
1025
|
anyscale/service_account/__init__.py,sha256=jV1OFo_ZTxU3vuPztO1300TuoMz-Ocudm6_84ZtjPQ4,2764
|
|
1026
1026
|
anyscale/service_account/commands.py,sha256=pkJjZwK8aRKFFVfE5swMTJrm9CTnPcNJETEFdMkPiic,3680
|
|
1027
1027
|
anyscale/service_account/models.py,sha256=MhY-Fo5AZQ68brqtolTUMW3WQDrkNyL1udtNg70sNAU,2189
|
|
@@ -1088,10 +1088,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
|
|
|
1088
1088
|
anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
|
|
1089
1089
|
anyscale/workspace/models.py,sha256=HBvM9ybOdJjqQeViQ30C36gdKT_AwH_JHPoL-DTkESo,9841
|
|
1090
1090
|
anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
|
|
1091
|
-
anyscale-0.26.
|
|
1092
|
-
anyscale-0.26.
|
|
1093
|
-
anyscale-0.26.
|
|
1094
|
-
anyscale-0.26.
|
|
1095
|
-
anyscale-0.26.
|
|
1096
|
-
anyscale-0.26.
|
|
1097
|
-
anyscale-0.26.
|
|
1091
|
+
anyscale-0.26.39.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
|
1092
|
+
anyscale-0.26.39.dist-info/METADATA,sha256=gErmTm1VqZYm8lEd8yGE7NOFxrw2f8OAhmz74i47Y90,3269
|
|
1093
|
+
anyscale-0.26.39.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
|
1094
|
+
anyscale-0.26.39.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
1095
|
+
anyscale-0.26.39.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
|
1096
|
+
anyscale-0.26.39.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
|
1097
|
+
anyscale-0.26.39.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|