anyscale 0.24.88__py3-none-any.whl → 0.25.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. anyscale/__init__.py +56 -0
  2. anyscale/_private/anyscale_client/anyscale_client.py +179 -28
  3. anyscale/_private/anyscale_client/common.py +109 -2
  4. anyscale/_private/anyscale_client/fake_anyscale_client.py +239 -1
  5. anyscale/_private/docgen/README.md +1 -1
  6. anyscale/_private/docgen/__main__.py +71 -21
  7. anyscale/_private/docgen/api.md +13 -20
  8. anyscale/_private/docgen/generator.py +3 -2
  9. anyscale/_private/docgen/models.md +4 -49
  10. anyscale/_private/workload/workload_config.py +21 -7
  11. anyscale/aggregated_instance_usage/__init__.py +1 -1
  12. anyscale/aggregated_instance_usage/commands.py +2 -4
  13. anyscale/aggregated_instance_usage/models.py +8 -8
  14. anyscale/client/README.md +25 -22
  15. anyscale/client/openapi_client/__init__.py +16 -14
  16. anyscale/client/openapi_client/api/default_api.py +1139 -959
  17. anyscale/client/openapi_client/models/__init__.py +16 -14
  18. anyscale/client/openapi_client/models/baseimagesenum.py +43 -1
  19. anyscale/client/openapi_client/models/{session_event_types.py → cloud_deployment_config.py} +35 -24
  20. anyscale/client/openapi_client/models/{platformfinetuningjob_response.py → clouddeploymentconfig_response.py} +11 -11
  21. anyscale/client/openapi_client/models/{log_level_types.py → cluster_event_source.py} +12 -7
  22. anyscale/client/openapi_client/models/{company_size.py → cluster_size.py} +10 -10
  23. anyscale/client/openapi_client/models/cluster_status_details.py +2 -1
  24. anyscale/client/openapi_client/models/{sessionevent_list_response.py → clusterevent_list_response.py} +15 -15
  25. anyscale/client/openapi_client/models/create_experimental_workspace.py +29 -1
  26. anyscale/client/openapi_client/models/create_notification_channel_record.py +29 -3
  27. anyscale/client/openapi_client/models/decorated_interactive_session.py +1 -57
  28. anyscale/client/openapi_client/models/decorated_job.py +1 -57
  29. anyscale/client/openapi_client/models/decorated_job_submission.py +1 -29
  30. anyscale/client/openapi_client/models/decorated_production_job.py +1 -29
  31. anyscale/client/openapi_client/models/decorated_session.py +1 -57
  32. anyscale/client/openapi_client/models/decorated_unified_job.py +1 -30
  33. anyscale/client/openapi_client/models/{resubmit_ft_job_request.py → describe_machine_pool_request.py} +21 -20
  34. anyscale/client/openapi_client/models/describe_machine_pool_response.py +123 -0
  35. anyscale/client/openapi_client/models/describemachinepoolresponse_response.py +121 -0
  36. anyscale/client/openapi_client/models/ha_jobs_sort_field.py +1 -2
  37. anyscale/client/openapi_client/models/internal_production_job.py +1 -29
  38. anyscale/client/openapi_client/models/jobs_sort_field.py +1 -2
  39. anyscale/client/openapi_client/models/machine_allocation_state.py +3 -1
  40. anyscale/client/openapi_client/models/machine_state_info.py +326 -0
  41. anyscale/client/openapi_client/models/{fine_tuning_job_status.py → notification_channel_slack_config.py} +34 -16
  42. anyscale/client/openapi_client/models/organization_marketing_questions.py +80 -54
  43. anyscale/client/openapi_client/models/request_state_info.py +210 -0
  44. anyscale/client/openapi_client/models/{platformfinetuningjob_list_response.py → scheduler_info.py} +43 -38
  45. anyscale/client/openapi_client/models/serve_deployment_fast_api_docs_status.py +123 -0
  46. anyscale/client/openapi_client/models/serve_deployment_state.py +2 -1
  47. anyscale/client/openapi_client/models/servedeploymentfastapidocsstatus_response.py +121 -0
  48. anyscale/client/openapi_client/models/sessions_sort_field.py +1 -2
  49. anyscale/client/openapi_client/models/supportedbaseimagesenum.py +43 -1
  50. anyscale/client/openapi_client/models/unified_job_sort_field.py +1 -2
  51. anyscale/client/openapi_client/models/update_cloud_collaborator.py +121 -0
  52. anyscale/client/openapi_client/models/usage_by_cluster.py +28 -1
  53. anyscale/client/openapi_client/models/usage_by_user.py +30 -3
  54. anyscale/client/openapi_client/models/workload_info.py +210 -0
  55. anyscale/cloud/__init__.py +83 -0
  56. anyscale/cloud/_private/cloud_sdk.py +25 -0
  57. anyscale/cloud/commands.py +45 -0
  58. anyscale/cloud/models.py +91 -0
  59. anyscale/cluster_compute.py +1 -1
  60. anyscale/commands/aggregated_instance_usage_commands.py +4 -4
  61. anyscale/commands/cloud_commands.py +87 -14
  62. anyscale/commands/command_examples.py +65 -0
  63. anyscale/commands/job_commands.py +15 -3
  64. anyscale/commands/machine_pool_commands.py +113 -1
  65. anyscale/commands/organization_invitation_commands.py +98 -0
  66. anyscale/commands/project_commands.py +52 -2
  67. anyscale/commands/resource_quota_commands.py +98 -11
  68. anyscale/commands/service_account_commands.py +65 -8
  69. anyscale/commands/service_commands.py +61 -1
  70. anyscale/commands/session_commands_hidden.py +5 -1
  71. anyscale/commands/user_commands.py +1 -1
  72. anyscale/commands/util.py +2 -2
  73. anyscale/commands/workspace_commands.py +1 -1
  74. anyscale/connect.py +1 -1
  75. anyscale/connect_utils/project.py +7 -4
  76. anyscale/controllers/cloud_controller.py +63 -30
  77. anyscale/controllers/cloud_functional_verification_controller.py +1 -1
  78. anyscale/controllers/cluster_controller.py +3 -11
  79. anyscale/controllers/compute_config_controller.py +1 -1
  80. anyscale/controllers/experimental_integrations_controller.py +1 -1
  81. anyscale/controllers/job_controller.py +8 -6
  82. anyscale/controllers/list_controller.py +2 -2
  83. anyscale/controllers/machine_pool_controller.py +12 -1
  84. anyscale/controllers/project_controller.py +4 -3
  85. anyscale/controllers/schedule_controller.py +1 -1
  86. anyscale/controllers/service_controller.py +1 -1
  87. anyscale/controllers/workspace_controller.py +1 -1
  88. anyscale/models/job_model.py +1 -1
  89. anyscale/organization_invitation/__init__.py +61 -0
  90. anyscale/organization_invitation/_private/organization_invitation_sdk.py +24 -0
  91. anyscale/organization_invitation/commands.py +84 -0
  92. anyscale/organization_invitation/models.py +45 -0
  93. anyscale/project/__init__.py +35 -0
  94. anyscale/project/_private/project_sdk.py +27 -0
  95. anyscale/project/commands.py +56 -0
  96. anyscale/project/models.py +91 -0
  97. anyscale/{project.py → project_utils.py} +3 -4
  98. anyscale/resource_quota/__init__.py +99 -0
  99. anyscale/resource_quota/_private/resource_quota_sdk.py +120 -0
  100. anyscale/resource_quota/commands.py +150 -0
  101. anyscale/resource_quota/models.py +303 -0
  102. anyscale/scripts.py +4 -0
  103. anyscale/sdk/anyscale_client/__init__.py +0 -5
  104. anyscale/sdk/anyscale_client/api/default_api.py +119 -150
  105. anyscale/sdk/anyscale_client/models/__init__.py +0 -5
  106. anyscale/sdk/anyscale_client/models/baseimagesenum.py +43 -1
  107. anyscale/sdk/anyscale_client/models/cluster_status_details.py +2 -1
  108. anyscale/sdk/anyscale_client/models/jobs_sort_field.py +1 -2
  109. anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +43 -1
  110. anyscale/sdk/anyscale_client/sdk.py +1 -1
  111. anyscale/service/__init__.py +21 -0
  112. anyscale/service/_private/service_sdk.py +13 -0
  113. anyscale/service/commands.py +35 -0
  114. anyscale/service_account/__init__.py +88 -0
  115. anyscale/service_account/_private/service_account_sdk.py +101 -0
  116. anyscale/service_account/commands.py +147 -0
  117. anyscale/service_account/models.py +66 -0
  118. anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
  119. anyscale/shared_anyscale_utils/utils/id_gen.py +2 -0
  120. anyscale/user/__init__.py +1 -1
  121. anyscale/user/commands.py +1 -1
  122. anyscale/user/models.py +25 -15
  123. anyscale/util.py +23 -0
  124. anyscale/utils/cloud_utils.py +1 -1
  125. anyscale/version.py +1 -1
  126. anyscale/workspace_utils.py +1 -1
  127. {anyscale-0.24.88.dist-info → anyscale-0.25.5.dist-info}/METADATA +1 -5
  128. {anyscale-0.24.88.dist-info → anyscale-0.25.5.dist-info}/RECORD +134 -119
  129. anyscale/client/openapi_client/models/create_fine_tuning_hyperparameters.py +0 -156
  130. anyscale/client/openapi_client/models/create_fine_tuning_job_product_request.py +0 -353
  131. anyscale/client/openapi_client/models/finish_ft_job_request.py +0 -204
  132. anyscale/client/openapi_client/models/platform_fine_tuning_job.py +0 -577
  133. anyscale/client/openapi_client/models/session_event.py +0 -267
  134. anyscale/client/openapi_client/models/session_event_cause.py +0 -150
  135. anyscale/controllers/resource_quota_controller.py +0 -183
  136. anyscale/controllers/service_account_controller.py +0 -168
  137. anyscale/sdk/anyscale_client/models/log_level_types.py +0 -100
  138. anyscale/sdk/anyscale_client/models/session_event.py +0 -267
  139. anyscale/sdk/anyscale_client/models/session_event_cause.py +0 -150
  140. anyscale/sdk/anyscale_client/models/session_event_types.py +0 -111
  141. anyscale/sdk/anyscale_client/models/sessionevent_list_response.py +0 -147
  142. anyscale/utils/imports/azure.py +0 -14
  143. /anyscale/{cloud.py → cloud_utils.py} +0 -0
  144. {anyscale-0.24.88.dist-info → anyscale-0.25.5.dist-info}/LICENSE +0 -0
  145. {anyscale-0.24.88.dist-info → anyscale-0.25.5.dist-info}/NOTICE +0 -0
  146. {anyscale-0.24.88.dist-info → anyscale-0.25.5.dist-info}/WHEEL +0 -0
  147. {anyscale-0.24.88.dist-info → anyscale-0.25.5.dist-info}/entry_points.txt +0 -0
  148. {anyscale-0.24.88.dist-info → anyscale-0.25.5.dist-info}/top_level.txt +0 -0
