anyscale 0.26.3__py3-none-any.whl → 0.26.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. anyscale/_private/anyscale_client/anyscale_client.py +1 -5
  2. anyscale/_private/docgen/__main__.py +0 -3
  3. anyscale/_private/docgen/api.md +0 -40
  4. anyscale/_private/docgen/models.md +2 -50
  5. anyscale/_private/workload/workload_config.py +11 -0
  6. anyscale/_private/workload/workload_sdk.py +4 -0
  7. anyscale/anyscale-cloud-setup-gcp-oa.yaml +2 -1
  8. anyscale/anyscale-cloud-setup-gcp.yaml +4 -2
  9. anyscale/client/README.md +11 -18
  10. anyscale/client/openapi_client/__init__.py +7 -11
  11. anyscale/client/openapi_client/api/default_api.py +537 -951
  12. anyscale/client/openapi_client/models/__init__.py +7 -11
  13. anyscale/client/openapi_client/models/{anyscale_version_response.py → backend_server_api_product_models_dataset_runs_dataset_response.py} +22 -22
  14. anyscale/client/openapi_client/models/{dataset_response.py → backend_server_api_product_routers_datasets_router_dataset_response.py} +8 -8
  15. anyscale/client/openapi_client/models/{logdetails_response.py → dataset_jobs.py} +22 -22
  16. anyscale/client/openapi_client/models/dataset_metrics.py +390 -0
  17. anyscale/{sdk/anyscale_client/models/session_command_types.py → client/openapi_client/models/dataset_state.py} +11 -9
  18. anyscale/client/openapi_client/models/{log_details.py → metric.py} +64 -42
  19. anyscale/client/openapi_client/models/node_type.py +2 -1
  20. anyscale/client/openapi_client/models/operator_metrics.py +256 -0
  21. anyscale/client/openapi_client/models/ray_runtime_env_config.py +29 -1
  22. anyscale/client/openapi_client/models/train_run.py +56 -3
  23. anyscale/client/openapi_client/models/train_worker.py +29 -3
  24. anyscale/cluster.py +5 -2
  25. anyscale/commands/anyscale_api/api_commands.py +0 -2
  26. anyscale/connect_utils/start_interactive_session.py +4 -1
  27. anyscale/controllers/cluster_controller.py +15 -26
  28. anyscale/controllers/project_controller.py +1 -6
  29. anyscale/job/_private/job_sdk.py +10 -1
  30. anyscale/job/models.py +8 -0
  31. anyscale/project_utils.py +9 -20
  32. anyscale/sdk/anyscale_client/__init__.py +0 -5
  33. anyscale/sdk/anyscale_client/api/default_api.py +0 -474
  34. anyscale/sdk/anyscale_client/models/__init__.py +0 -5
  35. anyscale/sdk/anyscale_client/models/node_type.py +2 -1
  36. anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +29 -1
  37. anyscale/version.py +1 -1
  38. {anyscale-0.26.3.dist-info → anyscale-0.26.5.dist-info}/METADATA +1 -1
  39. {anyscale-0.26.3.dist-info → anyscale-0.26.5.dist-info}/RECORD +44 -54
  40. anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +0 -121
  41. anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -546
  42. anyscale/client/openapi_client/models/decoratedjob_list_response.py +0 -147
  43. anyscale/client/openapi_client/models/log_detail.py +0 -187
  44. anyscale/client/openapi_client/models/provider_metadata.py +0 -205
  45. anyscale/client/openapi_client/models/providermetadata_response.py +0 -121
  46. anyscale/client/openapi_client/models/setup_initialize_session_options.py +0 -225
  47. anyscale/commands/anyscale_api/session_commands_commands.py +0 -80
  48. anyscale/sdk/anyscale_client/models/create_session_command.py +0 -152
  49. anyscale/sdk/anyscale_client/models/session_command.py +0 -350
  50. anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +0 -147
  51. anyscale/sdk/anyscale_client/models/sessioncommand_response.py +0 -121
  52. {anyscale-0.26.3.dist-info → anyscale-0.26.5.dist-info}/LICENSE +0 -0
  53. {anyscale-0.26.3.dist-info → anyscale-0.26.5.dist-info}/NOTICE +0 -0
  54. {anyscale-0.26.3.dist-info → anyscale-0.26.5.dist-info}/WHEEL +0 -0
  55. {anyscale-0.26.3.dist-info → anyscale-0.26.5.dist-info}/entry_points.txt +0 -0
  56. {anyscale-0.26.3.dist-info → anyscale-0.26.5.dist-info}/top_level.txt +0 -0
@@ -480,12 +480,8 @@ class AnyscaleClient(AnyscaleClientInterface):
480
480
 
481
481
  if self._default_project_id_from_cloud_id.get(parent_cloud_id) is None:
482
482
  # Cloud isolation organizations follow the permissions model in https://docs.anyscale.com/organization-and-user-account/access-controls
483
- # TODO(nikita): Remove this FF check after completing the cloud isolation migration in Q2 2024
484
- cloud_isolation_ff_on = self._internal_api_client.check_is_feature_flag_on_api_v2_userinfo_check_is_feature_flag_on_get(
485
- "cloud-isolation-phase-1"
486
- ).result.is_on
487
483
  default_project: Project = self._external_api_client.get_default_project(
488
- parent_cloud_id=(parent_cloud_id if cloud_isolation_ff_on else None)
484
+ parent_cloud_id=parent_cloud_id
489
485
  ).result
490
486
  self._default_project_id_from_cloud_id[parent_cloud_id] = default_project.id
491
487
 
@@ -685,9 +685,6 @@ ALL_MODULES = [
685
685
  "get_organization_temporary_object_storage_credentials": None,
686
686
  "partial_update_organization": None,
687
687
  "get_runtime_environment": None,
688
- "create_session_command": None,
689
- "get_session_command": None,
690
- "list_session_commands": None,
691
688
  "upsert_sso_config": None,
692
689
  "upsert_test_sso_config": None,
693
690
  },
@@ -1031,46 +1031,6 @@ Name | Type | Description | Notes
1031
1031
 
