anyscale 0.26.17__py3-none-any.whl → 0.26.20__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 +3 -3
- anyscale/anyscale-cloud-setup.yaml +0 -4
- anyscale/client/README.md +18 -38
- anyscale/client/openapi_client/__init__.py +14 -20
- anyscale/client/openapi_client/api/default_api.py +460 -2097
- anyscale/client/openapi_client/models/__init__.py +14 -20
- anyscale/client/openapi_client/models/aws_config.py +402 -0
- anyscale/client/openapi_client/models/baseimagesenum.py +68 -1
- anyscale/client/openapi_client/models/cloud_deployment.py +397 -0
- anyscale/client/openapi_client/models/{webterminal_list_response.py → clouddeployment_list_response.py} +15 -15
- anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +2 -2
- anyscale/client/openapi_client/models/file_storage.py +206 -0
- anyscale/client/openapi_client/models/gcp_config.py +402 -0
- anyscale/client/openapi_client/models/{session_details.py → job_queue_sort_directive.py} +39 -39
- anyscale/client/openapi_client/models/{sessiondescribe_response.py → job_queue_sort_field.py} +20 -34
- anyscale/client/openapi_client/models/job_queues_query.py +31 -3
- anyscale/client/openapi_client/models/kubernetes_config.py +150 -0
- anyscale/client/openapi_client/models/{monitor_logs_extension.py → networking_mode.py} +7 -7
- anyscale/client/openapi_client/models/object_storage.py +178 -0
- anyscale/client/openapi_client/models/{sessiondetails_response.py → pcp_config.py} +23 -22
- anyscale/client/openapi_client/models/production_job_state_transition.py +2 -2
- anyscale/client/openapi_client/models/supportedbaseimagesenum.py +68 -1
- anyscale/client/openapi_client/models/{external_service_status.py → update_job_queue_request.py} +39 -36
- anyscale/client/openapi_client/models/workspace_template_readme.py +181 -0
- anyscale/client/openapi_client/models/{archivedlogsinfo_response.py → workspacetemplatereadme_response.py} +11 -11
- anyscale/commands/cloud_commands.py +55 -7
- anyscale/commands/command_examples.py +58 -0
- anyscale/commands/job_commands.py +2 -2
- anyscale/commands/job_queue_commands.py +172 -0
- anyscale/connect_utils/prepare_cluster.py +19 -14
- anyscale/controllers/cloud_controller.py +60 -3
- anyscale/controllers/job_controller.py +215 -3
- anyscale/scripts.py +3 -0
- anyscale/sdk/anyscale_client/models/baseimagesenum.py +68 -1
- anyscale/sdk/anyscale_client/models/production_job_state_transition.py +2 -2
- anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +68 -1
- anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
- anyscale/util.py +3 -1
- anyscale/utils/connect_helpers.py +34 -0
- anyscale/version.py +1 -1
- anyscale/workspace/_private/workspace_sdk.py +19 -6
- {anyscale-0.26.17.dist-info → anyscale-0.26.20.dist-info}/METADATA +1 -1
- {anyscale-0.26.17.dist-info → anyscale-0.26.20.dist-info}/RECORD +48 -53
- anyscale/client/openapi_client/models/archived_logs_info.py +0 -164
- anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +0 -123
- anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +0 -538
- anyscale/client/openapi_client/models/create_session_in_db.py +0 -434
- anyscale/client/openapi_client/models/create_session_response.py +0 -174
- anyscale/client/openapi_client/models/createsessionresponse_response.py +0 -121
- anyscale/client/openapi_client/models/external_service_status_response.py +0 -250
- anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +0 -121
- anyscale/client/openapi_client/models/session_describe.py +0 -175
- anyscale/client/openapi_client/models/session_history_item.py +0 -146
- anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +0 -147
- anyscale/client/openapi_client/models/update_compute_template.py +0 -146
- anyscale/client/openapi_client/models/update_compute_template_config.py +0 -464
- {anyscale-0.26.17.dist-info → anyscale-0.26.20.dist-info}/LICENSE +0 -0
- {anyscale-0.26.17.dist-info → anyscale-0.26.20.dist-info}/NOTICE +0 -0
- {anyscale-0.26.17.dist-info → anyscale-0.26.20.dist-info}/WHEEL +0 -0
- {anyscale-0.26.17.dist-info → anyscale-0.26.20.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.17.dist-info → anyscale-0.26.20.dist-info}/top_level.txt +0 -0
@@ -193,10 +193,6 @@ $SUBNETS_ROUTE_TABLE_ASSOCIATION
|
|
193
193
|
- "s3:DeleteObject"
|
194
194
|
- "s3:GetObject"
|
195
195
|
- "s3:ListBucket"
|
196
|
-
- "s3:ListBucketMultipartUploads"
|
197
|
-
- "s3:ListMultipartUploadParts"
|
198
|
-
- "s3:AbortMultipartUpload"
|
199
|
-
- "s3:GetBucketLocation"
|
200
196
|
Effect: Allow
|
201
197
|
Resource:
|
202
198
|
- !Sub arn:aws:s3:::${S3Bucket}
|
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_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
|
86
85
|
*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
|
87
86
|
*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
|
88
87
|
*DefaultApi* | [**archive_job_api_v2_decorated_ha_jobs_production_job_id_archive_post**](docs/DefaultApi.md#archive_job_api_v2_decorated_ha_jobs_production_job_id_archive_post) | **POST** /api/v2/decorated_ha_jobs/{production_job_id}/archive | Archive Job
|
@@ -113,7 +112,6 @@ Class | Method | HTTP request | Description
|
|
113
112
|
*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
|
114
113
|
*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
|
115
114
|
*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
|
116
|
-
*DefaultApi* | [**create_connect_session_api_v2_sessions_create_connect_session_post**](docs/DefaultApi.md#create_connect_session_api_v2_sessions_create_connect_session_post) | **POST** /api/v2/sessions/create_connect_session | Create Connect Session
|
117
115
|
*DefaultApi* | [**create_dataset_upload_api_v2_datasets_upload_post**](docs/DefaultApi.md#create_dataset_upload_api_v2_datasets_upload_post) | **POST** /api/v2/datasets/upload | Create Dataset Upload
|
118
116
|
*DefaultApi* | [**create_instance_usage_budget_api_v2_instance_usage_budgets_post**](docs/DefaultApi.md#create_instance_usage_budget_api_v2_instance_usage_budgets_post) | **POST** /api/v2/instance_usage_budgets/ | Create Instance Usage Budget
|
119
117
|
*DefaultApi* | [**create_invitation_api_v2_organization_invitations_post**](docs/DefaultApi.md#create_invitation_api_v2_organization_invitations_post) | **POST** /api/v2/organization_invitations/ | Create Invitation
|
@@ -121,7 +119,6 @@ Class | Method | HTTP request | Description
|
|
121
119
|
*DefaultApi* | [**create_job_queue_api_v2_job_queues_create_post**](docs/DefaultApi.md#create_job_queue_api_v2_job_queues_create_post) | **POST** /api/v2/job_queues/create | Create Job Queue
|
122
120
|
*DefaultApi* | [**create_machine_api_v2_machines_create_post**](docs/DefaultApi.md#create_machine_api_v2_machines_create_post) | **POST** /api/v2/machines/create | Create Machine
|
123
121
|
*DefaultApi* | [**create_machine_pool_api_v2_machine_pools_create_post**](docs/DefaultApi.md#create_machine_pool_api_v2_machine_pools_create_post) | **POST** /api/v2/machine_pools/create | Create Machine Pool
|
124
|
-
*DefaultApi* | [**create_new_session_api_v2_sessions_create_new_session_post**](docs/DefaultApi.md#create_new_session_api_v2_sessions_create_new_session_post) | **POST** /api/v2/sessions/create_new_session | Create New Session
|
125
122
|
*DefaultApi* | [**create_one_time_password_api_v2_users_create_otp_token_get**](docs/DefaultApi.md#create_one_time_password_api_v2_users_create_otp_token_get) | **GET** /api/v2/users/create_otp_token | Create One Time Password
|
126
123
|
*DefaultApi* | [**create_or_update_job_api_v2_experimental_cron_jobs_put**](docs/DefaultApi.md#create_or_update_job_api_v2_experimental_cron_jobs_put) | **PUT** /api/v2/experimental_cron_jobs/ | Create Or Update Job
|
127
124
|
*DefaultApi* | [**create_or_update_metronome_customer_info_api_v2_metronome_customer_info_post**](docs/DefaultApi.md#create_or_update_metronome_customer_info_api_v2_metronome_customer_info_post) | **POST** /api/v2/metronome_customer_info/ | Create Or Update Metronome Customer Info
|
@@ -133,7 +130,6 @@ Class | Method | HTTP request | Description
|
|
133
130
|
*DefaultApi* | [**create_session_command_api_v2_sessions_session_id_create_session_command_post**](docs/DefaultApi.md#create_session_command_api_v2_sessions_session_id_create_session_command_post) | **POST** /api/v2/sessions/{session_id}/create_session_command | Create Session Command
|
134
131
|
*DefaultApi* | [**create_web_terminal_api_v2_sessions_session_id_web_terminals_post**](docs/DefaultApi.md#create_web_terminal_api_v2_sessions_session_id_web_terminals_post) | **POST** /api/v2/sessions/{session_id}/web_terminals | Create Web Terminal
|
135
132
|
*DefaultApi* | [**create_workspace_api_v2_experimental_workspaces_post**](docs/DefaultApi.md#create_workspace_api_v2_experimental_workspaces_post) | **POST** /api/v2/experimental_workspaces/ | Create Workspace
|
136
|
-
*DefaultApi* | [**create_workspace_from_job_api_v2_experimental_workspaces_from_job_post**](docs/DefaultApi.md#create_workspace_from_job_api_v2_experimental_workspaces_from_job_post) | **POST** /api/v2/experimental_workspaces/from_job | Create Workspace From Job
|
137
133
|
*DefaultApi* | [**create_workspace_from_template_api_v2_experimental_workspaces_from_template_post**](docs/DefaultApi.md#create_workspace_from_template_api_v2_experimental_workspaces_from_template_post) | **POST** /api/v2/experimental_workspaces/from_template | Create Workspace From Template
|
138
134
|
*DefaultApi* | [**delete_application_template_api_v2_application_templates_application_template_id_delete**](docs/DefaultApi.md#delete_application_template_api_v2_application_templates_application_template_id_delete) | **DELETE** /api/v2/application_templates/{application_template_id} | Delete Application Template
|
139
135
|
*DefaultApi* | [**delete_cloud_api_v2_clouds_cloud_id_delete**](docs/DefaultApi.md#delete_cloud_api_v2_clouds_cloud_id_delete) | **DELETE** /api/v2/clouds/{cloud_id} | Delete Cloud
|
@@ -150,10 +146,8 @@ Class | Method | HTTP request | Description
|
|
150
146
|
*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
|
151
147
|
*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
|
152
148
|
*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
|
153
|
-
*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
|
154
149
|
*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
|
155
150
|
*DefaultApi* | [**describe_machine_pool_api_v2_machine_pools_describe_post**](docs/DefaultApi.md#describe_machine_pool_api_v2_machine_pools_describe_post) | **POST** /api/v2/machine_pools/describe | Describe Machine Pool
|
156
|
-
*DefaultApi* | [**describe_session_api_v2_sessions_session_id_describe_get**](docs/DefaultApi.md#describe_session_api_v2_sessions_session_id_describe_get) | **GET** /api/v2/sessions/{session_id}/describe | Describe Session
|
157
151
|
*DefaultApi* | [**describe_system_workload_api_v2_system_workload_cloud_id_describe_post**](docs/DefaultApi.md#describe_system_workload_api_v2_system_workload_cloud_id_describe_post) | **POST** /api/v2/system_workload/{cloud_id}/describe | Describe System Workload
|
158
152
|
*DefaultApi* | [**detach_machine_pool_from_cloud_api_v2_machine_pools_detach_post**](docs/DefaultApi.md#detach_machine_pool_from_cloud_api_v2_machine_pools_detach_post) | **POST** /api/v2/machine_pools/detach | Detach Machine Pool From Cloud
|
159
153
|
*DefaultApi* | [**download_aggregated_instance_usage_csv_api_v2_aggregated_instance_usage_download_csv_get**](docs/DefaultApi.md#download_aggregated_instance_usage_csv_api_v2_aggregated_instance_usage_download_csv_get) | **GET** /api/v2/aggregated_instance_usage/download_csv | Download Aggregated Instance Usage Csv
|
@@ -184,6 +178,7 @@ Class | Method | HTTP request | Description
|
|
184
178
|
*DefaultApi* | [**get_build_logs_api_v2_builds_build_id_logs_get**](docs/DefaultApi.md#get_build_logs_api_v2_builds_build_id_logs_get) | **GET** /api/v2/builds/{build_id}/logs | Get Build Logs
|
185
179
|
*DefaultApi* | [**get_cloud_api_v2_clouds_cloud_id_get**](docs/DefaultApi.md#get_cloud_api_v2_clouds_cloud_id_get) | **GET** /api/v2/clouds/{cloud_id} | Get Cloud
|
186
180
|
*DefaultApi* | [**get_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_get**](docs/DefaultApi.md#get_cloud_deployment_config_api_v2_clouds_cloud_id_deployment_cloud_deployment_id_config_get) | **GET** /api/v2/clouds/{cloud_id}/deployment/{cloud_deployment_id}/config | Get Cloud Deployment Config
|
181
|
+
*DefaultApi* | [**get_cloud_deployments_api_v2_clouds_cloud_id_deployments_get**](docs/DefaultApi.md#get_cloud_deployments_api_v2_clouds_cloud_id_deployments_get) | **GET** /api/v2/clouds/{cloud_id}/deployments | Get Cloud Deployments
|
187
182
|
*DefaultApi* | [**get_cloud_overview_dashboard_api_v2_clouds_cloud_id_cloud_overview_dashboard_get**](docs/DefaultApi.md#get_cloud_overview_dashboard_api_v2_clouds_cloud_id_cloud_overview_dashboard_get) | **GET** /api/v2/clouds/{cloud_id}/cloud-overview-dashboard | Get Cloud Overview Dashboard
|
188
183
|
*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
|
189
184
|
*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
|
@@ -209,8 +204,6 @@ Class | Method | HTTP request | Description
|
|
209
204
|
*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
|
210
205
|
*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
|
211
206
|
*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
|
212
|
-
*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
|
213
|
-
*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
|
214
207
|
*DefaultApi* | [**get_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_get**](docs/DefaultApi.md#get_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_get) | **GET** /api/v2/instance_usage_budgets/{instance_usage_budget_id} | Get Instance Usage Budget
|
215
208
|
*DefaultApi* | [**get_invitation_api_v2_organization_invitations_invitation_id_get**](docs/DefaultApi.md#get_invitation_api_v2_organization_invitations_invitation_id_get) | **GET** /api/v2/organization_invitations/{invitation_id} | Get Invitation
|
216
209
|
*DefaultApi* | [**get_job_api_v2_decorated_ha_jobs_production_job_id_get**](docs/DefaultApi.md#get_job_api_v2_decorated_ha_jobs_production_job_id_get) | **GET** /api/v2/decorated_ha_jobs/{production_job_id} | Get Job
|
@@ -229,11 +222,8 @@ Class | Method | HTTP request | Description
|
|
229
222
|
*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
|
230
223
|
*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
|
231
224
|
*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
|
232
|
-
*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
|
233
|
-
*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
|
234
225
|
*DefaultApi* | [**get_operator_metrics_api_v2_dataset_runs_operator_get**](docs/DefaultApi.md#get_operator_metrics_api_v2_dataset_runs_operator_get) | **GET** /api/v2/dataset_runs/operator | Get Operator Metrics
|
235
226
|
*DefaultApi* | [**get_organization_metronome_usage_alerts_api_v2_organization_billing_alerts_get**](docs/DefaultApi.md#get_organization_metronome_usage_alerts_api_v2_organization_billing_alerts_get) | **GET** /api/v2/organization_billing/alerts | Get Organization Metronome Usage Alerts
|
236
|
-
*DefaultApi* | [**get_ping_external_services_api_v2_sessions_session_id_ping_external_services_get**](docs/DefaultApi.md#get_ping_external_services_api_v2_sessions_session_id_ping_external_services_get) | **GET** /api/v2/sessions/{session_id}/ping_external_services | Get Ping External Services
|
237
227
|
*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
|
238
228
|
*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
|
239
229
|
*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
|
@@ -244,7 +234,7 @@ Class | Method | HTTP request | Description
|
|
244
234
|
*DefaultApi* | [**get_regions_and_zones_api_v2_clouds_gcp_regions_and_zones_get**](docs/DefaultApi.md#get_regions_and_zones_api_v2_clouds_gcp_regions_and_zones_get) | **GET** /api/v2/clouds/gcp/regions_and_zones | Get Regions And Zones
|
245
235
|
*DefaultApi* | [**get_resource_notification_api_v2_resource_notifications_resource_notification_id_get**](docs/DefaultApi.md#get_resource_notification_api_v2_resource_notifications_resource_notification_id_get) | **GET** /api/v2/resource_notifications/{resource_notification_id} | Get Resource Notification
|
246
236
|
*DefaultApi* | [**get_resource_quota_api_v2_resource_quotas_resource_quota_id_get**](docs/DefaultApi.md#get_resource_quota_api_v2_resource_quotas_resource_quota_id_get) | **GET** /api/v2/resource_quotas/{resource_quota_id} | Get Resource Quota
|
247
|
-
*DefaultApi* | [**
|
237
|
+
*DefaultApi* | [**get_root_cause_for_job_api_v2_iknow_get**](docs/DefaultApi.md#get_root_cause_for_job_api_v2_iknow_get) | **GET** /api/v2/iknow/ | Get Root Cause For Job
|
248
238
|
*DefaultApi* | [**get_runtime_env_logs_download_api_v2_logs_runtime_env_logs_download_session_id_get**](docs/DefaultApi.md#get_runtime_env_logs_download_api_v2_logs_runtime_env_logs_download_session_id_get) | **GET** /api/v2/logs/runtime_env_logs_download/{session_id} | Get Runtime Env Logs Download
|
249
239
|
*DefaultApi* | [**get_serve_logs_download_api_v2_logs_serve_logs_download_cluster_id_get**](docs/DefaultApi.md#get_serve_logs_download_api_v2_logs_serve_logs_download_cluster_id_get) | **GET** /api/v2/logs/serve_logs_download/{cluster_id} | Get Serve Logs Download
|
250
240
|
*DefaultApi* | [**get_service_api_v2_services_v2_service_id_get**](docs/DefaultApi.md#get_service_api_v2_services_v2_service_id_get) | **GET** /api/v2/services-v2/{service_id} | Get Service
|
@@ -254,12 +244,9 @@ Class | Method | HTTP request | Description
|
|
254
244
|
*DefaultApi* | [**get_session_api_v2_sessions_session_id_get**](docs/DefaultApi.md#get_session_api_v2_sessions_session_id_get) | **GET** /api/v2/sessions/{session_id} | Get Session
|
255
245
|
*DefaultApi* | [**get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get**](docs/DefaultApi.md#get_session_command_logs_download_api_v2_logs_session_command_logs_session_id_session_command_id_get) | **GET** /api/v2/logs/session_command_logs/{session_id}/{session_command_id} | Get Session Command Logs Download
|
256
246
|
*DefaultApi* | [**get_session_commands_history_api_v2_session_commands_get**](docs/DefaultApi.md#get_session_commands_history_api_v2_session_commands_get) | **GET** /api/v2/session_commands/ | Get Session Commands History
|
257
|
-
*DefaultApi* | [**get_session_details_api_v2_sessions_session_id_details_get**](docs/DefaultApi.md#get_session_details_api_v2_sessions_session_id_details_get) | **GET** /api/v2/sessions/{session_id}/details | Get Session Details
|
258
247
|
*DefaultApi* | [**get_session_head_ip_api_v2_sessions_session_id_head_ip_get**](docs/DefaultApi.md#get_session_head_ip_api_v2_sessions_session_id_head_ip_get) | **GET** /api/v2/sessions/{session_id}/head_ip | Get Session Head Ip
|
259
|
-
*DefaultApi* | [**get_session_history_api_v2_sessions_session_id_history_get**](docs/DefaultApi.md#get_session_history_api_v2_sessions_session_id_history_get) | **GET** /api/v2/sessions/{session_id}/history | Get Session History
|
260
248
|
*DefaultApi* | [**get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get**](docs/DefaultApi.md#get_session_ssh_key_api_v2_sessions_session_id_ssh_key_get) | **GET** /api/v2/sessions/{session_id}/ssh_key | Get Session Ssh Key
|
261
249
|
*DefaultApi* | [**get_startup_logs_api_v2_sessions_session_id_startup_logs_get**](docs/DefaultApi.md#get_startup_logs_api_v2_sessions_session_id_startup_logs_get) | **GET** /api/v2/sessions/{session_id}/startup_logs | Get Startup Logs
|
262
|
-
*DefaultApi* | [**get_startup_logs_archived_api_v2_sessions_session_id_startup_logs_archived_get**](docs/DefaultApi.md#get_startup_logs_archived_api_v2_sessions_session_id_startup_logs_archived_get) | **GET** /api/v2/sessions/{session_id}/startup_logs_archived | Get Startup Logs Archived
|
263
250
|
*DefaultApi* | [**get_task_exception_aggregates_api_v2_tasks_dashboard_aggregate_by_exception_get**](docs/DefaultApi.md#get_task_exception_aggregates_api_v2_tasks_dashboard_aggregate_by_exception_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_exception | Get Task Exception Aggregates
|
264
251
|
*DefaultApi* | [**get_task_function_aggregates_api_v2_tasks_dashboard_aggregate_by_function_get**](docs/DefaultApi.md#get_task_function_aggregates_api_v2_tasks_dashboard_aggregate_by_function_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_function | Get Task Function Aggregates
|
265
252
|
*DefaultApi* | [**get_task_job_aggregates_api_v2_tasks_dashboard_aggregate_by_job_get**](docs/DefaultApi.md#get_task_job_aggregates_api_v2_tasks_dashboard_aggregate_by_job_get) | **GET** /api/v2/tasks_dashboard/aggregate_by_job | Get Task Job Aggregates
|
@@ -285,7 +272,6 @@ Class | Method | HTTP request | Description
|
|
285
272
|
*DefaultApi* | [**health_check_api_v2_health_get**](docs/DefaultApi.md#health_check_api_v2_health_get) | **GET** /api/v2/health/ | Health Check
|
286
273
|
*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
|
287
274
|
*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
|
288
|
-
*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
|
289
275
|
*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
|
290
276
|
*DefaultApi* | [**list_builds_api_v2_builds_get**](docs/DefaultApi.md#list_builds_api_v2_builds_get) | **GET** /api/v2/builds/ | List Builds
|
291
277
|
*DefaultApi* | [**list_clouds_api_v2_clouds_get**](docs/DefaultApi.md#list_clouds_api_v2_clouds_get) | **GET** /api/v2/clouds/ | List Clouds
|
@@ -315,7 +301,6 @@ Class | Method | HTTP request | Description
|
|
315
301
|
*DefaultApi* | [**list_ray_sessions_api_v2_tasks_dashboard_list_ray_sessions_get**](docs/DefaultApi.md#list_ray_sessions_api_v2_tasks_dashboard_list_ray_sessions_get) | **GET** /api/v2/tasks_dashboard/list_ray_sessions | List Ray Sessions
|
316
302
|
*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
|
317
303
|
*DefaultApi* | [**list_sessions_api_v2_sessions_get**](docs/DefaultApi.md#list_sessions_api_v2_sessions_get) | **GET** /api/v2/sessions/ | List Sessions
|
318
|
-
*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
|
319
304
|
*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
|
320
305
|
*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
|
321
306
|
*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
|
@@ -373,13 +358,14 @@ Class | Method | HTTP request | Description
|
|
373
358
|
*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
|
374
359
|
*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
|
375
360
|
*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
|
361
|
+
*DefaultApi* | [**update_cloud_deployments_api_v2_clouds_cloud_id_deployments_put**](docs/DefaultApi.md#update_cloud_deployments_api_v2_clouds_cloud_id_deployments_put) | **PUT** /api/v2/clouds/{cloud_id}/deployments | Update Cloud Deployments
|
376
362
|
*DefaultApi* | [**update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_put**](docs/DefaultApi.md#update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_put) | **PUT** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id} | Update Cloud With Cloud Resource
|
377
363
|
*DefaultApi* | [**update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_put**](docs/DefaultApi.md#update_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_put) | **PUT** /api/v2/clouds_with_cloud_resource_router/{cloud_id} | Update Cloud With Cloud Resource
|
378
|
-
*DefaultApi* | [**update_compute_template_api_v2_compute_templates_compute_template_id_put**](docs/DefaultApi.md#update_compute_template_api_v2_compute_templates_compute_template_id_put) | **PUT** /api/v2/compute_templates/{compute_template_id} | Update Compute Template
|
379
364
|
*DefaultApi* | [**update_customer_aggregated_logs_config_api_v2_clouds_cloud_id_update_customer_aggregated_logs_config_put**](docs/DefaultApi.md#update_customer_aggregated_logs_config_api_v2_clouds_cloud_id_update_customer_aggregated_logs_config_put) | **PUT** /api/v2/clouds/{cloud_id}/update_customer_aggregated_logs_config | Update Customer Aggregated Logs Config
|
380
365
|
*DefaultApi* | [**update_default_cloud_api_v2_organizations_update_default_cloud_post**](docs/DefaultApi.md#update_default_cloud_api_v2_organizations_update_default_cloud_post) | **POST** /api/v2/organizations/update_default_cloud | Update Default Cloud
|
381
366
|
*DefaultApi* | [**update_dns_api_v2_dns_post**](docs/DefaultApi.md#update_dns_api_v2_dns_post) | **POST** /api/v2/dns/ | Update Dns
|
382
367
|
*DefaultApi* | [**update_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_put**](docs/DefaultApi.md#update_instance_usage_budget_api_v2_instance_usage_budgets_instance_usage_budget_id_put) | **PUT** /api/v2/instance_usage_budgets/{instance_usage_budget_id} | Update Instance Usage Budget
|
368
|
+
*DefaultApi* | [**update_job_queue_api_v2_job_queues_job_queue_id_put**](docs/DefaultApi.md#update_job_queue_api_v2_job_queues_job_queue_id_put) | **PUT** /api/v2/job_queues/{job_queue_id} | Update Job Queue
|
383
369
|
*DefaultApi* | [**update_job_queue_config_api_v2_decorated_ha_jobs_production_job_id_update_job_queue_config_put**](docs/DefaultApi.md#update_job_queue_config_api_v2_decorated_ha_jobs_production_job_id_update_job_queue_config_put) | **PUT** /api/v2/decorated_ha_jobs/{production_job_id}/update_job_queue_config | Update Job Queue Config
|
384
370
|
*DefaultApi* | [**update_machine_pool_api_v2_machine_pools_update_post**](docs/DefaultApi.md#update_machine_pool_api_v2_machine_pools_update_post) | **POST** /api/v2/machine_pools/update | Update Machine Pool
|
385
371
|
*DefaultApi* | [**update_resource_notification_api_v2_resource_notifications_resource_notification_id_put**](docs/DefaultApi.md#update_resource_notification_api_v2_resource_notifications_resource_notification_id_put) | **PUT** /api/v2/resource_notifications/{resource_notification_id} | Update Resource Notification
|
@@ -398,6 +384,7 @@ Class | Method | HTTP request | Description
|
|
398
384
|
|
399
385
|
## Documentation For Models
|
400
386
|
|
387
|
+
- [AWSConfig](docs/AWSConfig.md)
|
401
388
|
- [AWSMemoryDBClusterConfig](docs/AWSMemoryDBClusterConfig.md)
|
402
389
|
- [AccessConfig](docs/AccessConfig.md)
|
403
390
|
- [ActorStatus](docs/ActorStatus.md)
|
@@ -427,8 +414,6 @@ Class | Method | HTTP request | Description
|
|
427
414
|
- [AppliedSnapshot](docs/AppliedSnapshot.md)
|
428
415
|
- [ApplyProductionServiceV2Model](docs/ApplyProductionServiceV2Model.md)
|
429
416
|
- [ArchiveStatus](docs/ArchiveStatus.md)
|
430
|
-
- [ArchivedLogsInfo](docs/ArchivedLogsInfo.md)
|
431
|
-
- [ArchivedlogsinfoResponse](docs/ArchivedlogsinfoResponse.md)
|
432
417
|
- [AttachMachinePoolToCloudRequest](docs/AttachMachinePoolToCloudRequest.md)
|
433
418
|
- [AttachmachinepooltocloudresponseResponse](docs/AttachmachinepooltocloudresponseResponse.md)
|
434
419
|
- [AwsRegionAndZones](docs/AwsRegionAndZones.md)
|
@@ -474,6 +459,7 @@ Class | Method | HTTP request | Description
|
|
474
459
|
- [CloudDataBucketPresignedUrlResponse](docs/CloudDataBucketPresignedUrlResponse.md)
|
475
460
|
- [CloudDataBucketPresignedUrlScheme](docs/CloudDataBucketPresignedUrlScheme.md)
|
476
461
|
- [CloudDataBucketRequestScope](docs/CloudDataBucketRequestScope.md)
|
462
|
+
- [CloudDeployment](docs/CloudDeployment.md)
|
477
463
|
- [CloudDeploymentConfig](docs/CloudDeploymentConfig.md)
|
478
464
|
- [CloudHostingType](docs/CloudHostingType.md)
|
479
465
|
- [CloudListResponse](docs/CloudListResponse.md)
|
@@ -499,6 +485,7 @@ Class | Method | HTTP request | Description
|
|
499
485
|
- [CloudcollaboratorListResponse](docs/CloudcollaboratorListResponse.md)
|
500
486
|
- [ClouddatabucketpresigneduploadinfoResponse](docs/ClouddatabucketpresigneduploadinfoResponse.md)
|
501
487
|
- [ClouddatabucketpresignedurlresponseResponse](docs/ClouddatabucketpresignedurlresponseResponse.md)
|
488
|
+
- [ClouddeploymentListResponse](docs/ClouddeploymentListResponse.md)
|
502
489
|
- [ClouddeploymentconfigResponse](docs/ClouddeploymentconfigResponse.md)
|
503
490
|
- [CloudoverviewdashboardResponse](docs/CloudoverviewdashboardResponse.md)
|
504
491
|
- [CloudregionandzonesResponse](docs/CloudregionandzonesResponse.md)
|
@@ -543,7 +530,6 @@ Class | Method | HTTP request | Description
|
|
543
530
|
- [CreateComputeTemplateConfig](docs/CreateComputeTemplateConfig.md)
|
544
531
|
- [CreateDataset](docs/CreateDataset.md)
|
545
532
|
- [CreateExperimentalWorkspace](docs/CreateExperimentalWorkspace.md)
|
546
|
-
- [CreateExperimentalWorkspaceFromJob](docs/CreateExperimentalWorkspaceFromJob.md)
|
547
533
|
- [CreateInstanceUsageBudget](docs/CreateInstanceUsageBudget.md)
|
548
534
|
- [CreateInternalProductionJob](docs/CreateInternalProductionJob.md)
|
549
535
|
- [CreateJobQueueConfig](docs/CreateJobQueueConfig.md)
|
@@ -561,9 +547,6 @@ Class | Method | HTTP request | Description
|
|
561
547
|
- [CreateResourceNotification](docs/CreateResourceNotification.md)
|
562
548
|
- [CreateResourceQuota](docs/CreateResourceQuota.md)
|
563
549
|
- [CreateSchedule](docs/CreateSchedule.md)
|
564
|
-
- [CreateSessionFromSnapshotOptions](docs/CreateSessionFromSnapshotOptions.md)
|
565
|
-
- [CreateSessionInDb](docs/CreateSessionInDb.md)
|
566
|
-
- [CreateSessionResponse](docs/CreateSessionResponse.md)
|
567
550
|
- [CreateUser](docs/CreateUser.md)
|
568
551
|
- [CreateUserProjectCollaborator](docs/CreateUserProjectCollaborator.md)
|
569
552
|
- [CreateUserProjectCollaboratorValue](docs/CreateUserProjectCollaboratorValue.md)
|
@@ -573,7 +556,6 @@ Class | Method | HTTP request | Description
|
|
573
556
|
- [CreatemachinepoolresponseResponse](docs/CreatemachinepoolresponseResponse.md)
|
574
557
|
- [CreatemachineresponseResponse](docs/CreatemachineresponseResponse.md)
|
575
558
|
- [CreateotpreturnapimodelResponse](docs/CreateotpreturnapimodelResponse.md)
|
576
|
-
- [CreatesessionresponseResponse](docs/CreatesessionresponseResponse.md)
|
577
559
|
- [CreditCardInformation](docs/CreditCardInformation.md)
|
578
560
|
- [CustomerAlertStatus](docs/CustomerAlertStatus.md)
|
579
561
|
- [DataplaneServices](docs/DataplaneServices.md)
|
@@ -655,16 +637,15 @@ Class | Method | HTTP request | Description
|
|
655
637
|
- [ExperimentalWorkspacesSortField](docs/ExperimentalWorkspacesSortField.md)
|
656
638
|
- [ExperimentalworkspaceListResponse](docs/ExperimentalworkspaceListResponse.md)
|
657
639
|
- [ExperimentalworkspaceResponse](docs/ExperimentalworkspaceResponse.md)
|
658
|
-
- [ExternalServiceStatus](docs/ExternalServiceStatus.md)
|
659
|
-
- [ExternalServiceStatusResponse](docs/ExternalServiceStatusResponse.md)
|
660
640
|
- [ExternalTerminalCommand](docs/ExternalTerminalCommand.md)
|
661
|
-
- [ExternalservicestatusresponseResponse](docs/ExternalservicestatusresponseResponse.md)
|
662
641
|
- [FeatureFlagResponse](docs/FeatureFlagResponse.md)
|
663
642
|
- [FeatureflagresponseResponse](docs/FeatureflagresponseResponse.md)
|
643
|
+
- [FileStorage](docs/FileStorage.md)
|
664
644
|
- [FineTuneType](docs/FineTuneType.md)
|
665
645
|
- [FineTunedModel](docs/FineTunedModel.md)
|
666
646
|
- [FinetunedmodelListResponse](docs/FinetunedmodelListResponse.md)
|
667
647
|
- [FinetunedmodelResponse](docs/FinetunedmodelResponse.md)
|
648
|
+
- [GCPConfig](docs/GCPConfig.md)
|
668
649
|
- [GCPFileStoreConfig](docs/GCPFileStoreConfig.md)
|
669
650
|
- [GCPMemorystoreInstanceConfig](docs/GCPMemorystoreInstanceConfig.md)
|
670
651
|
- [GrafanaDashboard](docs/GrafanaDashboard.md)
|
@@ -699,6 +680,8 @@ Class | Method | HTTP request | Description
|
|
699
680
|
- [JobQueue](docs/JobQueue.md)
|
700
681
|
- [JobQueueConfig](docs/JobQueueConfig.md)
|
701
682
|
- [JobQueueExecutionMode](docs/JobQueueExecutionMode.md)
|
683
|
+
- [JobQueueSortDirective](docs/JobQueueSortDirective.md)
|
684
|
+
- [JobQueueSortField](docs/JobQueueSortField.md)
|
702
685
|
- [JobQueueSpec](docs/JobQueueSpec.md)
|
703
686
|
- [JobQueueState](docs/JobQueueState.md)
|
704
687
|
- [JobQueuesQuery](docs/JobQueuesQuery.md)
|
@@ -710,6 +693,7 @@ Class | Method | HTTP request | Description
|
|
710
693
|
- [JobsSortField](docs/JobsSortField.md)
|
711
694
|
- [JobwithreportListResponse](docs/JobwithreportListResponse.md)
|
712
695
|
- [JsonPatchOperation](docs/JsonPatchOperation.md)
|
696
|
+
- [KubernetesConfig](docs/KubernetesConfig.md)
|
713
697
|
- [KubernetesManagerRegistrationRequest](docs/KubernetesManagerRegistrationRequest.md)
|
714
698
|
- [KubernetesManagerRegistrationResponse](docs/KubernetesManagerRegistrationResponse.md)
|
715
699
|
- [KubernetesmanagerregistrationresponseResponse](docs/KubernetesmanagerregistrationresponseResponse.md)
|
@@ -767,8 +751,8 @@ Class | Method | HTTP request | Description
|
|
767
751
|
- [MinibuildListResponse](docs/MinibuildListResponse.md)
|
768
752
|
- [MinicomputetemplateListResponse](docs/MinicomputetemplateListResponse.md)
|
769
753
|
- [MiniprojectListResponse](docs/MiniprojectListResponse.md)
|
770
|
-
- [MonitorLogsExtension](docs/MonitorLogsExtension.md)
|
771
754
|
- [NFSMountTarget](docs/NFSMountTarget.md)
|
755
|
+
- [NetworkingMode](docs/NetworkingMode.md)
|
772
756
|
- [NodeRegistrationAWS](docs/NodeRegistrationAWS.md)
|
773
757
|
- [NodeRegistrationGCP](docs/NodeRegistrationGCP.md)
|
774
758
|
- [NodeRegistrationK8S](docs/NodeRegistrationK8S.md)
|
@@ -778,6 +762,7 @@ Class | Method | HTTP request | Description
|
|
778
762
|
- [NotificationChannelEmailConfig](docs/NotificationChannelEmailConfig.md)
|
779
763
|
- [NotificationChannelSlackConfig](docs/NotificationChannelSlackConfig.md)
|
780
764
|
- [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
|
765
|
+
- [ObjectStorage](docs/ObjectStorage.md)
|
781
766
|
- [OperatorBranch](docs/OperatorBranch.md)
|
782
767
|
- [OperatorId](docs/OperatorId.md)
|
783
768
|
- [OperatorMetrics](docs/OperatorMetrics.md)
|
@@ -805,6 +790,7 @@ Class | Method | HTTP request | Description
|
|
805
790
|
- [OrganizationprojectcollaboratorListResponse](docs/OrganizationprojectcollaboratorListResponse.md)
|
806
791
|
- [OrganizationpublicidentifierResponse](docs/OrganizationpublicidentifierResponse.md)
|
807
792
|
- [OrganizationusagealertListResponse](docs/OrganizationusagealertListResponse.md)
|
793
|
+
- [PCPConfig](docs/PCPConfig.md)
|
808
794
|
- [PageQuery](docs/PageQuery.md)
|
809
795
|
- [PauseSchedule](docs/PauseSchedule.md)
|
810
796
|
- [PermissionLevel](docs/PermissionLevel.md)
|
@@ -889,9 +875,6 @@ Class | Method | HTTP request | Description
|
|
889
875
|
- [SessionCommandFinishOptions](docs/SessionCommandFinishOptions.md)
|
890
876
|
- [SessionCommandId](docs/SessionCommandId.md)
|
891
877
|
- [SessionCommandTypes](docs/SessionCommandTypes.md)
|
892
|
-
- [SessionDescribe](docs/SessionDescribe.md)
|
893
|
-
- [SessionDetails](docs/SessionDetails.md)
|
894
|
-
- [SessionHistoryItem](docs/SessionHistoryItem.md)
|
895
878
|
- [SessionListResponse](docs/SessionListResponse.md)
|
896
879
|
- [SessionResponse](docs/SessionResponse.md)
|
897
880
|
- [SessionSshKey](docs/SessionSshKey.md)
|
@@ -901,9 +884,6 @@ Class | Method | HTTP request | Description
|
|
901
884
|
- [SessionStoppingData](docs/SessionStoppingData.md)
|
902
885
|
- [SessioncommandListResponse](docs/SessioncommandListResponse.md)
|
903
886
|
- [SessioncommandidResponse](docs/SessioncommandidResponse.md)
|
904
|
-
- [SessiondescribeResponse](docs/SessiondescribeResponse.md)
|
905
|
-
- [SessiondetailsResponse](docs/SessiondetailsResponse.md)
|
906
|
-
- [SessionhistoryitemListResponse](docs/SessionhistoryitemListResponse.md)
|
907
887
|
- [SessionsSortField](docs/SessionsSortField.md)
|
908
888
|
- [SessionsshkeyResponse](docs/SessionsshkeyResponse.md)
|
909
889
|
- [ShowOTPSourceReturnApiModel](docs/ShowOTPSourceReturnApiModel.md)
|
@@ -952,8 +932,7 @@ Class | Method | HTTP request | Description
|
|
952
932
|
- [UpdateCloudWithCloudResource](docs/UpdateCloudWithCloudResource.md)
|
953
933
|
- [UpdateCloudWithCloudResourceGCP](docs/UpdateCloudWithCloudResourceGCP.md)
|
954
934
|
- [UpdateClusterDns](docs/UpdateClusterDns.md)
|
955
|
-
- [
|
956
|
-
- [UpdateComputeTemplateConfig](docs/UpdateComputeTemplateConfig.md)
|
935
|
+
- [UpdateJobQueueRequest](docs/UpdateJobQueueRequest.md)
|
957
936
|
- [UpdateMachinePoolRequest](docs/UpdateMachinePoolRequest.md)
|
958
937
|
- [UpdateOrganizationCollaborator](docs/UpdateOrganizationCollaborator.md)
|
959
938
|
- [UpdateProjectCollaborator](docs/UpdateProjectCollaborator.md)
|
@@ -983,7 +962,6 @@ Class | Method | HTTP request | Description
|
|
983
962
|
- [WaitliststatusresponseResponse](docs/WaitliststatusresponseResponse.md)
|
984
963
|
- [WandBRunDetails](docs/WandBRunDetails.md)
|
985
964
|
- [WebTerminal](docs/WebTerminal.md)
|
986
|
-
- [WebterminalListResponse](docs/WebterminalListResponse.md)
|
987
965
|
- [WebterminalResponse](docs/WebterminalResponse.md)
|
988
966
|
- [WorkerNodeType](docs/WorkerNodeType.md)
|
989
967
|
- [WorkloadInfo](docs/WorkloadInfo.md)
|
@@ -998,12 +976,14 @@ Class | Method | HTTP request | Description
|
|
998
976
|
- [WorkspaceSnapshotStates](docs/WorkspaceSnapshotStates.md)
|
999
977
|
- [WorkspaceTemplate](docs/WorkspaceTemplate.md)
|
1000
978
|
- [WorkspaceTemplateClusterEnvironmentMetadata](docs/WorkspaceTemplateClusterEnvironmentMetadata.md)
|
979
|
+
- [WorkspaceTemplateReadme](docs/WorkspaceTemplateReadme.md)
|
1001
980
|
- [WorkspacedataplaneartifactsResponse](docs/WorkspacedataplaneartifactsResponse.md)
|
1002
981
|
- [WorkspacedataplaneproxiedartifactsResponse](docs/WorkspacedataplaneproxiedartifactsResponse.md)
|
1003
982
|
- [WorkspaceeventListResponse](docs/WorkspaceeventListResponse.md)
|
1004
983
|
- [WorkspacereadmeResponse](docs/WorkspacereadmeResponse.md)
|
1005
984
|
- [WorkspacetemplateListResponse](docs/WorkspacetemplateListResponse.md)
|
1006
985
|
- [WorkspacetemplateclusterenvironmentmetadataResponse](docs/WorkspacetemplateclusterenvironmentmetadataResponse.md)
|
986
|
+
- [WorkspacetemplatereadmeResponse](docs/WorkspacetemplatereadmeResponse.md)
|
1007
987
|
- [WriteCloud](docs/WriteCloud.md)
|
1008
988
|
- [WriteClusterConfig](docs/WriteClusterConfig.md)
|
1009
989
|
- [WriteProject](docs/WriteProject.md)
|
@@ -28,6 +28,7 @@ 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_config import AWSConfig
|
31
32
|
from openapi_client.models.aws_memory_db_cluster_config import AWSMemoryDBClusterConfig
|
32
33
|
from openapi_client.models.access_config import AccessConfig
|
33
34
|
from openapi_client.models.actor_status import ActorStatus
|
@@ -57,8 +58,6 @@ from openapi_client.models.application_type import ApplicationType
|
|
57
58
|
from openapi_client.models.applied_snapshot import AppliedSnapshot
|
58
59
|
from openapi_client.models.apply_production_service_v2_model import ApplyProductionServiceV2Model
|
59
60
|
from openapi_client.models.archive_status import ArchiveStatus
|
60
|
-
from openapi_client.models.archived_logs_info import ArchivedLogsInfo
|
61
|
-
from openapi_client.models.archivedlogsinfo_response import ArchivedlogsinfoResponse
|
62
61
|
from openapi_client.models.attach_machine_pool_to_cloud_request import AttachMachinePoolToCloudRequest
|
63
62
|
from openapi_client.models.attachmachinepooltocloudresponse_response import AttachmachinepooltocloudresponseResponse
|
64
63
|
from openapi_client.models.aws_region_and_zones import AwsRegionAndZones
|
@@ -104,6 +103,7 @@ from openapi_client.models.cloud_data_bucket_presigned_url_request import CloudD
|
|
104
103
|
from openapi_client.models.cloud_data_bucket_presigned_url_response import CloudDataBucketPresignedUrlResponse
|
105
104
|
from openapi_client.models.cloud_data_bucket_presigned_url_scheme import CloudDataBucketPresignedUrlScheme
|
106
105
|
from openapi_client.models.cloud_data_bucket_request_scope import CloudDataBucketRequestScope
|
106
|
+
from openapi_client.models.cloud_deployment import CloudDeployment
|
107
107
|
from openapi_client.models.cloud_deployment_config import CloudDeploymentConfig
|
108
108
|
from openapi_client.models.cloud_hosting_type import CloudHostingType
|
109
109
|
from openapi_client.models.cloud_list_response import CloudListResponse
|
@@ -129,6 +129,7 @@ from openapi_client.models.cloud_with_cloud_resource_gcp import CloudWithCloudRe
|
|
129
129
|
from openapi_client.models.cloudcollaborator_list_response import CloudcollaboratorListResponse
|
130
130
|
from openapi_client.models.clouddatabucketpresigneduploadinfo_response import ClouddatabucketpresigneduploadinfoResponse
|
131
131
|
from openapi_client.models.clouddatabucketpresignedurlresponse_response import ClouddatabucketpresignedurlresponseResponse
|
132
|
+
from openapi_client.models.clouddeployment_list_response import ClouddeploymentListResponse
|
132
133
|
from openapi_client.models.clouddeploymentconfig_response import ClouddeploymentconfigResponse
|
133
134
|
from openapi_client.models.cloudoverviewdashboard_response import CloudoverviewdashboardResponse
|
134
135
|
from openapi_client.models.cloudregionandzones_response import CloudregionandzonesResponse
|
@@ -173,7 +174,6 @@ from openapi_client.models.create_compute_template import CreateComputeTemplate
|
|
173
174
|
from openapi_client.models.create_compute_template_config import CreateComputeTemplateConfig
|
174
175
|
from openapi_client.models.create_dataset import CreateDataset
|
175
176
|
from openapi_client.models.create_experimental_workspace import CreateExperimentalWorkspace
|
176
|
-
from openapi_client.models.create_experimental_workspace_from_job import CreateExperimentalWorkspaceFromJob
|
177
177
|
from openapi_client.models.create_instance_usage_budget import CreateInstanceUsageBudget
|
178
178
|
from openapi_client.models.create_internal_production_job import CreateInternalProductionJob
|
179
179
|
from openapi_client.models.create_job_queue_config import CreateJobQueueConfig
|
@@ -191,9 +191,6 @@ from openapi_client.models.create_production_job_config import CreateProductionJ
|
|
191
191
|
from openapi_client.models.create_resource_notification import CreateResourceNotification
|
192
192
|
from openapi_client.models.create_resource_quota import CreateResourceQuota
|
193
193
|
from openapi_client.models.create_schedule import CreateSchedule
|
194
|
-
from openapi_client.models.create_session_from_snapshot_options import CreateSessionFromSnapshotOptions
|
195
|
-
from openapi_client.models.create_session_in_db import CreateSessionInDb
|
196
|
-
from openapi_client.models.create_session_response import CreateSessionResponse
|
197
194
|
from openapi_client.models.create_user import CreateUser
|
198
195
|
from openapi_client.models.create_user_project_collaborator import CreateUserProjectCollaborator
|
199
196
|
from openapi_client.models.create_user_project_collaborator_value import CreateUserProjectCollaboratorValue
|
@@ -203,7 +200,6 @@ from openapi_client.models.createcomputetemplateconfig_response import Createcom
|
|
203
200
|
from openapi_client.models.createmachinepoolresponse_response import CreatemachinepoolresponseResponse
|
204
201
|
from openapi_client.models.createmachineresponse_response import CreatemachineresponseResponse
|
205
202
|
from openapi_client.models.createotpreturnapimodel_response import CreateotpreturnapimodelResponse
|
206
|
-
from openapi_client.models.createsessionresponse_response import CreatesessionresponseResponse
|
207
203
|
from openapi_client.models.credit_card_information import CreditCardInformation
|
208
204
|
from openapi_client.models.customer_alert_status import CustomerAlertStatus
|
209
205
|
from openapi_client.models.dataplane_services import DataplaneServices
|
@@ -285,16 +281,15 @@ from openapi_client.models.experimental_workspace import ExperimentalWorkspace
|
|
285
281
|
from openapi_client.models.experimental_workspaces_sort_field import ExperimentalWorkspacesSortField
|
286
282
|
from openapi_client.models.experimentalworkspace_list_response import ExperimentalworkspaceListResponse
|
287
283
|
from openapi_client.models.experimentalworkspace_response import ExperimentalworkspaceResponse
|
288
|
-
from openapi_client.models.external_service_status import ExternalServiceStatus
|
289
|
-
from openapi_client.models.external_service_status_response import ExternalServiceStatusResponse
|
290
284
|
from openapi_client.models.external_terminal_command import ExternalTerminalCommand
|
291
|
-
from openapi_client.models.externalservicestatusresponse_response import ExternalservicestatusresponseResponse
|
292
285
|
from openapi_client.models.feature_flag_response import FeatureFlagResponse
|
293
286
|
from openapi_client.models.featureflagresponse_response import FeatureflagresponseResponse
|
287
|
+
from openapi_client.models.file_storage import FileStorage
|
294
288
|
from openapi_client.models.fine_tune_type import FineTuneType
|
295
289
|
from openapi_client.models.fine_tuned_model import FineTunedModel
|
296
290
|
from openapi_client.models.finetunedmodel_list_response import FinetunedmodelListResponse
|
297
291
|
from openapi_client.models.finetunedmodel_response import FinetunedmodelResponse
|
292
|
+
from openapi_client.models.gcp_config import GCPConfig
|
298
293
|
from openapi_client.models.gcp_file_store_config import GCPFileStoreConfig
|
299
294
|
from openapi_client.models.gcp_memorystore_instance_config import GCPMemorystoreInstanceConfig
|
300
295
|
from openapi_client.models.grafana_dashboard import GrafanaDashboard
|
@@ -329,6 +324,8 @@ from openapi_client.models.job_details import JobDetails
|
|
329
324
|
from openapi_client.models.job_queue import JobQueue
|
330
325
|
from openapi_client.models.job_queue_config import JobQueueConfig
|
331
326
|
from openapi_client.models.job_queue_execution_mode import JobQueueExecutionMode
|
327
|
+
from openapi_client.models.job_queue_sort_directive import JobQueueSortDirective
|
328
|
+
from openapi_client.models.job_queue_sort_field import JobQueueSortField
|
332
329
|
from openapi_client.models.job_queue_spec import JobQueueSpec
|
333
330
|
from openapi_client.models.job_queue_state import JobQueueState
|
334
331
|
from openapi_client.models.job_queues_query import JobQueuesQuery
|
@@ -340,6 +337,7 @@ from openapi_client.models.jobqueue_response import JobqueueResponse
|
|
340
337
|
from openapi_client.models.jobs_sort_field import JobsSortField
|
341
338
|
from openapi_client.models.jobwithreport_list_response import JobwithreportListResponse
|
342
339
|
from openapi_client.models.json_patch_operation import JsonPatchOperation
|
340
|
+
from openapi_client.models.kubernetes_config import KubernetesConfig
|
343
341
|
from openapi_client.models.kubernetes_manager_registration_request import KubernetesManagerRegistrationRequest
|
344
342
|
from openapi_client.models.kubernetes_manager_registration_response import KubernetesManagerRegistrationResponse
|
345
343
|
from openapi_client.models.kubernetesmanagerregistrationresponse_response import KubernetesmanagerregistrationresponseResponse
|
@@ -397,8 +395,8 @@ from openapi_client.models.mini_user import MiniUser
|
|
397
395
|
from openapi_client.models.minibuild_list_response import MinibuildListResponse
|
398
396
|
from openapi_client.models.minicomputetemplate_list_response import MinicomputetemplateListResponse
|
399
397
|
from openapi_client.models.miniproject_list_response import MiniprojectListResponse
|
400
|
-
from openapi_client.models.monitor_logs_extension import MonitorLogsExtension
|
401
398
|
from openapi_client.models.nfs_mount_target import NFSMountTarget
|
399
|
+
from openapi_client.models.networking_mode import NetworkingMode
|
402
400
|
from openapi_client.models.node_registration_aws import NodeRegistrationAWS
|
403
401
|
from openapi_client.models.node_registration_gcp import NodeRegistrationGCP
|
404
402
|
from openapi_client.models.node_registration_k8_s import NodeRegistrationK8S
|
@@ -408,6 +406,7 @@ from openapi_client.models.node_type import NodeType
|
|
408
406
|
from openapi_client.models.notification_channel_email_config import NotificationChannelEmailConfig
|
409
407
|
from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
|
410
408
|
from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
|
409
|
+
from openapi_client.models.object_storage import ObjectStorage
|
411
410
|
from openapi_client.models.operator_branch import OperatorBranch
|
412
411
|
from openapi_client.models.operator_id import OperatorId
|
413
412
|
from openapi_client.models.operator_metrics import OperatorMetrics
|
@@ -435,6 +434,7 @@ from openapi_client.models.organizationinvitationbase_response import Organizati
|
|
435
434
|
from openapi_client.models.organizationprojectcollaborator_list_response import OrganizationprojectcollaboratorListResponse
|
436
435
|
from openapi_client.models.organizationpublicidentifier_response import OrganizationpublicidentifierResponse
|
437
436
|
from openapi_client.models.organizationusagealert_list_response import OrganizationusagealertListResponse
|
437
|
+
from openapi_client.models.pcp_config import PCPConfig
|
438
438
|
from openapi_client.models.page_query import PageQuery
|
439
439
|
from openapi_client.models.pause_schedule import PauseSchedule
|
440
440
|
from openapi_client.models.permission_level import PermissionLevel
|
@@ -519,9 +519,6 @@ from openapi_client.models.session_command import SessionCommand
|
|
519
519
|
from openapi_client.models.session_command_finish_options import SessionCommandFinishOptions
|
520
520
|
from openapi_client.models.session_command_id import SessionCommandId
|
521
521
|
from openapi_client.models.session_command_types import SessionCommandTypes
|
522
|
-
from openapi_client.models.session_describe import SessionDescribe
|
523
|
-
from openapi_client.models.session_details import SessionDetails
|
524
|
-
from openapi_client.models.session_history_item import SessionHistoryItem
|
525
522
|
from openapi_client.models.session_list_response import SessionListResponse
|
526
523
|
from openapi_client.models.session_response import SessionResponse
|
527
524
|
from openapi_client.models.session_ssh_key import SessionSshKey
|
@@ -531,9 +528,6 @@ from openapi_client.models.session_state_data import SessionStateData
|
|
531
528
|
from openapi_client.models.session_stopping_data import SessionStoppingData
|
532
529
|
from openapi_client.models.sessioncommand_list_response import SessioncommandListResponse
|
533
530
|
from openapi_client.models.sessioncommandid_response import SessioncommandidResponse
|
534
|
-
from openapi_client.models.sessiondescribe_response import SessiondescribeResponse
|
535
|
-
from openapi_client.models.sessiondetails_response import SessiondetailsResponse
|
536
|
-
from openapi_client.models.sessionhistoryitem_list_response import SessionhistoryitemListResponse
|
537
531
|
from openapi_client.models.sessions_sort_field import SessionsSortField
|
538
532
|
from openapi_client.models.sessionsshkey_response import SessionsshkeyResponse
|
539
533
|
from openapi_client.models.show_otp_source_return_api_model import ShowOTPSourceReturnApiModel
|
@@ -582,8 +576,7 @@ from openapi_client.models.update_cloud_collaborator import UpdateCloudCollabora
|
|
582
576
|
from openapi_client.models.update_cloud_with_cloud_resource import UpdateCloudWithCloudResource
|
583
577
|
from openapi_client.models.update_cloud_with_cloud_resource_gcp import UpdateCloudWithCloudResourceGCP
|
584
578
|
from openapi_client.models.update_cluster_dns import UpdateClusterDns
|
585
|
-
from openapi_client.models.
|
586
|
-
from openapi_client.models.update_compute_template_config import UpdateComputeTemplateConfig
|
579
|
+
from openapi_client.models.update_job_queue_request import UpdateJobQueueRequest
|
587
580
|
from openapi_client.models.update_machine_pool_request import UpdateMachinePoolRequest
|
588
581
|
from openapi_client.models.update_organization_collaborator import UpdateOrganizationCollaborator
|
589
582
|
from openapi_client.models.update_project_collaborator import UpdateProjectCollaborator
|
@@ -613,7 +606,6 @@ from openapi_client.models.waitlist_status_type import WaitlistStatusType
|
|
613
606
|
from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
|
614
607
|
from openapi_client.models.wand_b_run_details import WandBRunDetails
|
615
608
|
from openapi_client.models.web_terminal import WebTerminal
|
616
|
-
from openapi_client.models.webterminal_list_response import WebterminalListResponse
|
617
609
|
from openapi_client.models.webterminal_response import WebterminalResponse
|
618
610
|
from openapi_client.models.worker_node_type import WorkerNodeType
|
619
611
|
from openapi_client.models.workload_info import WorkloadInfo
|
@@ -628,12 +620,14 @@ from openapi_client.models.workspace_readme import WorkspaceReadme
|
|
628
620
|
from openapi_client.models.workspace_snapshot_states import WorkspaceSnapshotStates
|
629
621
|
from openapi_client.models.workspace_template import WorkspaceTemplate
|
630
622
|
from openapi_client.models.workspace_template_cluster_environment_metadata import WorkspaceTemplateClusterEnvironmentMetadata
|
623
|
+
from openapi_client.models.workspace_template_readme import WorkspaceTemplateReadme
|
631
624
|
from openapi_client.models.workspacedataplaneartifacts_response import WorkspacedataplaneartifactsResponse
|
632
625
|
from openapi_client.models.workspacedataplaneproxiedartifacts_response import WorkspacedataplaneproxiedartifactsResponse
|
633
626
|
from openapi_client.models.workspaceevent_list_response import WorkspaceeventListResponse
|
634
627
|
from openapi_client.models.workspacereadme_response import WorkspacereadmeResponse
|
635
628
|
from openapi_client.models.workspacetemplate_list_response import WorkspacetemplateListResponse
|
636
629
|
from openapi_client.models.workspacetemplateclusterenvironmentmetadata_response import WorkspacetemplateclusterenvironmentmetadataResponse
|
630
|
+
from openapi_client.models.workspacetemplatereadme_response import WorkspacetemplatereadmeResponse
|
637
631
|
from openapi_client.models.write_cloud import WriteCloud
|
638
632
|
from openapi_client.models.write_cluster_config import WriteClusterConfig
|
639
633
|
from openapi_client.models.write_project import WriteProject
|