@@ -93,7 +93,7 @@ class WorkloadConfig(ModelBase):
93
93
  default=None,
94
94
  repr=False,
95
95
  metadata={
96
- "docstring": "A list of pip requirements or a path to a `requirements.txt` file for the workload. When running inside a workspace, this defaults to the workspace-tracked requirements."
96
+ "docstring": "A list of pip requirements or a path to a `requirements.txt` file for the workload. Anyscale installs these dependencies on top of the image. If you run a workload from a workspace, the default is to use the workspace dependencies, but specifying this option overrides them."
97
97
  },
98
98
  )
99
99
 
@@ -117,13 +117,27 @@ class WorkloadConfig(ModelBase):
117
117
  )
118
118
 
119
119
  def _validate_env_vars(self, env_vars: Optional[Dict[str, str]]):
120
- if env_vars is not None and (
121
- not isinstance(env_vars, dict)
122
- or not all(
123
- isinstance(k, str) and isinstance(v, str) for k, v in env_vars.items()
120
+ if env_vars is None:
121
+ return
122
+
123
+ if not isinstance(env_vars, dict):
124
+ raise TypeError(
125
+ "'env_vars' must be a Dict[str, str], "
126
+ f"but got type {type(env_vars)}."
124
127
  )
125
- ):
126
- raise TypeError("'env_vars' must be a Dict[str, str].")
128
+
129
+ for k, v in env_vars.items():
130
+ if not isinstance(k, str):
131
+ raise TypeError(
132
+ "'env_vars' must be a Dict[str, str], "
133
+ f"but got key of type {type(k)}: {k}."
134
+ )
135
+
136
+ if not isinstance(v, str):
137
+ raise TypeError(
138
+ "'env_vars' must be a Dict[str, str], "
139
+ f"but got value of type {type(v)} for key '{k}': {v}."
140
+ )
127
141
 
128
142
  py_modules: Optional[List[str]] = field(
129
143
  default=None,
@@ -31,6 +31,6 @@ class AggregatedInstanceUsageSDK:
31
31
  doc_py_example=_DOWNLOAD_CSV_EXAMPLE, arg_docstrings=_DOWNLOAD_ARG_DOCSTRINGS,
32
32
  )
33
33
  def download_csv(self, filters: DownloadCSVFilters,) -> str: # noqa: F811
34
- """Downloads aggregated instance usage CSV.
34
+ """Download an aggregated instance usage report as a zipped CSV to the provided directory.
35
35
  """
36
36
  return self._private_sdk.download_csv(filters=filters)
@@ -23,9 +23,7 @@ anyscale.aggregated_instance_usage.download_csv(
23
23
  )
24
24
  """
25
25
 
26
- _DOWNLOAD_ARG_DOCSTRINGS = {
27
- "filters": "The filter of the instance usage to be downloaded."
28
- }
26
+ _DOWNLOAD_ARG_DOCSTRINGS = {"filters": "The filter of the instance usage to download."}
29
27
 
30
28
 
31
29
  @sdk_command(
@@ -37,6 +35,6 @@ _DOWNLOAD_ARG_DOCSTRINGS = {
37
35
  def download_csv(
38
36
  filters: DownloadCSVFilters, *, _sdk: PrivateAggregatedInstanceUsageSDK
39
37
  ) -> str:
40
- """Downloads aggregated instance usage CSV.
38
+ """Download an aggregated instance usage report as a zipped CSV to the provided directory.
41
39
  """
42
40
  return _sdk.download_csv(filters)
@@ -15,17 +15,17 @@ import anyscale
15
15
  from anyscale.aggregated_instance_usage.models import DownloadCSVFilters
16
16
 
17
17
  download_csv_filters = DownloadCSVFilters(
18
- # Start date for the usage CSV (inclusive)
18
+ # Start date (inclusive) for the usage CSV.
19
19
  start_date="2024-10-01",
20
- # End date for the usage CSV (inclusive)
20
+ # End date (inclusive) for the usage CSV.
21
21
  end_date="2024-10-31",
22
- # Optional cloud name to filter by
22
+ # Optional cloud name to filter by.
23
23
  cloud="cloud_name",
24
- # Optional project name to filter by
24
+ # Optional project name to filter by.
25
25
  project="project_name",
26
- # Optional directory to save the CSV to
26
+ # Optional directory to save the CSV to.
27
27
  directory="/directory",
28
- # Optional hide progress bar
28
+ # Optional hide progress bar.
29
29
  hide_progress_bar=False,
30
30
  )
31
31
  """
@@ -39,14 +39,14 @@ download_csv_filters = DownloadCSVFilters(
39
39
  raise ValueError("Incorrect date format, should be YYYY-MM-DD")
40
40
 
41
41
  start_date: str = field(
42
- metadata={"docstring": "Start date for the usage CSV (inclusive)."}
42
+ metadata={"docstring": "Start date (inclusive) for the usage CSV."}
43
43
  )
44
44
 
45
45
  def _validate_start_date(self, start_date: str):
46
46
  self._validate_date(start_date)
47
47
 
48
48
  end_date: str = field(
49
- metadata={"docstring": "End date for the usage CSV (inclusive)."}
49
+ metadata={"docstring": "End date (inclusive) for the usage CSV."}
50
50
  )
51
51
 
52
52
  def _validate_end_date(self, end_date: str):
anyscale/client/README.md CHANGED
@@ -78,6 +78,7 @@ Class | Method | HTTP request | Description
78
78
  *DefaultApi* | [**add_to_waitlist_api_v2_aioa_cloud_waitlist_post**](docs/DefaultApi.md#add_to_waitlist_api_v2_aioa_cloud_waitlist_post) | **POST** /api/v2/aioa_cloud_waitlist/ | Add To Waitlist
79
79
  *DefaultApi* | [**admin_batch_create_users_api_v2_users_admin_batch_create_post**](docs/DefaultApi.md#admin_batch_create_users_api_v2_users_admin_batch_create_post) | **POST** /api/v2/users/admin_batch_create | Admin Batch Create Users
80
80
  *DefaultApi* | [**admission_api_v2_kubernetes_manager_admission_cloud_resource_id_post**](docs/DefaultApi.md#admission_api_v2_kubernetes_manager_admission_cloud_resource_id_post) | **POST** /api/v2/kubernetes_manager/admission/{cloud_resource_id} | Admission
81
+ *DefaultApi* | [**alter_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_users_identity_id_put**](docs/DefaultApi.md#alter_cloud_collaborator_api_v2_clouds_cloud_id_collaborators_users_identity_id_put) | **PUT** /api/v2/clouds/{cloud_id}/collaborators/users/{identity_id} | Alter Cloud Collaborator
81
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
82
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
83
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
@@ -86,10 +87,13 @@ Class | Method | HTTP request | Description
86
87
  *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
88
  *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
89
  *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
90
+ *DefaultApi* | [**archive_service_api_v2_services_v2_service_id_archive_post**](docs/DefaultApi.md#archive_service_api_v2_services_v2_service_id_archive_post) | **POST** /api/v2/services-v2/{service_id}/archive | Archive Service
89
91
  *DefaultApi* | [**attach_machine_pool_to_cloud_api_v2_machine_pools_attach_post**](docs/DefaultApi.md#attach_machine_pool_to_cloud_api_v2_machine_pools_attach_post) | **POST** /api/v2/machine_pools/attach | Attach Machine Pool To Cloud
90
92
  *DefaultApi* | [**aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post**](docs/DefaultApi.md#aws_marketplace_registration_api_v2_organization_billing_aws_marketplace_registration_post) | **POST** /api/v2/organization_billing/aws_marketplace_registration | Aws Marketplace Registration
91
93
  *DefaultApi* | [**ban_organization_api_v2_organizations_organization_id_ban_put**](docs/DefaultApi.md#ban_organization_api_v2_organizations_organization_id_ban_put) | **PUT** /api/v2/organizations/{organization_id}/ban | Ban Organization
94
+ *DefaultApi* | [**batch_create_cloud_collaborators_api_v2_clouds_cloud_id_collaborators_users_batch_create_post**](docs/DefaultApi.md#batch_create_cloud_collaborators_api_v2_clouds_cloud_id_collaborators_users_batch_create_post) | **POST** /api/v2/clouds/{cloud_id}/collaborators/users/batch_create | Batch Create Cloud Collaborators
92
95
  *DefaultApi* | [**batch_create_invitations_api_v2_organization_invitations_batch_create_post**](docs/DefaultApi.md#batch_create_invitations_api_v2_organization_invitations_batch_create_post) | **POST** /api/v2/organization_invitations/batch_create | Batch Create Invitations
96
+ *DefaultApi* | [**batch_create_project_collaborators_api_v2_projects_project_id_collaborators_users_batch_create_post**](docs/DefaultApi.md#batch_create_project_collaborators_api_v2_projects_project_id_collaborators_users_batch_create_post) | **POST** /api/v2/projects/{project_id}/collaborators/users/batch_create | Batch Create Project Collaborators
93
97
  *DefaultApi* | [**batch_get_job_api_v2_decorated_ha_jobs_batch_get_post**](docs/DefaultApi.md#batch_get_job_api_v2_decorated_ha_jobs_batch_get_post) | **POST** /api/v2/decorated_ha_jobs/batch_get | Batch Get Job
94
98
  *DefaultApi* | [**begin_cluster_startup_api_v2_cluster_startups_post**](docs/DefaultApi.md#begin_cluster_startup_api_v2_cluster_startups_post) | **POST** /api/v2/cluster_startups/ | Begin Cluster Startup
95
99
  *DefaultApi* | [**change_password_api_v2_users_change_password_post**](docs/DefaultApi.md#change_password_api_v2_users_change_password_post) | **POST** /api/v2/users/change_password | Change Password
@@ -117,7 +121,6 @@ Class | Method | HTTP request | Description
117
121
  *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
118
122
  *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
119
123
  *DefaultApi* | [**create_endpoint_user_for_org_api_v2_organizations_organization_id_create_endpoint_user_post**](docs/DefaultApi.md#create_endpoint_user_for_org_api_v2_organizations_organization_id_create_endpoint_user_post) | **POST** /api/v2/organizations/{organization_id}/create_endpoint_user | Create Endpoint User For Org
120
- *DefaultApi* | [**create_fine_tuning_job_api_v2_fine_tuning_jobs_create_post**](docs/DefaultApi.md#create_fine_tuning_job_api_v2_fine_tuning_jobs_create_post) | **POST** /api/v2/fine_tuning/jobs/create | Create Fine Tuning Job
121
124
  *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
122
125
  *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
123
126
  *DefaultApi* | [**create_job_api_v2_decorated_ha_jobs_create_post**](docs/DefaultApi.md#create_job_api_v2_decorated_ha_jobs_create_post) | **POST** /api/v2/decorated_ha_jobs/create | Create Job
@@ -153,6 +156,7 @@ Class | Method | HTTP request | Description
153
156
  *DefaultApi* | [**delete_session_api_v2_sessions_session_id_delete**](docs/DefaultApi.md#delete_session_api_v2_sessions_session_id_delete) | **DELETE** /api/v2/sessions/{session_id} | Delete Session
154
157
  *DefaultApi* | [**delete_web_terminals_api_v2_sessions_session_id_web_terminals_terminal_id_delete**](docs/DefaultApi.md#delete_web_terminals_api_v2_sessions_session_id_web_terminals_terminal_id_delete) | **DELETE** /api/v2/sessions/{session_id}/web_terminals/{terminal_id} | Delete Web Terminals
155
158
  *DefaultApi* | [**delete_workspace_api_v2_experimental_workspaces_workspace_id_delete**](docs/DefaultApi.md#delete_workspace_api_v2_experimental_workspaces_workspace_id_delete) | **DELETE** /api/v2/experimental_workspaces/{workspace_id} | Delete Workspace
159
+ *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
160
  *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
161
  *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
158
162
  *DefaultApi* | [**dismiss_user_card_api_v2_onboarding_cards_card_id_dismiss_post**](docs/DefaultApi.md#dismiss_user_card_api_v2_onboarding_cards_card_id_dismiss_post) | **POST** /api/v2/onboarding_cards/{card_id}/dismiss | Dismiss User Card
@@ -174,7 +178,6 @@ Class | Method | HTTP request | Description
174
178
  *DefaultApi* | [**find_with_invitation_api_v2_organizations_find_with_invitation_get**](docs/DefaultApi.md#find_with_invitation_api_v2_organizations_find_with_invitation_get) | **GET** /api/v2/organizations/find_with_invitation | Find With Invitation
175
179
  *DefaultApi* | [**find_with_public_identifier_api_v2_organizations_find_with_public_identifier_get**](docs/DefaultApi.md#find_with_public_identifier_api_v2_organizations_find_with_public_identifier_get) | **GET** /api/v2/organizations/find_with_public_identifier | Find With Public Identifier
176
180
  *DefaultApi* | [**find_with_user_api_v2_organizations_find_with_user_get**](docs/DefaultApi.md#find_with_user_api_v2_organizations_find_with_user_get) | **GET** /api/v2/organizations/find_with_user | Find With User
177
- *DefaultApi* | [**fine_tuning_job_callback_api_v2_fine_tuning_jobs_internal_finish_post**](docs/DefaultApi.md#fine_tuning_job_callback_api_v2_fine_tuning_jobs_internal_finish_post) | **POST** /api/v2/fine_tuning/jobs/internal/finish | Fine Tuning Job Callback
178
181
  *DefaultApi* | [**fine_tuning_job_callback_v2_api_v2_fine_tuning_v2_jobs_internal_finish_post**](docs/DefaultApi.md#fine_tuning_job_callback_v2_api_v2_fine_tuning_v2_jobs_internal_finish_post) | **POST** /api/v2/fine_tuning_v2/jobs/internal/finish | Fine Tuning Job Callback V2
179
182
  *DefaultApi* | [**finish_session_command_api_v2_session_commands_session_command_id_finish_post**](docs/DefaultApi.md#finish_session_command_api_v2_session_commands_session_command_id_finish_post) | **POST** /api/v2/session_commands/{session_command_id}/finish | Finish Session Command
180
183
  *DefaultApi* | [**generate_cloud_data_bucket_presigned_upload_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_upload_url_post**](docs/DefaultApi.md#generate_cloud_data_bucket_presigned_upload_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_upload_url_post) | **POST** /api/v2/clouds/{cloud_id}/generate_cloud_data_bucket_presigned_upload_url | Generate Cloud Data Bucket Presigned Upload Url
@@ -188,10 +191,12 @@ Class | Method | HTTP request | Description
188
191
  *DefaultApi* | [**get_build_api_v2_builds_build_id_get**](docs/DefaultApi.md#get_build_api_v2_builds_build_id_get) | **GET** /api/v2/builds/{build_id} | Get Build
189
192
  *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
190
193
  *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
194
+ *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
191
195
  *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
192
196
  *DefaultApi* | [**get_cloud_project_collaborator_api_v2_projects_project_id_collaborators_clouds_get**](docs/DefaultApi.md#get_cloud_project_collaborator_api_v2_projects_project_id_collaborators_clouds_get) | **GET** /api/v2/projects/{project_id}/collaborators/clouds | Get Cloud Project Collaborator
193
197
  *DefaultApi* | [**get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get**](docs/DefaultApi.md#get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get) | **GET** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id} | Get Cloud With Cloud Resource
194
198
  *DefaultApi* | [**get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_get**](docs/DefaultApi.md#get_cloud_with_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_get) | **GET** /api/v2/clouds_with_cloud_resource_router/{cloud_id} | Get Cloud With Cloud Resource
199
+ *DefaultApi* | [**get_cluster_events_api_v2_sessions_session_id_cluster_events_get**](docs/DefaultApi.md#get_cluster_events_api_v2_sessions_session_id_cluster_events_get) | **GET** /api/v2/sessions/{session_id}/cluster_events | Get Cluster Events
195
200
  *DefaultApi* | [**get_cluster_product_autoscaler_flag_api_v2_logs_cluster_product_autoscaler_flag_session_id_get**](docs/DefaultApi.md#get_cluster_product_autoscaler_flag_api_v2_logs_cluster_product_autoscaler_flag_session_id_get) | **GET** /api/v2/logs/cluster_product_autoscaler_flag/{session_id} | Get Cluster Product Autoscaler Flag
196
201
  *DefaultApi* | [**get_compute_template_api_v2_compute_templates_template_id_get**](docs/DefaultApi.md#get_compute_template_api_v2_compute_templates_template_id_get) | **GET** /api/v2/compute_templates/{template_id} | Get Compute Template
197
202
  *DefaultApi* | [**get_cron_job_api_v2_experimental_cron_jobs_cron_job_id_get**](docs/DefaultApi.md#get_cron_job_api_v2_experimental_cron_jobs_cron_job_id_get) | **GET** /api/v2/experimental_cron_jobs/{cron_job_id} | Get Cron Job
@@ -207,6 +212,7 @@ Class | Method | HTTP request | Description
207
212
  *DefaultApi* | [**get_decorated_job_submission_logs_api_v2_decorated_job_submissions_ray_job_submission_db_id_logs_get**](docs/DefaultApi.md#get_decorated_job_submission_logs_api_v2_decorated_job_submissions_ray_job_submission_db_id_logs_get) | **GET** /api/v2/decorated_job_submissions/{ray_job_submission_db_id}/logs | Get Decorated Job Submission Logs
208
213
  *DefaultApi* | [**get_decorated_runtime_env_api_v2_decorated_runtime_envs_runtime_env_id_get**](docs/DefaultApi.md#get_decorated_runtime_env_api_v2_decorated_runtime_envs_runtime_env_id_get) | **GET** /api/v2/decorated_runtime_envs/{runtime_env_id} | Get Decorated Runtime Env
209
214
  *DefaultApi* | [**get_decorated_serve_deployment_api_v2_decorated_serve_deployments_serve_deloyment_id_get**](docs/DefaultApi.md#get_decorated_serve_deployment_api_v2_decorated_serve_deployments_serve_deloyment_id_get) | **GET** /api/v2/decorated_serve_deployments/{serve_deloyment_id} | Get Decorated Serve Deployment
215
+ *DefaultApi* | [**get_decorated_serve_deployment_fast_api_docs_status_api_v2_decorated_serve_deployments_serve_deployment_id_fast_api_docs_status_get**](docs/DefaultApi.md#get_decorated_serve_deployment_fast_api_docs_status_api_v2_decorated_serve_deployments_serve_deployment_id_fast_api_docs_status_get) | **GET** /api/v2/decorated_serve_deployments/{serve_deployment_id}/fast_api_docs_status | Get Decorated Serve Deployment Fast Api Docs Status
210
216
  *DefaultApi* | [**get_decorated_serve_deployment_logs_api_v2_decorated_serve_deployments_serve_deployment_id_logs_get**](docs/DefaultApi.md#get_decorated_serve_deployment_logs_api_v2_decorated_serve_deployments_serve_deployment_id_logs_get) | **GET** /api/v2/decorated_serve_deployments/{serve_deployment_id}/logs | Get Decorated Serve Deployment Logs
211
217
  *DefaultApi* | [**get_decorated_support_request_for_user_organization_api_v2_support_requests_get**](docs/DefaultApi.md#get_decorated_support_request_for_user_organization_api_v2_support_requests_get) | **GET** /api/v2/support_requests/ | Get Decorated Support Request For User Organization
212
218
  *DefaultApi* | [**get_default_cluster_env_build_api_v2_builds_default_py_version_ray_version_get**](docs/DefaultApi.md#get_default_cluster_env_build_api_v2_builds_default_py_version_ray_version_get) | **GET** /api/v2/builds/default/{py_version}/{ray_version} | Get Default Cluster Env Build
@@ -218,7 +224,6 @@ Class | Method | HTTP request | Description
218
224
  *DefaultApi* | [**get_execution_logs_api_v2_session_commands_session_command_id_execution_logs_get**](docs/DefaultApi.md#get_execution_logs_api_v2_session_commands_session_command_id_execution_logs_get) | **GET** /api/v2/session_commands/{session_command_id}/execution_logs | Get Execution Logs
219
225
  *DefaultApi* | [**get_execution_logs_archived_api_v2_session_commands_session_command_id_execution_logs_archived_get**](docs/DefaultApi.md#get_execution_logs_archived_api_v2_session_commands_session_command_id_execution_logs_archived_get) | **GET** /api/v2/session_commands/{session_command_id}/execution_logs_archived | Get Execution Logs Archived
220
226
  *DefaultApi* | [**get_feature_compatibility_api_v2_product_features_get**](docs/DefaultApi.md#get_feature_compatibility_api_v2_product_features_get) | **GET** /api/v2/product_features/ | Get Feature Compatibility
221
- *DefaultApi* | [**get_fine_tuning_job_api_v2_fine_tuning_jobs_fine_tuning_job_id_get**](docs/DefaultApi.md#get_fine_tuning_job_api_v2_fine_tuning_jobs_fine_tuning_job_id_get) | **GET** /api/v2/fine_tuning/jobs/{fine_tuning_job_id} | Get Fine Tuning Job
222
227
  *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
223
228
  *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
224
229
  *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
@@ -272,7 +277,6 @@ Class | Method | HTTP request | Description
272
277
  *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
273
278
  *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
274
279
  *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
275
- *DefaultApi* | [**get_session_event_log_api_v2_session_events_get**](docs/DefaultApi.md#get_session_event_log_api_v2_session_events_get) | **GET** /api/v2/session_events/ | Get Session Event Log
276
280
  *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
277
281
  *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
278
282
  *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
@@ -316,7 +320,6 @@ Class | Method | HTTP request | Description
316
320
  *DefaultApi* | [**list_decorated_jobs_api_v2_decorated_jobs_get**](docs/DefaultApi.md#list_decorated_jobs_api_v2_decorated_jobs_get) | **GET** /api/v2/decorated_jobs/ | List Decorated Jobs
317
321
  *DefaultApi* | [**list_decorated_runtime_envs_api_v2_decorated_runtime_envs_get**](docs/DefaultApi.md#list_decorated_runtime_envs_api_v2_decorated_runtime_envs_get) | **GET** /api/v2/decorated_runtime_envs/ | List Decorated Runtime Envs
318
322
  *DefaultApi* | [**list_decorated_serve_deployments_api_v2_decorated_serve_deployments_get**](docs/DefaultApi.md#list_decorated_serve_deployments_api_v2_decorated_serve_deployments_get) | **GET** /api/v2/decorated_serve_deployments/ | List Decorated Serve Deployments
319
- *DefaultApi* | [**list_fine_tuning_jobs_api_v2_fine_tuning_jobs_get**](docs/DefaultApi.md#list_fine_tuning_jobs_api_v2_fine_tuning_jobs_get) | **GET** /api/v2/fine_tuning/jobs | List Fine Tuning Jobs
320
323
  *DefaultApi* | [**list_instance_usage_budgets_api_v2_instance_usage_budgets_get**](docs/DefaultApi.md#list_instance_usage_budgets_api_v2_instance_usage_budgets_get) | **GET** /api/v2/instance_usage_budgets/ | List Instance Usage Budgets
321
324
  *DefaultApi* | [**list_invitations_api_v2_organization_invitations_get**](docs/DefaultApi.md#list_invitations_api_v2_organization_invitations_get) | **GET** /api/v2/organization_invitations/ | List Invitations
322
325
  *DefaultApi* | [**list_job_queues_api_v2_job_queues_post**](docs/DefaultApi.md#list_job_queues_api_v2_job_queues_post) | **POST** /api/v2/job_queues/ | List Job Queues
@@ -369,7 +372,6 @@ Class | Method | HTTP request | Description
369
372
  *DefaultApi* | [**request_password_reset_api_v2_users_request_password_reset_post**](docs/DefaultApi.md#request_password_reset_api_v2_users_request_password_reset_post) | **POST** /api/v2/users/request_password_reset | Request Password Reset
370
373
  *DefaultApi* | [**reset_password_api_v2_users_reset_password_post**](docs/DefaultApi.md#reset_password_api_v2_users_reset_password_post) | **POST** /api/v2/users/reset_password | Reset Password
371
374
  *DefaultApi* | [**restart_service_api_v2_services_v2_service_id_restart_post**](docs/DefaultApi.md#restart_service_api_v2_services_v2_service_id_restart_post) | **POST** /api/v2/services-v2/{service_id}/restart | Restart Service
372
- *DefaultApi* | [**resubmit_fine_tuning_job_api_v2_fine_tuning_jobs_internal_resubmit_post**](docs/DefaultApi.md#resubmit_fine_tuning_job_api_v2_fine_tuning_jobs_internal_resubmit_post) | **POST** /api/v2/fine_tuning/jobs/internal/resubmit | Resubmit Fine Tuning Job
373
375
  *DefaultApi* | [**rollback_service_api_v2_services_v2_service_id_rollback_post**](docs/DefaultApi.md#rollback_service_api_v2_services_v2_service_id_rollback_post) | **POST** /api/v2/services-v2/{service_id}/rollback | Rollback Service
374
376
  *DefaultApi* | [**rotate_api_key_api_v2_users_rotate_api_key_get**](docs/DefaultApi.md#rotate_api_key_api_v2_users_rotate_api_key_get) | **GET** /api/v2/users/rotate_api_key | Rotate Api Key
375
377
  *DefaultApi* | [**rotate_api_key_for_user_api_v2_organization_collaborators_rotate_api_key_for_user_user_id_post**](docs/DefaultApi.md#rotate_api_key_for_user_api_v2_organization_collaborators_rotate_api_key_for_user_user_id_post) | **POST** /api/v2/organization_collaborators/rotate_api_key_for_user/{user_id} | Rotate Api Key For User
@@ -381,8 +383,6 @@ Class | Method | HTTP request | Description
381
383
  *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
382
384
  *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
383
385
  *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
384
- *DefaultApi* | [**set_organization_to_be_blocked_api_v2_organizations_block_post**](docs/DefaultApi.md#set_organization_to_be_blocked_api_v2_organizations_block_post) | **POST** /api/v2/organizations/block | Set Organization To Be Blocked
385
- *DefaultApi* | [**set_organization_to_be_unblocked_api_v2_organizations_organization_id_unblock_post**](docs/DefaultApi.md#set_organization_to_be_unblocked_api_v2_organizations_organization_id_unblock_post) | **POST** /api/v2/organizations/{organization_id}/unblock | Set Organization To Be Unblocked
386
386
  *DefaultApi* | [**set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch**](docs/DefaultApi.md#set_resource_quota_status_api_v2_resource_quotas_resource_quota_id_status_patch) | **PATCH** /api/v2/resource_quotas/{resource_quota_id}/status | Set Resource Quota Status
387
387
  *DefaultApi* | [**setup_and_initialize_session_api_v2_sessions_session_id_setup_and_initialize_session_post**](docs/DefaultApi.md#setup_and_initialize_session_api_v2_sessions_session_id_setup_and_initialize_session_post) | **POST** /api/v2/sessions/{session_id}/setup_and_initialize_session | Setup And Initialize Session
388
388
  *DefaultApi* | [**show_one_time_password_source_api_v2_users_show_otp_source_post**](docs/DefaultApi.md#show_one_time_password_source_api_v2_users_show_otp_source_post) | **POST** /api/v2/users/show_otp_source | Show One Time Password Source
@@ -403,6 +403,7 @@ Class | Method | HTTP request | Description
403
403
  *DefaultApi* | [**update_aica_endpoint_api_v2_aica_endpoints_put**](docs/DefaultApi.md#update_aica_endpoint_api_v2_aica_endpoints_put) | **PUT** /api/v2/aica_endpoints/ | Update Aica Endpoint
404
404
  *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
405
405
  *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
406
+ *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
406
407
  *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
407
408
  *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
408
409
  *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
@@ -523,6 +524,7 @@ Class | Method | HTTP request | Description
523
524
  - [CloudDataBucketPresignedUrlResponse](docs/CloudDataBucketPresignedUrlResponse.md)
524
525
  - [CloudDataBucketPresignedUrlScheme](docs/CloudDataBucketPresignedUrlScheme.md)
525
526
  - [CloudDataBucketRequestScope](docs/CloudDataBucketRequestScope.md)
527
+ - [CloudDeploymentConfig](docs/CloudDeploymentConfig.md)
526
528
  - [CloudHostingType](docs/CloudHostingType.md)
527
529
  - [CloudListResponse](docs/CloudListResponse.md)
528
530
  - [CloudNameOptions](docs/CloudNameOptions.md)
@@ -547,6 +549,7 @@ Class | Method | HTTP request | Description
547
549
  - [CloudcollaboratorListResponse](docs/CloudcollaboratorListResponse.md)
548
550
  - [ClouddatabucketpresigneduploadinfoResponse](docs/ClouddatabucketpresigneduploadinfoResponse.md)
549
551
  - [ClouddatabucketpresignedurlresponseResponse](docs/ClouddatabucketpresignedurlresponseResponse.md)
552
+ - [ClouddeploymentconfigResponse](docs/ClouddeploymentconfigResponse.md)
550
553
  - [CloudoverviewdashboardResponse](docs/CloudoverviewdashboardResponse.md)
551
554
  - [CloudregionandzonesResponse](docs/CloudregionandzonesResponse.md)
552
555
  - [CloudresourceResponse](docs/CloudresourceResponse.md)
@@ -558,18 +561,20 @@ Class | Method | HTTP request | Description
558
561
  - [ClusterConfigWithSessionIdleTimeout](docs/ClusterConfigWithSessionIdleTimeout.md)
559
562
  - [ClusterEnvironmentsQuery](docs/ClusterEnvironmentsQuery.md)
560
563
  - [ClusterEvent](docs/ClusterEvent.md)
564
+ - [ClusterEventSource](docs/ClusterEventSource.md)
561
565
  - [ClusterEventsOutput](docs/ClusterEventsOutput.md)
562
566
  - [ClusterFeatures](docs/ClusterFeatures.md)
563
567
  - [ClusterManagementStackVersions](docs/ClusterManagementStackVersions.md)
568
+ - [ClusterSize](docs/ClusterSize.md)
564
569
  - [ClusterStartup](docs/ClusterStartup.md)
565
570
  - [ClusterStatus](docs/ClusterStatus.md)
566
571
  - [ClusterStatusDetails](docs/ClusterStatusDetails.md)
567
572
  - [ClusterauthresponseResponse](docs/ClusterauthresponseResponse.md)
568
573
  - [ClusterconfigResponse](docs/ClusterconfigResponse.md)
569
574
  - [ClusterconfigwithsessionidletimeoutResponse](docs/ClusterconfigwithsessionidletimeoutResponse.md)
575
+ - [ClustereventListResponse](docs/ClustereventListResponse.md)
570
576
  - [ClustereventsoutputResponse](docs/ClustereventsoutputResponse.md)
571
577
  - [ClusterfeaturesResponse](docs/ClusterfeaturesResponse.md)
572
- - [CompanySize](docs/CompanySize.md)
573
578
  - [ComputeNodeType](docs/ComputeNodeType.md)
574
579
  - [ComputeStack](docs/ComputeStack.md)
575
580
  - [ComputeTemplate](docs/ComputeTemplate.md)
@@ -598,8 +603,6 @@ Class | Method | HTTP request | Description
598
603
  - [CreateDataset](docs/CreateDataset.md)
599
604
  - [CreateExperimentalWorkspace](docs/CreateExperimentalWorkspace.md)
600
605
  - [CreateExperimentalWorkspaceFromJob](docs/CreateExperimentalWorkspaceFromJob.md)
601
- - [CreateFineTuningHyperparameters](docs/CreateFineTuningHyperparameters.md)
602
- - [CreateFineTuningJobProductRequest](docs/CreateFineTuningJobProductRequest.md)
603
606
  - [CreateInstanceUsageBudget](docs/CreateInstanceUsageBudget.md)
604
607
  - [CreateInternalProductionJob](docs/CreateInternalProductionJob.md)
605
608
  - [CreateJobQueueConfig](docs/CreateJobQueueConfig.md)
@@ -696,6 +699,9 @@ Class | Method | HTTP request | Description
696
699
  - [DeletedPlatformFineTunedModel](docs/DeletedPlatformFineTunedModel.md)
697
700
  - [DeletedplatformfinetunedmodelResponse](docs/DeletedplatformfinetunedmodelResponse.md)
698
701
  - [DeletemachinepoolresponseResponse](docs/DeletemachinepoolresponseResponse.md)
702
+ - [DescribeMachinePoolRequest](docs/DescribeMachinePoolRequest.md)
703
+ - [DescribeMachinePoolResponse](docs/DescribeMachinePoolResponse.md)
704
+ - [DescribemachinepoolresponseResponse](docs/DescribemachinepoolresponseResponse.md)
699
705
  - [DetachMachinePoolFromCloudRequest](docs/DetachMachinePoolFromCloudRequest.md)
700
706
  - [DetachmachinepoolfromcloudresponseResponse](docs/DetachmachinepoolfromcloudresponseResponse.md)
701
707
  - [DismissalType](docs/DismissalType.md)
@@ -720,10 +726,8 @@ Class | Method | HTTP request | Description
720
726
  - [FeatureflagresponseResponse](docs/FeatureflagresponseResponse.md)
721
727
  - [FineTuneType](docs/FineTuneType.md)
722
728
  - [FineTunedModel](docs/FineTunedModel.md)
723
- - [FineTuningJobStatus](docs/FineTuningJobStatus.md)
724
729
  - [FinetunedmodelListResponse](docs/FinetunedmodelListResponse.md)
725
730
  - [FinetunedmodelResponse](docs/FinetunedmodelResponse.md)
726
- - [FinishFTJobRequest](docs/FinishFTJobRequest.md)
727
731
  - [FinishFTJobRequestV2](docs/FinishFTJobRequestV2.md)
728
732
  - [GCPFileStoreConfig](docs/GCPFileStoreConfig.md)
729
733
  - [GCPMemorystoreInstanceConfig](docs/GCPMemorystoreInstanceConfig.md)
@@ -793,7 +797,6 @@ Class | Method | HTTP request | Description
793
797
  - [LogFilter](docs/LogFilter.md)
794
798
  - [LogItem](docs/LogItem.md)
795
799
  - [LogItemBatch](docs/LogItemBatch.md)
796
- - [LogLevelTypes](docs/LogLevelTypes.md)
797
800
  - [LogStream](docs/LogStream.md)
798
801
  - [LogdetailsResponse](docs/LogdetailsResponse.md)
799
802
  - [LogdownloadresultResponse](docs/LogdownloadresultResponse.md)
@@ -808,6 +811,7 @@ Class | Method | HTTP request | Description
808
811
  - [MachineConnectionState](docs/MachineConnectionState.md)
809
812
  - [MachineInfo](docs/MachineInfo.md)
810
813
  - [MachinePool](docs/MachinePool.md)
814
+ - [MachineStateInfo](docs/MachineStateInfo.md)
811
815
  - [MetronomeCustomerInfoModel](docs/MetronomeCustomerInfoModel.md)
812
816
  - [MetronomeDashboardType](docs/MetronomeDashboardType.md)
813
817
  - [MetronomecustomerinfomodelListResponse](docs/MetronomecustomerinfomodelListResponse.md)
@@ -838,6 +842,7 @@ Class | Method | HTTP request | Description
838
842
  - [NodeRegistrationV2](docs/NodeRegistrationV2.md)
839
843
  - [NodeType](docs/NodeType.md)
840
844
  - [NotificationChannelEmailConfig](docs/NotificationChannelEmailConfig.md)
845
+ - [NotificationChannelSlackConfig](docs/NotificationChannelSlackConfig.md)
841
846
  - [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
842
847
  - [OnboardingUserCardsQuery](docs/OnboardingUserCardsQuery.md)
843
848
  - [Organization](docs/Organization.md)
@@ -869,9 +874,6 @@ Class | Method | HTTP request | Description
869
874
  - [PageQuery](docs/PageQuery.md)
870
875
  - [PauseSchedule](docs/PauseSchedule.md)
871
876
  - [PermissionLevel](docs/PermissionLevel.md)
872
- - [PlatformFineTuningJob](docs/PlatformFineTuningJob.md)
873
- - [PlatformfinetuningjobListResponse](docs/PlatformfinetuningjobListResponse.md)
874
- - [PlatformfinetuningjobResponse](docs/PlatformfinetuningjobResponse.md)
875
877
  - [ProductAutoscalerFlag](docs/ProductAutoscalerFlag.md)
876
878
  - [ProductType](docs/ProductType.md)
877
879
  - [ProductautoscalerflagResponse](docs/ProductautoscalerflagResponse.md)
@@ -913,6 +915,7 @@ Class | Method | HTTP request | Description
913
915
  - [RequestEmailMagicLinkResponse](docs/RequestEmailMagicLinkResponse.md)
914
916
  - [RequestOTPReturnApiModel](docs/RequestOTPReturnApiModel.md)
915
917
  - [RequestPasswordResetParams](docs/RequestPasswordResetParams.md)
918
+ - [RequestStateInfo](docs/RequestStateInfo.md)
916
919
  - [RequestemailmagiclinkresponseResponse](docs/RequestemailmagiclinkresponseResponse.md)
917
920
  - [RequestotpreturnapimodelResponse](docs/RequestotpreturnapimodelResponse.md)
918
921
  - [ResetPasswordParams](docs/ResetPasswordParams.md)
@@ -921,16 +924,18 @@ Class | Method | HTTP request | Description
921
924
  - [ResourcequotaListResponse](docs/ResourcequotaListResponse.md)
922
925
  - [ResourcequotaResponse](docs/ResourcequotaResponse.md)
923
926
  - [Resources](docs/Resources.md)
924
- - [ResubmitFTJobRequest](docs/ResubmitFTJobRequest.md)
925
927
  - [RollbackServiceModel](docs/RollbackServiceModel.md)
926
928
  - [RolloutStrategy](docs/RolloutStrategy.md)
927
929
  - [S3DownloadLocation](docs/S3DownloadLocation.md)
928
930
  - [SSOLoginInfo](docs/SSOLoginInfo.md)
929
931
  - [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
930
932
  - [ScheduleConfig](docs/ScheduleConfig.md)
933
+ - [SchedulerInfo](docs/SchedulerInfo.md)
934
+ - [ServeDeploymentFastApiDocsStatus](docs/ServeDeploymentFastApiDocsStatus.md)
931
935
  - [ServeDeploymentGrafanaDashboardStatus](docs/ServeDeploymentGrafanaDashboardStatus.md)
932
936
  - [ServeDeploymentLogs](docs/ServeDeploymentLogs.md)
933
937
  - [ServeDeploymentState](docs/ServeDeploymentState.md)
938
+ - [ServedeploymentfastapidocsstatusResponse](docs/ServedeploymentfastapidocsstatusResponse.md)
934
939
  - [ServedeploymentlogsResponse](docs/ServedeploymentlogsResponse.md)
935
940
  - [ServerSessionToken](docs/ServerSessionToken.md)
936
941
  - [ServersessiontokenResponse](docs/ServersessiontokenResponse.md)
@@ -960,9 +965,6 @@ Class | Method | HTTP request | Description
960
965
  - [SessionDeleteMessage](docs/SessionDeleteMessage.md)
961
966
  - [SessionDescribe](docs/SessionDescribe.md)
962
967
  - [SessionDetails](docs/SessionDetails.md)
963
- - [SessionEvent](docs/SessionEvent.md)
964
- - [SessionEventCause](docs/SessionEventCause.md)
965
- - [SessionEventTypes](docs/SessionEventTypes.md)
966
968
  - [SessionExecuteMessage](docs/SessionExecuteMessage.md)
967
969
  - [SessionFinishCommandMessage](docs/SessionFinishCommandMessage.md)
968
970
  - [SessionHistoryItem](docs/SessionHistoryItem.md)
@@ -980,7 +982,6 @@ Class | Method | HTTP request | Description
980
982
  - [SessioncommandidResponse](docs/SessioncommandidResponse.md)
981
983
  - [SessiondescribeResponse](docs/SessiondescribeResponse.md)
982
984
  - [SessiondetailsResponse](docs/SessiondetailsResponse.md)
983
- - [SessioneventListResponse](docs/SessioneventListResponse.md)
984
985
  - [SessionhistoryitemListResponse](docs/SessionhistoryitemListResponse.md)
985
986
  - [SessionsSortField](docs/SessionsSortField.md)
986
987
  - [SessionsshkeyResponse](docs/SessionsshkeyResponse.md)
@@ -1016,6 +1017,7 @@ Class | Method | HTTP request | Description
1016
1017
  - [UnifiedJobSortField](docs/UnifiedJobSortField.md)
1017
1018
  - [UnifiedJobStatus](docs/UnifiedJobStatus.md)
1018
1019
  - [UnifiedJobType](docs/UnifiedJobType.md)
1020
+ - [UpdateCloudCollaborator](docs/UpdateCloudCollaborator.md)
1019
1021
  - [UpdateCloudWithCloudResource](docs/UpdateCloudWithCloudResource.md)
1020
1022
  - [UpdateCloudWithCloudResourceGCP](docs/UpdateCloudWithCloudResourceGCP.md)
1021
1023
  - [UpdateClusterDns](docs/UpdateClusterDns.md)
@@ -1058,6 +1060,7 @@ Class | Method | HTTP request | Description
1058
1060
  - [WebterminalListResponse](docs/WebterminalListResponse.md)
1059
1061
  - [WebterminalResponse](docs/WebterminalResponse.md)
1060
1062
  - [WorkerNodeType](docs/WorkerNodeType.md)
1063
+ - [WorkloadInfo](docs/WorkloadInfo.md)
1061
1064
  - [WorkloadType](docs/WorkloadType.md)
1062
1065
  - [WorkspaceDataplaneArtifact](docs/WorkspaceDataplaneArtifact.md)
1063
1066
  - [WorkspaceDataplaneArtifacts](docs/WorkspaceDataplaneArtifacts.md)
@@ -123,6 +123,7 @@ from openapi_client.models.cloud_data_bucket_presigned_url_request import CloudD
123
123
  from openapi_client.models.cloud_data_bucket_presigned_url_response import CloudDataBucketPresignedUrlResponse
124
124
  from openapi_client.models.cloud_data_bucket_presigned_url_scheme import CloudDataBucketPresignedUrlScheme
125
125
  from openapi_client.models.cloud_data_bucket_request_scope import CloudDataBucketRequestScope
126
+ from openapi_client.models.cloud_deployment_config import CloudDeploymentConfig
126
127
  from openapi_client.models.cloud_hosting_type import CloudHostingType
127
128
  from openapi_client.models.cloud_list_response import CloudListResponse
128
129
  from openapi_client.models.cloud_name_options import CloudNameOptions
@@ -147,6 +148,7 @@ from openapi_client.models.cloud_with_cloud_resource_gcp import CloudWithCloudRe
147
148
  from openapi_client.models.cloudcollaborator_list_response import CloudcollaboratorListResponse
148
149
  from openapi_client.models.clouddatabucketpresigneduploadinfo_response import ClouddatabucketpresigneduploadinfoResponse
149
150
  from openapi_client.models.clouddatabucketpresignedurlresponse_response import ClouddatabucketpresignedurlresponseResponse
151
+ from openapi_client.models.clouddeploymentconfig_response import ClouddeploymentconfigResponse
150
152
  from openapi_client.models.cloudoverviewdashboard_response import CloudoverviewdashboardResponse
151
153
  from openapi_client.models.cloudregionandzones_response import CloudregionandzonesResponse
152
154
  from openapi_client.models.cloudresource_response import CloudresourceResponse
@@ -158,18 +160,20 @@ from openapi_client.models.cluster_config import ClusterConfig
158
160
  from openapi_client.models.cluster_config_with_session_idle_timeout import ClusterConfigWithSessionIdleTimeout
159
161
  from openapi_client.models.cluster_environments_query import ClusterEnvironmentsQuery
160
162
  from openapi_client.models.cluster_event import ClusterEvent
163
+ from openapi_client.models.cluster_event_source import ClusterEventSource
161
164
  from openapi_client.models.cluster_events_output import ClusterEventsOutput
162
165
  from openapi_client.models.cluster_features import ClusterFeatures
163
166
  from openapi_client.models.cluster_management_stack_versions import ClusterManagementStackVersions
167
+ from openapi_client.models.cluster_size import ClusterSize
164
168
  from openapi_client.models.cluster_startup import ClusterStartup
165
169
  from openapi_client.models.cluster_status import ClusterStatus
166
170
  from openapi_client.models.cluster_status_details import ClusterStatusDetails
167
171
  from openapi_client.models.clusterauthresponse_response import ClusterauthresponseResponse
168
172
  from openapi_client.models.clusterconfig_response import ClusterconfigResponse
169
173
  from openapi_client.models.clusterconfigwithsessionidletimeout_response import ClusterconfigwithsessionidletimeoutResponse
174
+ from openapi_client.models.clusterevent_list_response import ClustereventListResponse
170
175
  from openapi_client.models.clustereventsoutput_response import ClustereventsoutputResponse
171
176
  from openapi_client.models.clusterfeatures_response import ClusterfeaturesResponse
172
- from openapi_client.models.company_size import CompanySize
173
177
  from openapi_client.models.compute_node_type import ComputeNodeType
174
178
  from openapi_client.models.compute_stack import ComputeStack
175
179
  from openapi_client.models.compute_template import ComputeTemplate
@@ -198,8 +202,6 @@ from openapi_client.models.create_compute_template_config import CreateComputeTe
198
202
  from openapi_client.models.create_dataset import CreateDataset
199
203
  from openapi_client.models.create_experimental_workspace import CreateExperimentalWorkspace
200
204
  from openapi_client.models.create_experimental_workspace_from_job import CreateExperimentalWorkspaceFromJob
201
- from openapi_client.models.create_fine_tuning_hyperparameters import CreateFineTuningHyperparameters
202
- from openapi_client.models.create_fine_tuning_job_product_request import CreateFineTuningJobProductRequest
203
205
  from openapi_client.models.create_instance_usage_budget import CreateInstanceUsageBudget
204
206
  from openapi_client.models.create_internal_production_job import CreateInternalProductionJob
205
207
  from openapi_client.models.create_job_queue_config import CreateJobQueueConfig
@@ -296,6 +298,9 @@ from openapi_client.models.delete_machine_request import DeleteMachineRequest
296
298
  from openapi_client.models.deleted_platform_fine_tuned_model import DeletedPlatformFineTunedModel
297
299
  from openapi_client.models.deletedplatformfinetunedmodel_response import DeletedplatformfinetunedmodelResponse
298
300
  from openapi_client.models.deletemachinepoolresponse_response import DeletemachinepoolresponseResponse
301
+ from openapi_client.models.describe_machine_pool_request import DescribeMachinePoolRequest
302
+ from openapi_client.models.describe_machine_pool_response import DescribeMachinePoolResponse
303
+ from openapi_client.models.describemachinepoolresponse_response import DescribemachinepoolresponseResponse
299
304
  from openapi_client.models.detach_machine_pool_from_cloud_request import DetachMachinePoolFromCloudRequest
300
305
  from openapi_client.models.detachmachinepoolfromcloudresponse_response import DetachmachinepoolfromcloudresponseResponse
301
306
  from openapi_client.models.dismissal_type import DismissalType
@@ -320,10 +325,8 @@ from openapi_client.models.feature_flag_response import FeatureFlagResponse
320
325
  from openapi_client.models.featureflagresponse_response import FeatureflagresponseResponse
321
326
  from openapi_client.models.fine_tune_type import FineTuneType
322
327
  from openapi_client.models.fine_tuned_model import FineTunedModel
323
- from openapi_client.models.fine_tuning_job_status import FineTuningJobStatus
324
328
  from openapi_client.models.finetunedmodel_list_response import FinetunedmodelListResponse
325
329
  from openapi_client.models.finetunedmodel_response import FinetunedmodelResponse
326
- from openapi_client.models.finish_ft_job_request import FinishFTJobRequest
327
330
  from openapi_client.models.finish_ft_job_request_v2 import FinishFTJobRequestV2
328
331
  from openapi_client.models.gcp_file_store_config import GCPFileStoreConfig
329
332
  from openapi_client.models.gcp_memorystore_instance_config import GCPMemorystoreInstanceConfig
@@ -393,7 +396,6 @@ from openapi_client.models.log_file_chunk import LogFileChunk
393
396
  from openapi_client.models.log_filter import LogFilter
394
397
  from openapi_client.models.log_item import LogItem
395
398
  from openapi_client.models.log_item_batch import LogItemBatch
396
- from openapi_client.models.log_level_types import LogLevelTypes
397
399
  from openapi_client.models.log_stream import LogStream
398
400
  from openapi_client.models.logdetails_response import LogdetailsResponse
399
401
  from openapi_client.models.logdownloadresult_response import LogdownloadresultResponse
@@ -408,6 +410,7 @@ from openapi_client.models.machine_allocation_state import MachineAllocationStat
408
410
  from openapi_client.models.machine_connection_state import MachineConnectionState
409
411
  from openapi_client.models.machine_info import MachineInfo
410
412
  from openapi_client.models.machine_pool import MachinePool
413
+ from openapi_client.models.machine_state_info import MachineStateInfo
411
414
  from openapi_client.models.metronome_customer_info_model import MetronomeCustomerInfoModel
412
415
  from openapi_client.models.metronome_dashboard_type import MetronomeDashboardType
413
416
  from openapi_client.models.metronomecustomerinfomodel_list_response import MetronomecustomerinfomodelListResponse
@@ -438,6 +441,7 @@ from openapi_client.models.node_registration_provisioned import NodeRegistration
438
441
  from openapi_client.models.node_registration_v2 import NodeRegistrationV2
439
442
  from openapi_client.models.node_type import NodeType
440
443
  from openapi_client.models.notification_channel_email_config import NotificationChannelEmailConfig
444
+ from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
441
445
  from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
442
446
  from openapi_client.models.onboarding_user_cards_query import OnboardingUserCardsQuery
443
447
  from openapi_client.models.organization import Organization
@@ -469,9 +473,6 @@ from openapi_client.models.organizationusagealert_list_response import Organizat
469
473
  from openapi_client.models.page_query import PageQuery
470
474
  from openapi_client.models.pause_schedule import PauseSchedule
471
475
  from openapi_client.models.permission_level import PermissionLevel
472
- from openapi_client.models.platform_fine_tuning_job import PlatformFineTuningJob
473
- from openapi_client.models.platformfinetuningjob_list_response import PlatformfinetuningjobListResponse
474
- from openapi_client.models.platformfinetuningjob_response import PlatformfinetuningjobResponse
475
476
  from openapi_client.models.product_autoscaler_flag import ProductAutoscalerFlag
476
477
  from openapi_client.models.product_type import ProductType
477
478
  from openapi_client.models.productautoscalerflag_response import ProductautoscalerflagResponse
@@ -513,6 +514,7 @@ from openapi_client.models.replica_state import ReplicaState
513
514
  from openapi_client.models.request_email_magic_link_response import RequestEmailMagicLinkResponse
514
515
  from openapi_client.models.request_otp_return_api_model import RequestOTPReturnApiModel
515
516
  from openapi_client.models.request_password_reset_params import RequestPasswordResetParams
517
+ from openapi_client.models.request_state_info import RequestStateInfo
516
518
  from openapi_client.models.requestemailmagiclinkresponse_response import RequestemailmagiclinkresponseResponse
517
519
  from openapi_client.models.requestotpreturnapimodel_response import RequestotpreturnapimodelResponse
518
520
  from openapi_client.models.reset_password_params import ResetPasswordParams
@@ -521,16 +523,18 @@ from openapi_client.models.resource_quota_status import ResourceQuotaStatus
521
523
  from openapi_client.models.resourcequota_list_response import ResourcequotaListResponse
522
524
  from openapi_client.models.resourcequota_response import ResourcequotaResponse
523
525
  from openapi_client.models.resources import Resources
524
- from openapi_client.models.resubmit_ft_job_request import ResubmitFTJobRequest
525
526
  from openapi_client.models.rollback_service_model import RollbackServiceModel
526
527
  from openapi_client.models.rollout_strategy import RolloutStrategy
527
528
  from openapi_client.models.s3_download_location import S3DownloadLocation
528
529
  from openapi_client.models.sso_login_info import SSOLoginInfo
529
530
  from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
530
531
  from openapi_client.models.schedule_config import ScheduleConfig
532
+ from openapi_client.models.scheduler_info import SchedulerInfo
533
+ from openapi_client.models.serve_deployment_fast_api_docs_status import ServeDeploymentFastApiDocsStatus
531
534
  from openapi_client.models.serve_deployment_grafana_dashboard_status import ServeDeploymentGrafanaDashboardStatus
532
535
  from openapi_client.models.serve_deployment_logs import ServeDeploymentLogs
533
536
  from openapi_client.models.serve_deployment_state import ServeDeploymentState
537
+ from openapi_client.models.servedeploymentfastapidocsstatus_response import ServedeploymentfastapidocsstatusResponse
534
538
  from openapi_client.models.servedeploymentlogs_response import ServedeploymentlogsResponse
535
539
  from openapi_client.models.server_session_token import ServerSessionToken
536
540
  from openapi_client.models.serversessiontoken_response import ServersessiontokenResponse
@@ -560,9 +564,6 @@ from openapi_client.models.session_create_message import SessionCreateMessage
560
564
  from openapi_client.models.session_delete_message import SessionDeleteMessage
561
565
  from openapi_client.models.session_describe import SessionDescribe
562
566
  from openapi_client.models.session_details import SessionDetails
563
- from openapi_client.models.session_event import SessionEvent
564
- from openapi_client.models.session_event_cause import SessionEventCause
565
- from openapi_client.models.session_event_types import SessionEventTypes
566
567
  from openapi_client.models.session_execute_message import SessionExecuteMessage
567
568
  from openapi_client.models.session_finish_command_message import SessionFinishCommandMessage
568
569
  from openapi_client.models.session_history_item import SessionHistoryItem
@@ -580,7 +581,6 @@ from openapi_client.models.sessioncommand_list_response import SessioncommandLis
580
581
  from openapi_client.models.sessioncommandid_response import SessioncommandidResponse
581
582
  from openapi_client.models.sessiondescribe_response import SessiondescribeResponse
582
583
  from openapi_client.models.sessiondetails_response import SessiondetailsResponse
583
- from openapi_client.models.sessionevent_list_response import SessioneventListResponse
584
584
  from openapi_client.models.sessionhistoryitem_list_response import SessionhistoryitemListResponse
585
585
  from openapi_client.models.sessions_sort_field import SessionsSortField
586
586
  from openapi_client.models.sessionsshkey_response import SessionsshkeyResponse
@@ -616,6 +616,7 @@ from openapi_client.models.ux_instance import UXInstance
616
616
  from openapi_client.models.unified_job_sort_field import UnifiedJobSortField
617
617
  from openapi_client.models.unified_job_status import UnifiedJobStatus
618
618
  from openapi_client.models.unified_job_type import UnifiedJobType
619
+ from openapi_client.models.update_cloud_collaborator import UpdateCloudCollaborator
619
620
  from openapi_client.models.update_cloud_with_cloud_resource import UpdateCloudWithCloudResource
620
621
  from openapi_client.models.update_cloud_with_cloud_resource_gcp import UpdateCloudWithCloudResourceGCP
621
622
  from openapi_client.models.update_cluster_dns import UpdateClusterDns
@@ -658,6 +659,7 @@ from openapi_client.models.web_terminal import WebTerminal
658
659
  from openapi_client.models.webterminal_list_response import WebterminalListResponse
659
660
  from openapi_client.models.webterminal_response import WebterminalResponse
660
661
  from openapi_client.models.worker_node_type import WorkerNodeType
662
+ from openapi_client.models.workload_info import WorkloadInfo
661
663
  from openapi_client.models.workload_type import WorkloadType
662
664
  from openapi_client.models.workspace_dataplane_artifact import WorkspaceDataplaneArtifact
663
665
  from openapi_client.models.workspace_dataplane_artifacts import WorkspaceDataplaneArtifacts