anyscale 0.25.10__py3-none-any.whl → 0.25.11__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/_private/docgen/models.md +2 -2
- anyscale/client/openapi_client/models/project.py +59 -61
- anyscale/client/openapi_client/models/projects_sort_field.py +1 -3
- anyscale/client/openapi_client/models/resource_alert_event_type.py +2 -3
- anyscale/sdk/anyscale_client/models/project.py +9 -11
- anyscale/version.py +1 -1
- {anyscale-0.25.10.dist-info → anyscale-0.25.11.dist-info}/METADATA +1 -1
- {anyscale-0.25.10.dist-info → anyscale-0.25.11.dist-info}/RECORD +13 -13
- {anyscale-0.25.10.dist-info → anyscale-0.25.11.dist-info}/LICENSE +0 -0
- {anyscale-0.25.10.dist-info → anyscale-0.25.11.dist-info}/NOTICE +0 -0
- {anyscale-0.25.10.dist-info → anyscale-0.25.11.dist-info}/WHEEL +0 -0
- {anyscale-0.25.10.dist-info → anyscale-0.25.11.dist-info}/entry_points.txt +0 -0
- {anyscale-0.25.10.dist-info → anyscale-0.25.11.dist-info}/top_level.txt +0 -0
@@ -1473,8 +1473,8 @@ Name | Type | Description | Notes
|
|
1473
1473
|
**last_used_cloud_id** | **str** | ID of the last cloud used in this project, or by the user if this is a new project. | [optional] [default to null]
|
1474
1474
|
**is_default** | **bool** | True if this project is the default project for the organization. | [default to null]
|
1475
1475
|
**directory_name** | **str** | Directory name of project to be used as working directory of clusters. | [default to null]
|
1476
|
-
**active_sessions** | **int** |
|
1477
|
-
**last_activity_at** | **datetime** |
|
1476
|
+
**active_sessions** | **int** | DEPRECATED. Number of active sessions for this project. | [optional] [default to 0]
|
1477
|
+
**last_activity_at** | **datetime** | DEPRECATED. The most recent activity for this project. This is based on the most recently created sessions | [optional] [default to null]
|
1478
1478
|
|
1479
1479
|
## ProjectListResponse
|
1480
1480
|
|
@@ -46,10 +46,10 @@ class Project(object):
|
|
46
46
|
'directory_name': 'str',
|
47
47
|
'cloud': 'str',
|
48
48
|
'last_used_cloud_id': 'str',
|
49
|
-
'active_sessions': 'int',
|
50
|
-
'last_activity_at': 'datetime',
|
51
49
|
'owners': 'list[MiniUser]',
|
52
|
-
'is_default': 'bool'
|
50
|
+
'is_default': 'bool',
|
51
|
+
'active_sessions': 'int',
|
52
|
+
'last_activity_at': 'datetime'
|
53
53
|
}
|
54
54
|
|
55
55
|
attribute_map = {
|
@@ -66,13 +66,13 @@ class Project(object):
|
|
66
66
|
'directory_name': 'directory_name',
|
67
67
|
'cloud': 'cloud',
|
68
68
|
'last_used_cloud_id': 'last_used_cloud_id',
|
69
|
-
'active_sessions': 'active_sessions',
|
70
|
-
'last_activity_at': 'last_activity_at',
|
71
69
|
'owners': 'owners',
|
72
|
-
'is_default': 'is_default'
|
70
|
+
'is_default': 'is_default',
|
71
|
+
'active_sessions': 'active_sessions',
|
72
|
+
'last_activity_at': 'last_activity_at'
|
73
73
|
}
|
74
74
|
|
75
|
-
def __init__(self, name=None, description=None, cloud_id=None, initial_cluster_config=None, parent_cloud_id=None, id=None, created_at=None, creator_id=None, is_owner=None, is_read_only=None, directory_name=None, cloud=None, last_used_cloud_id=None,
|
75
|
+
def __init__(self, name=None, description=None, cloud_id=None, initial_cluster_config=None, parent_cloud_id=None, id=None, created_at=None, creator_id=None, is_owner=None, is_read_only=None, directory_name=None, cloud=None, last_used_cloud_id=None, owners=[], is_default=None, active_sessions=0, last_activity_at=None, local_vars_configuration=None): # noqa: E501
|
76
76
|
"""Project - a model defined in OpenAPI""" # noqa: E501
|
77
77
|
if local_vars_configuration is None:
|
78
78
|
local_vars_configuration = Configuration()
|
@@ -91,10 +91,10 @@ class Project(object):
|
|
91
91
|
self._directory_name = None
|
92
92
|
self._cloud = None
|
93
93
|
self._last_used_cloud_id = None
|
94
|
-
self._active_sessions = None
|
95
|
-
self._last_activity_at = None
|
96
94
|
self._owners = None
|
97
95
|
self._is_default = None
|
96
|
+
self._active_sessions = None
|
97
|
+
self._last_activity_at = None
|
98
98
|
self.discriminator = None
|
99
99
|
|
100
100
|
self.name = name
|
@@ -116,11 +116,13 @@ class Project(object):
|
|
116
116
|
self.cloud = cloud
|
117
117
|
if last_used_cloud_id is not None:
|
118
118
|
self.last_used_cloud_id = last_used_cloud_id
|
119
|
-
self.active_sessions = active_sessions
|
120
|
-
self.last_activity_at = last_activity_at
|
121
119
|
if owners is not None:
|
122
120
|
self.owners = owners
|
123
121
|
self.is_default = is_default
|
122
|
+
if active_sessions is not None:
|
123
|
+
self.active_sessions = active_sessions
|
124
|
+
if last_activity_at is not None:
|
125
|
+
self.last_activity_at = last_activity_at
|
124
126
|
|
125
127
|
@property
|
126
128
|
def name(self):
|
@@ -409,56 +411,6 @@ class Project(object):
|
|
409
411
|
|
410
412
|
self._last_used_cloud_id = last_used_cloud_id
|
411
413
|
|
412
|
-
@property
|
413
|
-
def active_sessions(self):
|
414
|
-
"""Gets the active_sessions of this Project. # noqa: E501
|
415
|
-
|
416
|
-
Read only. Number of active sessions for this project. # noqa: E501
|
417
|
-
|
418
|
-
:return: The active_sessions of this Project. # noqa: E501
|
419
|
-
:rtype: int
|
420
|
-
"""
|
421
|
-
return self._active_sessions
|
422
|
-
|
423
|
-
@active_sessions.setter
|
424
|
-
def active_sessions(self, active_sessions):
|
425
|
-
"""Sets the active_sessions of this Project.
|
426
|
-
|
427
|
-
Read only. Number of active sessions for this project. # noqa: E501
|
428
|
-
|
429
|
-
:param active_sessions: The active_sessions of this Project. # noqa: E501
|
430
|
-
:type: int
|
431
|
-
"""
|
432
|
-
if self.local_vars_configuration.client_side_validation and active_sessions is None: # noqa: E501
|
433
|
-
raise ValueError("Invalid value for `active_sessions`, must not be `None`") # noqa: E501
|
434
|
-
|
435
|
-
self._active_sessions = active_sessions
|
436
|
-
|
437
|
-
@property
|
438
|
-
def last_activity_at(self):
|
439
|
-
"""Gets the last_activity_at of this Project. # noqa: E501
|
440
|
-
|
441
|
-
Read only. The most recent activity for this project. This is based on the most recently created sessions # noqa: E501
|
442
|
-
|
443
|
-
:return: The last_activity_at of this Project. # noqa: E501
|
444
|
-
:rtype: datetime
|
445
|
-
"""
|
446
|
-
return self._last_activity_at
|
447
|
-
|
448
|
-
@last_activity_at.setter
|
449
|
-
def last_activity_at(self, last_activity_at):
|
450
|
-
"""Sets the last_activity_at of this Project.
|
451
|
-
|
452
|
-
Read only. The most recent activity for this project. This is based on the most recently created sessions # noqa: E501
|
453
|
-
|
454
|
-
:param last_activity_at: The last_activity_at of this Project. # noqa: E501
|
455
|
-
:type: datetime
|
456
|
-
"""
|
457
|
-
if self.local_vars_configuration.client_side_validation and last_activity_at is None: # noqa: E501
|
458
|
-
raise ValueError("Invalid value for `last_activity_at`, must not be `None`") # noqa: E501
|
459
|
-
|
460
|
-
self._last_activity_at = last_activity_at
|
461
|
-
|
462
414
|
@property
|
463
415
|
def owners(self):
|
464
416
|
"""Gets the owners of this Project. # noqa: E501
|
@@ -507,6 +459,52 @@ class Project(object):
|
|
507
459
|
|
508
460
|
self._is_default = is_default
|
509
461
|
|
462
|
+
@property
|
463
|
+
def active_sessions(self):
|
464
|
+
"""Gets the active_sessions of this Project. # noqa: E501
|
465
|
+
|
466
|
+
DEPRECATED. Number of active sessions for this project. # noqa: E501
|
467
|
+
|
468
|
+
:return: The active_sessions of this Project. # noqa: E501
|
469
|
+
:rtype: int
|
470
|
+
"""
|
471
|
+
return self._active_sessions
|
472
|
+
|
473
|
+
@active_sessions.setter
|
474
|
+
def active_sessions(self, active_sessions):
|
475
|
+
"""Sets the active_sessions of this Project.
|
476
|
+
|
477
|
+
DEPRECATED. Number of active sessions for this project. # noqa: E501
|
478
|
+
|
479
|
+
:param active_sessions: The active_sessions of this Project. # noqa: E501
|
480
|
+
:type: int
|
481
|
+
"""
|
482
|
+
|
483
|
+
self._active_sessions = active_sessions
|
484
|
+
|
485
|
+
@property
|
486
|
+
def last_activity_at(self):
|
487
|
+
"""Gets the last_activity_at of this Project. # noqa: E501
|
488
|
+
|
489
|
+
DEPRECATED. The most recent activity for this project. This is based on the most recently created sessions # noqa: E501
|
490
|
+
|
491
|
+
:return: The last_activity_at of this Project. # noqa: E501
|
492
|
+
:rtype: datetime
|
493
|
+
"""
|
494
|
+
return self._last_activity_at
|
495
|
+
|
496
|
+
@last_activity_at.setter
|
497
|
+
def last_activity_at(self, last_activity_at):
|
498
|
+
"""Sets the last_activity_at of this Project.
|
499
|
+
|
500
|
+
DEPRECATED. The most recent activity for this project. This is based on the most recently created sessions # noqa: E501
|
501
|
+
|
502
|
+
:param last_activity_at: The last_activity_at of this Project. # noqa: E501
|
503
|
+
:type: datetime
|
504
|
+
"""
|
505
|
+
|
506
|
+
self._last_activity_at = last_activity_at
|
507
|
+
|
510
508
|
def to_dict(self):
|
511
509
|
"""Returns the model properties as a dict"""
|
512
510
|
result = {}
|
@@ -28,11 +28,9 @@ class ProjectsSortField(object):
|
|
28
28
|
"""
|
29
29
|
allowed enum values
|
30
30
|
"""
|
31
|
-
ACTIVE_CLUSTERS = "ACTIVE_CLUSTERS"
|
32
|
-
LAST_UPDATED_AT = "LAST_UPDATED_AT"
|
33
31
|
NAME = "NAME"
|
34
32
|
|
35
|
-
allowable_values = [
|
33
|
+
allowable_values = [NAME] # noqa: E501
|
36
34
|
|
37
35
|
"""
|
38
36
|
Attributes:
|
@@ -28,12 +28,11 @@ class ResourceAlertEventType(object):
|
|
28
28
|
"""
|
29
29
|
allowed enum values
|
30
30
|
"""
|
31
|
-
|
32
|
-
JOB_FAILED_SYSTEM = "NOTIFICATION_EVENT_TYPE_JOB_FAILED_SYSTEM"
|
31
|
+
JOB_FAILED = "NOTIFICATION_EVENT_TYPE_JOB_FAILED"
|
33
32
|
JOB_SUCCEEDED = "NOTIFICATION_EVENT_TYPE_JOB_SUCCEEDED"
|
34
33
|
SERVICE_UNHEALTHY = "NOTIFICATION_EVENT_TYPE_SERVICE_UNHEALTHY"
|
35
34
|
|
36
|
-
allowable_values = [
|
35
|
+
allowable_values = [JOB_FAILED, JOB_SUCCEEDED, SERVICE_UNHEALTHY] # noqa: E501
|
37
36
|
|
38
37
|
"""
|
39
38
|
Attributes:
|
@@ -64,7 +64,7 @@ class Project(object):
|
|
64
64
|
'last_activity_at': 'last_activity_at'
|
65
65
|
}
|
66
66
|
|
67
|
-
def __init__(self, name=None, cluster_config=None, description=None, parent_cloud_id=None, id=None, creator_id=None, created_at=None, organization_id=None, last_used_cloud_id=None, is_default=None, directory_name=None, active_sessions=
|
67
|
+
def __init__(self, name=None, cluster_config=None, description=None, parent_cloud_id=None, id=None, creator_id=None, created_at=None, organization_id=None, last_used_cloud_id=None, is_default=None, directory_name=None, active_sessions=0, last_activity_at=None, local_vars_configuration=None): # noqa: E501
|
68
68
|
"""Project - a model defined in OpenAPI""" # noqa: E501
|
69
69
|
if local_vars_configuration is None:
|
70
70
|
local_vars_configuration = Configuration()
|
@@ -100,8 +100,10 @@ class Project(object):
|
|
100
100
|
self.last_used_cloud_id = last_used_cloud_id
|
101
101
|
self.is_default = is_default
|
102
102
|
self.directory_name = directory_name
|
103
|
-
|
104
|
-
|
103
|
+
if active_sessions is not None:
|
104
|
+
self.active_sessions = active_sessions
|
105
|
+
if last_activity_at is not None:
|
106
|
+
self.last_activity_at = last_activity_at
|
105
107
|
|
106
108
|
@property
|
107
109
|
def name(self):
|
@@ -374,7 +376,7 @@ class Project(object):
|
|
374
376
|
def active_sessions(self):
|
375
377
|
"""Gets the active_sessions of this Project. # noqa: E501
|
376
378
|
|
377
|
-
|
379
|
+
DEPRECATED. Number of active sessions for this project. # noqa: E501
|
378
380
|
|
379
381
|
:return: The active_sessions of this Project. # noqa: E501
|
380
382
|
:rtype: int
|
@@ -385,13 +387,11 @@ class Project(object):
|
|
385
387
|
def active_sessions(self, active_sessions):
|
386
388
|
"""Sets the active_sessions of this Project.
|
387
389
|
|
388
|
-
|
390
|
+
DEPRECATED. Number of active sessions for this project. # noqa: E501
|
389
391
|
|
390
392
|
:param active_sessions: The active_sessions of this Project. # noqa: E501
|
391
393
|
:type: int
|
392
394
|
"""
|
393
|
-
if self.local_vars_configuration.client_side_validation and active_sessions is None: # noqa: E501
|
394
|
-
raise ValueError("Invalid value for `active_sessions`, must not be `None`") # noqa: E501
|
395
395
|
|
396
396
|
self._active_sessions = active_sessions
|
397
397
|
|
@@ -399,7 +399,7 @@ class Project(object):
|
|
399
399
|
def last_activity_at(self):
|
400
400
|
"""Gets the last_activity_at of this Project. # noqa: E501
|
401
401
|
|
402
|
-
|
402
|
+
DEPRECATED. The most recent activity for this project. This is based on the most recently created sessions # noqa: E501
|
403
403
|
|
404
404
|
:return: The last_activity_at of this Project. # noqa: E501
|
405
405
|
:rtype: datetime
|
@@ -410,13 +410,11 @@ class Project(object):
|
|
410
410
|
def last_activity_at(self, last_activity_at):
|
411
411
|
"""Sets the last_activity_at of this Project.
|
412
412
|
|
413
|
-
|
413
|
+
DEPRECATED. The most recent activity for this project. This is based on the most recently created sessions # noqa: E501
|
414
414
|
|
415
415
|
:param last_activity_at: The last_activity_at of this Project. # noqa: E501
|
416
416
|
:type: datetime
|
417
417
|
"""
|
418
|
-
if self.local_vars_configuration.client_side_validation and last_activity_at is None: # noqa: E501
|
419
|
-
raise ValueError("Invalid value for `last_activity_at`, must not be `None`") # noqa: E501
|
420
418
|
|
421
419
|
self._last_activity_at = last_activity_at
|
422
420
|
|
anyscale/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.25.
|
1
|
+
__version__ = "0.25.11"
|
@@ -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=
|
30
|
+
anyscale/version.py,sha256=5Sp-TI-zZwVYq65iJ5awExRCPmlZkpFks4f30p0eWvY,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
|
@@ -39,7 +39,7 @@ anyscale/_private/docgen/__main__.py,sha256=K-U7QHryFUorzh8-Lj_uQYf-XEpvKsDkka3_
|
|
39
39
|
anyscale/_private/docgen/api.md,sha256=SzLoDy6GyriU60l8964CNWz3z_QNEJA7mFHr0FzXyPU,32527
|
40
40
|
anyscale/_private/docgen/generator.py,sha256=dgC3qlqhJrTt0bTl3ExlRFLDwpn_Is2Yv47TJ33jaeE,21711
|
41
41
|
anyscale/_private/docgen/generator_legacy.py,sha256=pss_6ONF55XhARrKGcREDmg0J5plWact6USgb5Tr5mM,3002
|
42
|
-
anyscale/_private/docgen/models.md,sha256=
|
42
|
+
anyscale/_private/docgen/models.md,sha256=qdokNhgO_HJ6NxPPa2h0IpacylamJJGEfeHROXxAo4o,284410
|
43
43
|
anyscale/_private/models/__init__.py,sha256=ZrkdHhJZNeCYiogsHc_po8m7vaVdxEjkNGixNeYdlgs,125
|
44
44
|
anyscale/_private/models/image_uri.py,sha256=CMzHc-MNTBsBXvX0G73bjkiznCbm95DYQusgXJ8drm8,3971
|
45
45
|
anyscale/_private/models/model_base.py,sha256=QdIKiyNpvjyUGqQtL4_J9qpCK6clHdmWiKV4jSFXunU,8217
|
@@ -571,7 +571,7 @@ anyscale/client/openapi_client/models/production_job_event_scope_filter.py,sha25
|
|
571
571
|
anyscale/client/openapi_client/models/production_job_state_transition.py,sha256=b6bXss7U9japd-Vzt_ZIRBgBG-L9SgtdiLZSs-O5HyU,9808
|
572
572
|
anyscale/client/openapi_client/models/productionjob_response.py,sha256=5ft3ywRCus84N9g1FUt85PPe2FVRHyQBFBaPThG0TAA,3561
|
573
573
|
anyscale/client/openapi_client/models/productionjobevent_list_response.py,sha256=PNHTXQj4hx6e4vC-G9INezPNlc39B-9ByVgMh5zxuVs,4467
|
574
|
-
anyscale/client/openapi_client/models/project.py,sha256=
|
574
|
+
anyscale/client/openapi_client/models/project.py,sha256=4HYfLu2e_tce6JJwOC2PvEG2OMq3aKV26xDEZINTICs,16597
|
575
575
|
anyscale/client/openapi_client/models/project_base.py,sha256=VX3jSjb8rwTiSnJy_kLSXTkQ0zRamxQWvKCDb3vEBec,3367
|
576
576
|
anyscale/client/openapi_client/models/project_collaborator.py,sha256=Fsk7Nteb7PAzSpiA-nZfQW6yJpdyonZf68-OLOyT9Ik,5321
|
577
577
|
anyscale/client/openapi_client/models/project_collaborator_value.py,sha256=w5ai6p7zvY92xWeSdXC9S-omxUA-5ptNPRyPz_s6I7c,5050
|
@@ -585,7 +585,7 @@ anyscale/client/openapi_client/models/project_response.py,sha256=3k7Wde4R6rhJvwB
|
|
585
585
|
anyscale/client/openapi_client/models/projectbase_response.py,sha256=Fts2s4-YMca4eK5ulFc-54P_F8YmGPSjHcpC3IpZ3zs,3539
|
586
586
|
anyscale/client/openapi_client/models/projectcollaborator_list_response.py,sha256=xMXVnrYxPk_RXGPeGq15gAdYDf7kWX6DhGAXSUriKKU,4482
|
587
587
|
anyscale/client/openapi_client/models/projectdefaultsessionname_response.py,sha256=nAfMRXSU79_okUok0_1ZSeaqAcaDu0VtdAnzSny2pUA,3693
|
588
|
-
anyscale/client/openapi_client/models/projects_sort_field.py,sha256=
|
588
|
+
anyscale/client/openapi_client/models/projects_sort_field.py,sha256=3LW0ggf07NbFcKLr3MZoZDyNUrj5tFiK877sxINJIZs,2810
|
589
589
|
anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py,sha256=uWddqitteSKeD9HH9msYznydnsPDgDLp383IQ0qRfKI,3790
|
590
590
|
anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py,sha256=GhgEbvaYs9M8UmN2c72gE1WYPVsqVUhR4Sl2ZQzN9rQ,3836
|
591
591
|
anyscale/client/openapi_client/models/protocols.py,sha256=Q_QNTShXYTtz-Ct9iNGJl3QM4BVrZ6_6nNS7K5I8ip0,4098
|
@@ -607,7 +607,7 @@ anyscale/client/openapi_client/models/requestemailmagiclinkresponse_response.py,
|
|
607
607
|
anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py,sha256=MRpp_kGIa8jMDxQqjtM5mWmK5SBXCMd_c20ZCE6u17Y,3682
|
608
608
|
anyscale/client/openapi_client/models/reset_password_params.py,sha256=UVh4iLrSOGIgIgnRy_dnGWPdvHOQLbHk2qyG8EPkLpg,4421
|
609
609
|
anyscale/client/openapi_client/models/resource_alert.py,sha256=nQkMY04lQWdaKIJ2oTg0GzoVbAa7rjkyNKBUrPaSmK0,13797
|
610
|
-
anyscale/client/openapi_client/models/resource_alert_event_type.py,sha256=
|
610
|
+
anyscale/client/openapi_client/models/resource_alert_event_type.py,sha256=mugR1KLXspjJV8wfDpLZXRHoTVpiSJ1xqi9bvoQRnjU,3034
|
611
611
|
anyscale/client/openapi_client/models/resource_quota.py,sha256=jGTVnp54p9CvhtnCtDIVvMsj1vIFJzWprYjoUSZS8uU,14682
|
612
612
|
anyscale/client/openapi_client/models/resource_quota_status.py,sha256=2c8ujJUAyF_f0s59EpmPRi5twm_Q_bWWWGLqFPkaOck,3726
|
613
613
|
anyscale/client/openapi_client/models/resourcealert_list_response.py,sha256=sTsYWPunyxBfe1V5YPf4TWJ2XG6Qzvq_Y3DTbK_jqCs,4392
|
@@ -1025,7 +1025,7 @@ anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py,sha25
|
|
1025
1025
|
anyscale/sdk/anyscale_client/models/productionjob_list_response.py,sha256=Dn8eUwKWtviO0htJpjptuE6NUtYNHCvQrVs5hJo2nxA,4390
|
1026
1026
|
anyscale/sdk/anyscale_client/models/productionjob_response.py,sha256=gMFgAAl2TWpZLFRMw117ZwMj8vDmcCwiRIVbFBhdvV0,3559
|
1027
1027
|
anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py,sha256=QpHSaRp_55-kqr5TGXnqsDQxjBLJ3-7pB0NRUl_o88o,3680
|
1028
|
-
anyscale/sdk/anyscale_client/models/project.py,sha256=
|
1028
|
+
anyscale/sdk/anyscale_client/models/project.py,sha256=3O9rRIwNidU9NK9ckHtnWPecKDDauKiVerQPpg3dVpQ,15210
|
1029
1029
|
anyscale/sdk/anyscale_client/models/project_list_response.py,sha256=ONNb1uMpjOk10Dz40WAEMd2GebWVk6BKaVT-9e8cyzc,4300
|
1030
1030
|
anyscale/sdk/anyscale_client/models/project_response.py,sha256=JBSxKFJgQ_PO66DH3X_KJNWCJ3pXdXGn4_ed-zfwi1o,3493
|
1031
1031
|
anyscale/sdk/anyscale_client/models/projects_query.py,sha256=Z2nhAo-9u4DkrIqov59voIv63ug11Lr-k0MjV58nBmo,7132
|
@@ -1160,10 +1160,10 @@ anyscale/workspace/__init__.py,sha256=fIxkn8b_HADCQl5njPAbcJxAf0sajZoc55L_wMvGAx
|
|
1160
1160
|
anyscale/workspace/commands.py,sha256=21FubFd2wmEwlVbk-ng-adwBm-O4ZPBgEJnoavbfvbU,14035
|
1161
1161
|
anyscale/workspace/models.py,sha256=Ey67KqxdslS51yK7xetbRaFjE8sURAArpf-F38r3cUU,9760
|
1162
1162
|
anyscale/workspace/_private/workspace_sdk.py,sha256=4LOBmMm7kd-O94ii5uP1UDbkWLComh6zI5QmE2lXRTY,26824
|
1163
|
-
anyscale-0.25.
|
1164
|
-
anyscale-0.25.
|
1165
|
-
anyscale-0.25.
|
1166
|
-
anyscale-0.25.
|
1167
|
-
anyscale-0.25.
|
1168
|
-
anyscale-0.25.
|
1169
|
-
anyscale-0.25.
|
1163
|
+
anyscale-0.25.11.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
1164
|
+
anyscale-0.25.11.dist-info/METADATA,sha256=JZdiAwy6oWpz4zcvdXaBJFHSrdFzLtlyFDVNsGctr8Q,3050
|
1165
|
+
anyscale-0.25.11.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
1166
|
+
anyscale-0.25.11.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
1167
|
+
anyscale-0.25.11.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
1168
|
+
anyscale-0.25.11.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
1169
|
+
anyscale-0.25.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|