anyscale 0.25.7__py3-none-any.whl → 0.25.8__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/decorated_serve_deployment.py +29 -1
- anyscale/version.py +1 -1
- {anyscale-0.25.7.dist-info → anyscale-0.25.8.dist-info}/METADATA +1 -1
- {anyscale-0.25.7.dist-info → anyscale-0.25.8.dist-info}/RECORD +9 -9
- {anyscale-0.25.7.dist-info → anyscale-0.25.8.dist-info}/LICENSE +0 -0
- {anyscale-0.25.7.dist-info → anyscale-0.25.8.dist-info}/NOTICE +0 -0
- {anyscale-0.25.7.dist-info → anyscale-0.25.8.dist-info}/WHEEL +0 -0
- {anyscale-0.25.7.dist-info → anyscale-0.25.8.dist-info}/entry_points.txt +0 -0
- {anyscale-0.25.7.dist-info → anyscale-0.25.8.dist-info}/top_level.txt +0 -0
@@ -50,6 +50,7 @@ class DecoratedServeDeployment(object):
|
|
50
50
|
'version': 'str',
|
51
51
|
'message': 'str',
|
52
52
|
'replica_details': 'list[ReplicaDetails]',
|
53
|
+
'required_resources': 'dict(str, float)',
|
53
54
|
'cluster': 'MiniCluster',
|
54
55
|
'creator': 'MiniUser',
|
55
56
|
'namespace': 'MiniNamespace',
|
@@ -75,6 +76,7 @@ class DecoratedServeDeployment(object):
|
|
75
76
|
'version': 'version',
|
76
77
|
'message': 'message',
|
77
78
|
'replica_details': 'replica_details',
|
79
|
+
'required_resources': 'required_resources',
|
78
80
|
'cluster': 'cluster',
|
79
81
|
'creator': 'creator',
|
80
82
|
'namespace': 'namespace',
|
@@ -82,7 +84,7 @@ class DecoratedServeDeployment(object):
|
|
82
84
|
'fast_api_docs_url': 'fast_api_docs_url'
|
83
85
|
}
|
84
86
|
|
85
|
-
def __init__(self, id=None, status=None, name=None, application_name=None, cluster_id=None, job_id=None, creator_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', created_at=None, finished_at=None, http_route=None, grafana_dashboard_url=None, class_name=None, grafana_dashboard_state=None, version=None, message=None, replica_details=None, cluster=None, creator=None, namespace=None, num_actors=0, fast_api_docs_url=None, local_vars_configuration=None): # noqa: E501
|
87
|
+
def __init__(self, id=None, status=None, name=None, application_name=None, cluster_id=None, job_id=None, creator_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', created_at=None, finished_at=None, http_route=None, grafana_dashboard_url=None, class_name=None, grafana_dashboard_state=None, version=None, message=None, replica_details=None, required_resources=None, cluster=None, creator=None, namespace=None, num_actors=0, fast_api_docs_url=None, local_vars_configuration=None): # noqa: E501
|
86
88
|
"""DecoratedServeDeployment - a model defined in OpenAPI""" # noqa: E501
|
87
89
|
if local_vars_configuration is None:
|
88
90
|
local_vars_configuration = Configuration()
|
@@ -105,6 +107,7 @@ class DecoratedServeDeployment(object):
|
|
105
107
|
self._version = None
|
106
108
|
self._message = None
|
107
109
|
self._replica_details = None
|
110
|
+
self._required_resources = None
|
108
111
|
self._cluster = None
|
109
112
|
self._creator = None
|
110
113
|
self._namespace = None
|
@@ -140,6 +143,8 @@ class DecoratedServeDeployment(object):
|
|
140
143
|
self.message = message
|
141
144
|
if replica_details is not None:
|
142
145
|
self.replica_details = replica_details
|
146
|
+
if required_resources is not None:
|
147
|
+
self.required_resources = required_resources
|
143
148
|
self.cluster = cluster
|
144
149
|
if creator is not None:
|
145
150
|
self.creator = creator
|
@@ -553,6 +558,29 @@ class DecoratedServeDeployment(object):
|
|
553
558
|
|
554
559
|
self._replica_details = replica_details
|
555
560
|
|
561
|
+
@property
|
562
|
+
def required_resources(self):
|
563
|
+
"""Gets the required_resources of this DecoratedServeDeployment. # noqa: E501
|
564
|
+
|
565
|
+
Resources required by this deployment to schedule. # noqa: E501
|
566
|
+
|
567
|
+
:return: The required_resources of this DecoratedServeDeployment. # noqa: E501
|
568
|
+
:rtype: dict(str, float)
|
569
|
+
"""
|
570
|
+
return self._required_resources
|
571
|
+
|
572
|
+
@required_resources.setter
|
573
|
+
def required_resources(self, required_resources):
|
574
|
+
"""Sets the required_resources of this DecoratedServeDeployment.
|
575
|
+
|
576
|
+
Resources required by this deployment to schedule. # noqa: E501
|
577
|
+
|
578
|
+
:param required_resources: The required_resources of this DecoratedServeDeployment. # noqa: E501
|
579
|
+
:type: dict(str, float)
|
580
|
+
"""
|
581
|
+
|
582
|
+
self._required_resources = required_resources
|
583
|
+
|
556
584
|
@property
|
557
585
|
def cluster(self):
|
558
586
|
"""Gets the cluster of this DecoratedServeDeployment. # noqa: E501
|
anyscale/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.25.
|
1
|
+
__version__ = "0.25.8"
|
@@ -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=bkf--LdvzFbtaf_d7GSQn5A2t-yDZ-SX33wKaaeqHsY,23
|
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
|
@@ -341,7 +341,7 @@ anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.
|
|
341
341
|
anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py,sha256=I6mLkjAfXKWXejUOIBRvM9vt7W-XyvwU2MzXuYkyt-c,17231
|
342
342
|
anyscale/client/openapi_client/models/decorated_runtime_env.py,sha256=s3WrHVK_2E2CF-PLOPAjlsbmSh4DOlsLPRDDqYKmrsI,15604
|
343
343
|
anyscale/client/openapi_client/models/decorated_schedule.py,sha256=zCDLO0og8GMMxv_43k3BjYB3MAGc3znGcKV28GYoJwU,18193
|
344
|
-
anyscale/client/openapi_client/models/decorated_serve_deployment.py,sha256=
|
344
|
+
anyscale/client/openapi_client/models/decorated_serve_deployment.py,sha256=fujpuo3v3GNhKwwiHwBqtU8BrBvBrcbg_TTtSvVG7oY,24397
|
345
345
|
anyscale/client/openapi_client/models/decorated_service_event_api_model.py,sha256=TE2bxLquf15IQZTXDiqawOnRYQKT-0Gxrr9VJVNwu9c,17555
|
346
346
|
anyscale/client/openapi_client/models/decorated_session.py,sha256=t_dXa20Lf9JCNy42iRVtVOYrZxTHsVG5xURhVPIXmCw,68095
|
347
347
|
anyscale/client/openapi_client/models/decorated_support_request.py,sha256=FyU8FQbCVAXUpxikWjVmEn5WasPTZeFppafbU2B0kQE,9163
|
@@ -1154,10 +1154,10 @@ anyscale/workspace/__init__.py,sha256=fIxkn8b_HADCQl5njPAbcJxAf0sajZoc55L_wMvGAx
|
|
1154
1154
|
anyscale/workspace/commands.py,sha256=21FubFd2wmEwlVbk-ng-adwBm-O4ZPBgEJnoavbfvbU,14035
|
1155
1155
|
anyscale/workspace/models.py,sha256=Ey67KqxdslS51yK7xetbRaFjE8sURAArpf-F38r3cUU,9760
|
1156
1156
|
anyscale/workspace/_private/workspace_sdk.py,sha256=4LOBmMm7kd-O94ii5uP1UDbkWLComh6zI5QmE2lXRTY,26824
|
1157
|
-
anyscale-0.25.
|
1158
|
-
anyscale-0.25.
|
1159
|
-
anyscale-0.25.
|
1160
|
-
anyscale-0.25.
|
1161
|
-
anyscale-0.25.
|
1162
|
-
anyscale-0.25.
|
1163
|
-
anyscale-0.25.
|
1157
|
+
anyscale-0.25.8.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
1158
|
+
anyscale-0.25.8.dist-info/METADATA,sha256=WSh5GidHwoaI_6EWKFhEdswqrYKYCeFbDYxlVlADYqU,3049
|
1159
|
+
anyscale-0.25.8.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
1160
|
+
anyscale-0.25.8.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
1161
|
+
anyscale-0.25.8.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
1162
|
+
anyscale-0.25.8.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
1163
|
+
anyscale-0.25.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|