anyscale 0.26.26__py3-none-any.whl → 0.26.28__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 -0
- anyscale/client/README.md +1 -0
- anyscale/client/openapi_client/__init__.py +1 -0
- anyscale/client/openapi_client/models/__init__.py +1 -0
- anyscale/client/openapi_client/models/cloud.py +31 -3
- anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +29 -1
- anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +29 -1
- anyscale/client/openapi_client/models/dataset_metrics.py +2 -3
- anyscale/client/openapi_client/models/decorated_job_queue.py +4 -6
- anyscale/client/openapi_client/models/operator_metrics.py +2 -3
- anyscale/client/openapi_client/models/organization.py +27 -1
- anyscale/client/openapi_client/models/sso_mode.py +101 -0
- anyscale/cloud/models.py +13 -0
- anyscale/controllers/cloud_controller.py +0 -1
- anyscale/formatters/clouds_formatter.py +8 -0
- anyscale/job/models.py +4 -3
- anyscale/sdk/anyscale_client/models/cloud.py +31 -3
- anyscale/sdk/anyscale_client/models/organization.py +31 -3
- anyscale/version.py +1 -1
- {anyscale-0.26.26.dist-info → anyscale-0.26.28.dist-info}/METADATA +1 -1
- {anyscale-0.26.26.dist-info → anyscale-0.26.28.dist-info}/RECORD +26 -25
- {anyscale-0.26.26.dist-info → anyscale-0.26.28.dist-info}/LICENSE +0 -0
- {anyscale-0.26.26.dist-info → anyscale-0.26.28.dist-info}/NOTICE +0 -0
- {anyscale-0.26.26.dist-info → anyscale-0.26.28.dist-info}/WHEEL +0 -0
- {anyscale-0.26.26.dist-info → anyscale-0.26.28.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.26.dist-info → anyscale-0.26.28.dist-info}/top_level.txt +0 -0
@@ -178,6 +178,7 @@ Name | Type | Description | Notes
|
|
178
178
|
**is_default** | **bool** | Whether this cloud is the default cloud. | [default to null]
|
179
179
|
**customer_aggregated_logs_config_id** | **str** | the id of the customer aggregated logs config associated with this cloud. | [default to null]
|
180
180
|
**additional_instance_types** | [**List[UXInstance]**](#uxinstance) | the list of instance types supported in the UI and through API (SDK/CLI). | [optional] [default to null]
|
181
|
+
**is_aggregated_logs_enabled** | **bool** | Whether the aggregated logs are enabled for this cloud. | [optional] [default to null]
|
181
182
|
|
182
183
|
## CloudConfig
|
183
184
|
|
@@ -1226,6 +1227,7 @@ Name | Type | Description | Notes
|
|
1226
1227
|
**name** | **str** | Organization's display name. | [default to null]
|
1227
1228
|
**public_identifier** | **str** | Organization's public identifier. | [default to null]
|
1228
1229
|
**sso_required** | **bool** | Require users to log in to your organization using single sign on (SSO). | [optional] [default to false]
|
1230
|
+
**sso_mode** | [**SSOMode**](#ssomode) | Mode for use of single sign on (SSO) for your organization. | [optional] [default to null]
|
1229
1231
|
|
1230
1232
|
## OrganizationResponse
|
1231
1233
|
|
anyscale/client/README.md
CHANGED
@@ -810,6 +810,7 @@ Class | Method | HTTP request | Description
|
|
810
810
|
- [RunStatus](docs/RunStatus.md)
|
811
811
|
- [S3DownloadLocation](docs/S3DownloadLocation.md)
|
812
812
|
- [SSOLoginInfo](docs/SSOLoginInfo.md)
|
813
|
+
- [SSOMode](docs/SSOMode.md)
|
813
814
|
- [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
|
814
815
|
- [ScheduleConfig](docs/ScheduleConfig.md)
|
815
816
|
- [SchedulerInfo](docs/SchedulerInfo.md)
|
@@ -473,6 +473,7 @@ from openapi_client.models.run_attempt_status import RunAttemptStatus
|
|
473
473
|
from openapi_client.models.run_status import RunStatus
|
474
474
|
from openapi_client.models.s3_download_location import S3DownloadLocation
|
475
475
|
from openapi_client.models.sso_login_info import SSOLoginInfo
|
476
|
+
from openapi_client.models.sso_mode import SSOMode
|
476
477
|
from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
|
477
478
|
from openapi_client.models.schedule_config import ScheduleConfig
|
478
479
|
from openapi_client.models.scheduler_info import SchedulerInfo
|
@@ -459,6 +459,7 @@ from openapi_client.models.run_attempt_status import RunAttemptStatus
|
|
459
459
|
from openapi_client.models.run_status import RunStatus
|
460
460
|
from openapi_client.models.s3_download_location import S3DownloadLocation
|
461
461
|
from openapi_client.models.sso_login_info import SSOLoginInfo
|
462
|
+
from openapi_client.models.sso_mode import SSOMode
|
462
463
|
from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
|
463
464
|
from openapi_client.models.schedule_config import ScheduleConfig
|
464
465
|
from openapi_client.models.scheduler_info import SchedulerInfo
|
@@ -57,7 +57,8 @@ class Cloud(object):
|
|
57
57
|
'version': 'CloudVersion',
|
58
58
|
'is_default': 'bool',
|
59
59
|
'customer_aggregated_logs_config_id': 'str',
|
60
|
-
'additional_instance_types': 'list[UXInstance]'
|
60
|
+
'additional_instance_types': 'list[UXInstance]',
|
61
|
+
'is_aggregated_logs_enabled': 'bool'
|
61
62
|
}
|
62
63
|
|
63
64
|
attribute_map = {
|
@@ -85,10 +86,11 @@ class Cloud(object):
|
|
85
86
|
'version': 'version',
|
86
87
|
'is_default': 'is_default',
|
87
88
|
'customer_aggregated_logs_config_id': 'customer_aggregated_logs_config_id',
|
88
|
-
'additional_instance_types': 'additional_instance_types'
|
89
|
+
'additional_instance_types': 'additional_instance_types',
|
90
|
+
'is_aggregated_logs_enabled': 'is_aggregated_logs_enabled'
|
89
91
|
}
|
90
92
|
|
91
|
-
def __init__(self, name=None, provider=None, compute_stack=None, region=None, credentials=None, config=None, is_k8s=False, is_aioa=False, availability_zones=None, is_bring_your_own_resource=None, is_private_cloud=False, cluster_management_stack_version=None, is_private_service_cloud=None, auto_add_user=False, external_id=None, id=None, type=None, creator_id=None, created_at=None, status=None, state=None, version=None, is_default=None, customer_aggregated_logs_config_id=None, additional_instance_types=None, local_vars_configuration=None): # noqa: E501
|
93
|
+
def __init__(self, name=None, provider=None, compute_stack=None, region=None, credentials=None, config=None, is_k8s=False, is_aioa=False, availability_zones=None, is_bring_your_own_resource=None, is_private_cloud=False, cluster_management_stack_version=None, is_private_service_cloud=None, auto_add_user=False, external_id=None, id=None, type=None, creator_id=None, created_at=None, status=None, state=None, version=None, is_default=None, customer_aggregated_logs_config_id=None, additional_instance_types=None, is_aggregated_logs_enabled=None, local_vars_configuration=None): # noqa: E501
|
92
94
|
"""Cloud - a model defined in OpenAPI""" # noqa: E501
|
93
95
|
if local_vars_configuration is None:
|
94
96
|
local_vars_configuration = Configuration()
|
@@ -119,6 +121,7 @@ class Cloud(object):
|
|
119
121
|
self._is_default = None
|
120
122
|
self._customer_aggregated_logs_config_id = None
|
121
123
|
self._additional_instance_types = None
|
124
|
+
self._is_aggregated_logs_enabled = None
|
122
125
|
self.discriminator = None
|
123
126
|
|
124
127
|
self.name = name
|
@@ -161,6 +164,8 @@ class Cloud(object):
|
|
161
164
|
self.customer_aggregated_logs_config_id = customer_aggregated_logs_config_id
|
162
165
|
if additional_instance_types is not None:
|
163
166
|
self.additional_instance_types = additional_instance_types
|
167
|
+
if is_aggregated_logs_enabled is not None:
|
168
|
+
self.is_aggregated_logs_enabled = is_aggregated_logs_enabled
|
164
169
|
|
165
170
|
@property
|
166
171
|
def name(self):
|
@@ -755,6 +760,29 @@ class Cloud(object):
|
|
755
760
|
|
756
761
|
self._additional_instance_types = additional_instance_types
|
757
762
|
|
763
|
+
@property
|
764
|
+
def is_aggregated_logs_enabled(self):
|
765
|
+
"""Gets the is_aggregated_logs_enabled of this Cloud. # noqa: E501
|
766
|
+
|
767
|
+
Whether the aggregated logs are enabled for this cloud. # noqa: E501
|
768
|
+
|
769
|
+
:return: The is_aggregated_logs_enabled of this Cloud. # noqa: E501
|
770
|
+
:rtype: bool
|
771
|
+
"""
|
772
|
+
return self._is_aggregated_logs_enabled
|
773
|
+
|
774
|
+
@is_aggregated_logs_enabled.setter
|
775
|
+
def is_aggregated_logs_enabled(self, is_aggregated_logs_enabled):
|
776
|
+
"""Sets the is_aggregated_logs_enabled of this Cloud.
|
777
|
+
|
778
|
+
Whether the aggregated logs are enabled for this cloud. # noqa: E501
|
779
|
+
|
780
|
+
:param is_aggregated_logs_enabled: The is_aggregated_logs_enabled of this Cloud. # noqa: E501
|
781
|
+
:type: bool
|
782
|
+
"""
|
783
|
+
|
784
|
+
self._is_aggregated_logs_enabled = is_aggregated_logs_enabled
|
785
|
+
|
758
786
|
def to_dict(self):
|
759
787
|
"""Returns the model properties as a dict"""
|
760
788
|
result = {}
|
@@ -58,6 +58,7 @@ class CloudWithCloudResource(object):
|
|
58
58
|
'is_default': 'bool',
|
59
59
|
'customer_aggregated_logs_config_id': 'str',
|
60
60
|
'additional_instance_types': 'list[UXInstance]',
|
61
|
+
'is_aggregated_logs_enabled': 'bool',
|
61
62
|
'cloud_resource': 'CloudResource'
|
62
63
|
}
|
63
64
|
|
@@ -87,10 +88,11 @@ class CloudWithCloudResource(object):
|
|
87
88
|
'is_default': 'is_default',
|
88
89
|
'customer_aggregated_logs_config_id': 'customer_aggregated_logs_config_id',
|
89
90
|
'additional_instance_types': 'additional_instance_types',
|
91
|
+
'is_aggregated_logs_enabled': 'is_aggregated_logs_enabled',
|
90
92
|
'cloud_resource': 'cloud_resource'
|
91
93
|
}
|
92
94
|
|
93
|
-
def __init__(self, name=None, provider=None, compute_stack=None, region=None, credentials=None, config=None, is_k8s=False, is_aioa=False, availability_zones=None, is_bring_your_own_resource=None, is_private_cloud=False, cluster_management_stack_version=None, is_private_service_cloud=None, auto_add_user=False, external_id=None, id=None, type=None, creator_id=None, created_at=None, status=None, state=None, version=None, is_default=None, customer_aggregated_logs_config_id=None, additional_instance_types=None, cloud_resource=None, local_vars_configuration=None): # noqa: E501
|
95
|
+
def __init__(self, name=None, provider=None, compute_stack=None, region=None, credentials=None, config=None, is_k8s=False, is_aioa=False, availability_zones=None, is_bring_your_own_resource=None, is_private_cloud=False, cluster_management_stack_version=None, is_private_service_cloud=None, auto_add_user=False, external_id=None, id=None, type=None, creator_id=None, created_at=None, status=None, state=None, version=None, is_default=None, customer_aggregated_logs_config_id=None, additional_instance_types=None, is_aggregated_logs_enabled=None, cloud_resource=None, local_vars_configuration=None): # noqa: E501
|
94
96
|
"""CloudWithCloudResource - a model defined in OpenAPI""" # noqa: E501
|
95
97
|
if local_vars_configuration is None:
|
96
98
|
local_vars_configuration = Configuration()
|
@@ -121,6 +123,7 @@ class CloudWithCloudResource(object):
|
|
121
123
|
self._is_default = None
|
122
124
|
self._customer_aggregated_logs_config_id = None
|
123
125
|
self._additional_instance_types = None
|
126
|
+
self._is_aggregated_logs_enabled = None
|
124
127
|
self._cloud_resource = None
|
125
128
|
self.discriminator = None
|
126
129
|
|
@@ -164,6 +167,8 @@ class CloudWithCloudResource(object):
|
|
164
167
|
self.customer_aggregated_logs_config_id = customer_aggregated_logs_config_id
|
165
168
|
if additional_instance_types is not None:
|
166
169
|
self.additional_instance_types = additional_instance_types
|
170
|
+
if is_aggregated_logs_enabled is not None:
|
171
|
+
self.is_aggregated_logs_enabled = is_aggregated_logs_enabled
|
167
172
|
if cloud_resource is not None:
|
168
173
|
self.cloud_resource = cloud_resource
|
169
174
|
|
@@ -760,6 +765,29 @@ class CloudWithCloudResource(object):
|
|
760
765
|
|
761
766
|
self._additional_instance_types = additional_instance_types
|
762
767
|
|
768
|
+
@property
|
769
|
+
def is_aggregated_logs_enabled(self):
|
770
|
+
"""Gets the is_aggregated_logs_enabled of this CloudWithCloudResource. # noqa: E501
|
771
|
+
|
772
|
+
Whether the aggregated logs are enabled for this cloud. # noqa: E501
|
773
|
+
|
774
|
+
:return: The is_aggregated_logs_enabled of this CloudWithCloudResource. # noqa: E501
|
775
|
+
:rtype: bool
|
776
|
+
"""
|
777
|
+
return self._is_aggregated_logs_enabled
|
778
|
+
|
779
|
+
@is_aggregated_logs_enabled.setter
|
780
|
+
def is_aggregated_logs_enabled(self, is_aggregated_logs_enabled):
|
781
|
+
"""Sets the is_aggregated_logs_enabled of this CloudWithCloudResource.
|
782
|
+
|
783
|
+
Whether the aggregated logs are enabled for this cloud. # noqa: E501
|
784
|
+
|
785
|
+
:param is_aggregated_logs_enabled: The is_aggregated_logs_enabled of this CloudWithCloudResource. # noqa: E501
|
786
|
+
:type: bool
|
787
|
+
"""
|
788
|
+
|
789
|
+
self._is_aggregated_logs_enabled = is_aggregated_logs_enabled
|
790
|
+
|
763
791
|
@property
|
764
792
|
def cloud_resource(self):
|
765
793
|
"""Gets the cloud_resource of this CloudWithCloudResource. # noqa: E501
|
@@ -58,6 +58,7 @@ class CloudWithCloudResourceGCP(object):
|
|
58
58
|
'is_default': 'bool',
|
59
59
|
'customer_aggregated_logs_config_id': 'str',
|
60
60
|
'additional_instance_types': 'list[UXInstance]',
|
61
|
+
'is_aggregated_logs_enabled': 'bool',
|
61
62
|
'cloud_resource': 'CloudResourceGCP'
|
62
63
|
}
|
63
64
|
|
@@ -87,10 +88,11 @@ class CloudWithCloudResourceGCP(object):
|
|
87
88
|
'is_default': 'is_default',
|
88
89
|
'customer_aggregated_logs_config_id': 'customer_aggregated_logs_config_id',
|
89
90
|
'additional_instance_types': 'additional_instance_types',
|
91
|
+
'is_aggregated_logs_enabled': 'is_aggregated_logs_enabled',
|
90
92
|
'cloud_resource': 'cloud_resource'
|
91
93
|
}
|
92
94
|
|
93
|
-
def __init__(self, name=None, provider=None, compute_stack=None, region=None, credentials=None, config=None, is_k8s=False, is_aioa=False, availability_zones=None, is_bring_your_own_resource=None, is_private_cloud=False, cluster_management_stack_version=None, is_private_service_cloud=None, auto_add_user=False, external_id=None, id=None, type=None, creator_id=None, created_at=None, status=None, state=None, version=None, is_default=None, customer_aggregated_logs_config_id=None, additional_instance_types=None, cloud_resource=None, local_vars_configuration=None): # noqa: E501
|
95
|
+
def __init__(self, name=None, provider=None, compute_stack=None, region=None, credentials=None, config=None, is_k8s=False, is_aioa=False, availability_zones=None, is_bring_your_own_resource=None, is_private_cloud=False, cluster_management_stack_version=None, is_private_service_cloud=None, auto_add_user=False, external_id=None, id=None, type=None, creator_id=None, created_at=None, status=None, state=None, version=None, is_default=None, customer_aggregated_logs_config_id=None, additional_instance_types=None, is_aggregated_logs_enabled=None, cloud_resource=None, local_vars_configuration=None): # noqa: E501
|
94
96
|
"""CloudWithCloudResourceGCP - a model defined in OpenAPI""" # noqa: E501
|
95
97
|
if local_vars_configuration is None:
|
96
98
|
local_vars_configuration = Configuration()
|
@@ -121,6 +123,7 @@ class CloudWithCloudResourceGCP(object):
|
|
121
123
|
self._is_default = None
|
122
124
|
self._customer_aggregated_logs_config_id = None
|
123
125
|
self._additional_instance_types = None
|
126
|
+
self._is_aggregated_logs_enabled = None
|
124
127
|
self._cloud_resource = None
|
125
128
|
self.discriminator = None
|
126
129
|
|
@@ -164,6 +167,8 @@ class CloudWithCloudResourceGCP(object):
|
|
164
167
|
self.customer_aggregated_logs_config_id = customer_aggregated_logs_config_id
|
165
168
|
if additional_instance_types is not None:
|
166
169
|
self.additional_instance_types = additional_instance_types
|
170
|
+
if is_aggregated_logs_enabled is not None:
|
171
|
+
self.is_aggregated_logs_enabled = is_aggregated_logs_enabled
|
167
172
|
if cloud_resource is not None:
|
168
173
|
self.cloud_resource = cloud_resource
|
169
174
|
|
@@ -760,6 +765,29 @@ class CloudWithCloudResourceGCP(object):
|
|
760
765
|
|
761
766
|
self._additional_instance_types = additional_instance_types
|
762
767
|
|
768
|
+
@property
|
769
|
+
def is_aggregated_logs_enabled(self):
|
770
|
+
"""Gets the is_aggregated_logs_enabled of this CloudWithCloudResourceGCP. # noqa: E501
|
771
|
+
|
772
|
+
Whether the aggregated logs are enabled for this cloud. # noqa: E501
|
773
|
+
|
774
|
+
:return: The is_aggregated_logs_enabled of this CloudWithCloudResourceGCP. # noqa: E501
|
775
|
+
:rtype: bool
|
776
|
+
"""
|
777
|
+
return self._is_aggregated_logs_enabled
|
778
|
+
|
779
|
+
@is_aggregated_logs_enabled.setter
|
780
|
+
def is_aggregated_logs_enabled(self, is_aggregated_logs_enabled):
|
781
|
+
"""Sets the is_aggregated_logs_enabled of this CloudWithCloudResourceGCP.
|
782
|
+
|
783
|
+
Whether the aggregated logs are enabled for this cloud. # noqa: E501
|
784
|
+
|
785
|
+
:param is_aggregated_logs_enabled: The is_aggregated_logs_enabled of this CloudWithCloudResourceGCP. # noqa: E501
|
786
|
+
:type: bool
|
787
|
+
"""
|
788
|
+
|
789
|
+
self._is_aggregated_logs_enabled = is_aggregated_logs_enabled
|
790
|
+
|
763
791
|
@property
|
764
792
|
def cloud_resource(self):
|
765
793
|
"""Gets the cloud_resource of this CloudWithCloudResourceGCP. # noqa: E501
|
@@ -85,7 +85,8 @@ class DatasetMetrics(object):
|
|
85
85
|
self.session_name = session_name
|
86
86
|
self.state = state
|
87
87
|
self.progress = progress
|
88
|
-
|
88
|
+
if total is not None:
|
89
|
+
self.total = total
|
89
90
|
self.start_time = start_time
|
90
91
|
if end_time is not None:
|
91
92
|
self.end_time = end_time
|
@@ -248,8 +249,6 @@ class DatasetMetrics(object):
|
|
248
249
|
:param total: The total of this DatasetMetrics. # noqa: E501
|
249
250
|
:type: int
|
250
251
|
"""
|
251
|
-
if self.local_vars_configuration.client_side_validation and total is None: # noqa: E501
|
252
|
-
raise ValueError("Invalid value for `total`, must not be `None`") # noqa: E501
|
253
252
|
|
254
253
|
self._total = total
|
255
254
|
|
@@ -104,8 +104,10 @@ class DecoratedJobQueue(object):
|
|
104
104
|
self.discriminator = None
|
105
105
|
|
106
106
|
self.id = id
|
107
|
-
|
108
|
-
|
107
|
+
if user_provided_id is not None:
|
108
|
+
self.user_provided_id = user_provided_id
|
109
|
+
if name is not None:
|
110
|
+
self.name = name
|
109
111
|
self.current_job_queue_state = current_job_queue_state
|
110
112
|
self.execution_mode = execution_mode
|
111
113
|
self.max_concurrency = max_concurrency
|
@@ -174,8 +176,6 @@ class DecoratedJobQueue(object):
|
|
174
176
|
:param user_provided_id: The user_provided_id of this DecoratedJobQueue. # noqa: E501
|
175
177
|
:type: str
|
176
178
|
"""
|
177
|
-
if self.local_vars_configuration.client_side_validation and user_provided_id is None: # noqa: E501
|
178
|
-
raise ValueError("Invalid value for `user_provided_id`, must not be `None`") # noqa: E501
|
179
179
|
|
180
180
|
self._user_provided_id = user_provided_id
|
181
181
|
|
@@ -199,8 +199,6 @@ class DecoratedJobQueue(object):
|
|
199
199
|
:param name: The name of this DecoratedJobQueue. # noqa: E501
|
200
200
|
:type: str
|
201
201
|
"""
|
202
|
-
if self.local_vars_configuration.client_side_validation and name is None: # noqa: E501
|
203
|
-
raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
|
204
202
|
|
205
203
|
self._name = name
|
206
204
|
|
@@ -74,7 +74,8 @@ class OperatorMetrics(object):
|
|
74
74
|
self.name = name
|
75
75
|
self.state = state
|
76
76
|
self.progress = progress
|
77
|
-
|
77
|
+
if total is not None:
|
78
|
+
self.total = total
|
78
79
|
self.start_time = start_time
|
79
80
|
if end_time is not None:
|
80
81
|
self.end_time = end_time
|
@@ -190,8 +191,6 @@ class OperatorMetrics(object):
|
|
190
191
|
:param total: The total of this OperatorMetrics. # noqa: E501
|
191
192
|
:type: int
|
192
193
|
"""
|
193
|
-
if self.local_vars_configuration.client_side_validation and total is None: # noqa: E501
|
194
|
-
raise ValueError("Invalid value for `total`, must not be `None`") # noqa: E501
|
195
194
|
|
196
195
|
self._total = total
|
197
196
|
|
@@ -39,6 +39,7 @@ class Organization(object):
|
|
39
39
|
'default_cloud_id': 'str',
|
40
40
|
'sso_config_id': 'str',
|
41
41
|
'sso_required': 'bool',
|
42
|
+
'sso_mode': 'SSOMode',
|
42
43
|
'is_general_platform_enabled': 'bool',
|
43
44
|
'is_private_endpoints_enabled': 'bool',
|
44
45
|
'is_usage_blocked': 'bool',
|
@@ -57,6 +58,7 @@ class Organization(object):
|
|
57
58
|
'default_cloud_id': 'default_cloud_id',
|
58
59
|
'sso_config_id': 'sso_config_id',
|
59
60
|
'sso_required': 'sso_required',
|
61
|
+
'sso_mode': 'sso_mode',
|
60
62
|
'is_general_platform_enabled': 'is_general_platform_enabled',
|
61
63
|
'is_private_endpoints_enabled': 'is_private_endpoints_enabled',
|
62
64
|
'is_usage_blocked': 'is_usage_blocked',
|
@@ -68,7 +70,7 @@ class Organization(object):
|
|
68
70
|
'invite_code': 'invite_code'
|
69
71
|
}
|
70
72
|
|
71
|
-
def __init__(self, id=None, name=None, public_identifier=None, default_cloud_id=None, sso_config_id=None, sso_required=False, is_general_platform_enabled=None, is_private_endpoints_enabled=None, is_usage_blocked=None, endpoints_user_id=None, endpoints_stripe_customer_id=None, endpoints_metronome_customer_id=None, endpoints_is_free_credit_used_up=None, metronome_customer_id=None, invite_code=None, local_vars_configuration=None): # noqa: E501
|
73
|
+
def __init__(self, id=None, name=None, public_identifier=None, default_cloud_id=None, sso_config_id=None, sso_required=False, sso_mode=None, is_general_platform_enabled=None, is_private_endpoints_enabled=None, is_usage_blocked=None, endpoints_user_id=None, endpoints_stripe_customer_id=None, endpoints_metronome_customer_id=None, endpoints_is_free_credit_used_up=None, metronome_customer_id=None, invite_code=None, local_vars_configuration=None): # noqa: E501
|
72
74
|
"""Organization - a model defined in OpenAPI""" # noqa: E501
|
73
75
|
if local_vars_configuration is None:
|
74
76
|
local_vars_configuration = Configuration()
|
@@ -80,6 +82,7 @@ class Organization(object):
|
|
80
82
|
self._default_cloud_id = None
|
81
83
|
self._sso_config_id = None
|
82
84
|
self._sso_required = None
|
85
|
+
self._sso_mode = None
|
83
86
|
self._is_general_platform_enabled = None
|
84
87
|
self._is_private_endpoints_enabled = None
|
85
88
|
self._is_usage_blocked = None
|
@@ -100,6 +103,8 @@ class Organization(object):
|
|
100
103
|
self.sso_config_id = sso_config_id
|
101
104
|
if sso_required is not None:
|
102
105
|
self.sso_required = sso_required
|
106
|
+
if sso_mode is not None:
|
107
|
+
self.sso_mode = sso_mode
|
103
108
|
self.is_general_platform_enabled = is_general_platform_enabled
|
104
109
|
self.is_private_endpoints_enabled = is_private_endpoints_enabled
|
105
110
|
self.is_usage_blocked = is_usage_blocked
|
@@ -248,6 +253,27 @@ class Organization(object):
|
|
248
253
|
|
249
254
|
self._sso_required = sso_required
|
250
255
|
|
256
|
+
@property
|
257
|
+
def sso_mode(self):
|
258
|
+
"""Gets the sso_mode of this Organization. # noqa: E501
|
259
|
+
|
260
|
+
|
261
|
+
:return: The sso_mode of this Organization. # noqa: E501
|
262
|
+
:rtype: SSOMode
|
263
|
+
"""
|
264
|
+
return self._sso_mode
|
265
|
+
|
266
|
+
@sso_mode.setter
|
267
|
+
def sso_mode(self, sso_mode):
|
268
|
+
"""Sets the sso_mode of this Organization.
|
269
|
+
|
270
|
+
|
271
|
+
:param sso_mode: The sso_mode of this Organization. # noqa: E501
|
272
|
+
:type: SSOMode
|
273
|
+
"""
|
274
|
+
|
275
|
+
self._sso_mode = sso_mode
|
276
|
+
|
251
277
|
@property
|
252
278
|
def is_general_platform_enabled(self):
|
253
279
|
"""Gets the is_general_platform_enabled of this Organization. # noqa: E501
|
@@ -0,0 +1,101 @@
|
|
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 SSOMode(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
|
+
allowed enum values
|
30
|
+
"""
|
31
|
+
OFF = "off"
|
32
|
+
OPTIONAL = "optional"
|
33
|
+
REQUIRED = "required"
|
34
|
+
|
35
|
+
allowable_values = [OFF, OPTIONAL, REQUIRED] # noqa: E501
|
36
|
+
|
37
|
+
"""
|
38
|
+
Attributes:
|
39
|
+
openapi_types (dict): The key is attribute name
|
40
|
+
and the value is attribute type.
|
41
|
+
attribute_map (dict): The key is attribute name
|
42
|
+
and the value is json key in definition.
|
43
|
+
"""
|
44
|
+
openapi_types = {
|
45
|
+
}
|
46
|
+
|
47
|
+
attribute_map = {
|
48
|
+
}
|
49
|
+
|
50
|
+
def __init__(self, local_vars_configuration=None): # noqa: E501
|
51
|
+
"""SSOMode - a model defined in OpenAPI""" # noqa: E501
|
52
|
+
if local_vars_configuration is None:
|
53
|
+
local_vars_configuration = Configuration()
|
54
|
+
self.local_vars_configuration = local_vars_configuration
|
55
|
+
self.discriminator = None
|
56
|
+
|
57
|
+
def to_dict(self):
|
58
|
+
"""Returns the model properties as a dict"""
|
59
|
+
result = {}
|
60
|
+
|
61
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
62
|
+
value = getattr(self, attr)
|
63
|
+
if isinstance(value, list):
|
64
|
+
result[attr] = list(map(
|
65
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
66
|
+
value
|
67
|
+
))
|
68
|
+
elif hasattr(value, "to_dict"):
|
69
|
+
result[attr] = value.to_dict()
|
70
|
+
elif isinstance(value, dict):
|
71
|
+
result[attr] = dict(map(
|
72
|
+
lambda item: (item[0], item[1].to_dict())
|
73
|
+
if hasattr(item[1], "to_dict") else item,
|
74
|
+
value.items()
|
75
|
+
))
|
76
|
+
else:
|
77
|
+
result[attr] = value
|
78
|
+
|
79
|
+
return result
|
80
|
+
|
81
|
+
def to_str(self):
|
82
|
+
"""Returns the string representation of the model"""
|
83
|
+
return pprint.pformat(self.to_dict())
|
84
|
+
|
85
|
+
def __repr__(self):
|
86
|
+
"""For `print` and `pprint`"""
|
87
|
+
return self.to_str()
|
88
|
+
|
89
|
+
def __eq__(self, other):
|
90
|
+
"""Returns true if both objects are equal"""
|
91
|
+
if not isinstance(other, SSOMode):
|
92
|
+
return False
|
93
|
+
|
94
|
+
return self.to_dict() == other.to_dict()
|
95
|
+
|
96
|
+
def __ne__(self, other):
|
97
|
+
"""Returns true if both objects are not equal"""
|
98
|
+
if not isinstance(other, SSOMode):
|
99
|
+
return True
|
100
|
+
|
101
|
+
return self.to_dict() != other.to_dict()
|
anyscale/cloud/models.py
CHANGED
@@ -158,6 +158,10 @@ cloud = Cloud(
|
|
158
158
|
is_default: Optional[bool] = field(
|
159
159
|
default=None, metadata={"docstring": "Whether this is the default cloud."}
|
160
160
|
)
|
161
|
+
is_aggregated_logs_enabled: Optional[bool] = field(
|
162
|
+
default=None,
|
163
|
+
metadata={"docstring": "Whether aggregated logs are enabled for this cloud."},
|
164
|
+
)
|
161
165
|
|
162
166
|
def _validate_name(self, name: str) -> str:
|
163
167
|
if not isinstance(name, str) or not name.strip():
|
@@ -207,3 +211,12 @@ cloud = Cloud(
|
|
207
211
|
raise TypeError("'compute_stack' must be a ComputeStack.")
|
208
212
|
|
209
213
|
return compute_stack
|
214
|
+
|
215
|
+
def _validate_is_aggregated_logs_enabled(
|
216
|
+
self, is_aggregated_logs_enabled: Optional[bool]
|
217
|
+
) -> Optional[bool]:
|
218
|
+
if is_aggregated_logs_enabled is not None and not isinstance(
|
219
|
+
is_aggregated_logs_enabled, bool
|
220
|
+
):
|
221
|
+
raise TypeError("is_aggregated_logs_enabled must be a bool")
|
222
|
+
return is_aggregated_logs_enabled
|
@@ -197,7 +197,6 @@ class CloudController(BaseController):
|
|
197
197
|
]
|
198
198
|
else:
|
199
199
|
clouds = self.api_client.list_clouds_api_v2_clouds_get().results
|
200
|
-
|
201
200
|
clouds_output = clouds[:max_items]
|
202
201
|
output = clouds_formatter.format_clouds_output(
|
203
202
|
clouds=clouds_output, json_format=False
|
@@ -20,6 +20,8 @@ def format_clouds_output(clouds: List[Cloud], json_format: bool) -> str:
|
|
20
20
|
def format_clouds_output_json(clouds: List[Cloud]) -> str:
|
21
21
|
cloud_jsons = []
|
22
22
|
for cloud in clouds:
|
23
|
+
# Check if log ingestion is enabled based on is_aggregated_logs_enabled field
|
24
|
+
log_ingestion_enabled = getattr(cloud, "is_aggregated_logs_enabled", False)
|
23
25
|
cloud_jsons.append(
|
24
26
|
{
|
25
27
|
"id": cloud.id,
|
@@ -29,6 +31,7 @@ def format_clouds_output_json(clouds: List[Cloud]) -> str:
|
|
29
31
|
"added_date": cloud.created_at.strftime("%m/%d/%Y"),
|
30
32
|
"default": cloud.is_default,
|
31
33
|
"credentials": cloud.credentials,
|
34
|
+
"log_ingestion": "enabled" if log_ingestion_enabled else "disabled",
|
32
35
|
}
|
33
36
|
)
|
34
37
|
return json.dumps(cloud_jsons)
|
@@ -37,6 +40,9 @@ def format_clouds_output_json(clouds: List[Cloud]) -> str:
|
|
37
40
|
def format_clouds_output_table(clouds: List[Cloud]) -> str:
|
38
41
|
table_rows = []
|
39
42
|
for cloud in clouds:
|
43
|
+
# Check if log ingestion is enabled based on is_aggregated_logs_enabled field
|
44
|
+
log_ingestion_enabled = getattr(cloud, "is_aggregated_logs_enabled", False)
|
45
|
+
log_ingestion_status = "enabled" if log_ingestion_enabled else "disabled"
|
40
46
|
table_rows.append(
|
41
47
|
[
|
42
48
|
cloud.id,
|
@@ -46,6 +52,7 @@ def format_clouds_output_table(clouds: List[Cloud]) -> str:
|
|
46
52
|
cloud.created_at.strftime("%m/%d/%Y"),
|
47
53
|
cloud.is_default,
|
48
54
|
cloud.credentials,
|
55
|
+
log_ingestion_status,
|
49
56
|
]
|
50
57
|
)
|
51
58
|
table = tabulate.tabulate(
|
@@ -58,6 +65,7 @@ def format_clouds_output_table(clouds: List[Cloud]) -> str:
|
|
58
65
|
"ADDED DATE",
|
59
66
|
"DEFAULT",
|
60
67
|
"CREDENTIALS",
|
68
|
+
"LOG INGESTION",
|
61
69
|
],
|
62
70
|
tablefmt="plain",
|
63
71
|
)
|
anyscale/job/models.py
CHANGED
@@ -73,15 +73,16 @@ job_queue_spec:
|
|
73
73
|
elif idle_timeout_s < 0:
|
74
74
|
raise ValueError("'idle_timeout_s' should be >= 0")
|
75
75
|
|
76
|
-
name: str = field(
|
76
|
+
name: Optional[str] = field(
|
77
|
+
default=None,
|
77
78
|
metadata={
|
78
79
|
"docstring": "Name of the job queue that can be used to target it when submitting future jobs. "
|
79
80
|
"The name of a job queue must be unique within a project.",
|
80
81
|
},
|
81
82
|
)
|
82
83
|
|
83
|
-
def _validate_name(self, name: str):
|
84
|
-
if not isinstance(name, str):
|
84
|
+
def _validate_name(self, name: Optional[str]):
|
85
|
+
if name is not None and not isinstance(name, str):
|
85
86
|
raise TypeError(f"'name' must be a string (it is {type(name)}).")
|
86
87
|
|
87
88
|
execution_mode: JobQueueExecutionMode = field( # type: ignore
|
@@ -57,7 +57,8 @@ class Cloud(object):
|
|
57
57
|
'version': 'CloudVersion',
|
58
58
|
'is_default': 'bool',
|
59
59
|
'customer_aggregated_logs_config_id': 'str',
|
60
|
-
'additional_instance_types': 'list[UXInstance]'
|
60
|
+
'additional_instance_types': 'list[UXInstance]',
|
61
|
+
'is_aggregated_logs_enabled': 'bool'
|
61
62
|
}
|
62
63
|
|
63
64
|
attribute_map = {
|
@@ -85,10 +86,11 @@ class Cloud(object):
|
|
85
86
|
'version': 'version',
|
86
87
|
'is_default': 'is_default',
|
87
88
|
'customer_aggregated_logs_config_id': 'customer_aggregated_logs_config_id',
|
88
|
-
'additional_instance_types': 'additional_instance_types'
|
89
|
+
'additional_instance_types': 'additional_instance_types',
|
90
|
+
'is_aggregated_logs_enabled': 'is_aggregated_logs_enabled'
|
89
91
|
}
|
90
92
|
|
91
|
-
def __init__(self, name=None, provider=None, compute_stack=None, region=None, credentials=None, config=None, is_k8s=False, is_aioa=False, availability_zones=None, is_bring_your_own_resource=None, is_private_cloud=False, cluster_management_stack_version=None, is_private_service_cloud=None, auto_add_user=False, external_id=None, id=None, type=None, creator_id=None, created_at=None, status=None, state=None, version=None, is_default=None, customer_aggregated_logs_config_id=None, additional_instance_types=None, local_vars_configuration=None): # noqa: E501
|
93
|
+
def __init__(self, name=None, provider=None, compute_stack=None, region=None, credentials=None, config=None, is_k8s=False, is_aioa=False, availability_zones=None, is_bring_your_own_resource=None, is_private_cloud=False, cluster_management_stack_version=None, is_private_service_cloud=None, auto_add_user=False, external_id=None, id=None, type=None, creator_id=None, created_at=None, status=None, state=None, version=None, is_default=None, customer_aggregated_logs_config_id=None, additional_instance_types=None, is_aggregated_logs_enabled=None, local_vars_configuration=None): # noqa: E501
|
92
94
|
"""Cloud - a model defined in OpenAPI""" # noqa: E501
|
93
95
|
if local_vars_configuration is None:
|
94
96
|
local_vars_configuration = Configuration()
|
@@ -119,6 +121,7 @@ class Cloud(object):
|
|
119
121
|
self._is_default = None
|
120
122
|
self._customer_aggregated_logs_config_id = None
|
121
123
|
self._additional_instance_types = None
|
124
|
+
self._is_aggregated_logs_enabled = None
|
122
125
|
self.discriminator = None
|
123
126
|
|
124
127
|
self.name = name
|
@@ -161,6 +164,8 @@ class Cloud(object):
|
|
161
164
|
self.customer_aggregated_logs_config_id = customer_aggregated_logs_config_id
|
162
165
|
if additional_instance_types is not None:
|
163
166
|
self.additional_instance_types = additional_instance_types
|
167
|
+
if is_aggregated_logs_enabled is not None:
|
168
|
+
self.is_aggregated_logs_enabled = is_aggregated_logs_enabled
|
164
169
|
|
165
170
|
@property
|
166
171
|
def name(self):
|
@@ -755,6 +760,29 @@ class Cloud(object):
|
|
755
760
|
|
756
761
|
self._additional_instance_types = additional_instance_types
|
757
762
|
|
763
|
+
@property
|
764
|
+
def is_aggregated_logs_enabled(self):
|
765
|
+
"""Gets the is_aggregated_logs_enabled of this Cloud. # noqa: E501
|
766
|
+
|
767
|
+
Whether the aggregated logs are enabled for this cloud. # noqa: E501
|
768
|
+
|
769
|
+
:return: The is_aggregated_logs_enabled of this Cloud. # noqa: E501
|
770
|
+
:rtype: bool
|
771
|
+
"""
|
772
|
+
return self._is_aggregated_logs_enabled
|
773
|
+
|
774
|
+
@is_aggregated_logs_enabled.setter
|
775
|
+
def is_aggregated_logs_enabled(self, is_aggregated_logs_enabled):
|
776
|
+
"""Sets the is_aggregated_logs_enabled of this Cloud.
|
777
|
+
|
778
|
+
Whether the aggregated logs are enabled for this cloud. # noqa: E501
|
779
|
+
|
780
|
+
:param is_aggregated_logs_enabled: The is_aggregated_logs_enabled of this Cloud. # noqa: E501
|
781
|
+
:type: bool
|
782
|
+
"""
|
783
|
+
|
784
|
+
self._is_aggregated_logs_enabled = is_aggregated_logs_enabled
|
785
|
+
|
758
786
|
def to_dict(self):
|
759
787
|
"""Returns the model properties as a dict"""
|
760
788
|
result = {}
|
@@ -36,17 +36,19 @@ class Organization(object):
|
|
36
36
|
'id': 'str',
|
37
37
|
'name': 'str',
|
38
38
|
'public_identifier': 'str',
|
39
|
-
'sso_required': 'bool'
|
39
|
+
'sso_required': 'bool',
|
40
|
+
'sso_mode': 'SSOMode'
|
40
41
|
}
|
41
42
|
|
42
43
|
attribute_map = {
|
43
44
|
'id': 'id',
|
44
45
|
'name': 'name',
|
45
46
|
'public_identifier': 'public_identifier',
|
46
|
-
'sso_required': 'sso_required'
|
47
|
+
'sso_required': 'sso_required',
|
48
|
+
'sso_mode': 'sso_mode'
|
47
49
|
}
|
48
50
|
|
49
|
-
def __init__(self, id=None, name=None, public_identifier=None, sso_required=False, local_vars_configuration=None): # noqa: E501
|
51
|
+
def __init__(self, id=None, name=None, public_identifier=None, sso_required=False, sso_mode=None, local_vars_configuration=None): # noqa: E501
|
50
52
|
"""Organization - 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 Organization(object):
|
|
56
58
|
self._name = None
|
57
59
|
self._public_identifier = None
|
58
60
|
self._sso_required = None
|
61
|
+
self._sso_mode = None
|
59
62
|
self.discriminator = None
|
60
63
|
|
61
64
|
self.id = id
|
@@ -63,6 +66,8 @@ class Organization(object):
|
|
63
66
|
self.public_identifier = public_identifier
|
64
67
|
if sso_required is not None:
|
65
68
|
self.sso_required = sso_required
|
69
|
+
if sso_mode is not None:
|
70
|
+
self.sso_mode = sso_mode
|
66
71
|
|
67
72
|
@property
|
68
73
|
def id(self):
|
@@ -162,6 +167,29 @@ class Organization(object):
|
|
162
167
|
|
163
168
|
self._sso_required = sso_required
|
164
169
|
|
170
|
+
@property
|
171
|
+
def sso_mode(self):
|
172
|
+
"""Gets the sso_mode of this Organization. # noqa: E501
|
173
|
+
|
174
|
+
Mode for use of single sign on (SSO) for your organization. # noqa: E501
|
175
|
+
|
176
|
+
:return: The sso_mode of this Organization. # noqa: E501
|
177
|
+
:rtype: SSOMode
|
178
|
+
"""
|
179
|
+
return self._sso_mode
|
180
|
+
|
181
|
+
@sso_mode.setter
|
182
|
+
def sso_mode(self, sso_mode):
|
183
|
+
"""Sets the sso_mode of this Organization.
|
184
|
+
|
185
|
+
Mode for use of single sign on (SSO) for your organization. # noqa: E501
|
186
|
+
|
187
|
+
:param sso_mode: The sso_mode of this Organization. # noqa: E501
|
188
|
+
:type: SSOMode
|
189
|
+
"""
|
190
|
+
|
191
|
+
self._sso_mode = sso_mode
|
192
|
+
|
165
193
|
def to_dict(self):
|
166
194
|
"""Returns the model properties as a dict"""
|
167
195
|
result = {}
|
anyscale/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.26.
|
1
|
+
__version__ = "0.26.28"
|
@@ -27,7 +27,7 @@ anyscale/scripts.py,sha256=2LWIBxPHRhFG8m0La7xJXM2xKOQIG3SvlQobS4op2b0,5624
|
|
27
27
|
anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
|
28
28
|
anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
|
29
29
|
anyscale/util.py,sha256=14AHIhl4c4hKAW4gLZIvy5w56-zDjcPmrdWqazsvnHU,41860
|
30
|
-
anyscale/version.py,sha256=
|
30
|
+
anyscale/version.py,sha256=N6xLTsYJvQQWthTqY4_AmO2dxUZ2zzXZ8i6KITzSBUY,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=W91EVEx6nhSApY03T_VypdVo1dL2GOEGi9Sg
|
|
39
39
|
anyscale/_private/docgen/api.md,sha256=4SbFnIzpQYcH-aBs0cu15BsVxiNxxnY8-Zb5Dqh4Oxw,30971
|
40
40
|
anyscale/_private/docgen/generator.py,sha256=jAOaprAeU659glRDBATAkAQeYC1nDU14jgdobcILS1s,21737
|
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=-0zxGl2t6EnHsLyNKQ-BpcFTy18Ch-sH5qrv7TtBrYo,292491
|
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=GJLA4JC0yHT554ctMYS_1es-YoTHQH9oqRHr28vV4R0,11354
|
@@ -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=
|
108
|
+
anyscale/client/README.md,sha256=uyeA8Ss_1PGt7RAL5p8Qc_ZlwIrQ6lDZdlf28cutmRg,108870
|
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=
|
116
|
+
anyscale/client/openapi_client/__init__.py,sha256=30HqaFyQ34Unqq1NPFG2QXExcftud7AHLpo1KltXt7w,48802
|
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
122
|
anyscale/client/openapi_client/api/default_api.py,sha256=XaroPOz_-m6Ey9LDadOWhQAIJYR82ZyH0nSv_JqZhOU,1749095
|
123
|
-
anyscale/client/openapi_client/models/__init__.py,sha256=
|
123
|
+
anyscale/client/openapi_client/models/__init__.py,sha256=Q0Ajz2zE2uJ-zfW48rgmY2LLfe-Bk2xn6uB0-1U6d9o,48312
|
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
|
@@ -174,7 +174,7 @@ anyscale/client/openapi_client/models/change_password_params.py,sha256=ijzzLRmBX
|
|
174
174
|
anyscale/client/openapi_client/models/cleanup_leaked_grafana_dashboard_response.py,sha256=_1-lZVl_YJs1dBrsmdrlJxBRJEp1Cjfw6XCXLLUcBng,7444
|
175
175
|
anyscale/client/openapi_client/models/cleanupleakedgrafanadashboardresponse_response.py,sha256=Kfqg8BJimHrI2moHpqhS77uL5ZoT7_ZRny6UHX0q05I,3825
|
176
176
|
anyscale/client/openapi_client/models/clone_experimental_workspace.py,sha256=0J1Fbsczg3XNmEiKtItJwyL3QpEVZzbBmfmTgIrYmck,4534
|
177
|
-
anyscale/client/openapi_client/models/cloud.py,sha256=
|
177
|
+
anyscale/client/openapi_client/models/cloud.py,sha256=Z47Q9oPEiYJfJLVaBl48GA7NoMMu2YJ2yRPCBmJ84u8,27793
|
178
178
|
anyscale/client/openapi_client/models/cloud_analytics_event.py,sha256=eK28GVInJF6mBP9-YZ1NqyhNJIZWXCjPdbuPxDdHyDg,11435
|
179
179
|
anyscale/client/openapi_client/models/cloud_analytics_event_cloud_provider_error.py,sha256=kKFQYOf7cqE3RGnsQ-0yP3fAmf0Ji5EFJHVMkj30uTU,5027
|
180
180
|
anyscale/client/openapi_client/models/cloud_analytics_event_cloud_resource.py,sha256=6hWXOqM7FAuxF0eB94LiKbkmzi2TVuFWccrNfYgZRNw,3866
|
@@ -217,8 +217,8 @@ anyscale/client/openapi_client/models/cloud_type.py,sha256=oExTTGSwlZSRnMv5nnHtm
|
|
217
217
|
anyscale/client/openapi_client/models/cloud_types.py,sha256=i7ci-DsCg-H3mHmGUk68MytUBaGIvrPPLwIU3VMNA_w,2824
|
218
218
|
anyscale/client/openapi_client/models/cloud_version.py,sha256=2AFG73VNZN_kAl3loOtCl1jYX1JesFEpAJxBsnK5JwE,2802
|
219
219
|
anyscale/client/openapi_client/models/cloud_waitlist_status.py,sha256=e7QUyFM6_CrZ1hTONmYBNpBR4_fN54wxhdsom4F_KtU,2959
|
220
|
-
anyscale/client/openapi_client/models/cloud_with_cloud_resource.py,sha256=
|
221
|
-
anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py,sha256=
|
220
|
+
anyscale/client/openapi_client/models/cloud_with_cloud_resource.py,sha256=E05vmRG34ohHEReAx_pifhonanr-485o6gn_5HC_I2M,30588
|
221
|
+
anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py,sha256=5eQdD_FdXKjJFgMPHOm2QTHylJk0u7cCj9eI0F4I0ZM,30941
|
222
222
|
anyscale/client/openapi_client/models/cloudcollaborator_list_response.py,sha256=pXHb16324ty5-42cz6H_V7gDSGOOt4URzgmDKAtif5o,4452
|
223
223
|
anyscale/client/openapi_client/models/clouddatabucketpresigneduploadinfo_response.py,sha256=Oqayf777CsQTa5mU0AEsu_54VNDYL7kpxgn5Icn8jOg,3792
|
224
224
|
anyscale/client/openapi_client/models/clouddatabucketpresignedurlresponse_response.py,sha256=dNN9ed8MqR0wA45kniuFPPBTiMx_fdoVlarg5lS9oGw,3803
|
@@ -300,7 +300,7 @@ anyscale/client/openapi_client/models/dataset_dag.py,sha256=_8wixt-pAWipBz8MQ20C
|
|
300
300
|
anyscale/client/openapi_client/models/dataset_dag_response.py,sha256=KgPE8GwwuensHjvi820Z8xd2_k-SUzgKGj0fPgcaFrM,3588
|
301
301
|
anyscale/client/openapi_client/models/dataset_jobs.py,sha256=1gt2IE0gyNiLQMDlCoswSowzNF_MnZy5VxuWn2p7Oys,3463
|
302
302
|
anyscale/client/openapi_client/models/dataset_list_response.py,sha256=w9_Ynt3MjLlCuqEu5NIHNt3_fWxm7-Xrj6Qd2fd1vOg,4522
|
303
|
-
anyscale/client/openapi_client/models/dataset_metrics.py,sha256=
|
303
|
+
anyscale/client/openapi_client/models/dataset_metrics.py,sha256=FvzHtwM3pdnW6TMjlEpQZtPybXHXYZWAKFneFU2zh1Y,11452
|
304
304
|
anyscale/client/openapi_client/models/dataset_state.py,sha256=fmP97VHXvrTuwEm8lQhSnarE6dXMzcF5bYBK6XDCKpc,2898
|
305
305
|
anyscale/client/openapi_client/models/dataset_upload.py,sha256=rOHyuUSC_14OlJU2I3d14K8SxD0sY-reNiYDsdKM8ec,4361
|
306
306
|
anyscale/client/openapi_client/models/datasetupload_response.py,sha256=0c090SMm7H---lZkx9lPHAimah54Nk1hdwJK7pd82Mg,3561
|
@@ -310,7 +310,7 @@ anyscale/client/openapi_client/models/decorated_compute_template.py,sha256=7bDVl
|
|
310
310
|
anyscale/client/openapi_client/models/decorated_compute_template_config.py,sha256=TjiPN3e55YHAQG6W0yVeSfV_-og9qvnsnty5k-L5vhs,21362
|
311
311
|
anyscale/client/openapi_client/models/decorated_interactive_session.py,sha256=S2m6CuKL-yKYPSQFE5wHIZMBX-sNAG-6Wy2JnQ2sfVo,24575
|
312
312
|
anyscale/client/openapi_client/models/decorated_job.py,sha256=J0qHizRSKj-FTbHXJboRuQ2hLkyv8Vt-k3q_DYWyq60,23075
|
313
|
-
anyscale/client/openapi_client/models/decorated_job_queue.py,sha256=
|
313
|
+
anyscale/client/openapi_client/models/decorated_job_queue.py,sha256=DzpcqKoTJ9_6iV5dLj4pwFNGtyCZd8bxPLn6c9-Y5Os,21975
|
314
314
|
anyscale/client/openapi_client/models/decorated_list_service_api_model.py,sha256=T0RzqZDdP44_jVp7oNFJyBdRDWRvEXTUaS-2LMuWozU,24473
|
315
315
|
anyscale/client/openapi_client/models/decorated_production_job.py,sha256=Usa0VXVIE_YZSh_1XeU--Mj9Z1jprp_HWTiLypB_xI8,25794
|
316
316
|
anyscale/client/openapi_client/models/decorated_production_job_state_transition.py,sha256=os2mHhohCHf-QxofQwO-q8d86cn8L0xXq_DmEJofJYo,10741
|
@@ -493,8 +493,8 @@ anyscale/client/openapi_client/models/notification_channel_webhook_config.py,sha
|
|
493
493
|
anyscale/client/openapi_client/models/object_storage.py,sha256=dO0KqwsA0uv7lvIqWlsqPqnXRFaQBkgNJKXdJr5RuBM,5597
|
494
494
|
anyscale/client/openapi_client/models/operator_branch.py,sha256=_wl7vipkkcgd_fn2TG6VZp5Z7zme7kVtp6xXimdNBPg,4232
|
495
495
|
anyscale/client/openapi_client/models/operator_id.py,sha256=D1gfzRMkSIl5svx9CuRdyd_WdsBwS135D6mjAUuReVg,3359
|
496
|
-
anyscale/client/openapi_client/models/operator_metrics.py,sha256=
|
497
|
-
anyscale/client/openapi_client/models/organization.py,sha256
|
496
|
+
anyscale/client/openapi_client/models/operator_metrics.py,sha256=MErimDgIJ4gcEDBsTN3PeV-jKBJ6VeDW_SnUER-jxJQ,8755
|
497
|
+
anyscale/client/openapi_client/models/organization.py,sha256=denL5QGkErdMLQkEkGWCIxLt-Wv1EWc5u7REMOTKqrw,17320
|
498
498
|
anyscale/client/openapi_client/models/organization_collaborator.py,sha256=b1EWH9jTsPKPv5aotAnf052kC_v4YQ2FVyIcJ28g5pM,8034
|
499
499
|
anyscale/client/openapi_client/models/organization_configuration.py,sha256=ut6TmxbRFp9dQjQQHJL10vV1DRsZPFtFa3sCiPU2Ae8,8754
|
500
500
|
anyscale/client/openapi_client/models/organization_configuration_response.py,sha256=GNWS6L-_oLt2E6izb70UrqibhhLZjex9aCi3WEyltHo,7568
|
@@ -608,6 +608,7 @@ anyscale/client/openapi_client/models/show_otp_source_return_api_model.py,sha256
|
|
608
608
|
anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py,sha256=nQpVssn04QuNZ6zx10SpfEl8G216X9-QenYXqUDkkYA,3715
|
609
609
|
anyscale/client/openapi_client/models/sort_order.py,sha256=nmc0YdVaBIZ7pLPrOnteLDbc2Pu2vPfeOMclZH89VV4,2799
|
610
610
|
anyscale/client/openapi_client/models/sso_login_info.py,sha256=I_l8h9DiWVaOCy4iWn3k5AbYyvsa0_A-66AOEPcgGYA,4515
|
611
|
+
anyscale/client/openapi_client/models/sso_mode.py,sha256=rowexQjIbUajbZXI8nJfLUmXkREmMaFocRoTowpm_1Y,2839
|
611
612
|
anyscale/client/openapi_client/models/ssologininfo_response.py,sha256=NprIco_jVOCO1K-6B8wAfRpEefG4cybZUlWw-weLjDU,3550
|
612
613
|
anyscale/client/openapi_client/models/start_session_options.py,sha256=dd_57VoQMiOA0AHPItn3JpVyhGQ6wtQkMQqHhaxZHh4,4204
|
613
614
|
anyscale/client/openapi_client/models/stop_session_options.py,sha256=8ulrBPdfMNEUqwtrtAwJhby8V3MBQf3sVvOX-f9A54k,6939
|
@@ -706,7 +707,7 @@ anyscale/client/openapi_client/models/write_project.py,sha256=48Jym8VDE57cZXTnVH
|
|
706
707
|
anyscale/client/openapi_client/models/write_support_request.py,sha256=pFOalGDQi9FCDjeJV7ccBpq6iRq1Sub4NBfcUVfCglE,3614
|
707
708
|
anyscale/cloud/__init__.py,sha256=HiLCXsvdt2P3E3pq9Qn4bOO58x4XLpSx1-LAe5Nx-wA,3892
|
708
709
|
anyscale/cloud/commands.py,sha256=ycNOpjoevX60rhUQwK1FVxhm8XLhgcClCqeYuYX9xwU,2988
|
709
|
-
anyscale/cloud/models.py,sha256=
|
710
|
+
anyscale/cloud/models.py,sha256=t1Z5RZX8WZQD6gSEj2iwSVl-fhM9QkbfjA3DjSqGG10,7696
|
710
711
|
anyscale/cloud/_private/cloud_sdk.py,sha256=xCoAVomOfo75YWZzHMm9TDeL8UUx79Gn1DeEf6l73bY,2789
|
711
712
|
anyscale/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
712
713
|
anyscale/commands/aggregated_instance_usage_commands.py,sha256=TRP1X3hdIWbKg9V20VtazlDXsYAeV--M0DH3-Z5tnj4,2293
|
@@ -759,7 +760,7 @@ anyscale/connect_utils/start_interactive_session.py,sha256=DbuIK2wuWofmbwJ9MLbsb
|
|
759
760
|
anyscale/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
760
761
|
anyscale/controllers/auth_controller.py,sha256=hDY2sPvUP8pvh8PnlDYH5rCHjQes2v3b_KBVjMbrzeE,5127
|
761
762
|
anyscale/controllers/base_controller.py,sha256=1QFJoScFUV7YTzpKarhwPOc1SvI-xqX3TZmwxKonW6I,1998
|
762
|
-
anyscale/controllers/cloud_controller.py,sha256=
|
763
|
+
anyscale/controllers/cloud_controller.py,sha256=BlF_sF-6xFHdWZtboz84m2R4FZWc-weHLJtNIQutiGk,177090
|
763
764
|
anyscale/controllers/cloud_functional_verification_controller.py,sha256=YsEfdHT9hPtxy_3a5Q62UlRXW0iFJ1lVS4IZ_NHoemE,33399
|
764
765
|
anyscale/controllers/cluster_controller.py,sha256=Sb5wVjrjpycg5iqmENAVtZ4iy9Kr6kM97_ck-KH85LM,28745
|
765
766
|
anyscale/controllers/cluster_env_controller.py,sha256=JalGzcmnFtMHefYL5U6ijMY3nX6W6BsMEfZSMtgBvtU,8048
|
@@ -779,7 +780,7 @@ anyscale/controllers/workspace_controller.py,sha256=LNjLMxQ29vBvYiVVLUWVl3AXTHlR
|
|
779
780
|
anyscale/controllers/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
780
781
|
anyscale/controllers/llm/models_controller.py,sha256=IXI9-1LpUPMSuPEChBcZCEagvJHh52R3djfyk5JY1xU,5690
|
781
782
|
anyscale/formatters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
782
|
-
anyscale/formatters/clouds_formatter.py,sha256=
|
783
|
+
anyscale/formatters/clouds_formatter.py,sha256=q2EtzTvhhlQAOPsaYQrt9E5qimc0x-1tuU_2Nk2a5Ws,2214
|
783
784
|
anyscale/formatters/common_formatter.py,sha256=3FoLEIOnW58sT1iUX1qk_8l9ocR1UP67eagk3VEvYyA,526
|
784
785
|
anyscale/image/__init__.py,sha256=0d-h15Xk2xCcmrpW_PliHeKmyHKOhvizQHJ4bRN-fpE,2212
|
785
786
|
anyscale/image/commands.py,sha256=m9ud8iCUFjNH8qThLBkDPtTtz0EqX9tSIvOAD_ZvkAc,3392
|
@@ -787,7 +788,7 @@ anyscale/image/models.py,sha256=xEaZfrMydtkdr-7zYlI-2d9Su2I7al7TgBulwG_plnI,1812
|
|
787
788
|
anyscale/image/_private/image_sdk.py,sha256=c6ONvbcq1bUP0YbfIMw8QLRFfVbCiiTwULQAniotd04,7311
|
788
789
|
anyscale/job/__init__.py,sha256=_5Nb3a11F4oAHXirTgx5vDdgpVzJ62FdGFmADxxvcPE,5051
|
789
790
|
anyscale/job/commands.py,sha256=je0WDrd3mxt3iuoGqKvE_2TuMWsffXXM_IQ5SRjUKnU,8524
|
790
|
-
anyscale/job/models.py,sha256=
|
791
|
+
anyscale/job/models.py,sha256=w2qqm69ccCf9Y6Hwe5cLszqn3asS19s24t4akuZPsUM,17922
|
791
792
|
anyscale/job/_private/job_sdk.py,sha256=6kQ5bDggA3f1MXcrlXAGrFRA7WAOcvKDVi8FXwq7z-E,18871
|
792
793
|
anyscale/llm/__init__.py,sha256=lRp09PWR2gcJF_1Y9ieIIQWirijP5p_l3AQkTir2iN4,76
|
793
794
|
anyscale/llm/sdk.py,sha256=VmA03eegizqikWR3eH2jYNiA8-FY3Qq1GGtvdkgU470,733
|
@@ -839,7 +840,7 @@ anyscale/sdk/anyscale_client/models/baseimagesenum.py,sha256=Jk33ARD51SCLUIg5GbJ
|
|
839
840
|
anyscale/sdk/anyscale_client/models/build.py,sha256=xiHlZqdnn-jAcbsLp735tjXG4f9TX49ADYqkbL39zLQ,20306
|
840
841
|
anyscale/sdk/anyscale_client/models/build_response.py,sha256=lC_GmJ5eYUMSAC_g7VwmdvNSN6k_TfzCpRw3kK6GQMQ,3471
|
841
842
|
anyscale/sdk/anyscale_client/models/build_status.py,sha256=4L-hAKlhaOUy41MV1sXIq7Ls7u8CMkWMB5NsKD4wXJ0,3015
|
842
|
-
anyscale/sdk/anyscale_client/models/cloud.py,sha256=
|
843
|
+
anyscale/sdk/anyscale_client/models/cloud.py,sha256=uNZ2s8JrC-0CCeF7_zj4DSrT0egcJucQupHSBJMXc48,27791
|
843
844
|
anyscale/sdk/anyscale_client/models/cloud_config.py,sha256=koZOTPKLpjHmC5UukNYDOTkhal566xNWbYPzptJ03Wc,7505
|
844
845
|
anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py,sha256=H4yD-6LgUA9raBneT2Q7ICoDoQVbliw56A55-mDrmJs,11122
|
845
846
|
anyscale/sdk/anyscale_client/models/cloud_deployment_selector.py,sha256=_17xZcTWoy_MOKv9-tl5mpY5v8lk7dzmn7beExOD6vA,6148
|
@@ -936,7 +937,7 @@ anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py,sha256=RMtqS
|
|
936
937
|
anyscale/sdk/anyscale_client/models/operation_error.py,sha256=W3gIlCgVC46GjAmH3L-33r-_SMmpRmkhzJBIYQHRz9U,3660
|
937
938
|
anyscale/sdk/anyscale_client/models/operation_progress.py,sha256=5o_vxN23iAJ66TvTxHZYxJ_0PYfqPO8hrE1NHJfkhek,3680
|
938
939
|
anyscale/sdk/anyscale_client/models/operation_result.py,sha256=Un37p33d-WGdBAhi2b6gWQwyXowQ8yCwiZtk7zgO-eg,4362
|
939
|
-
anyscale/sdk/anyscale_client/models/organization.py,sha256=
|
940
|
+
anyscale/sdk/anyscale_client/models/organization.py,sha256=rZj0_RBuVHZUpwOvBy1JhcBAwIRbO8Pdrnd2zvUjpbQ,7200
|
940
941
|
anyscale/sdk/anyscale_client/models/organization_response.py,sha256=IXNE5_FVs9bPn19gXD_KTHmRI6j5tMG7ebc7oMbjUaM,3548
|
941
942
|
anyscale/sdk/anyscale_client/models/page_query.py,sha256=1ttjaka8K-6HJiZhwyP9FdN1MM8SZnzpoAAvemsu-eA,4583
|
942
943
|
anyscale/sdk/anyscale_client/models/pause_schedule.py,sha256=iq-YgjLtLJ5J--PWYmwG_p_3urs-sUXyKEKrk57VNUU,3659
|
@@ -1072,10 +1073,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
|
|
1072
1073
|
anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
|
1073
1074
|
anyscale/workspace/models.py,sha256=HBvM9ybOdJjqQeViQ30C36gdKT_AwH_JHPoL-DTkESo,9841
|
1074
1075
|
anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
|
1075
|
-
anyscale-0.26.
|
1076
|
-
anyscale-0.26.
|
1077
|
-
anyscale-0.26.
|
1078
|
-
anyscale-0.26.
|
1079
|
-
anyscale-0.26.
|
1080
|
-
anyscale-0.26.
|
1081
|
-
anyscale-0.26.
|
1076
|
+
anyscale-0.26.28.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
|
1077
|
+
anyscale-0.26.28.dist-info/METADATA,sha256=j5aRRGIMazcYSu1WxCdb9-DuKO91I5dEXGxG_23n0qM,3160
|
1078
|
+
anyscale-0.26.28.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
|
1079
|
+
anyscale-0.26.28.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
1080
|
+
anyscale-0.26.28.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
|
1081
|
+
anyscale-0.26.28.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
|
1082
|
+
anyscale-0.26.28.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|