anyscale 0.26.0__py3-none-any.whl → 0.26.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. anyscale/_private/anyscale_client/anyscale_client.py +13 -1
  2. anyscale/_private/anyscale_client/common.py +1 -1
  3. anyscale/_private/docgen/models.md +2 -2
  4. anyscale/client/README.md +21 -10
  5. anyscale/client/openapi_client/__init__.py +15 -6
  6. anyscale/client/openapi_client/api/default_api.py +322 -83
  7. anyscale/client/openapi_client/models/__init__.py +15 -6
  8. anyscale/client/openapi_client/models/{customer_billing_type.py → actor_status.py} +7 -8
  9. anyscale/client/openapi_client/models/aggregated_instance_usage_csv.py +81 -3
  10. anyscale/client/openapi_client/models/baseimagesenum.py +59 -1
  11. anyscale/client/openapi_client/models/create_organization_configuration.py +3 -3
  12. anyscale/client/openapi_client/models/{create_resource_alert.py → create_resource_notification.py} +40 -40
  13. anyscale/client/openapi_client/models/job_details.py +173 -0
  14. anyscale/client/openapi_client/models/{list_resource_alerts_query.py → list_resource_notifications_query.py} +24 -24
  15. anyscale/client/openapi_client/models/machine_launch_failure.py +152 -0
  16. anyscale/client/openapi_client/models/organization_configuration.py +3 -3
  17. anyscale/client/openapi_client/models/organization_configuration_response.py +3 -3
  18. anyscale/client/openapi_client/models/resource_alert_event_type.py +5 -1
  19. anyscale/client/openapi_client/models/{resource_alert.py → resource_notification.py} +64 -64
  20. anyscale/client/openapi_client/models/resourcenotification_list_response.py +147 -0
  21. anyscale/client/openapi_client/models/{resourcealert_response.py → resourcenotification_response.py} +11 -11
  22. anyscale/client/openapi_client/models/run_attempt_status.py +103 -0
  23. anyscale/client/openapi_client/models/run_status.py +106 -0
  24. anyscale/client/openapi_client/models/scheduler_info.py +32 -3
  25. anyscale/client/openapi_client/models/supportedbaseimagesenum.py +59 -1
  26. anyscale/client/openapi_client/models/tool.py +2 -1
  27. anyscale/client/openapi_client/models/train_resources.py +121 -0
  28. anyscale/client/openapi_client/models/train_run.py +387 -0
  29. anyscale/client/openapi_client/models/train_run_attempt.py +308 -0
  30. anyscale/client/openapi_client/models/train_worker.py +363 -0
  31. anyscale/client/openapi_client/models/{resourcealert_list_response.py → trainrun_list_response.py} +15 -15
  32. anyscale/client/openapi_client/models/workspace_dataplane_proxied_artifacts.py +31 -3
  33. anyscale/commands/machine_pool_commands.py +15 -10
  34. anyscale/resource_quota/commands.py +1 -2
  35. anyscale/sdk/anyscale_client/models/baseimagesenum.py +59 -1
  36. anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +59 -1
  37. anyscale/service/_private/service_sdk.py +2 -3
  38. anyscale/shared_anyscale_utils/constants.py +3 -0
  39. anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
  40. anyscale/version.py +1 -1
  41. {anyscale-0.26.0.dist-info → anyscale-0.26.2.dist-info}/METADATA +1 -1
  42. {anyscale-0.26.0.dist-info → anyscale-0.26.2.dist-info}/RECORD +47 -37
  43. {anyscale-0.26.0.dist-info → anyscale-0.26.2.dist-info}/LICENSE +0 -0
  44. {anyscale-0.26.0.dist-info → anyscale-0.26.2.dist-info}/NOTICE +0 -0
  45. {anyscale-0.26.0.dist-info → anyscale-0.26.2.dist-info}/WHEEL +0 -0
  46. {anyscale-0.26.0.dist-info → anyscale-0.26.2.dist-info}/entry_points.txt +0 -0
  47. {anyscale-0.26.0.dist-info → anyscale-0.26.2.dist-info}/top_level.txt +0 -0
