anyscale 0.26.47__py3-none-any.whl → 0.26.49__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/__init__.py +0 -7
- anyscale/_private/anyscale_client/README.md +115 -0
- anyscale/_private/anyscale_client/anyscale_client.py +12 -213
- anyscale/_private/anyscale_client/common.py +0 -55
- anyscale/_private/anyscale_client/fake_anyscale_client.py +19 -46
- anyscale/_private/docgen/__main__.py +32 -47
- anyscale/_private/docgen/generator.py +32 -16
- anyscale/_private/docgen/generator_legacy.py +58 -6
- anyscale/_private/docgen/models.md +3 -2
- anyscale/_private/workload/workload_config.py +16 -8
- anyscale/_private/workload/workload_sdk.py +24 -7
- anyscale/client/README.md +10 -2
- anyscale/client/openapi_client/__init__.py +6 -2
- anyscale/client/openapi_client/api/default_api.py +558 -8
- anyscale/client/openapi_client/models/__init__.py +6 -2
- anyscale/client/openapi_client/models/{alert_type.py → alert_issue_type.py} +8 -20
- anyscale/client/openapi_client/models/baseimagesenum.py +1 -2
- anyscale/client/openapi_client/models/cloud.py +31 -3
- anyscale/client/openapi_client/models/cloud_deployment.py +30 -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 +6 -6
- anyscale/client/openapi_client/models/dataset_state.py +2 -1
- anyscale/client/openapi_client/models/decorated_cloud_deployment.py +481 -0
- anyscale/client/openapi_client/models/decoratedclouddeployment_response.py +121 -0
- anyscale/client/openapi_client/models/describe_system_workload_response.py +32 -6
- anyscale/client/openapi_client/models/experimental_workspace.py +29 -1
- anyscale/client/openapi_client/models/experimental_workspaces_sort_field.py +2 -1
- anyscale/client/openapi_client/models/metrics_query_response.py +121 -0
- anyscale/client/openapi_client/models/{clouddeployment_response.py → metricsqueryresponse_response.py} +11 -11
- anyscale/client/openapi_client/models/operator_metrics.py +8 -9
- anyscale/client/openapi_client/models/operator_status.py +102 -0
- anyscale/client/openapi_client/models/organization_usage_alert.py +20 -20
- anyscale/client/openapi_client/models/supportedbaseimagesenum.py +1 -2
- anyscale/cloud/models.py +330 -0
- anyscale/commands/cloud_commands.py +136 -44
- anyscale/commands/command_examples.py +54 -134
- anyscale/commands/compute_config_commands.py +7 -11
- anyscale/compute_config/__init__.py +2 -16
- anyscale/compute_config/_private/compute_config_sdk.py +27 -17
- anyscale/compute_config/commands.py +14 -44
- anyscale/compute_config/models.py +49 -26
- anyscale/controllers/cloud_controller.py +289 -171
- anyscale/controllers/cloud_file_storage_utils.py +204 -0
- anyscale/controllers/kubernetes_verifier.py +1570 -0
- anyscale/job/_private/job_sdk.py +17 -8
- anyscale/job/models.py +1 -1
- anyscale/scripts.py +0 -2
- anyscale/sdk/anyscale_client/models/baseimagesenum.py +1 -2
- anyscale/sdk/anyscale_client/models/cloud.py +31 -3
- anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +1 -2
- anyscale/shared_anyscale_utils/headers.py +3 -0
- anyscale/shared_anyscale_utils/utils/id_gen.py +1 -0
- anyscale/version.py +1 -1
- anyscale/workspace/models.py +14 -7
- {anyscale-0.26.47.dist-info → anyscale-0.26.49.dist-info}/METADATA +1 -1
- {anyscale-0.26.47.dist-info → anyscale-0.26.49.dist-info}/RECORD +62 -73
- anyscale/commands/llm/dataset_commands.py +0 -269
- anyscale/commands/llm/group.py +0 -15
- anyscale/commands/llm/models_commands.py +0 -123
- anyscale/controllers/llm/__init__.py +0 -0
- anyscale/controllers/llm/models_controller.py +0 -144
- anyscale/llm/__init__.py +0 -2
- anyscale/llm/dataset/__init__.py +0 -2
- anyscale/llm/dataset/_private/__init__.py +0 -0
- anyscale/llm/dataset/_private/docs.py +0 -63
- anyscale/llm/dataset/_private/models.py +0 -71
- anyscale/llm/dataset/_private/sdk.py +0 -147
- anyscale/llm/model/__init__.py +0 -2
- anyscale/llm/model/_private/models_sdk.py +0 -62
- anyscale/llm/model/commands.py +0 -93
- anyscale/llm/model/models.py +0 -171
- anyscale/llm/model/sdk.py +0 -62
- anyscale/llm/sdk.py +0 -27
- {anyscale-0.26.47.dist-info → anyscale-0.26.49.dist-info}/WHEEL +0 -0
- {anyscale-0.26.47.dist-info → anyscale-0.26.49.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.47.dist-info → anyscale-0.26.49.dist-info}/licenses/LICENSE +0 -0
- {anyscale-0.26.47.dist-info → anyscale-0.26.49.dist-info}/licenses/NOTICE +0 -0
- {anyscale-0.26.47.dist-info → anyscale-0.26.49.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,12 @@ from dataclasses import dataclass, field
|
|
2
2
|
from typing import Dict, List, Optional, Union
|
3
3
|
|
4
4
|
from anyscale._private.models import ImageURI, ModelBase
|
5
|
-
from anyscale.compute_config.models import
|
5
|
+
from anyscale.compute_config.models import (
|
6
|
+
compute_config_type_from_dict,
|
7
|
+
ComputeConfig,
|
8
|
+
ComputeConfigType,
|
9
|
+
MultiDeploymentComputeConfig,
|
10
|
+
)
|
6
11
|
|
7
12
|
|
8
13
|
@dataclass(frozen=True)
|
@@ -40,24 +45,27 @@ class WorkloadConfig(ModelBase):
|
|
40
45
|
if containerfile is not None and not isinstance(containerfile, str):
|
41
46
|
raise TypeError("'containerfile' must be a string.")
|
42
47
|
|
43
|
-
compute_config: Union[
|
48
|
+
compute_config: Union[ComputeConfigType, Dict, str, None] = field(
|
44
49
|
default=None,
|
45
50
|
metadata={
|
46
|
-
"docstring": "The name of an existing registered compute config or an inlined ComputeConfig object."
|
51
|
+
"docstring": "The name of an existing registered compute config or an inlined ComputeConfig or MultiDeploymentComputeConfig object."
|
47
52
|
},
|
48
53
|
)
|
49
54
|
|
50
55
|
def _validate_compute_config(
|
51
|
-
self, compute_config: Union[
|
52
|
-
) -> Union[None, str,
|
56
|
+
self, compute_config: Union[ComputeConfigType, Dict, str, None]
|
57
|
+
) -> Union[None, str, ComputeConfigType]:
|
53
58
|
if compute_config is None or isinstance(compute_config, str):
|
54
59
|
return compute_config
|
55
60
|
|
56
61
|
if isinstance(compute_config, dict):
|
57
|
-
compute_config =
|
58
|
-
|
62
|
+
compute_config = compute_config_type_from_dict(compute_config)
|
63
|
+
|
64
|
+
if not isinstance(
|
65
|
+
compute_config, (ComputeConfig, MultiDeploymentComputeConfig)
|
66
|
+
):
|
59
67
|
raise TypeError(
|
60
|
-
"'compute_config' must be a string, ComputeConfig, or corresponding dict"
|
68
|
+
"'compute_config' must be a string, ComputeConfig, MultiDeploymentComputeConfig, or corresponding dict"
|
61
69
|
)
|
62
70
|
|
63
71
|
return compute_config
|
@@ -10,7 +10,11 @@ from anyscale._private.anyscale_client import (
|
|
10
10
|
from anyscale._private.sdk.base_sdk import BaseSDK, Timer
|
11
11
|
from anyscale.cli_logger import BlockLogger
|
12
12
|
from anyscale.compute_config._private.compute_config_sdk import PrivateComputeConfigSDK
|
13
|
-
from anyscale.compute_config.models import
|
13
|
+
from anyscale.compute_config.models import (
|
14
|
+
ComputeConfig,
|
15
|
+
ComputeConfigType,
|
16
|
+
MultiDeploymentComputeConfig,
|
17
|
+
)
|
14
18
|
from anyscale.image._private.image_sdk import PrivateImageSDK
|
15
19
|
from anyscale.utils.runtime_env import is_dir_remote_uri, parse_requirements_file
|
16
20
|
|
@@ -139,8 +143,8 @@ class WorkloadSDK(BaseSDK):
|
|
139
143
|
return local_path_to_uri[target]
|
140
144
|
|
141
145
|
if has_multiple_cloud_deployments:
|
142
|
-
|
143
|
-
"
|
146
|
+
self.logger.warning(
|
147
|
+
"For compute configurations with multiple cloud deployments, local directories will only be uploaded to the object storage of the primary cloud deployment."
|
144
148
|
)
|
145
149
|
|
146
150
|
self.logger.info(f"Uploading local dir '{target}' to cloud storage.")
|
@@ -189,7 +193,9 @@ class WorkloadSDK(BaseSDK):
|
|
189
193
|
return new_runtime_envs
|
190
194
|
|
191
195
|
def _resolve_compute_config_id(
|
192
|
-
self,
|
196
|
+
self,
|
197
|
+
compute_config: Union[str, ComputeConfigType, None],
|
198
|
+
cloud: Optional[str] = None,
|
193
199
|
) -> str:
|
194
200
|
"""Resolve the passed compute config to its ID.
|
195
201
|
|
@@ -207,6 +213,15 @@ class WorkloadSDK(BaseSDK):
|
|
207
213
|
raise ValueError(
|
208
214
|
f"The compute config '{compute_config}' does not exist."
|
209
215
|
)
|
216
|
+
elif compute_config is None:
|
217
|
+
cloud_id = self.client.get_cloud_id(cloud_name=cloud) # type: ignore
|
218
|
+
compute_config_id = self._client.get_default_compute_config(
|
219
|
+
cloud_id=cloud_id
|
220
|
+
).id
|
221
|
+
if compute_config_id is None:
|
222
|
+
raise ValueError(
|
223
|
+
f"The default compute config for cloud '{cloud}' does not exist."
|
224
|
+
)
|
210
225
|
else:
|
211
226
|
_, compute_config_id = self._compute_config_sdk.create_compute_config(
|
212
227
|
compute_config
|
@@ -217,7 +232,7 @@ class WorkloadSDK(BaseSDK):
|
|
217
232
|
def resolve_compute_config_and_cloud_id(
|
218
233
|
self,
|
219
234
|
*,
|
220
|
-
compute_config: Union[
|
235
|
+
compute_config: Union[ComputeConfigType, Dict, str, None],
|
221
236
|
cloud: Union[None, str],
|
222
237
|
) -> Tuple[str, str]:
|
223
238
|
"""Resolve the passed compute config to its ID and corresponding cloud ID.
|
@@ -252,7 +267,9 @@ class WorkloadSDK(BaseSDK):
|
|
252
267
|
else:
|
253
268
|
# If we are creating a new compute config, ensure cloud is set accordingly
|
254
269
|
if (
|
255
|
-
isinstance(
|
270
|
+
isinstance(
|
271
|
+
compute_config, (ComputeConfig, MultiDeploymentComputeConfig)
|
272
|
+
)
|
256
273
|
and compute_config.cloud is None
|
257
274
|
):
|
258
275
|
compute_config = replace(compute_config, cloud=cloud)
|
@@ -315,7 +332,7 @@ class WorkloadSDK(BaseSDK):
|
|
315
332
|
|
316
333
|
def get_user_facing_compute_config(
|
317
334
|
self, compute_config_id: str,
|
318
|
-
) -> Union[str,
|
335
|
+
) -> Union[str, ComputeConfigType]:
|
319
336
|
"""Get the compute config in a format to be displayed in a user-facing status.
|
320
337
|
|
321
338
|
If the compute config refers to an anonymous compute config, its config
|
anyscale/client/README.md
CHANGED
@@ -308,6 +308,8 @@ Class | Method | HTTP request | Description
|
|
308
308
|
*DefaultApi* | [**put_workspace_proxied_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_proxied_dataplane_artifacts_put**](docs/DefaultApi.md#put_workspace_proxied_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_proxied_dataplane_artifacts_put) | **PUT** /api/v2/experimental_workspaces/{workspace_id}/proxied_dataplane_artifacts | Put Workspace Proxied Dataplane Artifacts
|
309
309
|
*DefaultApi* | [**put_workspace_wandb_run_details_api_v2_integrations_workspace_wandb_run_details_workspace_id_put**](docs/DefaultApi.md#put_workspace_wandb_run_details_api_v2_integrations_workspace_wandb_run_details_workspace_id_put) | **PUT** /api/v2/integrations/workspace_wandb_run_details/{workspace_id} | Put Workspace Wandb Run Details
|
310
310
|
*DefaultApi* | [**query_aggregated_logs_api_v2_logs_query_aggregated_logs_get**](docs/DefaultApi.md#query_aggregated_logs_api_v2_logs_query_aggregated_logs_get) | **GET** /api/v2/logs/query_aggregated_logs | Query Aggregated Logs
|
311
|
+
*DefaultApi* | [**query_api_v2_metrics_query_get**](docs/DefaultApi.md#query_api_v2_metrics_query_get) | **GET** /api/v2/metrics/query | Query
|
312
|
+
*DefaultApi* | [**query_range_api_v2_metrics_query_range_get**](docs/DefaultApi.md#query_range_api_v2_metrics_query_range_get) | **GET** /api/v2/metrics/query_range | Query Range
|
311
313
|
*DefaultApi* | [**receive_cli_usage_api_v2_cli_usage_post**](docs/DefaultApi.md#receive_cli_usage_api_v2_cli_usage_post) | **POST** /api/v2/cli_usage/ | Receive Cli Usage
|
312
314
|
*DefaultApi* | [**redirect_to_service_api_v2_sessions_cluster_id_services_get**](docs/DefaultApi.md#redirect_to_service_api_v2_sessions_cluster_id_services_get) | **GET** /api/v2/sessions/{cluster_id}/services | Redirect To Service
|
313
315
|
*DefaultApi* | [**redirect_to_tools_api_v2_services_v2_service_id_tools_get**](docs/DefaultApi.md#redirect_to_tools_api_v2_services_v2_service_id_tools_get) | **GET** /api/v2/services-v2/{service_id}/tools | Redirect To Tools
|
@@ -352,6 +354,7 @@ Class | Method | HTTP request | Description
|
|
352
354
|
*DefaultApi* | [**try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post**](docs/DefaultApi.md#try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post) | **POST** /api/v2/aioa_cloud_waitlist/claim_cloud | Try Claim Cloud
|
353
355
|
*DefaultApi* | [**try_login_api_v2_users_try_login_post**](docs/DefaultApi.md#try_login_api_v2_users_try_login_post) | **POST** /api/v2/users/try-login | Try Login
|
354
356
|
*DefaultApi* | [**update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put**](docs/DefaultApi.md#update_cloud_auto_add_user_api_v2_clouds_cloud_id_auto_add_user_put) | **PUT** /api/v2/clouds/{cloud_id}/auto_add_user | Update Cloud Auto Add User
|
357
|
+
*DefaultApi* | [**update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put**](docs/DefaultApi.md#update_cloud_deployment_api_v2_clouds_cloud_id_update_deployment_put) | **PUT** /api/v2/clouds/{cloud_id}/update_deployment | Update Cloud Deployment
|
355
358
|
*DefaultApi* | [**update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put**](docs/DefaultApi.md#update_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_put) | **PUT** /api/v2/clouds/{cloud_id}/deployment/{cloud_deployment_id}/config | Update Cloud Deployment Config
|
356
359
|
*DefaultApi* | [**update_cloud_deployments_api_v2_clouds_cloud_id_deployments_put**](docs/DefaultApi.md#update_cloud_deployments_api_v2_clouds_cloud_id_deployments_put) | **PUT** /api/v2/clouds/{cloud_id}/deployments | Update Cloud Deployments
|
357
360
|
*DefaultApi* | [**update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_put**](docs/DefaultApi.md#update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_put) | **PUT** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id} | Update Cloud With Cloud Resource
|
@@ -366,6 +369,7 @@ Class | Method | HTTP request | Description
|
|
366
369
|
*DefaultApi* | [**update_payment_info_api_v2_organization_billing_update_payment_info_post**](docs/DefaultApi.md#update_payment_info_api_v2_organization_billing_update_payment_info_post) | **POST** /api/v2/organization_billing/update_payment_info | Update Payment Info
|
367
370
|
*DefaultApi* | [**update_resource_notification_api_v2_resource_notifications_resource_notification_id_put**](docs/DefaultApi.md#update_resource_notification_api_v2_resource_notifications_resource_notification_id_put) | **PUT** /api/v2/resource_notifications/{resource_notification_id} | Update Resource Notification
|
368
371
|
*DefaultApi* | [**update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch**](docs/DefaultApi.md#update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id} | Update Resource Quota
|
372
|
+
*DefaultApi* | [**update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put**](docs/DefaultApi.md#update_system_cluster_config_api_v2_clouds_cloud_id_update_system_cluster_config_put) | **PUT** /api/v2/clouds/{cloud_id}/update_system_cluster_config | Update System Cluster Config
|
369
373
|
*DefaultApi* | [**upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post**](docs/DefaultApi.md#upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post) | **POST** /api/v2/session_commands/{session_command_id}/upload_logs | Upload Session Command Logs
|
370
374
|
*DefaultApi* | [**upsert_billing_version_api_v2_organization_billing_billing_versions_put**](docs/DefaultApi.md#upsert_billing_version_api_v2_organization_billing_billing_versions_put) | **PUT** /api/v2/organization_billing/billing_versions | Upsert Billing Version
|
371
375
|
*DefaultApi* | [**upsert_support_request_for_user_organization_api_v2_support_requests_support_request_put**](docs/DefaultApi.md#upsert_support_request_for_user_organization_api_v2_support_requests_support_request_put) | **PUT** /api/v2/support_requests/support_request | Upsert Support Request For User Organization
|
@@ -394,7 +398,7 @@ Class | Method | HTTP request | Description
|
|
394
398
|
- [AggregatedusageResponse](docs/AggregatedusageResponse.md)
|
395
399
|
- [AioaCloudWaitlistRecord](docs/AioaCloudWaitlistRecord.md)
|
396
400
|
- [AioacloudwaitlistrecordResponse](docs/AioacloudwaitlistrecordResponse.md)
|
397
|
-
- [
|
401
|
+
- [AlertIssueType](docs/AlertIssueType.md)
|
398
402
|
- [AnyscaleAWSAccount](docs/AnyscaleAWSAccount.md)
|
399
403
|
- [AnyscaleServiceAccount](docs/AnyscaleServiceAccount.md)
|
400
404
|
- [AnyscaleawsaccountResponse](docs/AnyscaleawsaccountResponse.md)
|
@@ -482,7 +486,6 @@ Class | Method | HTTP request | Description
|
|
482
486
|
- [ClouddatabucketpresigneduploadinfoResponse](docs/ClouddatabucketpresigneduploadinfoResponse.md)
|
483
487
|
- [ClouddatabucketpresignedurlresponseResponse](docs/ClouddatabucketpresignedurlresponseResponse.md)
|
484
488
|
- [ClouddeploymentListResponse](docs/ClouddeploymentListResponse.md)
|
485
|
-
- [ClouddeploymentResponse](docs/ClouddeploymentResponse.md)
|
486
489
|
- [ClouddeploymentconfigResponse](docs/ClouddeploymentconfigResponse.md)
|
487
490
|
- [CloudoverviewdashboardResponse](docs/CloudoverviewdashboardResponse.md)
|
488
491
|
- [CloudregionandzonesResponse](docs/CloudregionandzonesResponse.md)
|
@@ -581,6 +584,7 @@ Class | Method | HTTP request | Description
|
|
581
584
|
- [DatasetuploadResponse](docs/DatasetuploadResponse.md)
|
582
585
|
- [DecoratedApplicationTemplate](docs/DecoratedApplicationTemplate.md)
|
583
586
|
- [DecoratedBuild](docs/DecoratedBuild.md)
|
587
|
+
- [DecoratedCloudDeployment](docs/DecoratedCloudDeployment.md)
|
584
588
|
- [DecoratedComputeTemplate](docs/DecoratedComputeTemplate.md)
|
585
589
|
- [DecoratedComputeTemplateConfig](docs/DecoratedComputeTemplateConfig.md)
|
586
590
|
- [DecoratedInteractiveSession](docs/DecoratedInteractiveSession.md)
|
@@ -601,6 +605,7 @@ Class | Method | HTTP request | Description
|
|
601
605
|
- [DecoratedapplicationtemplateResponse](docs/DecoratedapplicationtemplateResponse.md)
|
602
606
|
- [DecoratedbuildListResponse](docs/DecoratedbuildListResponse.md)
|
603
607
|
- [DecoratedbuildResponse](docs/DecoratedbuildResponse.md)
|
608
|
+
- [DecoratedclouddeploymentResponse](docs/DecoratedclouddeploymentResponse.md)
|
604
609
|
- [DecoratedcomputetemplateListResponse](docs/DecoratedcomputetemplateListResponse.md)
|
605
610
|
- [DecoratedcomputetemplateResponse](docs/DecoratedcomputetemplateResponse.md)
|
606
611
|
- [DecoratedinteractivesessionListResponse](docs/DecoratedinteractivesessionListResponse.md)
|
@@ -746,6 +751,8 @@ Class | Method | HTTP request | Description
|
|
746
751
|
- [MachinepoolsearchresultListResponse](docs/MachinepoolsearchresultListResponse.md)
|
747
752
|
- [MachinestateinfoListResponse](docs/MachinestateinfoListResponse.md)
|
748
753
|
- [Metric](docs/Metric.md)
|
754
|
+
- [MetricsQueryResponse](docs/MetricsQueryResponse.md)
|
755
|
+
- [MetricsqueryresponseResponse](docs/MetricsqueryresponseResponse.md)
|
749
756
|
- [MetronomeCustomerInfoModel](docs/MetronomeCustomerInfoModel.md)
|
750
757
|
- [MetronomeDashboardType](docs/MetronomeDashboardType.md)
|
751
758
|
- [MetronomecustomerinfomodelListResponse](docs/MetronomecustomerinfomodelListResponse.md)
|
@@ -783,6 +790,7 @@ Class | Method | HTTP request | Description
|
|
783
790
|
- [OperatorBranch](docs/OperatorBranch.md)
|
784
791
|
- [OperatorId](docs/OperatorId.md)
|
785
792
|
- [OperatorMetrics](docs/OperatorMetrics.md)
|
793
|
+
- [OperatorStatus](docs/OperatorStatus.md)
|
786
794
|
- [Organization](docs/Organization.md)
|
787
795
|
- [OrganizationCollaborator](docs/OrganizationCollaborator.md)
|
788
796
|
- [OrganizationConfiguration](docs/OrganizationConfiguration.md)
|
@@ -42,7 +42,7 @@ from openapi_client.models.aggregatedinstanceusagecsv_list_response import Aggre
|
|
42
42
|
from openapi_client.models.aggregatedusage_response import AggregatedusageResponse
|
43
43
|
from openapi_client.models.aioa_cloud_waitlist_record import AioaCloudWaitlistRecord
|
44
44
|
from openapi_client.models.aioacloudwaitlistrecord_response import AioacloudwaitlistrecordResponse
|
45
|
-
from openapi_client.models.
|
45
|
+
from openapi_client.models.alert_issue_type import AlertIssueType
|
46
46
|
from openapi_client.models.anyscale_aws_account import AnyscaleAWSAccount
|
47
47
|
from openapi_client.models.anyscale_service_account import AnyscaleServiceAccount
|
48
48
|
from openapi_client.models.anyscaleawsaccount_response import AnyscaleawsaccountResponse
|
@@ -130,7 +130,6 @@ from openapi_client.models.cloudcollaborator_list_response import Cloudcollabora
|
|
130
130
|
from openapi_client.models.clouddatabucketpresigneduploadinfo_response import ClouddatabucketpresigneduploadinfoResponse
|
131
131
|
from openapi_client.models.clouddatabucketpresignedurlresponse_response import ClouddatabucketpresignedurlresponseResponse
|
132
132
|
from openapi_client.models.clouddeployment_list_response import ClouddeploymentListResponse
|
133
|
-
from openapi_client.models.clouddeployment_response import ClouddeploymentResponse
|
134
133
|
from openapi_client.models.clouddeploymentconfig_response import ClouddeploymentconfigResponse
|
135
134
|
from openapi_client.models.cloudoverviewdashboard_response import CloudoverviewdashboardResponse
|
136
135
|
from openapi_client.models.cloudregionandzones_response import CloudregionandzonesResponse
|
@@ -229,6 +228,7 @@ from openapi_client.models.dataset_upload import DatasetUpload
|
|
229
228
|
from openapi_client.models.datasetupload_response import DatasetuploadResponse
|
230
229
|
from openapi_client.models.decorated_application_template import DecoratedApplicationTemplate
|
231
230
|
from openapi_client.models.decorated_build import DecoratedBuild
|
231
|
+
from openapi_client.models.decorated_cloud_deployment import DecoratedCloudDeployment
|
232
232
|
from openapi_client.models.decorated_compute_template import DecoratedComputeTemplate
|
233
233
|
from openapi_client.models.decorated_compute_template_config import DecoratedComputeTemplateConfig
|
234
234
|
from openapi_client.models.decorated_interactive_session import DecoratedInteractiveSession
|
@@ -249,6 +249,7 @@ from openapi_client.models.decoratedapplicationtemplate_list_response import Dec
|
|
249
249
|
from openapi_client.models.decoratedapplicationtemplate_response import DecoratedapplicationtemplateResponse
|
250
250
|
from openapi_client.models.decoratedbuild_list_response import DecoratedbuildListResponse
|
251
251
|
from openapi_client.models.decoratedbuild_response import DecoratedbuildResponse
|
252
|
+
from openapi_client.models.decoratedclouddeployment_response import DecoratedclouddeploymentResponse
|
252
253
|
from openapi_client.models.decoratedcomputetemplate_list_response import DecoratedcomputetemplateListResponse
|
253
254
|
from openapi_client.models.decoratedcomputetemplate_response import DecoratedcomputetemplateResponse
|
254
255
|
from openapi_client.models.decoratedinteractivesession_list_response import DecoratedinteractivesessionListResponse
|
@@ -394,6 +395,8 @@ from openapi_client.models.machine_state_info import MachineStateInfo
|
|
394
395
|
from openapi_client.models.machinepoolsearchresult_list_response import MachinepoolsearchresultListResponse
|
395
396
|
from openapi_client.models.machinestateinfo_list_response import MachinestateinfoListResponse
|
396
397
|
from openapi_client.models.metric import Metric
|
398
|
+
from openapi_client.models.metrics_query_response import MetricsQueryResponse
|
399
|
+
from openapi_client.models.metricsqueryresponse_response import MetricsqueryresponseResponse
|
397
400
|
from openapi_client.models.metronome_customer_info_model import MetronomeCustomerInfoModel
|
398
401
|
from openapi_client.models.metronome_dashboard_type import MetronomeDashboardType
|
399
402
|
from openapi_client.models.metronomecustomerinfomodel_list_response import MetronomecustomerinfomodelListResponse
|
@@ -431,6 +434,7 @@ from openapi_client.models.operation_result import OperationResult
|
|
431
434
|
from openapi_client.models.operator_branch import OperatorBranch
|
432
435
|
from openapi_client.models.operator_id import OperatorId
|
433
436
|
from openapi_client.models.operator_metrics import OperatorMetrics
|
437
|
+
from openapi_client.models.operator_status import OperatorStatus
|
434
438
|
from openapi_client.models.organization import Organization
|
435
439
|
from openapi_client.models.organization_collaborator import OrganizationCollaborator
|
436
440
|
from openapi_client.models.organization_configuration import OrganizationConfiguration
|