anyscale 0.26.2__py3-none-any.whl → 0.26.4__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 -1
- anyscale/_private/workload/workload_config.py +11 -0
- anyscale/_private/workload/workload_sdk.py +4 -0
- anyscale/client/README.md +3 -43
- anyscale/client/openapi_client/__init__.py +0 -26
- anyscale/client/openapi_client/api/default_api.py +368 -2030
- anyscale/client/openapi_client/models/__init__.py +0 -26
- anyscale/client/openapi_client/models/node_type.py +2 -1
- anyscale/client/openapi_client/models/ray_runtime_env_config.py +29 -1
- anyscale/client/openapi_client/models/train_run.py +29 -3
- anyscale/client/openapi_client/models/train_worker.py +29 -3
- anyscale/job/_private/job_sdk.py +4 -0
- anyscale/sdk/anyscale_client/models/node_type.py +2 -1
- anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +29 -1
- anyscale/version.py +1 -1
- {anyscale-0.26.2.dist-info → anyscale-0.26.4.dist-info}/METADATA +1 -1
- {anyscale-0.26.2.dist-info → anyscale-0.26.4.dist-info}/RECORD +22 -48
- anyscale/client/openapi_client/models/aica_endpoint.py +0 -527
- anyscale/client/openapi_client/models/aica_endpoint_event.py +0 -433
- anyscale/client/openapi_client/models/aica_endpoint_event_level.py +0 -103
- anyscale/client/openapi_client/models/aica_endpoint_event_type.py +0 -120
- anyscale/client/openapi_client/models/aica_endpoint_scope.py +0 -102
- anyscale/client/openapi_client/models/aica_model.py +0 -398
- anyscale/client/openapi_client/models/aica_model_accelerator_map.py +0 -123
- anyscale/client/openapi_client/models/aica_model_configuration.py +0 -209
- anyscale/client/openapi_client/models/aica_observability_urls.py +0 -178
- anyscale/client/openapi_client/models/aicaendpoint_list_response.py +0 -147
- anyscale/client/openapi_client/models/aicaendpoint_response.py +0 -121
- anyscale/client/openapi_client/models/aicaendpointevent_list_response.py +0 -147
- anyscale/client/openapi_client/models/aicamodel_list_response.py +0 -147
- anyscale/client/openapi_client/models/aicamodel_response.py +0 -121
- anyscale/client/openapi_client/models/aws_credentials.py +0 -181
- anyscale/client/openapi_client/models/create_aica_endpoint.py +0 -210
- anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -546
- anyscale/client/openapi_client/models/import_aica_model.py +0 -241
- anyscale/client/openapi_client/models/log_detail.py +0 -187
- anyscale/client/openapi_client/models/log_details.py +0 -151
- anyscale/client/openapi_client/models/logdetails_response.py +0 -121
- anyscale/client/openapi_client/models/named_entity.py +0 -148
- anyscale/client/openapi_client/models/provider_metadata.py +0 -205
- anyscale/client/openapi_client/models/providermetadata_response.py +0 -121
- anyscale/client/openapi_client/models/update_endpoint.py +0 -152
- anyscale/client/openapi_client/models/update_model_deployment.py +0 -152
- {anyscale-0.26.2.dist-info → anyscale-0.26.4.dist-info}/LICENSE +0 -0
- {anyscale-0.26.2.dist-info → anyscale-0.26.4.dist-info}/NOTICE +0 -0
- {anyscale-0.26.2.dist-info → anyscale-0.26.4.dist-info}/WHEEL +0 -0
- {anyscale-0.26.2.dist-info → anyscale-0.26.4.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.2.dist-info → anyscale-0.26.4.dist-info}/top_level.txt +0 -0
@@ -1251,7 +1251,7 @@ Name | Type | Description | Notes
|
|
1251
1251
|
The type of node (head or worker).
|
1252
1252
|
|
1253
1253
|
Possible Values:
|
1254
|
-
['head-node', 'worker-nodes']
|
1254
|
+
['head-node', 'worker-nodes', 'unknown']
|
1255
1255
|
|
1256
1256
|
## ObjectStorageConfig
|
1257
1257
|
|
@@ -1546,6 +1546,7 @@ Name | Type | Description | Notes
|
|
1546
1546
|
------------ | ------------- | ------------- | -------------
|
1547
1547
|
**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
1548
|
**py_modules** | **List[str]** | Python modules that will be installed along with your runtime env. These must be remote URIs. | [optional] [default to null]
|
1549
|
+
**py_executable** | **str** | Specifies the executable used for running the Ray workers. It can include arguments as well. | [optional] [default to null]
|
1549
1550
|
**pip** | **List[str]** | A list of pip packages to install. | [optional] [default to null]
|
1550
1551
|
**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
1552
|
**env_vars** | **Dict(str, str)** | Environment variables to set. | [optional] [default to null]
|
@@ -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(
|
anyscale/client/README.md
CHANGED
@@ -82,7 +82,6 @@ Class | Method | HTTP request | Description
|
|
82
82
|
*DefaultApi* | [**alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put**](docs/DefaultApi.md#alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put) | **PUT** /api/v2/organization_collaborators/{identity_id} | Alter Organization Collaborator
|
83
83
|
*DefaultApi* | [**alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put**](docs/DefaultApi.md#alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put) | **PUT** /api/v2/projects/{project_id}/collaborators/{role_or_identity_id} | Alter Project Collaborator
|
84
84
|
*DefaultApi* | [**apply_service_api_v2_services_v2_apply_put**](docs/DefaultApi.md#apply_service_api_v2_services_v2_apply_put) | **PUT** /api/v2/services-v2/apply | Apply Service
|
85
|
-
*DefaultApi* | [**archive_aica_endpoint_api_v2_aica_endpoints_endpoint_id_delete**](docs/DefaultApi.md#archive_aica_endpoint_api_v2_aica_endpoints_endpoint_id_delete) | **DELETE** /api/v2/aica_endpoints/{endpoint_id} | Archive Aica Endpoint
|
86
85
|
*DefaultApi* | [**archive_cluster_api_v2_decorated_sessions_cluster_id_archive_post**](docs/DefaultApi.md#archive_cluster_api_v2_decorated_sessions_cluster_id_archive_post) | **POST** /api/v2/decorated_sessions/{cluster_id}/archive | Archive Cluster
|
87
86
|
*DefaultApi* | [**archive_cluster_environment_api_v2_application_templates_application_template_id_archive_post**](docs/DefaultApi.md#archive_cluster_environment_api_v2_application_templates_application_template_id_archive_post) | **POST** /api/v2/application_templates/{application_template_id}/archive | Archive Cluster Environment
|
88
87
|
*DefaultApi* | [**archive_compute_template_api_v2_compute_templates_compute_template_id_archive_post**](docs/DefaultApi.md#archive_compute_template_api_v2_compute_templates_compute_template_id_archive_post) | **POST** /api/v2/compute_templates/{compute_template_id}/archive | Archive Compute Template
|
@@ -104,7 +103,6 @@ Class | Method | HTTP request | Description
|
|
104
103
|
*DefaultApi* | [**clean_grafana_dashboards_api_v2_clouds_cloud_id_clean_grafana_dashboards_post**](docs/DefaultApi.md#clean_grafana_dashboards_api_v2_clouds_cloud_id_clean_grafana_dashboards_post) | **POST** /api/v2/clouds/{cloud_id}/clean-grafana-dashboards | Clean Grafana Dashboards
|
105
104
|
*DefaultApi* | [**cli_api_v2_machines_cli_get**](docs/DefaultApi.md#cli_api_v2_machines_cli_get) | **GET** /api/v2/machines/cli | Cli
|
106
105
|
*DefaultApi* | [**clone_workspace_api_v2_experimental_workspaces_from_workspace_post**](docs/DefaultApi.md#clone_workspace_api_v2_experimental_workspaces_from_workspace_post) | **POST** /api/v2/experimental_workspaces/from_workspace | Clone Workspace
|
107
|
-
*DefaultApi* | [**create_aica_endpoint_api_v2_aica_endpoints_post**](docs/DefaultApi.md#create_aica_endpoint_api_v2_aica_endpoints_post) | **POST** /api/v2/aica_endpoints/ | Create Aica Endpoint
|
108
106
|
*DefaultApi* | [**create_api_key_api_v2_users_create_api_key_post**](docs/DefaultApi.md#create_api_key_api_v2_users_create_api_key_post) | **POST** /api/v2/users/create_api_key | Create Api Key
|
109
107
|
*DefaultApi* | [**create_application_template_api_v2_application_templates_post**](docs/DefaultApi.md#create_application_template_api_v2_application_templates_post) | **POST** /api/v2/application_templates/ | Create Application Template
|
110
108
|
*DefaultApi* | [**create_bug_report_api_v2_machines_create_bug_report_post**](docs/DefaultApi.md#create_bug_report_api_v2_machines_create_bug_report_post) | **POST** /api/v2/machines/create_bug_report | Create Bug Report
|
@@ -114,7 +112,6 @@ Class | Method | HTTP request | Description
|
|
114
112
|
*DefaultApi* | [**create_cloud_api_v2_clouds_post**](docs/DefaultApi.md#create_cloud_api_v2_clouds_post) | **POST** /api/v2/clouds/ | Create Cloud
|
115
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
|
116
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
|
117
|
-
*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
|
118
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
|
119
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
|
120
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
|
@@ -155,6 +152,7 @@ Class | Method | HTTP request | Description
|
|
155
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
|
156
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
|
157
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
|
158
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
|
159
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
|
160
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
|
@@ -198,6 +196,7 @@ Class | Method | HTTP request | Description
|
|
198
196
|
*DefaultApi* | [**get_cloud_project_collaborator_api_v2_projects_project_id_collaborators_clouds_get**](docs/DefaultApi.md#get_cloud_project_collaborator_api_v2_projects_project_id_collaborators_clouds_get) | **GET** /api/v2/projects/{project_id}/collaborators/clouds | Get Cloud Project Collaborator
|
199
197
|
*DefaultApi* | [**get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get**](docs/DefaultApi.md#get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get) | **GET** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id} | Get Cloud With Cloud Resource
|
200
198
|
*DefaultApi* | [**get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_get**](docs/DefaultApi.md#get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_get) | **GET** /api/v2/clouds_with_cloud_resource_router/{cloud_id} | Get Cloud With Cloud Resource
|
199
|
+
*DefaultApi* | [**get_cluster_access_token_api_v2_authentication_cluster_id_cluster_access_token_get**](docs/DefaultApi.md#get_cluster_access_token_api_v2_authentication_cluster_id_cluster_access_token_get) | **GET** /api/v2/authentication/{cluster_id}/cluster_access_token | Get Cluster Access Token
|
201
200
|
*DefaultApi* | [**get_cluster_events_api_v2_sessions_session_id_cluster_events_get**](docs/DefaultApi.md#get_cluster_events_api_v2_sessions_session_id_cluster_events_get) | **GET** /api/v2/sessions/{session_id}/cluster_events | Get Cluster Events
|
202
201
|
*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
|
203
202
|
*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
|
@@ -221,7 +220,6 @@ Class | Method | HTTP request | Description
|
|
221
220
|
*DefaultApi* | [**get_default_compute_config_api_v2_compute_templates_default_cloud_id_get**](docs/DefaultApi.md#get_default_compute_config_api_v2_compute_templates_default_cloud_id_get) | **GET** /api/v2/compute_templates/default/{cloud_id} | Get Default Compute Config
|
222
221
|
*DefaultApi* | [**get_default_project_api_v2_projects_default_project_get**](docs/DefaultApi.md#get_default_project_api_v2_projects_default_project_get) | **GET** /api/v2/projects/default_project | Get Default Project
|
223
222
|
*DefaultApi* | [**get_edit_payment_information_url_api_v2_organization_billing_edit_payment_information_url_get**](docs/DefaultApi.md#get_edit_payment_information_url_api_v2_organization_billing_edit_payment_information_url_get) | **GET** /api/v2/organization_billing/edit_payment_information_url | Get Edit Payment Information Url
|
224
|
-
*DefaultApi* | [**get_endpoint_api_v2_aica_endpoints_endpoint_id_get**](docs/DefaultApi.md#get_endpoint_api_v2_aica_endpoints_endpoint_id_get) | **GET** /api/v2/aica_endpoints/{endpoint_id} | Get Endpoint
|
225
223
|
*DefaultApi* | [**get_events_api_v2_sessions_session_id_events_get**](docs/DefaultApi.md#get_events_api_v2_sessions_session_id_events_get) | **GET** /api/v2/sessions/{session_id}/events | Get Events
|
226
224
|
*DefaultApi* | [**get_execution_logs_api_v2_session_commands_session_command_id_execution_logs_get**](docs/DefaultApi.md#get_execution_logs_api_v2_session_commands_session_command_id_execution_logs_get) | **GET** /api/v2/session_commands/{session_command_id}/execution_logs | Get Execution Logs
|
227
225
|
*DefaultApi* | [**get_execution_logs_archived_api_v2_session_commands_session_command_id_execution_logs_archived_get**](docs/DefaultApi.md#get_execution_logs_archived_api_v2_session_commands_session_command_id_execution_logs_archived_get) | **GET** /api/v2/session_commands/{session_command_id}/execution_logs_archived | Get Execution Logs Archived
|
@@ -238,15 +236,12 @@ Class | Method | HTTP request | Description
|
|
238
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
|
239
237
|
*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
|
240
238
|
*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
|
241
|
-
*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
|
242
239
|
*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
|
243
240
|
*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
|
244
241
|
*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
|
245
242
|
*DefaultApi* | [**get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get**](docs/DefaultApi.md#get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get) | **GET** /api/v2/organization_billing/{organization_id}/metronome_embedded_dashboard_url/{dashboard_type} | Get Metronome Embedded Usage Dashboard By Organization
|
246
243
|
*DefaultApi* | [**get_model_api_v2_llm_models_model_id_get**](docs/DefaultApi.md#get_model_api_v2_llm_models_model_id_get) | **GET** /api/v2/llm/models/{model_id} | Get Model
|
247
244
|
*DefaultApi* | [**get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get**](docs/DefaultApi.md#get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get) | **GET** /api/v2/llm/models/get_by_job_id/{job_id} | Get Model By Job Id
|
248
|
-
*DefaultApi* | [**get_model_configuration_api_v2_aica_endpoints_model_config_get**](docs/DefaultApi.md#get_model_configuration_api_v2_aica_endpoints_model_config_get) | **GET** /api/v2/aica_endpoints/model_config | Get Model Configuration
|
249
|
-
*DefaultApi* | [**get_model_schema_api_v2_aica_endpoints_model_schema_get**](docs/DefaultApi.md#get_model_schema_api_v2_aica_endpoints_model_schema_get) | **GET** /api/v2/aica_endpoints/model_schema | Get Model Schema
|
250
245
|
*DefaultApi* | [**get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get**](docs/DefaultApi.md#get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get) | **GET** /api/v2/sessions/{session_id}/monitor_logs | Get Monitor Logs
|
251
246
|
*DefaultApi* | [**get_monitor_logs_archived_api_v2_sessions_session_id_monitor_logs_archived_get**](docs/DefaultApi.md#get_monitor_logs_archived_api_v2_sessions_session_id_monitor_logs_archived_get) | **GET** /api/v2/sessions/{session_id}/monitor_logs_archived | Get Monitor Logs Archived
|
252
247
|
*DefaultApi* | [**get_monitor_logs_download_api_v2_logs_monitor_logs_download_session_id_get**](docs/DefaultApi.md#get_monitor_logs_download_api_v2_logs_monitor_logs_download_session_id_get) | **GET** /api/v2/logs/monitor_logs_download/{session_id} | Get Monitor Logs Download
|
@@ -256,9 +251,7 @@ Class | Method | HTTP request | Description
|
|
256
251
|
*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
|
257
252
|
*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
|
258
253
|
*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
|
259
|
-
*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
|
260
254
|
*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
|
261
|
-
*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
|
262
255
|
*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
|
263
256
|
*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
|
264
257
|
*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
|
@@ -291,6 +284,7 @@ Class | Method | HTTP request | Description
|
|
291
284
|
*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
|
292
285
|
*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
|
293
286
|
*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
|
287
|
+
*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
|
294
288
|
*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
|
295
289
|
*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
|
296
290
|
*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
|
@@ -304,12 +298,9 @@ Class | Method | HTTP request | Description
|
|
304
298
|
*DefaultApi* | [**handle_cluster_auth_api_v2_authentication_cluster_id_cluster_get**](docs/DefaultApi.md#handle_cluster_auth_api_v2_authentication_cluster_id_cluster_get) | **GET** /api/v2/authentication/{cluster_id}/cluster | Handle Cluster Auth
|
305
299
|
*DefaultApi* | [**handle_webhook_api_v2_metronome_webhooks_handle_webhook_post**](docs/DefaultApi.md#handle_webhook_api_v2_metronome_webhooks_handle_webhook_post) | **POST** /api/v2/metronome_webhooks/handle_webhook | Handle Webhook
|
306
300
|
*DefaultApi* | [**health_check_api_v2_health_get**](docs/DefaultApi.md#health_check_api_v2_health_get) | **GET** /api/v2/health/ | Health Check
|
307
|
-
*DefaultApi* | [**import_model_api_v2_aica_endpoints_import_model_post**](docs/DefaultApi.md#import_model_api_v2_aica_endpoints_import_model_post) | **POST** /api/v2/aica_endpoints/import_model | Import Model
|
308
301
|
*DefaultApi* | [**invalidate_invitation_api_v2_organization_invitations_invitation_id_invalidate_post**](docs/DefaultApi.md#invalidate_invitation_api_v2_organization_invitations_invitation_id_invalidate_post) | **POST** /api/v2/organization_invitations/{invitation_id}/invalidate | Invalidate Invitation
|
309
302
|
*DefaultApi* | [**is_valid_api_v2_authentication_hex_token_id_is_valid_post**](docs/DefaultApi.md#is_valid_api_v2_authentication_hex_token_id_is_valid_post) | **POST** /api/v2/authentication/{hex_token_id}/is_valid | Is Valid
|
310
303
|
*DefaultApi* | [**kill_session_command_api_v2_session_commands_session_command_id_kill_post**](docs/DefaultApi.md#kill_session_command_api_v2_session_commands_session_command_id_kill_post) | **POST** /api/v2/session_commands/{session_command_id}/kill | Kill Session Command
|
311
|
-
*DefaultApi* | [**list_aica_endpoint_events_api_v2_aica_endpoints_endpoint_id_events_get**](docs/DefaultApi.md#list_aica_endpoint_events_api_v2_aica_endpoints_endpoint_id_events_get) | **GET** /api/v2/aica_endpoints/{endpoint_id}/events | List Aica Endpoint Events
|
312
|
-
*DefaultApi* | [**list_aica_endpoints_api_v2_aica_endpoints_get**](docs/DefaultApi.md#list_aica_endpoints_api_v2_aica_endpoints_get) | **GET** /api/v2/aica_endpoints/ | List Aica Endpoints
|
313
304
|
*DefaultApi* | [**list_application_templates_api_v2_application_templates_get**](docs/DefaultApi.md#list_application_templates_api_v2_application_templates_get) | **GET** /api/v2/application_templates/ | List Application Templates
|
314
305
|
*DefaultApi* | [**list_builds_api_v2_builds_get**](docs/DefaultApi.md#list_builds_api_v2_builds_get) | **GET** /api/v2/builds/ | List Builds
|
315
306
|
*DefaultApi* | [**list_clouds_api_v2_clouds_get**](docs/DefaultApi.md#list_clouds_api_v2_clouds_get) | **GET** /api/v2/clouds/ | List Clouds
|
@@ -333,7 +324,6 @@ Class | Method | HTTP request | Description
|
|
333
324
|
*DefaultApi* | [**list_machine_pools_api_v2_machine_pools_get**](docs/DefaultApi.md#list_machine_pools_api_v2_machine_pools_get) | **GET** /api/v2/machine_pools/ | List Machine Pools
|
334
325
|
*DefaultApi* | [**list_machines_api_v2_machines_get**](docs/DefaultApi.md#list_machines_api_v2_machines_get) | **GET** /api/v2/machines/ | List Machines
|
335
326
|
*DefaultApi* | [**list_metronome_customer_info_api_v2_metronome_customer_info_get**](docs/DefaultApi.md#list_metronome_customer_info_api_v2_metronome_customer_info_get) | **GET** /api/v2/metronome_customer_info/ | List Metronome Customer Info
|
336
|
-
*DefaultApi* | [**list_models_api_v2_aica_endpoints_models_get**](docs/DefaultApi.md#list_models_api_v2_aica_endpoints_models_get) | **GET** /api/v2/aica_endpoints/models | List Models
|
337
327
|
*DefaultApi* | [**list_models_api_v2_llm_models_get**](docs/DefaultApi.md#list_models_api_v2_llm_models_get) | **GET** /api/v2/llm/models | List Models
|
338
328
|
*DefaultApi* | [**list_organization_collaborators_api_v2_organization_collaborators_get**](docs/DefaultApi.md#list_organization_collaborators_api_v2_organization_collaborators_get) | **GET** /api/v2/organization_collaborators/ | List Organization Collaborators
|
339
329
|
*DefaultApi* | [**list_organization_project_collaborators_api_v2_projects_project_id_collaborators_organizations_get**](docs/DefaultApi.md#list_organization_project_collaborators_api_v2_projects_project_id_collaborators_organizations_get) | **GET** /api/v2/projects/{project_id}/collaborators/organizations | List Organization Project Collaborators
|
@@ -341,13 +331,11 @@ Class | Method | HTTP request | Description
|
|
341
331
|
*DefaultApi* | [**list_projects_api_v2_projects_get**](docs/DefaultApi.md#list_projects_api_v2_projects_get) | **GET** /api/v2/projects/ | List Projects
|
342
332
|
*DefaultApi* | [**list_services_api_v2_services_v2_get**](docs/DefaultApi.md#list_services_api_v2_services_v2_get) | **GET** /api/v2/services-v2/ | List Services
|
343
333
|
*DefaultApi* | [**list_sessions_api_v2_sessions_get**](docs/DefaultApi.md#list_sessions_api_v2_sessions_get) | **GET** /api/v2/sessions/ | List Sessions
|
344
|
-
*DefaultApi* | [**list_versions_api_v2_aica_endpoints_versions_get**](docs/DefaultApi.md#list_versions_api_v2_aica_endpoints_versions_get) | **GET** /api/v2/aica_endpoints/versions | List Versions
|
345
334
|
*DefaultApi* | [**list_web_terminals_api_v2_sessions_session_id_web_terminals_get**](docs/DefaultApi.md#list_web_terminals_api_v2_sessions_session_id_web_terminals_get) | **GET** /api/v2/sessions/{session_id}/web_terminals | List Web Terminals
|
346
335
|
*DefaultApi* | [**list_workspace_templates_api_v2_experimental_workspaces_templates_get**](docs/DefaultApi.md#list_workspace_templates_api_v2_experimental_workspaces_templates_get) | **GET** /api/v2/experimental_workspaces/templates | List Workspace Templates
|
347
336
|
*DefaultApi* | [**list_workspaces_api_v2_experimental_workspaces_get**](docs/DefaultApi.md#list_workspaces_api_v2_experimental_workspaces_get) | **GET** /api/v2/experimental_workspaces/ | List Workspaces
|
348
337
|
*DefaultApi* | [**login_user_api_v2_users_login_post**](docs/DefaultApi.md#login_user_api_v2_users_login_post) | **POST** /api/v2/users/login | Login User
|
349
338
|
*DefaultApi* | [**logout_user_api_v2_users_logout_post**](docs/DefaultApi.md#logout_user_api_v2_users_logout_post) | **POST** /api/v2/users/logout | Logout User
|
350
|
-
*DefaultApi* | [**model_s3_mirror_credentials_api_v2_aica_endpoints_model_s3_credentials_post**](docs/DefaultApi.md#model_s3_mirror_credentials_api_v2_aica_endpoints_model_s3_credentials_post) | **POST** /api/v2/aica_endpoints/model_s3_credentials | Model S3 Mirror Credentials
|
351
339
|
*DefaultApi* | [**organization_valid_for_migration_api_v2_access_controls_migration_organization_id_organization_valid_for_migration_get**](docs/DefaultApi.md#organization_valid_for_migration_api_v2_access_controls_migration_organization_id_organization_valid_for_migration_get) | **GET** /api/v2/access_controls_migration/{organization_id}/organization_valid_for_migration | Organization Valid For Migration
|
352
340
|
*DefaultApi* | [**patch_project_api_v2_projects_project_id_patch**](docs/DefaultApi.md#patch_project_api_v2_projects_project_id_patch) | **PATCH** /api/v2/projects/{project_id} | Patch Project
|
353
341
|
*DefaultApi* | [**patch_session_api_v2_sessions_session_id_patch**](docs/DefaultApi.md#patch_session_api_v2_sessions_session_id_patch) | **PATCH** /api/v2/sessions/{session_id} | Patch Session
|
@@ -393,7 +381,6 @@ Class | Method | HTTP request | Description
|
|
393
381
|
*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
|
394
382
|
*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
|
395
383
|
*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
|
396
|
-
*DefaultApi* | [**start_endpoint_api_v2_aica_endpoints_endpoint_id_start_post**](docs/DefaultApi.md#start_endpoint_api_v2_aica_endpoints_endpoint_id_start_post) | **POST** /api/v2/aica_endpoints/{endpoint_id}/start | Start Endpoint
|
397
384
|
*DefaultApi* | [**start_session_api_v2_sessions_session_id_start_post**](docs/DefaultApi.md#start_session_api_v2_sessions_session_id_start_post) | **POST** /api/v2/sessions/{session_id}/start | Start Session
|
398
385
|
*DefaultApi* | [**stop_session_api_v2_sessions_session_id_stop_post**](docs/DefaultApi.md#stop_session_api_v2_sessions_session_id_stop_post) | **POST** /api/v2/sessions/{session_id}/stop | Stop Session
|
399
386
|
*DefaultApi* | [**sync_organization_with_metronome_api_v2_organization_billing_organization_id_sync_with_metronome_post**](docs/DefaultApi.md#sync_organization_with_metronome_api_v2_organization_billing_organization_id_sync_with_metronome_post) | **POST** /api/v2/organization_billing/{organization_id}/sync_with_metronome | Sync Organization With Metronome
|
@@ -405,7 +392,6 @@ Class | Method | HTTP request | Description
|
|
405
392
|
*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
|
406
393
|
*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
|
407
394
|
*DefaultApi* | [**undismiss_user_card_api_v2_onboarding_cards_card_id_undismiss_post**](docs/DefaultApi.md#undismiss_user_card_api_v2_onboarding_cards_card_id_undismiss_post) | **POST** /api/v2/onboarding_cards/{card_id}/undismiss | Undismiss User Card
|
408
|
-
*DefaultApi* | [**update_aica_endpoint_api_v2_aica_endpoints_put**](docs/DefaultApi.md#update_aica_endpoint_api_v2_aica_endpoints_put) | **PUT** /api/v2/aica_endpoints/ | Update Aica Endpoint
|
409
395
|
*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
|
410
396
|
*DefaultApi* | [**update_cloud_config_api_v2_clouds_cloud_id_config_put**](docs/DefaultApi.md#update_cloud_config_api_v2_clouds_cloud_id_config_put) | **PUT** /api/v2/clouds/{cloud_id}/config | Update Cloud Config
|
411
397
|
*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
|
@@ -435,7 +421,6 @@ Class | Method | HTTP request | Description
|
|
435
421
|
|
436
422
|
## Documentation For Models
|
437
423
|
|
438
|
-
- [AWSCredentials](docs/AWSCredentials.md)
|
439
424
|
- [AWSMemoryDBClusterConfig](docs/AWSMemoryDBClusterConfig.md)
|
440
425
|
- [AccessConfig](docs/AccessConfig.md)
|
441
426
|
- [ActorStatus](docs/ActorStatus.md)
|
@@ -447,20 +432,6 @@ Class | Method | HTTP request | Description
|
|
447
432
|
- [AggregatedUsageQuery](docs/AggregatedUsageQuery.md)
|
448
433
|
- [AggregatedinstanceusagecsvListResponse](docs/AggregatedinstanceusagecsvListResponse.md)
|
449
434
|
- [AggregatedusageResponse](docs/AggregatedusageResponse.md)
|
450
|
-
- [AicaEndpoint](docs/AicaEndpoint.md)
|
451
|
-
- [AicaEndpointEvent](docs/AicaEndpointEvent.md)
|
452
|
-
- [AicaEndpointEventLevel](docs/AicaEndpointEventLevel.md)
|
453
|
-
- [AicaEndpointEventType](docs/AicaEndpointEventType.md)
|
454
|
-
- [AicaEndpointScope](docs/AicaEndpointScope.md)
|
455
|
-
- [AicaModel](docs/AicaModel.md)
|
456
|
-
- [AicaModelAcceleratorMap](docs/AicaModelAcceleratorMap.md)
|
457
|
-
- [AicaModelConfiguration](docs/AicaModelConfiguration.md)
|
458
|
-
- [AicaObservabilityUrls](docs/AicaObservabilityUrls.md)
|
459
|
-
- [AicaendpointListResponse](docs/AicaendpointListResponse.md)
|
460
|
-
- [AicaendpointResponse](docs/AicaendpointResponse.md)
|
461
|
-
- [AicaendpointeventListResponse](docs/AicaendpointeventListResponse.md)
|
462
|
-
- [AicamodelListResponse](docs/AicamodelListResponse.md)
|
463
|
-
- [AicamodelResponse](docs/AicamodelResponse.md)
|
464
435
|
- [AioaCloudWaitlistRecord](docs/AioaCloudWaitlistRecord.md)
|
465
436
|
- [AioacloudwaitlistrecordResponse](docs/AioacloudwaitlistrecordResponse.md)
|
466
437
|
- [AlertType](docs/AlertType.md)
|
@@ -589,7 +560,6 @@ Class | Method | HTTP request | Description
|
|
589
560
|
- [ComputeTemplateQuery](docs/ComputeTemplateQuery.md)
|
590
561
|
- [ComputetemplateResponse](docs/ComputetemplateResponse.md)
|
591
562
|
- [ComputetemplateconfigResponse](docs/ComputetemplateconfigResponse.md)
|
592
|
-
- [CreateAicaEndpoint](docs/CreateAicaEndpoint.md)
|
593
563
|
- [CreateAioaCloudWaitlist](docs/CreateAioaCloudWaitlist.md)
|
594
564
|
- [CreateAnalyticsEvent](docs/CreateAnalyticsEvent.md)
|
595
565
|
- [CreateAppConfig](docs/CreateAppConfig.md)
|
@@ -603,7 +573,6 @@ Class | Method | HTTP request | Description
|
|
603
573
|
- [CreateCloudCollaborator](docs/CreateCloudCollaborator.md)
|
604
574
|
- [CreateCloudResource](docs/CreateCloudResource.md)
|
605
575
|
- [CreateCloudResourceGCP](docs/CreateCloudResourceGCP.md)
|
606
|
-
- [CreateCloudWithCloudResource](docs/CreateCloudWithCloudResource.md)
|
607
576
|
- [CreateClusterComputeConfig](docs/CreateClusterComputeConfig.md)
|
608
577
|
- [CreateComputeTemplate](docs/CreateComputeTemplate.md)
|
609
578
|
- [CreateComputeTemplateConfig](docs/CreateComputeTemplateConfig.md)
|
@@ -752,7 +721,6 @@ Class | Method | HTTP request | Description
|
|
752
721
|
- [HeadipResponse](docs/HeadipResponse.md)
|
753
722
|
- [HttpProtocolConfig](docs/HttpProtocolConfig.md)
|
754
723
|
- [IdleTerminationStatus](docs/IdleTerminationStatus.md)
|
755
|
-
- [ImportAicaModel](docs/ImportAicaModel.md)
|
756
724
|
- [InstanceUsageBudget](docs/InstanceUsageBudget.md)
|
757
725
|
- [InstanceUsageBudgetEvaluationPeriod](docs/InstanceUsageBudgetEvaluationPeriod.md)
|
758
726
|
- [InstanceusagebudgetListResponse](docs/InstanceusagebudgetListResponse.md)
|
@@ -797,8 +765,6 @@ Class | Method | HTTP request | Description
|
|
797
765
|
- [ListResponseMetadata](docs/ListResponseMetadata.md)
|
798
766
|
- [ListmachinepoolsresponseResponse](docs/ListmachinepoolsresponseResponse.md)
|
799
767
|
- [ListmachinesresponseResponse](docs/ListmachinesresponseResponse.md)
|
800
|
-
- [LogDetail](docs/LogDetail.md)
|
801
|
-
- [LogDetails](docs/LogDetails.md)
|
802
768
|
- [LogDownloadConfig](docs/LogDownloadConfig.md)
|
803
769
|
- [LogDownloadRequest](docs/LogDownloadRequest.md)
|
804
770
|
- [LogDownloadResult](docs/LogDownloadResult.md)
|
@@ -807,7 +773,6 @@ Class | Method | HTTP request | Description
|
|
807
773
|
- [LogItem](docs/LogItem.md)
|
808
774
|
- [LogItemBatch](docs/LogItemBatch.md)
|
809
775
|
- [LogStream](docs/LogStream.md)
|
810
|
-
- [LogdetailsResponse](docs/LogdetailsResponse.md)
|
811
776
|
- [LogdownloadresultResponse](docs/LogdownloadresultResponse.md)
|
812
777
|
- [LoginUserParams](docs/LoginUserParams.md)
|
813
778
|
- [LogitembatchResponse](docs/LogitembatchResponse.md)
|
@@ -844,7 +809,6 @@ Class | Method | HTTP request | Description
|
|
844
809
|
- [MiniprojectListResponse](docs/MiniprojectListResponse.md)
|
845
810
|
- [MonitorLogsExtension](docs/MonitorLogsExtension.md)
|
846
811
|
- [NFSMountTarget](docs/NFSMountTarget.md)
|
847
|
-
- [NamedEntity](docs/NamedEntity.md)
|
848
812
|
- [NodeRegistrationAWS](docs/NodeRegistrationAWS.md)
|
849
813
|
- [NodeRegistrationGCP](docs/NodeRegistrationGCP.md)
|
850
814
|
- [NodeRegistrationK8S](docs/NodeRegistrationK8S.md)
|
@@ -912,8 +876,6 @@ Class | Method | HTTP request | Description
|
|
912
876
|
- [ProjectsViolatingTreeHierarchyResponse](docs/ProjectsViolatingTreeHierarchyResponse.md)
|
913
877
|
- [ProjectsviolatingtreehierarchyresponseResponse](docs/ProjectsviolatingtreehierarchyresponseResponse.md)
|
914
878
|
- [Protocols](docs/Protocols.md)
|
915
|
-
- [ProviderMetadata](docs/ProviderMetadata.md)
|
916
|
-
- [ProvidermetadataResponse](docs/ProvidermetadataResponse.md)
|
917
879
|
- [PythonModules](docs/PythonModules.md)
|
918
880
|
- [Quota](docs/Quota.md)
|
919
881
|
- [RayGCSExternalStorageConfig](docs/RayGCSExternalStorageConfig.md)
|
@@ -1044,9 +1006,7 @@ Class | Method | HTTP request | Description
|
|
1044
1006
|
- [UpdateClusterDns](docs/UpdateClusterDns.md)
|
1045
1007
|
- [UpdateComputeTemplate](docs/UpdateComputeTemplate.md)
|
1046
1008
|
- [UpdateComputeTemplateConfig](docs/UpdateComputeTemplateConfig.md)
|
1047
|
-
- [UpdateEndpoint](docs/UpdateEndpoint.md)
|
1048
1009
|
- [UpdateMachinePoolRequest](docs/UpdateMachinePoolRequest.md)
|
1049
|
-
- [UpdateModelDeployment](docs/UpdateModelDeployment.md)
|
1050
1010
|
- [UpdateOrganizationCollaborator](docs/UpdateOrganizationCollaborator.md)
|
1051
1011
|
- [UpdateProjectCollaborator](docs/UpdateProjectCollaborator.md)
|
1052
1012
|
- [UpdateResourceQuota](docs/UpdateResourceQuota.md)
|
@@ -28,7 +28,6 @@ from openapi_client.exceptions import ApiValueError
|
|
28
28
|
from openapi_client.exceptions import ApiKeyError
|
29
29
|
from openapi_client.exceptions import ApiException
|
30
30
|
# import models into sdk package
|
31
|
-
from openapi_client.models.aws_credentials import AWSCredentials
|
32
31
|
from openapi_client.models.aws_memory_db_cluster_config import AWSMemoryDBClusterConfig
|
33
32
|
from openapi_client.models.access_config import AccessConfig
|
34
33
|
from openapi_client.models.actor_status import ActorStatus
|
@@ -40,20 +39,6 @@ from openapi_client.models.aggregated_usage import AggregatedUsage
|
|
40
39
|
from openapi_client.models.aggregated_usage_query import AggregatedUsageQuery
|
41
40
|
from openapi_client.models.aggregatedinstanceusagecsv_list_response import AggregatedinstanceusagecsvListResponse
|
42
41
|
from openapi_client.models.aggregatedusage_response import AggregatedusageResponse
|
43
|
-
from openapi_client.models.aica_endpoint import AicaEndpoint
|
44
|
-
from openapi_client.models.aica_endpoint_event import AicaEndpointEvent
|
45
|
-
from openapi_client.models.aica_endpoint_event_level import AicaEndpointEventLevel
|
46
|
-
from openapi_client.models.aica_endpoint_event_type import AicaEndpointEventType
|
47
|
-
from openapi_client.models.aica_endpoint_scope import AicaEndpointScope
|
48
|
-
from openapi_client.models.aica_model import AicaModel
|
49
|
-
from openapi_client.models.aica_model_accelerator_map import AicaModelAcceleratorMap
|
50
|
-
from openapi_client.models.aica_model_configuration import AicaModelConfiguration
|
51
|
-
from openapi_client.models.aica_observability_urls import AicaObservabilityUrls
|
52
|
-
from openapi_client.models.aicaendpoint_list_response import AicaendpointListResponse
|
53
|
-
from openapi_client.models.aicaendpoint_response import AicaendpointResponse
|
54
|
-
from openapi_client.models.aicaendpointevent_list_response import AicaendpointeventListResponse
|
55
|
-
from openapi_client.models.aicamodel_list_response import AicamodelListResponse
|
56
|
-
from openapi_client.models.aicamodel_response import AicamodelResponse
|
57
42
|
from openapi_client.models.aioa_cloud_waitlist_record import AioaCloudWaitlistRecord
|
58
43
|
from openapi_client.models.aioacloudwaitlistrecord_response import AioacloudwaitlistrecordResponse
|
59
44
|
from openapi_client.models.alert_type import AlertType
|
@@ -182,7 +167,6 @@ from openapi_client.models.compute_template_config import ComputeTemplateConfig
|
|
182
167
|
from openapi_client.models.compute_template_query import ComputeTemplateQuery
|
183
168
|
from openapi_client.models.computetemplate_response import ComputetemplateResponse
|
184
169
|
from openapi_client.models.computetemplateconfig_response import ComputetemplateconfigResponse
|
185
|
-
from openapi_client.models.create_aica_endpoint import CreateAicaEndpoint
|
186
170
|
from openapi_client.models.create_aioa_cloud_waitlist import CreateAioaCloudWaitlist
|
187
171
|
from openapi_client.models.create_analytics_event import CreateAnalyticsEvent
|
188
172
|
from openapi_client.models.create_app_config import CreateAppConfig
|
@@ -196,7 +180,6 @@ from openapi_client.models.create_build import CreateBuild
|
|
196
180
|
from openapi_client.models.create_cloud_collaborator import CreateCloudCollaborator
|
197
181
|
from openapi_client.models.create_cloud_resource import CreateCloudResource
|
198
182
|
from openapi_client.models.create_cloud_resource_gcp import CreateCloudResourceGCP
|
199
|
-
from openapi_client.models.create_cloud_with_cloud_resource import CreateCloudWithCloudResource
|
200
183
|
from openapi_client.models.create_cluster_compute_config import CreateClusterComputeConfig
|
201
184
|
from openapi_client.models.create_compute_template import CreateComputeTemplate
|
202
185
|
from openapi_client.models.create_compute_template_config import CreateComputeTemplateConfig
|
@@ -345,7 +328,6 @@ from openapi_client.models.head_ip import HeadIp
|
|
345
328
|
from openapi_client.models.headip_response import HeadipResponse
|
346
329
|
from openapi_client.models.http_protocol_config import HttpProtocolConfig
|
347
330
|
from openapi_client.models.idle_termination_status import IdleTerminationStatus
|
348
|
-
from openapi_client.models.import_aica_model import ImportAicaModel
|
349
331
|
from openapi_client.models.instance_usage_budget import InstanceUsageBudget
|
350
332
|
from openapi_client.models.instance_usage_budget_evaluation_period import InstanceUsageBudgetEvaluationPeriod
|
351
333
|
from openapi_client.models.instanceusagebudget_list_response import InstanceusagebudgetListResponse
|
@@ -390,8 +372,6 @@ from openapi_client.models.list_resource_quotas_query import ListResourceQuotasQ
|
|
390
372
|
from openapi_client.models.list_response_metadata import ListResponseMetadata
|
391
373
|
from openapi_client.models.listmachinepoolsresponse_response import ListmachinepoolsresponseResponse
|
392
374
|
from openapi_client.models.listmachinesresponse_response import ListmachinesresponseResponse
|
393
|
-
from openapi_client.models.log_detail import LogDetail
|
394
|
-
from openapi_client.models.log_details import LogDetails
|
395
375
|
from openapi_client.models.log_download_config import LogDownloadConfig
|
396
376
|
from openapi_client.models.log_download_request import LogDownloadRequest
|
397
377
|
from openapi_client.models.log_download_result import LogDownloadResult
|
@@ -400,7 +380,6 @@ from openapi_client.models.log_filter import LogFilter
|
|
400
380
|
from openapi_client.models.log_item import LogItem
|
401
381
|
from openapi_client.models.log_item_batch import LogItemBatch
|
402
382
|
from openapi_client.models.log_stream import LogStream
|
403
|
-
from openapi_client.models.logdetails_response import LogdetailsResponse
|
404
383
|
from openapi_client.models.logdownloadresult_response import LogdownloadresultResponse
|
405
384
|
from openapi_client.models.login_user_params import LoginUserParams
|
406
385
|
from openapi_client.models.logitembatch_response import LogitembatchResponse
|
@@ -437,7 +416,6 @@ from openapi_client.models.minicomputetemplate_list_response import Minicomputet
|
|
437
416
|
from openapi_client.models.miniproject_list_response import MiniprojectListResponse
|
438
417
|
from openapi_client.models.monitor_logs_extension import MonitorLogsExtension
|
439
418
|
from openapi_client.models.nfs_mount_target import NFSMountTarget
|
440
|
-
from openapi_client.models.named_entity import NamedEntity
|
441
419
|
from openapi_client.models.node_registration_aws import NodeRegistrationAWS
|
442
420
|
from openapi_client.models.node_registration_gcp import NodeRegistrationGCP
|
443
421
|
from openapi_client.models.node_registration_k8_s import NodeRegistrationK8S
|
@@ -505,8 +483,6 @@ from openapi_client.models.projects_sort_field import ProjectsSortField
|
|
505
483
|
from openapi_client.models.projects_violating_tree_hierarchy_response import ProjectsViolatingTreeHierarchyResponse
|
506
484
|
from openapi_client.models.projectsviolatingtreehierarchyresponse_response import ProjectsviolatingtreehierarchyresponseResponse
|
507
485
|
from openapi_client.models.protocols import Protocols
|
508
|
-
from openapi_client.models.provider_metadata import ProviderMetadata
|
509
|
-
from openapi_client.models.providermetadata_response import ProvidermetadataResponse
|
510
486
|
from openapi_client.models.python_modules import PythonModules
|
511
487
|
from openapi_client.models.quota import Quota
|
512
488
|
from openapi_client.models.ray_gcs_external_storage_config import RayGCSExternalStorageConfig
|
@@ -637,9 +613,7 @@ from openapi_client.models.update_cloud_with_cloud_resource_gcp import UpdateClo
|
|
637
613
|
from openapi_client.models.update_cluster_dns import UpdateClusterDns
|
638
614
|
from openapi_client.models.update_compute_template import UpdateComputeTemplate
|
639
615
|
from openapi_client.models.update_compute_template_config import UpdateComputeTemplateConfig
|
640
|
-
from openapi_client.models.update_endpoint import UpdateEndpoint
|
641
616
|
from openapi_client.models.update_machine_pool_request import UpdateMachinePoolRequest
|
642
|
-
from openapi_client.models.update_model_deployment import UpdateModelDeployment
|
643
617
|
from openapi_client.models.update_organization_collaborator import UpdateOrganizationCollaborator
|
644
618
|
from openapi_client.models.update_project_collaborator import UpdateProjectCollaborator
|
645
619
|
from openapi_client.models.update_resource_quota import UpdateResourceQuota
|