anyscale/client/README.md CHANGED
@@ -134,7 +134,7 @@ Class | Method | HTTP request | Description
134
134
  *DefaultApi* | [**create_organization_collaborator_api_v2_projects_project_id_collaborators_organization_post**](docs/DefaultApi.md#create_organization_collaborator_api_v2_projects_project_id_collaborators_organization_post) | **POST** /api/v2/projects/{project_id}/collaborators/organization | Create Organization Collaborator
135
135
  *DefaultApi* | [**create_project_api_v2_projects_post**](docs/DefaultApi.md#create_project_api_v2_projects_post) | **POST** /api/v2/projects/ | Create Project
136
136
  *DefaultApi* | [**create_project_collaborator_api_v2_projects_project_id_collaborators_users_post**](docs/DefaultApi.md#create_project_collaborator_api_v2_projects_project_id_collaborators_users_post) | **POST** /api/v2/projects/{project_id}/collaborators/users | Create Project Collaborator
137
- *DefaultApi* | [**create_resource_alert_api_v2_resource_alerts_post**](docs/DefaultApi.md#create_resource_alert_api_v2_resource_alerts_post) | **POST** /api/v2/resource_alerts/ | Create Resource Alert
137
+ *DefaultApi* | [**create_resource_notification_api_v2_resource_notifications_post**](docs/DefaultApi.md#create_resource_notification_api_v2_resource_notifications_post) | **POST** /api/v2/resource_notifications/ | Create Resource Notification
138
138
  *DefaultApi* | [**create_resource_quota_api_v2_resource_quotas_post**](docs/DefaultApi.md#create_resource_quota_api_v2_resource_quotas_post) | **POST** /api/v2/resource_quotas/ | Create Resource Quota
139
139
  *DefaultApi* | [**create_service_account_api_v2_users_service_accounts_post**](docs/DefaultApi.md#create_service_account_api_v2_users_service_accounts_post) | **POST** /api/v2/users/service_accounts | Create Service Account
140
140
  *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
@@ -153,7 +153,7 @@ Class | Method | HTTP request | Description
153
153
  *DefaultApi* | [**delete_model_api_v2_llm_models_model_id_delete**](docs/DefaultApi.md#delete_model_api_v2_llm_models_model_id_delete) | **DELETE** /api/v2/llm/models/{model_id} | Delete Model
154
154
  *DefaultApi* | [**delete_project_api_v2_projects_project_id_delete**](docs/DefaultApi.md#delete_project_api_v2_projects_project_id_delete) | **DELETE** /api/v2/projects/{project_id} | Delete Project
155
155
  *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
- *DefaultApi* | [**delete_resource_alert_api_v2_resource_alerts_resource_alert_id_delete**](docs/DefaultApi.md#delete_resource_alert_api_v2_resource_alerts_resource_alert_id_delete) | **DELETE** /api/v2/resource_alerts/{resource_alert_id} | Delete Resource Alert
156
+ *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
157
  *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
158
158
  *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
159
  *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
@@ -264,7 +264,7 @@ Class | Method | HTTP request | Description
264
264
  *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
265
265
  *DefaultApi* | [**get_regions_and_zones_api_v2_aws_info_regions_and_zones_get**](docs/DefaultApi.md#get_regions_and_zones_api_v2_aws_info_regions_and_zones_get) | **GET** /api/v2/aws_info/regions_and_zones | Get Regions And Zones
266
266
  *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
267
- *DefaultApi* | [**get_resource_alert_api_v2_resource_alerts_resource_alert_id_get**](docs/DefaultApi.md#get_resource_alert_api_v2_resource_alerts_resource_alert_id_get) | **GET** /api/v2/resource_alerts/{resource_alert_id} | Get Resource Alert
267
+ *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
268
268
  *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
269
269
  *DefaultApi* | [**get_runtime_env_logs_api_v2_sessions_session_id_runtime_env_logs_get**](docs/DefaultApi.md#get_runtime_env_logs_api_v2_sessions_session_id_runtime_env_logs_get) | **GET** /api/v2/sessions/{session_id}/runtime_env_logs | Get Runtime Env Logs
270
270
  *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
@@ -291,6 +291,7 @@ Class | Method | HTTP request | Description
291
291
  *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
292
  *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
293
  *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
294
+ *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
294
295
  *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
295
296
  *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
296
297
  *DefaultApi* | [**get_workspace_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_dataplane_artifacts_get**](docs/DefaultApi.md#get_workspace_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_dataplane_artifacts_get) | **GET** /api/v2/experimental_workspaces/{workspace_id}/dataplane_artifacts | Get Workspace Dataplane Artifacts
@@ -383,7 +384,7 @@ Class | Method | HTTP request | Description
383
384
  *DefaultApi* | [**search_cluster_environments_api_v2_application_templates_search_post**](docs/DefaultApi.md#search_cluster_environments_api_v2_application_templates_search_post) | **POST** /api/v2/application_templates/search | Search Cluster Environments
384
385
  *DefaultApi* | [**search_compute_templates_api_v2_compute_templates_search_post**](docs/DefaultApi.md#search_compute_templates_api_v2_compute_templates_search_post) | **POST** /api/v2/compute_templates/search | Search Compute Templates
385
386
  *DefaultApi* | [**search_invoices_api_v2_organization_billing_invoices_post**](docs/DefaultApi.md#search_invoices_api_v2_organization_billing_invoices_post) | **POST** /api/v2/organization_billing/invoices | Search Invoices
386
- *DefaultApi* | [**search_resource_alerts_api_v2_resource_alerts_search_post**](docs/DefaultApi.md#search_resource_alerts_api_v2_resource_alerts_search_post) | **POST** /api/v2/resource_alerts/search | Search Resource Alerts
387
+ *DefaultApi* | [**search_resource_notifications_api_v2_resource_notifications_search_post**](docs/DefaultApi.md#search_resource_notifications_api_v2_resource_notifications_search_post) | **POST** /api/v2/resource_notifications/search | Search Resource Notifications
387
388
  *DefaultApi* | [**search_resource_quotas_api_v2_resource_quotas_search_post**](docs/DefaultApi.md#search_resource_quotas_api_v2_resource_quotas_search_post) | **POST** /api/v2/resource_quotas/search | Search Resource Quotas
388
389
  *DefaultApi* | [**search_support_requests_api_v2_support_requests_search_post**](docs/DefaultApi.md#search_support_requests_api_v2_support_requests_search_post) | **POST** /api/v2/support_requests/search | Search Support Requests
389
390
  *DefaultApi* | [**search_user_cards_api_v2_onboarding_cards_search_post**](docs/DefaultApi.md#search_user_cards_api_v2_onboarding_cards_search_post) | **POST** /api/v2/onboarding_cards/search | Search User Cards
@@ -417,6 +418,7 @@ Class | Method | HTTP request | Description
417
418
  *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
418
419
  *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
419
420
  *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
421
+ *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
420
422
  *DefaultApi* | [**update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch**](docs/DefaultApi.md#update_resource_quota_api_v2_resource_quotas_resource_quota_id_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id} | Update Resource Quota
421
423
  *DefaultApi* | [**upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post**](docs/DefaultApi.md#upload_session_command_logs_api_v2_session_commands_session_command_id_upload_logs_post) | **POST** /api/v2/session_commands/{session_command_id}/upload_logs | Upload Session Command Logs
422
424
  *DefaultApi* | [**upsert_billing_version_api_v2_organization_billing_billing_versions_put**](docs/DefaultApi.md#upsert_billing_version_api_v2_organization_billing_billing_versions_put) | **PUT** /api/v2/organization_billing/billing_versions | Upsert Billing Version
@@ -436,6 +438,7 @@ Class | Method | HTTP request | Description
436
438
  - [AWSCredentials](docs/AWSCredentials.md)
437
439
  - [AWSMemoryDBClusterConfig](docs/AWSMemoryDBClusterConfig.md)
438
440
  - [AccessConfig](docs/AccessConfig.md)
441
+ - [ActorStatus](docs/ActorStatus.md)
439
442
  - [AdminCreateUser](docs/AdminCreateUser.md)
440
443
  - [AdminCreatedUser](docs/AdminCreatedUser.md)
441
444
  - [AdmincreateduserListResponse](docs/AdmincreateduserListResponse.md)
@@ -621,7 +624,7 @@ Class | Method | HTTP request | Description
621
624
  - [CreateOrganizationConfiguration](docs/CreateOrganizationConfiguration.md)
622
625
  - [CreateOrganizationInvitation](docs/CreateOrganizationInvitation.md)
623
626
  - [CreateProductionJobConfig](docs/CreateProductionJobConfig.md)
624
- - [CreateResourceAlert](docs/CreateResourceAlert.md)
627
+ - [CreateResourceNotification](docs/CreateResourceNotification.md)
625
628
  - [CreateResourceQuota](docs/CreateResourceQuota.md)
626
629
  - [CreateSchedule](docs/CreateSchedule.md)
627
630
  - [CreateSessionFromSnapshotOptions](docs/CreateSessionFromSnapshotOptions.md)
@@ -639,7 +642,6 @@ Class | Method | HTTP request | Description
639
642
  - [CreatesessionresponseResponse](docs/CreatesessionresponseResponse.md)
640
643
  - [CreditCardInformation](docs/CreditCardInformation.md)
641
644
  - [CustomerAlertStatus](docs/CustomerAlertStatus.md)
642
- - [CustomerBillingType](docs/CustomerBillingType.md)
643
645
  - [DataplaneServices](docs/DataplaneServices.md)
644
646
  - [Dataset](docs/Dataset.md)
645
647
  - [DatasetListResponse](docs/DatasetListResponse.md)
@@ -765,6 +767,7 @@ Class | Method | HTTP request | Description
765
767
  - [InvoiceStatus](docs/InvoiceStatus.md)
766
768
  - [InvoicesQuery](docs/InvoicesQuery.md)
767
769
  - [JobAccess](docs/JobAccess.md)
770
+ - [JobDetails](docs/JobDetails.md)
768
771
  - [JobQueue](docs/JobQueue.md)
769
772
  - [JobQueueConfig](docs/JobQueueConfig.md)
770
773
  - [JobQueueExecutionMode](docs/JobQueueExecutionMode.md)
@@ -789,7 +792,7 @@ Class | Method | HTTP request | Description
789
792
  - [LbresourceResponse](docs/LbresourceResponse.md)
790
793
  - [ListMachinePoolsResponse](docs/ListMachinePoolsResponse.md)
791
794
  - [ListMachinesResponse](docs/ListMachinesResponse.md)
792
- - [ListResourceAlertsQuery](docs/ListResourceAlertsQuery.md)
795
+ - [ListResourceNotificationsQuery](docs/ListResourceNotificationsQuery.md)
793
796
  - [ListResourceQuotasQuery](docs/ListResourceQuotasQuery.md)
794
797
  - [ListResponseMetadata](docs/ListResponseMetadata.md)
795
798
  - [ListmachinepoolsresponseResponse](docs/ListmachinepoolsresponseResponse.md)
@@ -816,6 +819,7 @@ Class | Method | HTTP request | Description
816
819
  - [MachineAllocationState](docs/MachineAllocationState.md)
817
820
  - [MachineConnectionState](docs/MachineConnectionState.md)
818
821
  - [MachineInfo](docs/MachineInfo.md)
822
+ - [MachineLaunchFailure](docs/MachineLaunchFailure.md)
819
823
  - [MachinePool](docs/MachinePool.md)
820
824
  - [MachineStateInfo](docs/MachineStateInfo.md)
821
825
  - [MetronomeCustomerInfoModel](docs/MetronomeCustomerInfoModel.md)
@@ -925,17 +929,19 @@ Class | Method | HTTP request | Description
925
929
  - [RequestemailmagiclinkresponseResponse](docs/RequestemailmagiclinkresponseResponse.md)
926
930
  - [RequestotpreturnapimodelResponse](docs/RequestotpreturnapimodelResponse.md)
927
931
  - [ResetPasswordParams](docs/ResetPasswordParams.md)
928
- - [ResourceAlert](docs/ResourceAlert.md)
929
932
  - [ResourceAlertEventType](docs/ResourceAlertEventType.md)
933
+ - [ResourceNotification](docs/ResourceNotification.md)
930
934
  - [ResourceQuota](docs/ResourceQuota.md)
931
935
  - [ResourceQuotaStatus](docs/ResourceQuotaStatus.md)
932
- - [ResourcealertListResponse](docs/ResourcealertListResponse.md)
933
- - [ResourcealertResponse](docs/ResourcealertResponse.md)
936
+ - [ResourcenotificationListResponse](docs/ResourcenotificationListResponse.md)
937
+ - [ResourcenotificationResponse](docs/ResourcenotificationResponse.md)
934
938
  - [ResourcequotaListResponse](docs/ResourcequotaListResponse.md)
935
939
  - [ResourcequotaResponse](docs/ResourcequotaResponse.md)
936
940
  - [Resources](docs/Resources.md)
937
941
  - [RollbackServiceModel](docs/RollbackServiceModel.md)
938
942
  - [RolloutStrategy](docs/RolloutStrategy.md)
943
+ - [RunAttemptStatus](docs/RunAttemptStatus.md)
944
+ - [RunStatus](docs/RunStatus.md)
939
945
  - [S3DownloadLocation](docs/S3DownloadLocation.md)
940
946
  - [SSOLoginInfo](docs/SSOLoginInfo.md)
941
947
  - [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
@@ -1021,6 +1027,11 @@ Class | Method | HTTP request | Description
1021
1027
  - [TimestampedlogsoutputResponse](docs/TimestampedlogsoutputResponse.md)
1022
1028
  - [Tool](docs/Tool.md)
1023
1029
  - [TracingConfig](docs/TracingConfig.md)
1030
+ - [TrainResources](docs/TrainResources.md)
1031
+ - [TrainRun](docs/TrainRun.md)
1032
+ - [TrainRunAttempt](docs/TrainRunAttempt.md)
1033
+ - [TrainWorker](docs/TrainWorker.md)
1034
+ - [TrainrunListResponse](docs/TrainrunListResponse.md)
1024
1035
  - [TryLoginEmailResponse](docs/TryLoginEmailResponse.md)
1025
1036
  - [TryloginemailresponseResponse](docs/TryloginemailresponseResponse.md)
1026
1037
  - [UXInstance](docs/UXInstance.md)
@@ -31,6 +31,7 @@ from openapi_client.exceptions import ApiException
31
31
  from openapi_client.models.aws_credentials import AWSCredentials
32
32
  from openapi_client.models.aws_memory_db_cluster_config import AWSMemoryDBClusterConfig
33
33
  from openapi_client.models.access_config import AccessConfig
34
+ from openapi_client.models.actor_status import ActorStatus
34
35
  from openapi_client.models.admin_create_user import AdminCreateUser
35
36
  from openapi_client.models.admin_created_user import AdminCreatedUser
36
37
  from openapi_client.models.admincreateduser_list_response import AdmincreateduserListResponse
@@ -216,7 +217,7 @@ from openapi_client.models.create_otp_return_api_model import CreateOTPReturnApi
216
217
  from openapi_client.models.create_organization_configuration import CreateOrganizationConfiguration
217
218
  from openapi_client.models.create_organization_invitation import CreateOrganizationInvitation
218
219
  from openapi_client.models.create_production_job_config import CreateProductionJobConfig
219
- from openapi_client.models.create_resource_alert import CreateResourceAlert
220
+ from openapi_client.models.create_resource_notification import CreateResourceNotification
220
221
  from openapi_client.models.create_resource_quota import CreateResourceQuota
221
222
  from openapi_client.models.create_schedule import CreateSchedule
222
223
  from openapi_client.models.create_session_from_snapshot_options import CreateSessionFromSnapshotOptions
@@ -234,7 +235,6 @@ from openapi_client.models.createotpreturnapimodel_response import Createotpretu
234
235
  from openapi_client.models.createsessionresponse_response import CreatesessionresponseResponse
235
236
  from openapi_client.models.credit_card_information import CreditCardInformation
236
237
  from openapi_client.models.customer_alert_status import CustomerAlertStatus
237
- from openapi_client.models.customer_billing_type import CustomerBillingType
238
238
  from openapi_client.models.dataplane_services import DataplaneServices
239
239
  from openapi_client.models.dataset import Dataset
240
240
  from openapi_client.models.dataset_list_response import DatasetListResponse
@@ -360,6 +360,7 @@ from openapi_client.models.invoice_list_response import InvoiceListResponse
360
360
  from openapi_client.models.invoice_status import InvoiceStatus
361
361
  from openapi_client.models.invoices_query import InvoicesQuery
362
362
  from openapi_client.models.job_access import JobAccess
363
+ from openapi_client.models.job_details import JobDetails
363
364
  from openapi_client.models.job_queue import JobQueue
364
365
  from openapi_client.models.job_queue_config import JobQueueConfig
365
366
  from openapi_client.models.job_queue_execution_mode import JobQueueExecutionMode
@@ -384,7 +385,7 @@ from openapi_client.models.lb_resource import LBResource
384
385
  from openapi_client.models.lbresource_response import LbresourceResponse
385
386
  from openapi_client.models.list_machine_pools_response import ListMachinePoolsResponse
386
387
  from openapi_client.models.list_machines_response import ListMachinesResponse
387
- from openapi_client.models.list_resource_alerts_query import ListResourceAlertsQuery
388
+ from openapi_client.models.list_resource_notifications_query import ListResourceNotificationsQuery
388
389
  from openapi_client.models.list_resource_quotas_query import ListResourceQuotasQuery
389
390
  from openapi_client.models.list_response_metadata import ListResponseMetadata
390
391
  from openapi_client.models.listmachinepoolsresponse_response import ListmachinepoolsresponseResponse
@@ -411,6 +412,7 @@ from openapi_client.models.longrunningworkload_list_response import Longrunningw
411
412
  from openapi_client.models.machine_allocation_state import MachineAllocationState
412
413
  from openapi_client.models.machine_connection_state import MachineConnectionState
413
414
  from openapi_client.models.machine_info import MachineInfo
415
+ from openapi_client.models.machine_launch_failure import MachineLaunchFailure
414
416
  from openapi_client.models.machine_pool import MachinePool
415
417
  from openapi_client.models.machine_state_info import MachineStateInfo
416
418
  from openapi_client.models.metronome_customer_info_model import MetronomeCustomerInfoModel
@@ -520,17 +522,19 @@ from openapi_client.models.request_state_info import RequestStateInfo
520
522
  from openapi_client.models.requestemailmagiclinkresponse_response import RequestemailmagiclinkresponseResponse
521
523
  from openapi_client.models.requestotpreturnapimodel_response import RequestotpreturnapimodelResponse
522
524
  from openapi_client.models.reset_password_params import ResetPasswordParams
523
- from openapi_client.models.resource_alert import ResourceAlert
524
525
  from openapi_client.models.resource_alert_event_type import ResourceAlertEventType
526
+ from openapi_client.models.resource_notification import ResourceNotification
525
527
  from openapi_client.models.resource_quota import ResourceQuota
526
528
  from openapi_client.models.resource_quota_status import ResourceQuotaStatus
527
- from openapi_client.models.resourcealert_list_response import ResourcealertListResponse
528
- from openapi_client.models.resourcealert_response import ResourcealertResponse
529
+ from openapi_client.models.resourcenotification_list_response import ResourcenotificationListResponse
530
+ from openapi_client.models.resourcenotification_response import ResourcenotificationResponse
529
531
  from openapi_client.models.resourcequota_list_response import ResourcequotaListResponse
530
532
  from openapi_client.models.resourcequota_response import ResourcequotaResponse
531
533
  from openapi_client.models.resources import Resources
532
534
  from openapi_client.models.rollback_service_model import RollbackServiceModel
533
535
  from openapi_client.models.rollout_strategy import RolloutStrategy
536
+ from openapi_client.models.run_attempt_status import RunAttemptStatus
537
+ from openapi_client.models.run_status import RunStatus
534
538
  from openapi_client.models.s3_download_location import S3DownloadLocation
535
539
  from openapi_client.models.sso_login_info import SSOLoginInfo
536
540
  from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
@@ -616,6 +620,11 @@ from openapi_client.models.timestamped_logs_output import TimestampedLogsOutput
616
620
  from openapi_client.models.timestampedlogsoutput_response import TimestampedlogsoutputResponse
617
621
  from openapi_client.models.tool import Tool
618
622
  from openapi_client.models.tracing_config import TracingConfig
623
+ from openapi_client.models.train_resources import TrainResources
624
+ from openapi_client.models.train_run import TrainRun
625
+ from openapi_client.models.train_run_attempt import TrainRunAttempt
626
+ from openapi_client.models.train_worker import TrainWorker
627
+ from openapi_client.models.trainrun_list_response import TrainrunListResponse
619
628
  from openapi_client.models.try_login_email_response import TryLoginEmailResponse
620
629
  from openapi_client.models.tryloginemailresponse_response import TryloginemailresponseResponse
621
630
  from openapi_client.models.ux_instance import UXInstance