anyscale 0.26.16__py3-none-any.whl → 0.26.18__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.
Files changed (40) hide show
  1. anyscale/anyscale-cloud-setup-gcp.yaml +2 -0
  2. anyscale/anyscale-cloud-setup.yaml +0 -4
  3. anyscale/client/README.md +7 -37
  4. anyscale/client/openapi_client/__init__.py +5 -20
  5. anyscale/client/openapi_client/api/default_api.py +410 -2163
  6. anyscale/client/openapi_client/models/__init__.py +5 -20
  7. anyscale/client/openapi_client/models/{create_session_response.py → i_know_response.py} +51 -51
  8. anyscale/client/openapi_client/models/{session_details.py → i_know_time_series_event.py} +35 -35
  9. anyscale/client/openapi_client/models/job_report.py +199 -0
  10. anyscale/client/openapi_client/models/job_with_report.py +254 -0
  11. anyscale/client/openapi_client/models/{webterminal_list_response.py → jobwithreport_list_response.py} +15 -15
  12. anyscale/commands/cloud_commands.py +71 -0
  13. anyscale/connect_utils/prepare_cluster.py +19 -14
  14. anyscale/controllers/cloud_controller.py +164 -1
  15. anyscale/job/_private/job_sdk.py +22 -24
  16. anyscale/version.py +1 -1
  17. {anyscale-0.26.16.dist-info → anyscale-0.26.18.dist-info}/METADATA +1 -1
  18. {anyscale-0.26.16.dist-info → anyscale-0.26.18.dist-info}/RECORD +23 -38
  19. anyscale/client/openapi_client/models/archived_logs_info.py +0 -164
  20. anyscale/client/openapi_client/models/archivedlogsinfo_response.py +0 -121
  21. anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +0 -123
  22. anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +0 -538
  23. anyscale/client/openapi_client/models/create_session_in_db.py +0 -434
  24. anyscale/client/openapi_client/models/createsessionresponse_response.py +0 -121
  25. anyscale/client/openapi_client/models/external_service_status.py +0 -147
  26. anyscale/client/openapi_client/models/external_service_status_response.py +0 -250
  27. anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +0 -121
  28. anyscale/client/openapi_client/models/monitor_logs_extension.py +0 -100
  29. anyscale/client/openapi_client/models/session_describe.py +0 -175
  30. anyscale/client/openapi_client/models/session_history_item.py +0 -146
  31. anyscale/client/openapi_client/models/sessiondescribe_response.py +0 -121
  32. anyscale/client/openapi_client/models/sessiondetails_response.py +0 -121
  33. anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +0 -147
  34. anyscale/client/openapi_client/models/update_compute_template.py +0 -146
  35. anyscale/client/openapi_client/models/update_compute_template_config.py +0 -464
  36. {anyscale-0.26.16.dist-info → anyscale-0.26.18.dist-info}/LICENSE +0 -0
  37. {anyscale-0.26.16.dist-info → anyscale-0.26.18.dist-info}/NOTICE +0 -0
  38. {anyscale-0.26.16.dist-info → anyscale-0.26.18.dist-info}/WHEEL +0 -0
  39. {anyscale-0.26.16.dist-info → anyscale-0.26.18.dist-info}/entry_points.txt +0 -0
  40. {anyscale-0.26.16.dist-info → anyscale-0.26.18.dist-info}/top_level.txt +0 -0
@@ -33,6 +33,26 @@ from anyscale.utils.runtime_env import parse_requirements_file
33
33
 
34
34
  logger = BlockLogger()
35
35
 
36
+ HA_JOB_STATE_TO_JOB_STATE = {
37
+ HaJobStates.UPDATING: JobState.RUNNING,
38
+ HaJobStates.RUNNING: JobState.RUNNING,
39
+ HaJobStates.RESTARTING: JobState.RUNNING,
40
+ HaJobStates.CLEANING_UP: JobState.RUNNING,
41
+ HaJobStates.PENDING: JobState.STARTING,
42
+ HaJobStates.AWAITING_CLUSTER_START: JobState.STARTING,
43
+ HaJobStates.SUCCESS: JobState.SUCCEEDED,
44
+ HaJobStates.ERRORED: JobState.FAILED,
45
+ HaJobStates.TERMINATED: JobState.FAILED,
46
+ HaJobStates.BROKEN: JobState.FAILED,
47
+ HaJobStates.OUT_OF_RETRIES: JobState.FAILED,
48
+ }
49
+
50
+ TERMINAL_HA_JOB_STATES = [
51
+ HaJobStates.SUCCESS,
52
+ HaJobStates.TERMINATED,
53
+ HaJobStates.OUT_OF_RETRIES,
54
+ ]
55
+
36
56
 
37
57
  class PrivateJobSDK(WorkloadSDK):
38
58
  _POLLING_INTERVAL_SECONDS = 10.0
@@ -215,20 +235,6 @@ class PrivateJobSDK(WorkloadSDK):
215
235
  )
216
236
  return job.id
217
237
 