1032
1032
  Returns [ServicemodelResponse](./models.md#servicemodelresponse)
1033
1033
 
1034
- ## Session Commands
1035
-
1036
- ### create_session_command
1037
-
1038
- DEPRECATED: This API is now deprecated and will not be supported in Anyscale 2.0
1039
-
1040
- Parameters
1041
-
1042
- Name | Type | Description | Notes
1043
- ------------- | ------------- | ------------- | -------------
1044
- `create_session_command` | [CreateSessionCommand](./models.md#createsessioncommand)| |
1045
-
1046
- Returns [SessioncommandResponse](./models.md#sessioncommandresponse)
1047
-
1048
- ### get_session_command
1049
-
1050
- Retrieves a session command with ID.
1051
-
1052
- Parameters
1053
-
1054
- Name | Type | Description | Notes
1055
- ------------- | ------------- | ------------- | -------------
1056
- `session_command_id` | str| ID of the Session Command to retrieve. | Defaults to null
1057
-
1058
- Returns [SessioncommandResponse](./models.md#sessioncommandresponse)
1059
-
1060
- ### list_session_commands
1061
-
1062
- Retrieves a list of commands that were created on the Session.
1063
-
1064
- Parameters
1065
-
1066
- Name | Type | Description | Notes
1067
- ------------- | ------------- | ------------- | -------------
1068
- `session_id` | str| ID of the Session to list Commands for. | Defaults to null
1069
- `paging_token` | optional str| | Defaults to null
1070
- `count` | optional int| | Defaults to 10
1071
-
1072
- Returns [SessioncommandListResponse](./models.md#sessioncommandlistresponse)
1073
-
1074
1034
  ## Sso Configs
1075
1035
 
1076
1036
  ### upsert_sso_config
@@ -1007,15 +1007,6 @@ Name | Type | Description | Notes
1007
1007
  **user_service_token** | **str** | User service token that is used to authenticate access to public user services. This must be a valid 32 byte URL safe string and can be generated by calling `secrets.token_urlsafe(32))`. This is ignored if the user service has private access. If not specified for a public user service, a token is autogenerated. | [optional] [default to null]
1008
1008
  **ha_job_id** | **str** | This is used internally by Anyscale to associate clusters to a job. It is set automatically and should *not* be used directly. | [optional] [default to null]
1009
1009
 
1010
- ## CreateSessionCommand
1011
-
1012
- Model used to create and execute a command on a Session.
1013
-
1014
- Name | Type | Description | Notes
1015
- ------------ | ------------- | ------------- | -------------
1016
- **session_id** | **str** | ID of the Session to execute this command on. | [default to null]
1017
- **shell_command** | **str** | Shell command string that will be executed. | [default to null]
1018
-
1019
1010
  ## GrpcProtocolConfig
1020
1011
 
1021
1012
 
@@ -1251,7 +1242,7 @@ Name | Type | Description | Notes
1251
1242
  The type of node (head or worker).
1252
1243
 
1253
1244
  Possible Values:
1254
- ['head-node', 'worker-nodes']
1245
+ ['head-node', 'worker-nodes', 'unknown']
1255
1246
 
1256
1247
  ## ObjectStorageConfig
1257
1248
 
@@ -1546,6 +1537,7 @@ Name | Type | Description | Notes
1546
1537
  ------------ | ------------- | ------------- | -------------
1547
1538
  **working_dir** | **str** | The working directory that your code will run in. Must be a remote URI like an s3 or git path. | [optional] [default to null]
1548
1539
  **py_modules** | **List[str]** | Python modules that will be installed along with your runtime env. These must be remote URIs. | [optional] [default to null]
1540
+ **py_executable** | **str** | Specifies the executable used for running the Ray workers. It can include arguments as well. | [optional] [default to null]
1549
1541
  **pip** | **List[str]** | A list of pip packages to install. | [optional] [default to null]
1550
1542
  **conda** | **object** | [Union[Dict[str, Any], str]: Either the conda YAML config or the name of a local conda env (e.g., \"pytorch_p36\"), | [optional] [default to null]
1551
1543
  **env_vars** | **Dict(str, str)** | Environment variables to set. | [optional] [default to null]
@@ -1828,29 +1820,6 @@ Name | Type | Description | Notes
1828
1820
  **idle_termination_status** | [**IdleTerminationStatus**](#idleterminationstatus) | The status of autosuspend | [optional] [default to null]
1829
1821
  **ray_dashboard_snapshot_last_reported_at** | **datetime** | The time of the last snapshot recorded from the ray dashboard | [optional] [default to null]
1830
1822
 
1831
- ## SessionCommand
1832
-
1833
- Model used to create and execute a command on a Session.
1834
-
1835
- Name | Type | Description | Notes
1836
- ------------ | ------------- | ------------- | -------------
1837
- **session_id** | **str** | ID of the Session to execute this command on. | [default to null]
1838
- **shell_command** | **str** | Shell command string that will be executed. | [default to null]
1839
- **id** | **str** | Server assigned unique identifier. | [default to null]
1840
- **type** | [**SessionCommandTypes**](#sessioncommandtypes) | Where this command was executed | [optional] [default to null]
1841
- **created_at** | **datetime** | Timestamp of when this command was created. | [default to null]
1842
- **finished_at** | **datetime** | Timestamp of when this command completed its execution. This value will be absent if the command is still running. | [optional] [default to null]
1843
- **status_code** | **int** | Exit status of this command. This value will be absent if the command is still running. | [optional] [default to null]
1844
- **killed_at** | **datetime** | Timestamp of when this command was killed. This value will be absent if the command is still running or completed its execution normally. | [optional] [default to null]
1845
- **web_terminal_tab_id** | **str** | The id for the web terminal tab in which this command was executed. | [optional] [default to null]
1846
-
1847
- ## SessionCommandTypes
1848
-
1849
- An enumeration.
1850
-
1851
- Possible Values:
1852
- ['WEBTERMINAL', 'COMMAND_LINE_RUNNER']
1853
-
1854
1823
  ## SessionListResponse
1855
1824
 
1856
1825
  A list response form the API. Contains a field \"results\" which has the contents of the response.
@@ -1920,23 +1889,6 @@ Name | Type | Description | Notes
1920
1889
  **stop_progress** | **str** | | [optional] [default to null]
1921
1890
  **stop_error** | **str** | | [optional] [default to null]
1922
1891
 
1923
- ## SessioncommandListResponse
1924
-
1925
- A list response form the API. Contains a field \"results\" which has the contents of the response.
1926
-
1927
- Name | Type | Description | Notes
1928
- ------------ | ------------- | ------------- | -------------
1929
- **results** | [**List[SessionCommand]**](#sessioncommand) | | [default to null]
1930
- **metadata** | [**ListResponseMetadata**](#listresponsemetadata) | | [optional] [default to null]
1931
-
1932
- ## SessioncommandResponse
1933
-
1934
- A response from the API. Contains a field \"result\" which has the contents of the response.
1935
-
1936
- Name | Type | Description | Notes
1937
- ------------ | ------------- | ------------- | -------------
1938
- **result** | [**SessionCommand**](#sessioncommand) | | [default to null]
1939
-
1940
1892
  ## SessionoperationResponse
1941
1893
 
1942
1894
  A response from the API. Contains a field \"result\" which has the contents of the response.
@@ -154,6 +154,17 @@ class WorkloadConfig(ModelBase):
154
154
  ):
155
155
  raise TypeError("'py_modules' must be a list of strings.")
156
156
 
157
+ py_executable: Optional[str] = field(
158
+ default=None,
159
+ metadata={
160
+ "docstring": "Specifies the executable used for running the Ray workers. It can include arguments as well."
161
+ },
162
+ )
163
+
164
+ def _validate_py_executable(self, py_executable: Optional[str]):
165
+ if py_executable is not None and not isinstance(py_executable, str):
166
+ raise TypeError("'py_executable' must be a string.")
167
+
157
168
  cloud: Optional[str] = field(
158
169
  default=None,
159
170
  metadata={
@@ -117,6 +117,7 @@ class WorkloadSDK(BaseSDK):
117
117
  cloud_id: Optional[str] = None,
118
118
  autopopulate_in_workspace: bool = True,
119
119
  additional_py_modules: Optional[List[str]] = None,
120
+ py_executable_override: Optional[str] = None,
120
121
  ) -> List[Dict[str, Any]]:
121
122
  """Returns modified runtime_envs with all local dirs converted to remote URIs.
122
123
 
@@ -175,6 +176,9 @@ class WorkloadSDK(BaseSDK):
175
176
  for py_module in final_py_modules
176
177
  ]
177
178
 
179
+ if py_executable_override:
180
+ runtime_env["py_executable"] = py_executable_override
181
+
178
182
  return new_runtime_envs
179
183
 
180
184
  def _resolve_compute_config_id(
@@ -33,8 +33,9 @@ resources:
33
33
  type: iam.v1.serviceAccount
34
34
  properties:
35
35
  accountId: ${CLOUD_ID}
36
- displayName: ${CLOUD_ID} Cluster Node Service Account
37
36
  projectId: ${PROJECT_ID}
37
+ serviceAccount:
38
+ displayName: ${CLOUD_ID} Cluster Node Service Account
38
39
  - name: bucket-iam-anyscale-acess-${CLOUD_ID}
39
40
  type: gcp-types/storage-v1:virtual.buckets.iamMemberBinding
40
41
  properties:
@@ -56,8 +56,9 @@ resources:
56
56
  type: iam.v1.serviceAccount
57
57
  properties:
58
58
  accountId: ${ANYSCALE_ACCESS_SERVICE_ACCOUNT}
59
- displayName: ${CLOUD_ID} Anyscale access service account
60
59
  projectId: ${PROJECT_ID}
60
+ serviceAccount:
61
+ displayName: ${CLOUD_ID} Anyscale access service account
61
62
  accessControl:
62
63
  gcpIamPolicy:
63
64
  bindings:
@@ -80,8 +81,9 @@ resources:
80
81
  type: iam.v1.serviceAccount
81
82
  properties:
82
83
  accountId: ${CLOUD_ID}
83
- displayName: ${CLOUD_ID} Cluster Node Service Account
84
84
  projectId: ${PROJECT_ID}
85
+ serviceAccount:
86
+ displayName: ${CLOUD_ID} Cluster Node Service Account
85
87
  - name: iam-policy-instance-project-${CLOUD_ID}
86
88
  type: gcp-types/cloudresourcemanager-v1:virtual.projects.iamMemberBinding
87
89
  properties:
anyscale/client/README.md CHANGED
@@ -112,7 +112,6 @@ Class | Method | HTTP request | Description
112
112
  *DefaultApi* | [**create_cloud_api_v2_clouds_post**](docs/DefaultApi.md#create_cloud_api_v2_clouds_post) | **POST** /api/v2/clouds/ | Create Cloud
113
113
  *DefaultApi* | [**create_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_users_post**](docs/DefaultApi.md#create_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_users_post) | **POST** /api/v2/clouds/{cloud_id}/collaborators/users | Create Cloud Collaborator
114
114
  *DefaultApi* | [**create_cloud_collaborator_api_v2_projects_project_id_collaborators_cloud_post**](docs/DefaultApi.md#create_cloud_collaborator_api_v2_projects_project_id_collaborators_cloud_post) | **POST** /api/v2/projects/{project_id}/collaborators/cloud | Create Cloud Collaborator
115
- *DefaultApi* | [**create_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_post**](docs/DefaultApi.md#create_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_post) | **POST** /api/v2/clouds_with_cloud_resource_router/ | Create Cloud With Cloud Resource
116
115
  *DefaultApi* | [**create_compute_template_api_v2_compute_templates_post**](docs/DefaultApi.md#create_compute_template_api_v2_compute_templates_post) | **POST** /api/v2/compute_templates/ | Create Compute Template
117
116
  *DefaultApi* | [**create_configuration_api_v2_organization_configurations_post**](docs/DefaultApi.md#create_configuration_api_v2_organization_configurations_post) | **POST** /api/v2/organization_configurations/ | Create Configuration
118
117
  *DefaultApi* | [**create_configuration_script_api_v2_organization_configurations_create_helper_get**](docs/DefaultApi.md#create_configuration_script_api_v2_organization_configurations_create_helper_get) | **GET** /api/v2/organization_configurations/create_helper | Create Configuration Script
@@ -153,6 +152,7 @@ Class | Method | HTTP request | Description
153
152
  *DefaultApi* | [**delete_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_delete**](docs/DefaultApi.md#delete_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_delete) | **DELETE** /api/v2/projects/{project_id}/collaborators/{role_or_identity_id} | Delete Project Collaborator
154
153
  *DefaultApi* | [**delete_resource_notification_api_v2_resource_notifications_resource_notification_id_delete**](docs/DefaultApi.md#delete_resource_notification_api_v2_resource_notifications_resource_notification_id_delete) | **DELETE** /api/v2/resource_notifications/{resource_notification_id} | Delete Resource Notification
155
154
  *DefaultApi* | [**delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete**](docs/DefaultApi.md#delete_resource_quota_api_v2_resource_quotas_resource_quota_id_delete) | **DELETE** /api/v2/resource_quotas/{resource_quota_id} | Delete Resource Quota
155
+ *DefaultApi* | [**delete_service_api_v2_services_v2_service_id_delete**](docs/DefaultApi.md#delete_service_api_v2_services_v2_service_id_delete) | **DELETE** /api/v2/services-v2/{service_id} | Delete Service
156
156
  *DefaultApi* | [**delete_session_api_v2_sessions_session_id_delete**](docs/DefaultApi.md#delete_session_api_v2_sessions_session_id_delete) | **DELETE** /api/v2/sessions/{session_id} | Delete Session
157
157
  *DefaultApi* | [**delete_web_terminals_api_v2_sessions_session_id_web_terminals_terminal_id_delete**](docs/DefaultApi.md#delete_web_terminals_api_v2_sessions_session_id_web_terminals_terminal_id_delete) | **DELETE** /api/v2/sessions/{session_id}/web_terminals/{terminal_id} | Delete Web Terminals
158
158
  *DefaultApi* | [**delete_workspace_api_v2_experimental_workspaces_workspace_id_delete**](docs/DefaultApi.md#delete_workspace_api_v2_experimental_workspaces_workspace_id_delete) | **DELETE** /api/v2/experimental_workspaces/{workspace_id} | Delete Workspace
@@ -184,7 +184,6 @@ Class | Method | HTTP request | Description
184
184
  *DefaultApi* | [**generate_cloud_data_bucket_presigned_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_url_post**](docs/DefaultApi.md#generate_cloud_data_bucket_presigned_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_url_post) | **POST** /api/v2/clouds/{cloud_id}/generate_cloud_data_bucket_presigned_url | Generate Cloud Data Bucket Presigned Url
185
185
  *DefaultApi* | [**get_active_billing_version_api_v2_organization_billing_active_billing_version_get**](docs/DefaultApi.md#get_active_billing_version_api_v2_organization_billing_active_billing_version_get) | **GET** /api/v2/organization_billing/active_billing_version | Get Active Billing Version
186
186
  *DefaultApi* | [**get_anyscale_aws_account_api_v2_clouds_anyscale_aws_account_get**](docs/DefaultApi.md#get_anyscale_aws_account_api_v2_clouds_anyscale_aws_account_get) | **GET** /api/v2/clouds/anyscale/aws_account | Get Anyscale Aws Account
187
- *DefaultApi* | [**get_anyscale_version_api_v2_userinfo_anyscale_version_get**](docs/DefaultApi.md#get_anyscale_version_api_v2_userinfo_anyscale_version_get) | **GET** /api/v2/userinfo/anyscale_version | Get Anyscale Version
188
187
  *DefaultApi* | [**get_application_template_api_v2_application_templates_application_template_id_get**](docs/DefaultApi.md#get_application_template_api_v2_application_templates_application_template_id_get) | **GET** /api/v2/application_templates/{application_template_id} | Get Application Template
189
188
  *DefaultApi* | [**get_billing_information_api_v2_organization_billing_billing_information_get**](docs/DefaultApi.md#get_billing_information_api_v2_organization_billing_billing_information_get) | **GET** /api/v2/organization_billing/billing_information | Get Billing Information
190
189
  *DefaultApi* | [**get_billing_versions_by_organization_api_v2_organization_billing_billing_versions_get**](docs/DefaultApi.md#get_billing_versions_by_organization_api_v2_organization_billing_billing_versions_get) | **GET** /api/v2/organization_billing/billing_versions | Get Billing Versions By Organization
@@ -201,6 +200,7 @@ Class | Method | HTTP request | Description
201
200
  *DefaultApi* | [**get_cluster_product_autoscaler_flag_api_v2_logs_cluster_product_autoscaler_flag_session_id_get**](docs/DefaultApi.md#get_cluster_product_autoscaler_flag_api_v2_logs_cluster_product_autoscaler_flag_session_id_get) | **GET** /api/v2/logs/cluster_product_autoscaler_flag/{session_id} | Get Cluster Product Autoscaler Flag
202
201
  *DefaultApi* | [**get_compute_template_api_v2_compute_templates_template_id_get**](docs/DefaultApi.md#get_compute_template_api_v2_compute_templates_template_id_get) | **GET** /api/v2/compute_templates/{template_id} | Get Compute Template
203
202
  *DefaultApi* | [**get_cron_job_api_v2_experimental_cron_jobs_cron_job_id_get**](docs/DefaultApi.md#get_cron_job_api_v2_experimental_cron_jobs_cron_job_id_get) | **GET** /api/v2/experimental_cron_jobs/{cron_job_id} | Get Cron Job
203
+ *DefaultApi* | [**get_dashboard_api_v2_dataset_runs_get**](docs/DefaultApi.md#get_dashboard_api_v2_dataset_runs_get) | **GET** /api/v2/dataset_runs/ | Get Dashboard
204
204
  *DefaultApi* | [**get_dataset_api_v2_datasets_dataset_id_get**](docs/DefaultApi.md#get_dataset_api_v2_datasets_dataset_id_get) | **GET** /api/v2/datasets/{dataset_id} | Get Dataset
205
205
  *DefaultApi* | [**get_dataset_download_info_api_v2_datasets_download_info_get**](docs/DefaultApi.md#get_dataset_download_info_api_v2_datasets_download_info_get) | **GET** /api/v2/datasets/download_info | Get Dataset Download Info
206
206
  *DefaultApi* | [**get_dataset_download_url_api_v2_datasets_download_get**](docs/DefaultApi.md#get_dataset_download_url_api_v2_datasets_download_get) | **GET** /api/v2/datasets/download | Get Dataset Download Url
@@ -234,9 +234,9 @@ Class | Method | HTTP request | Description
234
234
  *DefaultApi* | [**get_job_logs_query_info_api_v2_decorated_ha_jobs_production_job_id_logs_query_get**](docs/DefaultApi.md#get_job_logs_query_info_api_v2_decorated_ha_jobs_production_job_id_logs_query_get) | **GET** /api/v2/decorated_ha_jobs/{production_job_id}/logs_query | Get Job Logs Query Info
235
235
  *DefaultApi* | [**get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get**](docs/DefaultApi.md#get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get) | **GET** /api/v2/logs/job_logs_stream/{job_id} | Get Job Logs Stream
236
236
  *DefaultApi* | [**get_job_queue_api_v2_job_queues_job_queue_id_get**](docs/DefaultApi.md#get_job_queue_api_v2_job_queues_job_queue_id_get) | **GET** /api/v2/job_queues/{job_queue_id} | Get Job Queue
237
+ *DefaultApi* | [**get_jobs_api_v2_dataset_runs_jobs_get**](docs/DefaultApi.md#get_jobs_api_v2_dataset_runs_jobs_get) | **GET** /api/v2/dataset_runs/jobs | Get Jobs
237
238
  *DefaultApi* | [**get_lb_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get_lb_resource_post**](docs/DefaultApi.md#get_lb_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get_lb_resource_post) | **POST** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id}/get_lb_resource | Get Lb Resource
238
239
  *DefaultApi* | [**get_log_files_api_v2_logs_get_log_files_post**](docs/DefaultApi.md#get_log_files_api_v2_logs_get_log_files_post) | **POST** /api/v2/logs/get_log_files | Get Log Files
239
- *DefaultApi* | [**get_log_files_api_v2_sessions_session_id_get_log_files_post**](docs/DefaultApi.md#get_log_files_api_v2_sessions_session_id_get_log_files_post) | **POST** /api/v2/sessions/{session_id}/get_log_files | Get Log Files
240
240
  *DefaultApi* | [**get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get**](docs/DefaultApi.md#get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get) | **GET** /api/v2/organization_billing/manage_billing_url | Get Manage Billing Url
241
241
  *DefaultApi* | [**get_metronome_customer_info_api_v2_metronome_customer_info_organization_id_get**](docs/DefaultApi.md#get_metronome_customer_info_api_v2_metronome_customer_info_organization_id_get) | **GET** /api/v2/metronome_customer_info/{organization_id} | Get Metronome Customer Info
242
242
  *DefaultApi* | [**get_metronome_embedded_usage_dashboard_api_v2_organization_billing_metronome_embedded_dashboard_url_dashboard_type_get**](docs/DefaultApi.md#get_metronome_embedded_usage_dashboard_api_v2_organization_billing_metronome_embedded_dashboard_url_dashboard_type_get) | **GET** /api/v2/organization_billing/metronome_embedded_dashboard_url/{dashboard_type} | Get Metronome Embedded Usage Dashboard
@@ -252,9 +252,7 @@ Class | Method | HTTP request | Description
252
252
  *DefaultApi* | [**get_project_api_v2_projects_project_id_get**](docs/DefaultApi.md#get_project_api_v2_projects_project_id_get) | **GET** /api/v2/projects/{project_id} | Get Project
253
253
  *DefaultApi* | [**get_project_default_session_name_api_v2_projects_project_id_default_session_name_get**](docs/DefaultApi.md#get_project_default_session_name_api_v2_projects_project_id_default_session_name_get) | **GET** /api/v2/projects/{project_id}/default_session_name | Get Project Default Session Name
254
254
  *DefaultApi* | [**get_project_latest_cluster_config_api_v2_projects_project_id_latest_cluster_config_get**](docs/DefaultApi.md#get_project_latest_cluster_config_api_v2_projects_project_id_latest_cluster_config_get) | **GET** /api/v2/projects/{project_id}/latest_cluster_config | Get Project Latest Cluster Config
255
- *DefaultApi* | [**get_provider_metadata_api_v2_clouds_provider_metadata_cloud_id_get**](docs/DefaultApi.md#get_provider_metadata_api_v2_clouds_provider_metadata_cloud_id_get) | **GET** /api/v2/clouds/provider_metadata/{cloud_id} | Get Provider Metadata
256
255
  *DefaultApi* | [**get_public_identifier_api_v2_organizations_public_identifier_get**](docs/DefaultApi.md#get_public_identifier_api_v2_organizations_public_identifier_get) | **GET** /api/v2/organizations/public_identifier | Get Public Identifier
257
- *DefaultApi* | [**get_ray_result_files_api_v2_sessions_session_id_get_ray_result_files_get**](docs/DefaultApi.md#get_ray_result_files_api_v2_sessions_session_id_get_ray_result_files_get) | **GET** /api/v2/sessions/{session_id}/get_ray_result_files | Get Ray Result Files
258
256
  *DefaultApi* | [**get_recent_cluster_compute_configs_api_v2_recent_activity_cluster_compute_configs_get**](docs/DefaultApi.md#get_recent_cluster_compute_configs_api_v2_recent_activity_cluster_compute_configs_get) | **GET** /api/v2/recent_activity/cluster_compute_configs | Get Recent Cluster Compute Configs
259
257
  *DefaultApi* | [**get_recent_cluster_environments_api_v2_recent_activity_cluster_environment_builds_get**](docs/DefaultApi.md#get_recent_cluster_environments_api_v2_recent_activity_cluster_environment_builds_get) | **GET** /api/v2/recent_activity/cluster_environment_builds | Get Recent Cluster Environments
260
258
  *DefaultApi* | [**get_recent_projects_api_v2_recent_activity_projects_get**](docs/DefaultApi.md#get_recent_projects_api_v2_recent_activity_projects_get) | **GET** /api/v2/recent_activity/projects | Get Recent Projects
@@ -287,6 +285,7 @@ Class | Method | HTTP request | Description
287
285
  *DefaultApi* | [**get_templatized_cluster_environments_api_v2_application_templates_templatized_get**](docs/DefaultApi.md#get_templatized_cluster_environments_api_v2_application_templates_templatized_get) | **GET** /api/v2/application_templates/templatized/ | Get Templatized Cluster Environments
288
286
  *DefaultApi* | [**get_templatized_compute_configs_api_v2_compute_templates_templatized_cloud_id_get**](docs/DefaultApi.md#get_templatized_compute_configs_api_v2_compute_templates_templatized_cloud_id_get) | **GET** /api/v2/compute_templates/templatized/{cloud_id} | Get Templatized Compute Configs
289
287
  *DefaultApi* | [**get_total_usage_api_v2_aggregated_instance_usage_get**](docs/DefaultApi.md#get_total_usage_api_v2_aggregated_instance_usage_get) | **GET** /api/v2/aggregated_instance_usage/ | Get Total Usage
288
+ *DefaultApi* | [**get_train_logs_download_api_v2_train_runs_logs_get**](docs/DefaultApi.md#get_train_logs_download_api_v2_train_runs_logs_get) | **GET** /api/v2/train_runs/logs | Get Train Logs Download
290
289
  *DefaultApi* | [**get_train_runs_api_v2_train_runs_get**](docs/DefaultApi.md#get_train_runs_api_v2_train_runs_get) | **GET** /api/v2/train_runs/ | Get Train Runs
291
290
  *DefaultApi* | [**get_user_info_api_v2_userinfo_get**](docs/DefaultApi.md#get_user_info_api_v2_userinfo_get) | **GET** /api/v2/userinfo/ | Get User Info
292
291
  *DefaultApi* | [**get_workspace_api_v2_experimental_workspaces_workspace_id_get**](docs/DefaultApi.md#get_workspace_api_v2_experimental_workspaces_workspace_id_get) | **GET** /api/v2/experimental_workspaces/{workspace_id} | Get Workspace
@@ -314,7 +313,6 @@ Class | Method | HTTP request | Description
314
313
  *DefaultApi* | [**list_decorated_interactive_sessions_api_v2_decorated_interactive_sessions_get**](docs/DefaultApi.md#list_decorated_interactive_sessions_api_v2_decorated_interactive_sessions_get) | **GET** /api/v2/decorated_interactive_sessions/ | List Decorated Interactive Sessions
315
314
  *DefaultApi* | [**list_decorated_job_submissions_api_v2_decorated_job_submissions_get**](docs/DefaultApi.md#list_decorated_job_submissions_api_v2_decorated_job_submissions_get) | **GET** /api/v2/decorated_job_submissions/ | List Decorated Job Submissions
316
315
  *DefaultApi* | [**list_decorated_jobs_api_v2_decorated_ha_jobs_get**](docs/DefaultApi.md#list_decorated_jobs_api_v2_decorated_ha_jobs_get) | **GET** /api/v2/decorated_ha_jobs/ | List Decorated Jobs
317
- *DefaultApi* | [**list_decorated_jobs_api_v2_decorated_jobs_get**](docs/DefaultApi.md#list_decorated_jobs_api_v2_decorated_jobs_get) | **GET** /api/v2/decorated_jobs/ | List Decorated Jobs
318
316
  *DefaultApi* | [**list_decorated_runtime_envs_api_v2_decorated_runtime_envs_get**](docs/DefaultApi.md#list_decorated_runtime_envs_api_v2_decorated_runtime_envs_get) | **GET** /api/v2/decorated_runtime_envs/ | List Decorated Runtime Envs
319
317
  *DefaultApi* | [**list_decorated_serve_deployments_api_v2_decorated_serve_deployments_get**](docs/DefaultApi.md#list_decorated_serve_deployments_api_v2_decorated_serve_deployments_get) | **GET** /api/v2/decorated_serve_deployments/ | List Decorated Serve Deployments
320
318
  *DefaultApi* | [**list_instance_usage_budgets_api_v2_instance_usage_budgets_get**](docs/DefaultApi.md#list_instance_usage_budgets_api_v2_instance_usage_budgets_get) | **GET** /api/v2/instance_usage_budgets/ | List Instance Usage Budgets
@@ -379,7 +377,6 @@ Class | Method | HTTP request | Description
379
377
  *DefaultApi* | [**search_support_requests_api_v2_support_requests_search_post**](docs/DefaultApi.md#search_support_requests_api_v2_support_requests_search_post) | **POST** /api/v2/support_requests/search | Search Support Requests
380
378
  *DefaultApi* | [**search_user_cards_api_v2_onboarding_cards_search_post**](docs/DefaultApi.md#search_user_cards_api_v2_onboarding_cards_search_post) | **POST** /api/v2/onboarding_cards/search | Search User Cards
381
379
  *DefaultApi* | [**set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch**](docs/DefaultApi.md#set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id}/status | Set Resource Quota Status
382
- *DefaultApi* | [**setup_and_initialize_session_api_v2_sessions_session_id_setup_and_initialize_session_post**](docs/DefaultApi.md#setup_and_initialize_session_api_v2_sessions_session_id_setup_and_initialize_session_post) | **POST** /api/v2/sessions/{session_id}/setup_and_initialize_session | Setup And Initialize Session
383
380
  *DefaultApi* | [**show_one_time_password_source_api_v2_users_show_otp_source_post**](docs/DefaultApi.md#show_one_time_password_source_api_v2_users_show_otp_source_post) | **POST** /api/v2/users/show_otp_source | Show One Time Password Source
384
381
  *DefaultApi* | [**sso_login_info_api_v2_users_sso_login_info_get**](docs/DefaultApi.md#sso_login_info_api_v2_users_sso_login_info_get) | **GET** /api/v2/users/sso_login_info | Sso Login Info
385
382
  *DefaultApi* | [**sso_login_test_api_v2_users_sso_login_test_get**](docs/DefaultApi.md#sso_login_test_api_v2_users_sso_login_test_get) | **GET** /api/v2/users/sso_login_test | Sso Login Test
@@ -439,12 +436,10 @@ Class | Method | HTTP request | Description
439
436
  - [AlertType](docs/AlertType.md)
440
437
  - [AnyscaleAWSAccount](docs/AnyscaleAWSAccount.md)
441
438
  - [AnyscaleServiceAccount](docs/AnyscaleServiceAccount.md)
442
- - [AnyscaleVersionResponse](docs/AnyscaleVersionResponse.md)
443
439
  - [AnyscaleawsaccountResponse](docs/AnyscaleawsaccountResponse.md)
444
440
  - [AnyscaledCredentialResponse](docs/AnyscaledCredentialResponse.md)
445
441
  - [AnyscaledcredentialresponseResponse](docs/AnyscaledcredentialresponseResponse.md)
446
442
  - [AnyscaleserviceaccountResponse](docs/AnyscaleserviceaccountResponse.md)
447
- - [AnyscaleversionresponseResponse](docs/AnyscaleversionresponseResponse.md)
448
443
  - [ApiKeyParameters](docs/ApiKeyParameters.md)
449
444
  - [AppConfig](docs/AppConfig.md)
450
445
  - [AppConfigConfigSchema](docs/AppConfigConfigSchema.md)
@@ -463,6 +458,8 @@ Class | Method | HTTP request | Description
463
458
  - [AwsRegionInfo](docs/AwsRegionInfo.md)
464
459
  - [AwsregionandzonesResponse](docs/AwsregionandzonesResponse.md)
465
460
  - [BASEIMAGESENUM](docs/BASEIMAGESENUM.md)
461
+ - [BackendServerApiProductModelsDatasetRunsDatasetResponse](docs/BackendServerApiProductModelsDatasetRunsDatasetResponse.md)
462
+ - [BackendServerApiProductRoutersDatasetsRouterDatasetResponse](docs/BackendServerApiProductRoutersDatasetsRouterDatasetResponse.md)
466
463
  - [BankAccountInformation](docs/BankAccountInformation.md)
467
464
  - [BaseJobStatus](docs/BaseJobStatus.md)
468
465
  - [BatchResponseBatchedResultOrganizationInvitationBase](docs/BatchResponseBatchedResultOrganizationInvitationBase.md)
@@ -575,7 +572,6 @@ Class | Method | HTTP request | Description
575
572
  - [CreateCloudCollaborator](docs/CreateCloudCollaborator.md)
576
573
  - [CreateCloudResource](docs/CreateCloudResource.md)
577
574
  - [CreateCloudResourceGCP](docs/CreateCloudResourceGCP.md)
578
- - [CreateCloudWithCloudResource](docs/CreateCloudWithCloudResource.md)
579
575
  - [CreateClusterComputeConfig](docs/CreateClusterComputeConfig.md)
580
576
  - [CreateComputeTemplate](docs/CreateComputeTemplate.md)
581
577
  - [CreateComputeTemplateConfig](docs/CreateComputeTemplateConfig.md)
@@ -616,8 +612,10 @@ Class | Method | HTTP request | Description
616
612
  - [CustomerAlertStatus](docs/CustomerAlertStatus.md)
617
613
  - [DataplaneServices](docs/DataplaneServices.md)
618
614
  - [Dataset](docs/Dataset.md)
615
+ - [DatasetJobs](docs/DatasetJobs.md)
619
616
  - [DatasetListResponse](docs/DatasetListResponse.md)
620
- - [DatasetResponse](docs/DatasetResponse.md)
617
+ - [DatasetMetrics](docs/DatasetMetrics.md)
618
+ - [DatasetState](docs/DatasetState.md)
621
619
  - [DatasetUpload](docs/DatasetUpload.md)
622
620
  - [DatasetuploadResponse](docs/DatasetuploadResponse.md)
623
621
  - [DecoratedApplicationTemplate](docs/DecoratedApplicationTemplate.md)
@@ -648,7 +646,6 @@ Class | Method | HTTP request | Description
648
646
  - [DecoratedcomputetemplateResponse](docs/DecoratedcomputetemplateResponse.md)
649
647
  - [DecoratedinteractivesessionListResponse](docs/DecoratedinteractivesessionListResponse.md)
650
648
  - [DecoratedinteractivesessionResponse](docs/DecoratedinteractivesessionResponse.md)
651
- - [DecoratedjobListResponse](docs/DecoratedjobListResponse.md)
652
649
  - [DecoratedjobResponse](docs/DecoratedjobResponse.md)
653
650
  - [DecoratedjobqueueListResponse](docs/DecoratedjobqueueListResponse.md)
654
651
  - [DecoratedjobqueueResponse](docs/DecoratedjobqueueResponse.md)
@@ -768,8 +765,6 @@ Class | Method | HTTP request | Description
768
765
  - [ListResponseMetadata](docs/ListResponseMetadata.md)
769
766
  - [ListmachinepoolsresponseResponse](docs/ListmachinepoolsresponseResponse.md)
770
767
  - [ListmachinesresponseResponse](docs/ListmachinesresponseResponse.md)
771
- - [LogDetail](docs/LogDetail.md)
772
- - [LogDetails](docs/LogDetails.md)
773
768
  - [LogDownloadConfig](docs/LogDownloadConfig.md)
774
769
  - [LogDownloadRequest](docs/LogDownloadRequest.md)
775
770
  - [LogDownloadResult](docs/LogDownloadResult.md)
@@ -778,7 +773,6 @@ Class | Method | HTTP request | Description
778
773
  - [LogItem](docs/LogItem.md)
779
774
  - [LogItemBatch](docs/LogItemBatch.md)
780
775
  - [LogStream](docs/LogStream.md)
781
- - [LogdetailsResponse](docs/LogdetailsResponse.md)
782
776
  - [LogdownloadresultResponse](docs/LogdownloadresultResponse.md)
783
777
  - [LoginUserParams](docs/LoginUserParams.md)
784
778
  - [LogitembatchResponse](docs/LogitembatchResponse.md)
@@ -793,6 +787,7 @@ Class | Method | HTTP request | Description
793
787
  - [MachineLaunchFailure](docs/MachineLaunchFailure.md)
794
788
  - [MachinePool](docs/MachinePool.md)
795
789
  - [MachineStateInfo](docs/MachineStateInfo.md)
790
+ - [Metric](docs/Metric.md)
796
791
  - [MetronomeCustomerInfoModel](docs/MetronomeCustomerInfoModel.md)
797
792
  - [MetronomeDashboardType](docs/MetronomeDashboardType.md)
798
793
  - [MetronomecustomerinfomodelListResponse](docs/MetronomecustomerinfomodelListResponse.md)
@@ -825,6 +820,7 @@ Class | Method | HTTP request | Description
825
820
  - [NotificationChannelSlackConfig](docs/NotificationChannelSlackConfig.md)
826
821
  - [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
827
822
  - [OnboardingUserCardsQuery](docs/OnboardingUserCardsQuery.md)
823
+ - [OperatorMetrics](docs/OperatorMetrics.md)
828
824
  - [Organization](docs/Organization.md)
829
825
  - [OrganizationAvailability](docs/OrganizationAvailability.md)
830
826
  - [OrganizationCollaborator](docs/OrganizationCollaborator.md)
@@ -882,8 +878,6 @@ Class | Method | HTTP request | Description
882
878
  - [ProjectsViolatingTreeHierarchyResponse](docs/ProjectsViolatingTreeHierarchyResponse.md)
883
879
  - [ProjectsviolatingtreehierarchyresponseResponse](docs/ProjectsviolatingtreehierarchyresponseResponse.md)
884
880
  - [Protocols](docs/Protocols.md)
885
- - [ProviderMetadata](docs/ProviderMetadata.md)
886
- - [ProvidermetadataResponse](docs/ProvidermetadataResponse.md)
887
881
  - [PythonModules](docs/PythonModules.md)
888
882
  - [Quota](docs/Quota.md)
889
883
  - [RayGCSExternalStorageConfig](docs/RayGCSExternalStorageConfig.md)
@@ -971,7 +965,6 @@ Class | Method | HTTP request | Description
971
965
  - [SessionhistoryitemListResponse](docs/SessionhistoryitemListResponse.md)
972
966
  - [SessionsSortField](docs/SessionsSortField.md)
973
967
  - [SessionsshkeyResponse](docs/SessionsshkeyResponse.md)
974
- - [SetupInitializeSessionOptions](docs/SetupInitializeSessionOptions.md)
975
968
  - [ShowOTPSourceReturnApiModel](docs/ShowOTPSourceReturnApiModel.md)
976
969
  - [ShowotpsourcereturnapimodelResponse](docs/ShowotpsourcereturnapimodelResponse.md)
977
970
  - [SnapshotCreateMessage](docs/SnapshotCreateMessage.md)
@@ -44,12 +44,10 @@ from openapi_client.models.aioacloudwaitlistrecord_response import Aioacloudwait
44
44
  from openapi_client.models.alert_type import AlertType
45
45
  from openapi_client.models.anyscale_aws_account import AnyscaleAWSAccount
46
46
  from openapi_client.models.anyscale_service_account import AnyscaleServiceAccount
47
- from openapi_client.models.anyscale_version_response import AnyscaleVersionResponse
48
47
  from openapi_client.models.anyscaleawsaccount_response import AnyscaleawsaccountResponse
49
48
  from openapi_client.models.anyscaled_credential_response import AnyscaledCredentialResponse
50
49
  from openapi_client.models.anyscaledcredentialresponse_response import AnyscaledcredentialresponseResponse
51
50
  from openapi_client.models.anyscaleserviceaccount_response import AnyscaleserviceaccountResponse
52
- from openapi_client.models.anyscaleversionresponse_response import AnyscaleversionresponseResponse
53
51
  from openapi_client.models.api_key_parameters import ApiKeyParameters
54
52
  from openapi_client.models.app_config import AppConfig
55
53
  from openapi_client.models.app_config_config_schema import AppConfigConfigSchema
@@ -68,6 +66,8 @@ from openapi_client.models.aws_region_and_zones import AwsRegionAndZones
68
66
  from openapi_client.models.aws_region_info import AwsRegionInfo
69
67
  from openapi_client.models.awsregionandzones_response import AwsregionandzonesResponse
70
68
  from openapi_client.models.baseimagesenum import BASEIMAGESENUM
69
+ from openapi_client.models.backend_server_api_product_models_dataset_runs_dataset_response import BackendServerApiProductModelsDatasetRunsDatasetResponse
70
+ from openapi_client.models.backend_server_api_product_routers_datasets_router_dataset_response import BackendServerApiProductRoutersDatasetsRouterDatasetResponse
71
71
  from openapi_client.models.bank_account_information import BankAccountInformation
72
72
  from openapi_client.models.base_job_status import BaseJobStatus
73
73
  from openapi_client.models.batch_response_batched_result_organization_invitation_base import BatchResponseBatchedResultOrganizationInvitationBase
@@ -180,7 +180,6 @@ from openapi_client.models.create_build import CreateBuild
180
180
  from openapi_client.models.create_cloud_collaborator import CreateCloudCollaborator
181
181
  from openapi_client.models.create_cloud_resource import CreateCloudResource
182
182
  from openapi_client.models.create_cloud_resource_gcp import CreateCloudResourceGCP
183
- from openapi_client.models.create_cloud_with_cloud_resource import CreateCloudWithCloudResource
184
183
  from openapi_client.models.create_cluster_compute_config import CreateClusterComputeConfig
185
184
  from openapi_client.models.create_compute_template import CreateComputeTemplate
186
185
  from openapi_client.models.create_compute_template_config import CreateComputeTemplateConfig
@@ -221,8 +220,10 @@ from openapi_client.models.credit_card_information import CreditCardInformation
221
220
  from openapi_client.models.customer_alert_status import CustomerAlertStatus
222
221
  from openapi_client.models.dataplane_services import DataplaneServices
223
222
  from openapi_client.models.dataset import Dataset
223
+ from openapi_client.models.dataset_jobs import DatasetJobs
224
224
  from openapi_client.models.dataset_list_response import DatasetListResponse
225
- from openapi_client.models.dataset_response import DatasetResponse
225
+ from openapi_client.models.dataset_metrics import DatasetMetrics
226
+ from openapi_client.models.dataset_state import DatasetState
226
227
  from openapi_client.models.dataset_upload import DatasetUpload
227
228
  from openapi_client.models.datasetupload_response import DatasetuploadResponse
228
229
  from openapi_client.models.decorated_application_template import DecoratedApplicationTemplate
@@ -253,7 +254,6 @@ from openapi_client.models.decoratedcomputetemplate_list_response import Decorat
253
254
  from openapi_client.models.decoratedcomputetemplate_response import DecoratedcomputetemplateResponse
254
255
  from openapi_client.models.decoratedinteractivesession_list_response import DecoratedinteractivesessionListResponse
255
256
  from openapi_client.models.decoratedinteractivesession_response import DecoratedinteractivesessionResponse
256
- from openapi_client.models.decoratedjob_list_response import DecoratedjobListResponse
257
257
  from openapi_client.models.decoratedjob_response import DecoratedjobResponse
258
258
  from openapi_client.models.decoratedjobqueue_list_response import DecoratedjobqueueListResponse
259
259
  from openapi_client.models.decoratedjobqueue_response import DecoratedjobqueueResponse
@@ -373,8 +373,6 @@ from openapi_client.models.list_resource_quotas_query import ListResourceQuotasQ
373
373
  from openapi_client.models.list_response_metadata import ListResponseMetadata
374
374
  from openapi_client.models.listmachinepoolsresponse_response import ListmachinepoolsresponseResponse
375
375
  from openapi_client.models.listmachinesresponse_response import ListmachinesresponseResponse
376
- from openapi_client.models.log_detail import LogDetail
377
- from openapi_client.models.log_details import LogDetails
378
376
  from openapi_client.models.log_download_config import LogDownloadConfig
379
377
  from openapi_client.models.log_download_request import LogDownloadRequest
380
378
  from openapi_client.models.log_download_result import LogDownloadResult
@@ -383,7 +381,6 @@ from openapi_client.models.log_filter import LogFilter
383
381
  from openapi_client.models.log_item import LogItem
384
382
  from openapi_client.models.log_item_batch import LogItemBatch
385
383
  from openapi_client.models.log_stream import LogStream
386
- from openapi_client.models.logdetails_response import LogdetailsResponse
387
384
  from openapi_client.models.logdownloadresult_response import LogdownloadresultResponse
388
385
  from openapi_client.models.login_user_params import LoginUserParams
389
386
  from openapi_client.models.logitembatch_response import LogitembatchResponse
@@ -398,6 +395,7 @@ from openapi_client.models.machine_info import MachineInfo
398
395
  from openapi_client.models.machine_launch_failure import MachineLaunchFailure
399
396
  from openapi_client.models.machine_pool import MachinePool
400
397
  from openapi_client.models.machine_state_info import MachineStateInfo
398
+ from openapi_client.models.metric import Metric
401
399
  from openapi_client.models.metronome_customer_info_model import MetronomeCustomerInfoModel
402
400
  from openapi_client.models.metronome_dashboard_type import MetronomeDashboardType
403
401
  from openapi_client.models.metronomecustomerinfomodel_list_response import MetronomecustomerinfomodelListResponse
@@ -430,6 +428,7 @@ from openapi_client.models.notification_channel_email_config import Notification
430
428
  from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
431
429
  from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
432
430
  from openapi_client.models.onboarding_user_cards_query import OnboardingUserCardsQuery
431
+ from openapi_client.models.operator_metrics import OperatorMetrics
433
432
  from openapi_client.models.organization import Organization
434
433
  from openapi_client.models.organization_availability import OrganizationAvailability
435
434
  from openapi_client.models.organization_collaborator import OrganizationCollaborator
@@ -487,8 +486,6 @@ from openapi_client.models.projects_sort_field import ProjectsSortField
487
486
  from openapi_client.models.projects_violating_tree_hierarchy_response import ProjectsViolatingTreeHierarchyResponse
488
487
  from openapi_client.models.projectsviolatingtreehierarchyresponse_response import ProjectsviolatingtreehierarchyresponseResponse
489
488
  from openapi_client.models.protocols import Protocols
490
- from openapi_client.models.provider_metadata import ProviderMetadata
491
- from openapi_client.models.providermetadata_response import ProvidermetadataResponse
492
489
  from openapi_client.models.python_modules import PythonModules
493
490
  from openapi_client.models.quota import Quota
494
491
  from openapi_client.models.ray_gcs_external_storage_config import RayGCSExternalStorageConfig
@@ -576,7 +573,6 @@ from openapi_client.models.sessiondetails_response import SessiondetailsResponse
576
573
  from openapi_client.models.sessionhistoryitem_list_response import SessionhistoryitemListResponse
577
574
  from openapi_client.models.sessions_sort_field import SessionsSortField
578
575
  from openapi_client.models.sessionsshkey_response import SessionsshkeyResponse
579
- from openapi_client.models.setup_initialize_session_options import SetupInitializeSessionOptions
580
576
  from openapi_client.models.show_otp_source_return_api_model import ShowOTPSourceReturnApiModel
581
577
  from openapi_client.models.showotpsourcereturnapimodel_response import ShowotpsourcereturnapimodelResponse
582
578
  from openapi_client.models.snapshot_create_message import SnapshotCreateMessage