218
- _HA_JOB_STATE_TO_JOB_STATE = {
219
- HaJobStates.UPDATING: JobState.RUNNING,
220
- HaJobStates.RUNNING: JobState.RUNNING,
221
- HaJobStates.RESTARTING: JobState.RUNNING,
222
- HaJobStates.CLEANING_UP: JobState.RUNNING,
223
- HaJobStates.PENDING: JobState.STARTING,
224
- HaJobStates.AWAITING_CLUSTER_START: JobState.STARTING,
225
- HaJobStates.SUCCESS: JobState.SUCCEEDED,
226
- HaJobStates.ERRORED: JobState.FAILED,
227
- HaJobStates.TERMINATED: JobState.FAILED,
228
- HaJobStates.BROKEN: JobState.FAILED,
229
- HaJobStates.OUT_OF_RETRIES: JobState.FAILED,
230
- }
231
-
232
238
  _BACKEND_JOB_STATUS_TO_JOB_RUN_STATE = {
233
239
  BackendJobStatus.RUNNING: JobRunState.RUNNING,
234
240
  BackendJobStatus.COMPLETED: JobRunState.SUCCEEDED,
@@ -241,9 +247,7 @@ class PrivateJobSDK(WorkloadSDK):
241
247
 
242
248
  def _job_state_from_job_model(self, model: ProductionJob) -> JobState:
243
249
  ha_state = model.state.current_state if model.state else None
244
- return cast(
245
- JobState, self._HA_JOB_STATE_TO_JOB_STATE.get(ha_state, JobState.UNKNOWN)
246
- )
250
+ return cast(JobState, HA_JOB_STATE_TO_JOB_STATE.get(ha_state, JobState.UNKNOWN))
247
251
 
248
252
  def _job_run_model_to_job_run_status(self, run: Job) -> JobRunStatus:
249
253
  state = self._BACKEND_JOB_STATUS_TO_JOB_RUN_STATE.get(
@@ -358,12 +362,6 @@ class PrivateJobSDK(WorkloadSDK):
358
362
  self.logger.info(f"Marked job '{job_model.name}' for termination")
359
363
  return job_model.id
360
364
 
361
- _TERMINAL_HA_JOB_STATES = [
362
- HaJobStates.SUCCESS,
363
- HaJobStates.TERMINATED,
364
- HaJobStates.OUT_OF_RETRIES,
365
- ]
366
-
367
365
  def archive(
368
366
  self,
369
367
  *,
@@ -377,7 +375,7 @@ class PrivateJobSDK(WorkloadSDK):
377
375
  )
378
376
 
379
377
  ha_state = job_model.state.current_state if job_model.state else None
380
- if ha_state not in self._TERMINAL_HA_JOB_STATES:
378
+ if ha_state not in TERMINAL_HA_JOB_STATES:
381
379
  raise RuntimeError(
382
380
  f"Job with ID '{job_model.id}' has not reached a terminal state and cannot be archived."
383
381
  )
anyscale/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.26.16"
1
+ __version__ = "0.26.18"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: anyscale
3
- Version: 0.26.16
3
+ Version: 0.26.18
4
4
  Summary: Command Line Interface for Anyscale
5
5
  Author: Anyscale Inc.
6
6
  License: AS License
@@ -1,8 +1,8 @@
1
1
  anyscale/__init__.py,sha256=YtAe4ql_2J7SnRMMvJzx1Fdw2ZjtC2VLfZFPSDMdLxA,8595
2
2
  anyscale/anyscale-cloud-setup-gcp-oa.yaml,sha256=varT3AFGxDy7V8o3_zCwUyoi22MiDmZovfpvkbkyeAU,2715
3
- anyscale/anyscale-cloud-setup-gcp.yaml,sha256=cH43b2tfhQr0tKQtQsE2uXLF0vJtuen68qo5DlHG_lA,3908
3
+ anyscale/anyscale-cloud-setup-gcp.yaml,sha256=b9fKDG8syJuoZJOAr4LZdLGto3sDDil9EOoboXWC9UE,4011
4
4
  anyscale/anyscale-cloud-setup-oa.yaml,sha256=MMfjT2UCNQS43I3mGOMoSq1cq1dufxtnXU9Zy260TK8,3192
5
- anyscale/anyscale-cloud-setup.yaml,sha256=PoAPDoVbnWLayNGjEgLYJd1RoyopYhReVCwHoEUjuMM,8937
5
+ anyscale/anyscale-cloud-setup.yaml,sha256=iXCIL8gydOlRzjG5GPxBx1diLQyAkHVN_fIlSoqTLiM,8762
6
6
  anyscale/anyscale_schema.json,sha256=pQtFMvsYLZF39HcfhFV-ze15W9oELuWHz16PED7sMSQ,193
7
7
  anyscale/api.py,sha256=JrzEdDUAHCBOKQKu6RFEh6WDUGhm7OEiw97PQqmu4T4,7488
8
8
  anyscale/authenticate.py,sha256=4RiJ1Ruu-JKENwuMkWqq1R19DXxucVPS-GoKlii1fLI,12346
@@ -27,7 +27,7 @@ anyscale/scripts.py,sha256=HR6JOCBVBXMVi1Kz5uJmjsh73t2l1W8UbUge83ofnqk,5474
27
27
  anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
28
28
  anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
29
29
  anyscale/util.py,sha256=Tqb9qWSxQI_PBJVSDxm9RWqFyGJFClgZDPByhb_fhU8,40813
30
- anyscale/version.py,sha256=vEOqYFBjbYbsWUrfgGxQ8I86asToHKX7HNLE41dykhE,24
30
+ anyscale/version.py,sha256=rX7I8qgJ5-T_gu8HTMqYW-dXs0krqtSxfKQANv9bF0M,24
31
31
  anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
32
32
  anyscale/_private/anyscale_client/README.md,sha256=gk8obk7kqg6VWoUHcqDMwJULh35tYKEZFC0UF_dixGA,718
33
33
  anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
@@ -105,7 +105,7 @@ anyscale/background/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
105
105
  anyscale/background/job_runner.py,sha256=LTuv9JOahyv6C9i7DLQAONgQF6--FfYZEmJrKy-sUG8,2687
106
106
  anyscale/client/.gitignore,sha256=JZyvYEtT2DCSK9V5Joi6lQofhMik4PXiJRCWsg7SvqI,807
107
107
  anyscale/client/.openapi-generator-ignore,sha256=pu2PTide7pJtJ-DFLzDy0cTYQJRlrB-8RRH3zGLeUds,1040
108
- anyscale/client/README.md,sha256=PXHUrwyAww6owFfX26ac4IFMcXDKTqiEDZm5Jlu7YbM,118787
108
+ anyscale/client/README.md,sha256=hCgTiDlYxN9JlCSH7zT8atERxri0DnHuz_zsaCBDR5c,113527
109
109
  anyscale/client/git_push.sh,sha256=EDCZOTTiLxbtPHmiU63qC99rGH67B7dhdPZdNUKivF0,1827
110
110
  anyscale/client/requirements.txt,sha256=dkVKYUStC5h_g_87SH7pRdhXCj7ySozAJMGAFEzGgFc,126
111
111
  anyscale/client/setup.cfg,sha256=l7bdKSIedeBhhoDtupsBwx1xPrlBf2yYeTH7a8kMga4,28
@@ -113,14 +113,14 @@ anyscale/client/setup.py,sha256=tSxqw1kAL1B9adnrnOarjnQfSbwGmnTr_kg8ZXhlm5A,1109
113
113
  anyscale/client/test-requirements.txt,sha256=sTjmDTj5W9fh1ZAeo8UT2EBdeGDBNttj_PHiPBXg1D4,111
114
114
  anyscale/client/tox.ini,sha256=M6L3UmvAdvU65LsoAF-Oi7oRjwZlCJZn8I7ofdXn5Ok,156
115
115
  anyscale/client/.openapi-generator/VERSION,sha256=J0RzX-4u4jfin1kviKtmncjUePyjHm2kyvmkobOrt_E,5
116
- anyscale/client/openapi_client/__init__.py,sha256=ve2JRfQLzLfaP_y5CTytiu9dlJkI4i1fBQdb3LFs39g,50956
116
+ anyscale/client/openapi_client/__init__.py,sha256=zjUA1Xp8lJBojt4UQHWxwNO2hKgaWBK5LFbERdbg8x0,49601
117
117
  anyscale/client/openapi_client/api_client.py,sha256=d8Un6j2Ny2vlS2qBXPVFj6_ql0k36DFahpWt_28TfCk,25563
118
118
  anyscale/client/openapi_client/configuration.py,sha256=Dd5XrlHwv-wxnf0C35PG_-HBQoY3Yaz6hKrmkZz-m0E,12363
119
119
  anyscale/client/openapi_client/exceptions.py,sha256=3egwsXQG2j_vARbqgBxUO1xSltAhpfiHTYVP7VXTvU0,3792
120
120
  anyscale/client/openapi_client/rest.py,sha256=Ehj37v7GHW6SXV067Hze5HE42ayKaGi6a6ZlkR7u3Lg,12501
121
121
  anyscale/client/openapi_client/api/__init__.py,sha256=i8u7BI2xX1GrXTL3hN0pKpYIlnT-D_uDxH2ElOfYG1I,141
122
- anyscale/client/openapi_client/api/default_api.py,sha256=DuhazQT246YNmVmxTxTbuwKMBYS3Fa1FWzVMIwoGT-g,1921710
123
- anyscale/client/openapi_client/models/__init__.py,sha256=-DgBfAM69iJlCNUu3h9wJyE2L-DSTyuUoozIdFs8ZDM,50466
122
+ anyscale/client/openapi_client/api/default_api.py,sha256=c8nTVuVoQ-YPTQjIIEbhGEMlTmldkYdcVDL2QkdQFSQ,1833385
123
+ anyscale/client/openapi_client/models/__init__.py,sha256=8SIsJL27unfK2VwZkM68Q7f0bb6KutnYDgQKR6VX4oc,49111
124
124
  anyscale/client/openapi_client/models/access_config.py,sha256=b2mA0qtuTA5PFbp6C61Jc_T2zUMaojM1v32IhZo0MfY,3648
125
125
  anyscale/client/openapi_client/models/actor_status.py,sha256=6xyX_aIqURj2raBdY9DmBxsdDACFrqqYvElGiM6YG2E,2813
126
126
  anyscale/client/openapi_client/models/admin_create_user.py,sha256=9DPr8D0lKgoEZ3Z2kGsAd8L7ocFCiP6woOGLVs8SRb8,7251
@@ -149,8 +149,6 @@ anyscale/client/openapi_client/models/application_type.py,sha256=JbtN0lMj9FwGMAG
149
149
  anyscale/client/openapi_client/models/applied_snapshot.py,sha256=E8NoLPyvm7W-gFjDiq3N5zvtyXHLTnHmSx_xQrK7gdM,5173
150
150
  anyscale/client/openapi_client/models/apply_production_service_v2_model.py,sha256=hDMcjs3wRl-eEAW9GOPdUunLqNm6s6kCp-PuJhRSynA,20273
151
151
  anyscale/client/openapi_client/models/archive_status.py,sha256=wdqbSNwU-tjYNBcA4BSr0uHVCOL4iNimbV1llKObDJ0,2875
152
- anyscale/client/openapi_client/models/archived_logs_info.py,sha256=dJdgoCcegqF5Bx-XlEQsBCuA9Xg-Uo196qdNSv-7IRw,5569
153
- anyscale/client/openapi_client/models/archivedlogsinfo_response.py,sha256=nNvkENQbN6ExopEzhr0Vym5iqjQlII0KEYVEGm08n00,3594
154
152
  anyscale/client/openapi_client/models/attach_machine_pool_to_cloud_request.py,sha256=M3iOlHPrWthJmqkBCoMAMk1Ks3oCWk0lvL0XZBClVJw,5011
155
153
  anyscale/client/openapi_client/models/attachmachinepooltocloudresponse_response.py,sha256=eCMGXJNPVGsaXAIzMbJKwyzTmzQh_WTQo3Hfw5_OArU,3692
156
154
  anyscale/client/openapi_client/models/aws_memory_db_cluster_config.py,sha256=0iWNQjSxtrZK4kgb_I56oVyX2AmZnFj7nlSnY3272Fc,4334
@@ -266,7 +264,6 @@ anyscale/client/openapi_client/models/create_compute_template.py,sha256=NpjLX4Cx
266
264
  anyscale/client/openapi_client/models/create_compute_template_config.py,sha256=mbp6nXU8Cpp9pymo47IVP6hd0Xmp2-8LXB8Fv4eteYA,19443
267
265
  anyscale/client/openapi_client/models/create_dataset.py,sha256=fTcTUHQjutWziTlCEdRwY2ezmvDqGNKM5MmWgI811ZA,5666
268
266
  anyscale/client/openapi_client/models/create_experimental_workspace.py,sha256=Bx6MSIMCCpdr53fsnt409NkDdoXKx30nsU5vTHCAKf8,16783
269
- anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py,sha256=8opfUQZcfnJ0kwZwEZPN1i4HAfhi2guFzNrdwVrtT-c,3731
270
267
  anyscale/client/openapi_client/models/create_instance_usage_budget.py,sha256=54uVdd4kFTbjVMEzxWP6A3vApzraMGYW5-NaVqpzp3o,8142
271
268
  anyscale/client/openapi_client/models/create_internal_production_job.py,sha256=ORm33kIVat8_L93jQwZ8xK-GDL2bnFmcJh1aF8L9Tng,8333
272
269
  anyscale/client/openapi_client/models/create_job_queue_config.py,sha256=UGjwSG2WAM8pKE4ye8CtsxYBpehg0MURNnj_z-UPqRo,7659
@@ -284,9 +281,6 @@ anyscale/client/openapi_client/models/create_production_job_config.py,sha256=0R8
284
281
  anyscale/client/openapi_client/models/create_resource_notification.py,sha256=5x-fXt1Nk5hC46SQoutxx8HsBokixrfjL3rRjDv_Qsg,8938
285
282
  anyscale/client/openapi_client/models/create_resource_quota.py,sha256=WOly3xraLO5vdgtEs9DeIj9oX9MHZIkQ-_UZYYDu0Pk,9504
286
283
  anyscale/client/openapi_client/models/create_schedule.py,sha256=JMUqz1xn6IUkhow3yTLouhmTzIVJMsF3S6KbGMF7MQQ,8048
287
- anyscale/client/openapi_client/models/create_session_from_snapshot_options.py,sha256=38ypHkdaeT7RIb2cXqGtJujVmDvDT9_VsEdpas3iMYY,17144
288
- anyscale/client/openapi_client/models/create_session_in_db.py,sha256=OrIQjqJu-pAYuxyOkmv7GNsNFVO-TEGVRE_eRcwDbsY,16107
289
- anyscale/client/openapi_client/models/create_session_response.py,sha256=jS4rUO9gYUXRJBG4HstJOkWRRrbPUFolgZpXRrUs5Sg,5196
290
284
  anyscale/client/openapi_client/models/create_user.py,sha256=X0fYOmtGTZdeLBqQPSswW1OKRxOR0WnUs46ts55CJJA,13055
291
285
  anyscale/client/openapi_client/models/create_user_project_collaborator.py,sha256=fVOq4CdWCnUGdcGZ9W1S-GbPRTtdmxsuk1YKMVbRv3c,4754
292
286
  anyscale/client/openapi_client/models/create_user_project_collaborator_value.py,sha256=uhMT0idbt779Oh4m4YjHqwwaIgzXVNHhluBMqqsf0Mk,3614
@@ -296,7 +290,6 @@ anyscale/client/openapi_client/models/createcomputetemplateconfig_response.py,sh
296
290
  anyscale/client/openapi_client/models/createmachinepoolresponse_response.py,sha256=LlTyOikCkVDwdfwYYmXIHX3uMhjh0FFh1AMUvAaVOkY,3693
297
291
  anyscale/client/openapi_client/models/createmachineresponse_response.py,sha256=mY9w7BwLEaOYAC-lhO88vjr_c8bi4P-gpIYGTCzfuIg,3649
298
292
  anyscale/client/openapi_client/models/createotpreturnapimodel_response.py,sha256=-yGCKneUlIQsSimVNFA8BIpVbX_L9CREhz7rbYmf-II,3671
299
- anyscale/client/openapi_client/models/createsessionresponse_response.py,sha256=_C0NHXFcgRBZLVfnTUgXrcfXqH0zBmeWpj-f03no3Vs,3649
300
293
  anyscale/client/openapi_client/models/credit_card_information.py,sha256=Ael5jCvF_GFy5jKGNtAqjwai5TgbIi75wdV7X0eVrOs,9077
301
294
  anyscale/client/openapi_client/models/customer_alert_status.py,sha256=hcvEKv0QHAy-98ENvrud0FfIVHK5Lu6GOC8QDBRfCrU,2890
302
295
  anyscale/client/openapi_client/models/dataplane_services.py,sha256=iPEKAk7R83srccjR0l25YY2pntdf_6IfID-dhDA9v_4,2918
@@ -378,10 +371,7 @@ anyscale/client/openapi_client/models/experimental_workspace.py,sha256=_WpXDSNeL
378
371
  anyscale/client/openapi_client/models/experimental_workspaces_sort_field.py,sha256=WHOf5Si--4hZoN1NOI8kI6n2Wx0wiSCG56diEGzZMXk,2914
379
372
  anyscale/client/openapi_client/models/experimentalworkspace_list_response.py,sha256=oOmoou73HokkkQfBfCdA7mQxOSF3Ob77owdasRfl3gg,4512
380
373
  anyscale/client/openapi_client/models/experimentalworkspace_response.py,sha256=Udf5K4wvuv_ErA-JDqNAcsh1vRghkaE8yueFxMSEhVM,3649
381
- anyscale/client/openapi_client/models/external_service_status.py,sha256=l1enrZAHa7d8U7YnTzGmpEuky6BhGGwDj_Fp7g2gZQw,4409
382
- anyscale/client/openapi_client/models/external_service_status_response.py,sha256=WlmLcP2fo7hghfuAUShKokyQhK9xmfN3czgD1vrKwII,9088
383
374
  anyscale/client/openapi_client/models/external_terminal_command.py,sha256=R5kMd76ORJQaKpfmWHMgW_7ccycLykytcv5pcJn09lg,8540
384
- anyscale/client/openapi_client/models/externalservicestatusresponse_response.py,sha256=lZ5e8OKtB69mWwnl-THbl4tbuth1FtfR9KGhgNi1_PA,3737
385
375
  anyscale/client/openapi_client/models/feature_flag_response.py,sha256=XEXXNwJbCzkB1f0MlDYKiBomCMWcAepGi3YZ4XbKqe4,3497
386
376
  anyscale/client/openapi_client/models/featureflagresponse_response.py,sha256=yjGDng-Yz0lyS62dJKLM4ie9XBkaBDJAN4H5Qg72TIU,3627
387
377
  anyscale/client/openapi_client/models/fine_tune_type.py,sha256=DyrjELH6kQYE7RZdTcDdHmS28P1X6aa__Q0DGzvv0S0,2832
@@ -403,6 +393,8 @@ anyscale/client/openapi_client/models/head_ip.py,sha256=9tA-NZRKeMS_ZbVivHY8-sYi
403
393
  anyscale/client/openapi_client/models/headip_response.py,sha256=IDibJ0klCJa8XCme3z97sN562tQnBOfjugCjNSgXeGc,3484
404
394
  anyscale/client/openapi_client/models/http_protocol_config.py,sha256=Jx7OQY7paI8_QM1KuCnBRpSMoExMRSIvN9Tfgc7sUl0,4203
405
395
  anyscale/client/openapi_client/models/http_validation_error.py,sha256=KsPu9vOlvrO888Ht7vNclZjbghvL_VCzCgAEowWIK10,3413
396
+ anyscale/client/openapi_client/models/i_know_response.py,sha256=zc8ksZIsLnO7QsUiDuXMZAVEOVSXRROiWsHTx5271AA,5229
397
+ anyscale/client/openapi_client/models/i_know_time_series_event.py,sha256=N3oYWEzC6DLpV0mFnc4wWEglkJf6C3Zi56yjUYKoKrs,4370
406
398
  anyscale/client/openapi_client/models/idle_termination_status.py,sha256=gKV6Vhsk6qX9a0VpgkUTubyHrfVxAiiqvvz0YiGd3DY,3045
407
399
  anyscale/client/openapi_client/models/instance_usage_budget.py,sha256=bmXndzjWt3FbpZYuPTFs_KuLy3JiQVJpF4CTuXIs3yk,18163
408
400
  anyscale/client/openapi_client/models/instance_usage_budget_evaluation_period.py,sha256=CsNpLq0wAHqA47kDN-zAMPehDMvmRoCnqnaujs_P5RA,2918
@@ -423,10 +415,13 @@ anyscale/client/openapi_client/models/job_queue_execution_mode.py,sha256=5G2g8z_
423
415
  anyscale/client/openapi_client/models/job_queue_spec.py,sha256=7s4kjatMjuFtYJd8trZVW1lEsQ3SdOFsVbppZfdOAvA,9693
424
416
  anyscale/client/openapi_client/models/job_queue_state.py,sha256=5Ejli6rOUioLQj5EbABn02xPSwsBMgiFa3FW2WbCrp4,2830
425
417
  anyscale/client/openapi_client/models/job_queues_query.py,sha256=eJ11_nKrpAm-6038VDRFraIB-mr8DPOvJYJ8Peg9ZCA,7693
418
+ anyscale/client/openapi_client/models/job_report.py,sha256=B1TFEjlPQ46J8BCDFSr7g7PHh5nkxNRMRKxrMwZm8dQ,5982
426
419
  anyscale/client/openapi_client/models/job_run_type.py,sha256=S3eoraHzgnpxGysw3Sh24ZinKZYKWqgNWfO5oQg_p8o,2890
427
420
  anyscale/client/openapi_client/models/job_state_log_level_types.py,sha256=FCBUP-XKYXD4NsyW2_dBOhXNGKrDhEEF7s1rALRuFgE,2853
421
+ anyscale/client/openapi_client/models/job_with_report.py,sha256=pkLUtF2d8RF3VNp_6RiiWpH0e9BYrZ2BRY9C50xi_6Y,7481
428
422
  anyscale/client/openapi_client/models/jobqueue_response.py,sha256=cwvt1GkB2cKOWohhMukTazJGYmat0zBV4b2dvpqixkQ,3506
429
423
  anyscale/client/openapi_client/models/jobs_sort_field.py,sha256=G5NGcfckLltrUMLhIJsgOjtu9ckBkjyXqOqvb__GNvc,2929
424
+ anyscale/client/openapi_client/models/jobwithreport_list_response.py,sha256=dOVXB8NVOhgkGt39AXgwDYykEG6RLWvhl3h6aPtRwf8,4392
430
425
  anyscale/client/openapi_client/models/json_patch_operation.py,sha256=oHgT9WKmcuAp7fkkvFl0nPhoxdQVmPoxPfF82ivf73k,5419
431
426
  anyscale/client/openapi_client/models/kubernetes_manager_registration_request.py,sha256=CaAwpENkOAjpRNPoJzd2mGuvTOm5l4ZtJFQkG0P4VPI,4039
432
427
  anyscale/client/openapi_client/models/kubernetes_manager_registration_response.py,sha256=70j5F-CY429Z2yjCm7LRh4aebSwNV05L8pi087D1Uwc,4049
@@ -485,7 +480,6 @@ anyscale/client/openapi_client/models/mini_user.py,sha256=dbXO7_fG4oxFXd5YUXvNEg
485
480
  anyscale/client/openapi_client/models/minibuild_list_response.py,sha256=bjOPZtw3kS4eEdJRdDjt3u2MF9cIRkN-tDXaVCE9jfA,4332
486
481
  anyscale/client/openapi_client/models/minicomputetemplate_list_response.py,sha256=u7Ka89pKvGtG0DeoQoky8S-oCsjFzpEbVNhY4PoMINk,4482
487
482
  anyscale/client/openapi_client/models/miniproject_list_response.py,sha256=6v2jJb9CtwaxYgHTGMjj0Vy3fsph2dtLZnD2Rgcb_Qo,4362
488
- anyscale/client/openapi_client/models/monitor_logs_extension.py,sha256=ZN4LDoEl98zv8gVJcTkvynctgjIDVF7pAUBBInSLND0,2840
489
483
  anyscale/client/openapi_client/models/nfs_mount_target.py,sha256=UcbO5HIS_bjngFZ94yKCmt93h6lfX8K5Ua3WVjABiU4,4421
490
484
  anyscale/client/openapi_client/models/node_registration_aws.py,sha256=hDvIYhk5Tt-FZWl3dtEzv5vay3-V4LZ9UDOeRq0OAds,5430
491
485
  anyscale/client/openapi_client/models/node_registration_gcp.py,sha256=Sh8FjvGzLzw_1BaRA9Q8lC6GXYPjMHXvr3MrpPRSmhY,3691
@@ -605,9 +599,6 @@ anyscale/client/openapi_client/models/session_command.py,sha256=-jCOj9e8El2osefi
605
599
  anyscale/client/openapi_client/models/session_command_finish_options.py,sha256=TsILOtI6q81eNdXw7-gLtJPAXBH14WoVVYpkzhmCcbM,6763
606
600
  anyscale/client/openapi_client/models/session_command_id.py,sha256=sbnjJ6XyYn1FakmV2jYF1F007VnITjtg_9Q-D2U_CFw,3407
607
601
  anyscale/client/openapi_client/models/session_command_types.py,sha256=nYeMDVpsFP4nAxOh5iJnWzPFCP9lahvxdZHMK2_Bpog,2908
608
- anyscale/client/openapi_client/models/session_describe.py,sha256=1piU2mAEF7oSsltT5AiJhm5hUghKY98x5pwArcQJs5I,5347
609
- anyscale/client/openapi_client/models/session_details.py,sha256=FucWGNtKWTU9TKvy6PVW-PG6YJ7VhYDVwgxR3tVBBQc,4298
610
- anyscale/client/openapi_client/models/session_history_item.py,sha256=cuP3TuhlsJHAwTZfCAATxp6RjSNsRQIYAcT3XIGbg64,4281
611
602
  anyscale/client/openapi_client/models/session_list_response.py,sha256=uSahaZwTMmriOyi3ab5vZLGqg9op8_NZHCIZA6gDwEc,4302
612
603
  anyscale/client/openapi_client/models/session_response.py,sha256=1_9rNO_Sg0hFcHLvBk8PGE770Tv9Hit8we6T6-dY48A,3495
613
604
  anyscale/client/openapi_client/models/session_ssh_key.py,sha256=JceGwkcPKd81PxSz5rhYNywsqUtm3Fn8_CnStD8yBKw,4391
@@ -617,9 +608,6 @@ anyscale/client/openapi_client/models/session_state_data.py,sha256=r3Dn1NjryniF8
617
608
  anyscale/client/openapi_client/models/session_stopping_data.py,sha256=JJzsX40809Y2IXtIVrgEx6yXoJwnQwYwPhfaqZkOGLI,4224
618
609
  anyscale/client/openapi_client/models/sessioncommand_list_response.py,sha256=-Ci7HMfzL9PlQyDkA8RTM1jEvt1QcgOFo1xxlakVsEQ,4407
619
610
  anyscale/client/openapi_client/models/sessioncommandid_response.py,sha256=x74buYN5e5ZGMWpMrBHXFwNVQlPKJd4dxtkij_hnzTc,3594
620
- anyscale/client/openapi_client/models/sessiondescribe_response.py,sha256=Ujer2LG0p_iUY9eBTlUUB99oLB6EGuEq_lEbo950b94,3583
621
- anyscale/client/openapi_client/models/sessiondetails_response.py,sha256=Lh-hoiRP3K7OH4sMvIHCJ7VK1JhWdngBy30QP-Z_uto,3572
622
- anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py,sha256=H837Bhwhtj9zzzgftglrPVAtkJuCC3bTkpnItPfDMA8,4467
623
611
  anyscale/client/openapi_client/models/sessions_sort_field.py,sha256=6C7TSxmnELVnK0l9_g3bSb9nV2fCLQroGdsZlTxymDY,2957
624
612
  anyscale/client/openapi_client/models/sessionsshkey_response.py,sha256=z0YT-uC_DYS6kn1C_2Xs6NHR4eMaOkRg05OUd1w02t0,3561
625
613
  anyscale/client/openapi_client/models/show_otp_source_return_api_model.py,sha256=gNK_eO-cTjA-aMCD2-U61psMxVsD4N9DzT6JQlOV1kQ,3642
@@ -669,8 +657,6 @@ anyscale/client/openapi_client/models/update_cloud_collaborator.py,sha256=9jWSKG
669
657
  anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py,sha256=6eRMQHPB0s02qJoWvSiuHvtju467k5OsKuufd2Lch2c,5876
670
658
  anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py,sha256=qrHjRe0pFdddwx8ZsA6V2mIXjnX6NYBKBQV2GBja6Ck,5941
671
659
  anyscale/client/openapi_client/models/update_cluster_dns.py,sha256=eFCs_MSsb21TPWmPb4MQ67R0bcxfbTaCm2pdKh1FkEw,4575
672
- anyscale/client/openapi_client/models/update_compute_template.py,sha256=GcAedNOYkfQ_l1DGNZCB88wBH3gy1VNVM3O_4AfYEFI,4060
673
- anyscale/client/openapi_client/models/update_compute_template_config.py,sha256=wsisV5ZwcgLmuJ2876X9VOREpQx7BDsD7BGT0RCs3kg,19443
674
660
  anyscale/client/openapi_client/models/update_machine_pool_request.py,sha256=Pi5R5BzHrIWBUch7t7zifYCXycSpanQLimzpmBOCujg,4778
675
661
  anyscale/client/openapi_client/models/update_organization_collaborator.py,sha256=2PzbKhiVmAAJXq_k-FxIP5ntaVpDQQk4LC7mMEeZfPY,3885
676
662
  anyscale/client/openapi_client/models/update_project_collaborator.py,sha256=xT3k_qmoR_8Fxx9z5KwSxnbR08T2KILf38TAFfRCdZQ,3809
@@ -701,7 +687,6 @@ anyscale/client/openapi_client/models/waitlist_status_type.py,sha256=Bmp1_5ti1Jn
701
687
  anyscale/client/openapi_client/models/waitliststatusresponse_response.py,sha256=PNNx1b5OjpIA7BVCRoRC_2gH6WuugseukY520qNlYkw,3660
702
688
  anyscale/client/openapi_client/models/wand_b_run_details.py,sha256=nc6gIQyhHO-TjJ2uXNqGKg_q0AfGKCiukFsFGZ_l36g,4443
703
689
  anyscale/client/openapi_client/models/web_terminal.py,sha256=UlXKrr1YuphJEJfy0_jqM7Kdf_jzfZXDxuzGwqM5Id8,3367
704
- anyscale/client/openapi_client/models/webterminal_list_response.py,sha256=Nfs_uwfCTJUrMh9GjuETg07gwYRKIIhkxCqKhQIJhHU,4362
705
690
  anyscale/client/openapi_client/models/webterminal_response.py,sha256=KG0tKpUPrAo2hfLMgvz206X6q0vXkHrRzcTNUTwgqr0,3539
706
691
  anyscale/client/openapi_client/models/worker_node_type.py,sha256=XseU2rjirdvOqwCm0BpeRlSNDjn1m-g7-CtK3Sq-h9k,15048
707
692
  anyscale/client/openapi_client/models/workload_info.py,sha256=LLQGnqpARetLifmfG8G45qzfxBK2yi8lkOipllTu74Y,6926
@@ -734,7 +719,7 @@ anyscale/cloud/_private/cloud_sdk.py,sha256=xCoAVomOfo75YWZzHMm9TDeL8UUx79Gn1DeE
734
719
  anyscale/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
735
720
  anyscale/commands/aggregated_instance_usage_commands.py,sha256=TRP1X3hdIWbKg9V20VtazlDXsYAeV--M0DH3-Z5tnj4,2293
736
721
  anyscale/commands/auth_commands.py,sha256=X1g6Yu9kqgPb4HLODlZTYEk8G5AVLeyizPIgagWx-p0,1026
737
- anyscale/commands/cloud_commands.py,sha256=C0AyWttfstcj66WX8y5hH4E0KMO4k33AQhnmGYzY5tw,41123
722
+ anyscale/commands/cloud_commands.py,sha256=UxoTORCpBNrT5XkzGtQ_hrXa93vtY4WmRBhaVylUss0,43111
738
723
  anyscale/commands/cloud_commands_util.py,sha256=d-6TSZ_syrGkZ3Fc1uRX6jG4dqYMebNkBNpYLojOJFg,247
739
724
  anyscale/commands/cluster_commands.py,sha256=taNcffyFfqJ1MgOQd0cz9kzRXWFTdp-wfLPM4l_2tBc,13487
740
725
  anyscale/commands/cluster_env_commands.py,sha256=KNWylyE8Ew1sDi7yu2Tp4RLcRu2_KJJJIzVGRyPflJo,3899
@@ -774,13 +759,13 @@ anyscale/compute_config/commands.py,sha256=jSU-BemFgr085b7r9-sA2_m63Oa2pN-6GeFJx
774
759
  anyscale/compute_config/models.py,sha256=OpHbfeQ9Qpu6mccb2mSbd7T1d68IpaeRZ8ZOPnmlvFg,20701
775
760
  anyscale/compute_config/_private/compute_config_sdk.py,sha256=-puLVidXFURBhskS8qOHHUJV_MwDA2cPgi_9BUlM0dg,17276
776
761
  anyscale/connect_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
777
- anyscale/connect_utils/prepare_cluster.py,sha256=J6tPJRnrgTtFgQ_quwDiP02XS0VBC0x5Sr2PkTIeafU,41775
762
+ anyscale/connect_utils/prepare_cluster.py,sha256=2QF_yHpXgKuGu3yv89ALTRjyBXjIP4lA9z_x1BgMwxI,41859
778
763
  anyscale/connect_utils/project.py,sha256=LwcGqTQS_mZp6C79NMoMhmcWGR9j2C1Zi1S4PnPNzhQ,12239
779
764
  anyscale/connect_utils/start_interactive_session.py,sha256=DbuIK2wuWofmbwJ9MLbsb7xpLDs8I2TJB6zWsyHXvjI,17446
780
765
  anyscale/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
781
766
  anyscale/controllers/auth_controller.py,sha256=hDY2sPvUP8pvh8PnlDYH5rCHjQes2v3b_KBVjMbrzeE,5127
782
767
  anyscale/controllers/base_controller.py,sha256=1QFJoScFUV7YTzpKarhwPOc1SvI-xqX3TZmwxKonW6I,1998
783
- anyscale/controllers/cloud_controller.py,sha256=H0x9562CgdLL__ANv62rpvdWPA4ks1ZB2vjFaeYek0g,157734
768
+ anyscale/controllers/cloud_controller.py,sha256=s-KUsjeppIeAfBwKiCSm97WjkSJUHeW4kH-PKgM3Ics,163482
784
769
  anyscale/controllers/cloud_functional_verification_controller.py,sha256=bmRmHS89Pr4m9CxCRLCHiB1FeMOTplnxzo-LdX_uFVQ,33400
785
770
  anyscale/controllers/cluster_controller.py,sha256=Sb5wVjrjpycg5iqmENAVtZ4iy9Kr6kM97_ck-KH85LM,28745
786
771
  anyscale/controllers/cluster_env_controller.py,sha256=JalGzcmnFtMHefYL5U6ijMY3nX6W6BsMEfZSMtgBvtU,8048
@@ -809,7 +794,7 @@ anyscale/image/_private/image_sdk.py,sha256=c6ONvbcq1bUP0YbfIMw8QLRFfVbCiiTwULQA
809
794
  anyscale/job/__init__.py,sha256=_5Nb3a11F4oAHXirTgx5vDdgpVzJ62FdGFmADxxvcPE,5051
810
795
  anyscale/job/commands.py,sha256=je0WDrd3mxt3iuoGqKvE_2TuMWsffXXM_IQ5SRjUKnU,8524
811
796
  anyscale/job/models.py,sha256=n-tVkvIRznes0QEwHn75i9u_LZ8whisTaN4iltz5JFs,17859
812
- anyscale/job/_private/job_sdk.py,sha256=927btJc68nofPfMljwToXI9lzZ7edj-uLmmEaAmCp6I,18979
797
+ anyscale/job/_private/job_sdk.py,sha256=6kQ5bDggA3f1MXcrlXAGrFRA7WAOcvKDVi8FXwq7z-E,18871
813
798
  anyscale/llm/__init__.py,sha256=lRp09PWR2gcJF_1Y9ieIIQWirijP5p_l3AQkTir2iN4,76
814
799
  anyscale/llm/sdk.py,sha256=VmA03eegizqikWR3eH2jYNiA8-FY3Qq1GGtvdkgU470,733
815
800
  anyscale/llm/dataset/__init__.py,sha256=J-z8d7Bdvjf_5OOjcHrFQrXnCxbdcvzUBcyapawIuHg,131
@@ -1106,10 +1091,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
1106
1091
  anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
1107
1092
  anyscale/workspace/models.py,sha256=Ey67KqxdslS51yK7xetbRaFjE8sURAArpf-F38r3cUU,9760
1108
1093
  anyscale/workspace/_private/workspace_sdk.py,sha256=l2baX2BtLX90ZJU3XZpwiDK_xM3SCjvjNv-pr6yUK2o,26938
1109
- anyscale-0.26.16.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1110
- anyscale-0.26.16.dist-info/METADATA,sha256=3ZgitoGLjrkn86aOOn5URMX9o4wuwsDKo6VKzfh-_7g,3160
1111
- anyscale-0.26.16.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1112
- anyscale-0.26.16.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
1113
- anyscale-0.26.16.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1114
- anyscale-0.26.16.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1115
- anyscale-0.26.16.dist-info/RECORD,,
1094
+ anyscale-0.26.18.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1095
+ anyscale-0.26.18.dist-info/METADATA,sha256=AmBYvk1TRGhhVeByi1utv2zm-M6CFL6AYEUjNlMSPK4,3160
1096
+ anyscale-0.26.18.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1097
+ anyscale-0.26.18.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
1098
+ anyscale-0.26.18.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1099
+ anyscale-0.26.18.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1100
+ anyscale-0.26.18.dist-info/RECORD,,
@@ -1,164 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Managed Ray API
5
-
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
7
-
8
- The version of the OpenAPI document: 0.1.0
9
- Generated by: https://openapi-generator.tech
10
- """
11
-
12
-
13
- import pprint
14
- import re # noqa: F401
15
-
16
- import six
17
-
18
- from openapi_client.configuration import Configuration
19
-
20
-
21
- class ArchivedLogsInfo(object):
22
- """NOTE: This class is auto generated by OpenAPI Generator.
23
- Ref: https://openapi-generator.tech
24
-
25
- Do not edit the class manually.
26
- """
27
-
28
- """
29
- Attributes:
30
- openapi_types (dict): The key is attribute name
31
- and the value is attribute type.
32
- attribute_map (dict): The key is attribute name
33
- and the value is json key in definition.
34
- """
35
- openapi_types = {
36
- 'url_head': 'str',
37
- 'url_get': 'str'
38
- }
39
-
40
- attribute_map = {
41
- 'url_head': 'url_head',
42
- 'url_get': 'url_get'
43
- }
44
-
45
- def __init__(self, url_head=None, url_get=None, local_vars_configuration=None): # noqa: E501
46
- """ArchivedLogsInfo - a model defined in OpenAPI""" # noqa: E501
47
- if local_vars_configuration is None:
48
- local_vars_configuration = Configuration()
49
- self.local_vars_configuration = local_vars_configuration
50
-
51
- self._url_head = None
52
- self._url_get = None
53
- self.discriminator = None
54
-
55
- self.url_head = url_head
56
- self.url_get = url_get
57
-
58
- @property
59
- def url_head(self):
60
- """Gets the url_head of this ArchivedLogsInfo. # noqa: E501
61
-
62
- Used to probe when logs are available on s3. # noqa: E501
63
-
64
- :return: The url_head of this ArchivedLogsInfo. # noqa: E501
65
- :rtype: str
66
- """
67
- return self._url_head
68
-
69
- @url_head.setter
70
- def url_head(self, url_head):
71
- """Sets the url_head of this ArchivedLogsInfo.
72
-
73
- Used to probe when logs are available on s3. # noqa: E501
74
-
75
- :param url_head: The url_head of this ArchivedLogsInfo. # noqa: E501
76
- :type: str
77
- """
78
- if self.local_vars_configuration.client_side_validation and url_head is None: # noqa: E501
79
- raise ValueError("Invalid value for `url_head`, must not be `None`") # noqa: E501
80
- if (self.local_vars_configuration.client_side_validation and
81
- url_head is not None and len(url_head) > 2083):
82
- raise ValueError("Invalid value for `url_head`, length must be less than or equal to `2083`") # noqa: E501
83
- if (self.local_vars_configuration.client_side_validation and
84
- url_head is not None and len(url_head) < 1):
85
- raise ValueError("Invalid value for `url_head`, length must be greater than or equal to `1`") # noqa: E501
86
-
87
- self._url_head = url_head
88
-
89
- @property
90
- def url_get(self):
91
- """Gets the url_get of this ArchivedLogsInfo. # noqa: E501
92
-
93
- Download link for logs. # noqa: E501
94
-
95
- :return: The url_get of this ArchivedLogsInfo. # noqa: E501
96
- :rtype: str
97
- """
98
- return self._url_get
99
-
100
- @url_get.setter
101
- def url_get(self, url_get):
102
- """Sets the url_get of this ArchivedLogsInfo.
103
-
104
- Download link for logs. # noqa: E501
105
-
106
- :param url_get: The url_get of this ArchivedLogsInfo. # noqa: E501
107
- :type: str
108
- """
109
- if self.local_vars_configuration.client_side_validation and url_get is None: # noqa: E501
110
- raise ValueError("Invalid value for `url_get`, must not be `None`") # noqa: E501
111
- if (self.local_vars_configuration.client_side_validation and
112
- url_get is not None and len(url_get) > 2083):
113
- raise ValueError("Invalid value for `url_get`, length must be less than or equal to `2083`") # noqa: E501
114
- if (self.local_vars_configuration.client_side_validation and
115
- url_get is not None and len(url_get) < 1):
116
- raise ValueError("Invalid value for `url_get`, length must be greater than or equal to `1`") # noqa: E501
117
-
118
- self._url_get = url_get
119
-
120
- def to_dict(self):
121
- """Returns the model properties as a dict"""
122
- result = {}
123
-
124
- for attr, _ in six.iteritems(self.openapi_types):
125
- value = getattr(self, attr)
126
- if isinstance(value, list):
127
- result[attr] = list(map(
128
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
129
- value
130
- ))
131
- elif hasattr(value, "to_dict"):
132
- result[attr] = value.to_dict()
133
- elif isinstance(value, dict):
134
- result[attr] = dict(map(
135
- lambda item: (item[0], item[1].to_dict())
136
- if hasattr(item[1], "to_dict") else item,
137
- value.items()
138
- ))
139
- else:
140
- result[attr] = value
141
-
142
- return result
143
-
144
- def to_str(self):
145
- """Returns the string representation of the model"""
146
- return pprint.pformat(self.to_dict())
147
-
148
- def __repr__(self):
149
- """For `print` and `pprint`"""
150
- return self.to_str()
151
-
152
- def __eq__(self, other):
153
- """Returns true if both objects are equal"""
154
- if not isinstance(other, ArchivedLogsInfo):
155
- return False
156
-
157
- return self.to_dict() == other.to_dict()
158
-
159
- def __ne__(self, other):
160
- """Returns true if both objects are not equal"""
161
- if not isinstance(other, ArchivedLogsInfo):
162
- return True
163
-
164
- return self.to_dict() != other.to_dict()
@@ -1,121 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Managed Ray API
5
-
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
7
-
8
- The version of the OpenAPI document: 0.1.0
9
- Generated by: https://openapi-generator.tech
10
- """
11
-
12
-
13
- import pprint
14
- import re # noqa: F401
15
-
16
- import six
17
-
18
- from openapi_client.configuration import Configuration
19
-
20
-
21
- class ArchivedlogsinfoResponse(object):
22
- """NOTE: This class is auto generated by OpenAPI Generator.
23
- Ref: https://openapi-generator.tech
24
-
25
- Do not edit the class manually.
26
- """
27
-
28
- """
29
- Attributes:
30
- openapi_types (dict): The key is attribute name
31
- and the value is attribute type.
32
- attribute_map (dict): The key is attribute name
33
- and the value is json key in definition.
34
- """
35
- openapi_types = {
36
- 'result': 'ArchivedLogsInfo'
37
- }
38
-
39
- attribute_map = {
40
- 'result': 'result'
41
- }
42
-
43
- def __init__(self, result=None, local_vars_configuration=None): # noqa: E501
44
- """ArchivedlogsinfoResponse - a model defined in OpenAPI""" # noqa: E501
45
- if local_vars_configuration is None:
46
- local_vars_configuration = Configuration()
47
- self.local_vars_configuration = local_vars_configuration
48
-
49
- self._result = None
50
- self.discriminator = None
51
-
52
- self.result = result
53
-
54
- @property
55
- def result(self):
56
- """Gets the result of this ArchivedlogsinfoResponse. # noqa: E501
57
-
58
-
59
- :return: The result of this ArchivedlogsinfoResponse. # noqa: E501
60
- :rtype: ArchivedLogsInfo
61
- """
62
- return self._result
63
-
64
- @result.setter
65
- def result(self, result):
66
- """Sets the result of this ArchivedlogsinfoResponse.
67
-
68
-
69
- :param result: The result of this ArchivedlogsinfoResponse. # noqa: E501
70
- :type: ArchivedLogsInfo
71
- """
72
- if self.local_vars_configuration.client_side_validation and result is None: # noqa: E501
73
- raise ValueError("Invalid value for `result`, must not be `None`") # noqa: E501
74
-
75
- self._result = result
76
-
77
- def to_dict(self):
78
- """Returns the model properties as a dict"""
79
- result = {}
80
-
81
- for attr, _ in six.iteritems(self.openapi_types):
82
- value = getattr(self, attr)
83
- if isinstance(value, list):
84
- result[attr] = list(map(
85
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
86
- value
87
- ))
88
- elif hasattr(value, "to_dict"):
89
- result[attr] = value.to_dict()
90
- elif isinstance(value, dict):
91
- result[attr] = dict(map(
92
- lambda item: (item[0], item[1].to_dict())
93
- if hasattr(item[1], "to_dict") else item,
94
- value.items()
95
- ))
96
- else:
97
- result[attr] = value
98
-
99
- return result
100
-
101
- def to_str(self):
102
- """Returns the string representation of the model"""
103
- return pprint.pformat(self.to_dict())
104
-
105
- def __repr__(self):
106
- """For `print` and `pprint`"""
107
- return self.to_str()
108
-
109
- def __eq__(self, other):
110
- """Returns true if both objects are equal"""
111
- if not isinstance(other, ArchivedlogsinfoResponse):
112
- return False
113
-
114
- return self.to_dict() == other.to_dict()
115
-
116
- def __ne__(self, other):
117
- """Returns true if both objects are not equal"""
118
- if not isinstance(other, ArchivedlogsinfoResponse):
119
- return True
120
-
121
- return self.to_dict() != other.to_dict()