anyscale 0.26.4__py3-none-any.whl → 0.26.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- anyscale/_private/anyscale_client/anyscale_client.py +1 -5
- anyscale/_private/docgen/__main__.py +0 -3
- anyscale/_private/docgen/api.md +0 -40
- anyscale/_private/docgen/models.md +0 -49
- anyscale/anyscale-cloud-setup-gcp-oa.yaml +2 -1
- anyscale/anyscale-cloud-setup-gcp.yaml +4 -2
- anyscale/client/README.md +9 -27
- anyscale/client/openapi_client/__init__.py +7 -13
- anyscale/client/openapi_client/api/default_api.py +476 -1946
- anyscale/client/openapi_client/models/__init__.py +7 -13
- anyscale/client/openapi_client/models/{clusterconfigwithsessionidletimeout_response.py → backend_server_api_product_models_dataset_runs_dataset_response.py} +22 -22
- anyscale/client/openapi_client/models/{dataset_response.py → backend_server_api_product_routers_datasets_router_dataset_response.py} +8 -8
- anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +3 -30
- anyscale/client/openapi_client/models/{clusterconfig_response.py → dataset_jobs.py} +22 -22
- anyscale/client/openapi_client/models/dataset_metrics.py +390 -0
- anyscale/{sdk/anyscale_client/models/session_command_types.py → client/openapi_client/models/dataset_state.py} +11 -9
- anyscale/client/openapi_client/models/{organization_availability.py → metric.py} +64 -39
- anyscale/client/openapi_client/models/operator_metrics.py +256 -0
- anyscale/client/openapi_client/models/train_run.py +28 -1
- anyscale/cluster.py +5 -2
- anyscale/commands/anyscale_api/api_commands.py +0 -2
- anyscale/commands/workspace_commands.py +3 -3
- anyscale/connect_utils/start_interactive_session.py +4 -1
- anyscale/controllers/cluster_controller.py +15 -26
- anyscale/controllers/project_controller.py +1 -6
- anyscale/job/_private/job_sdk.py +6 -1
- anyscale/job/models.py +8 -0
- anyscale/project_utils.py +9 -20
- anyscale/sdk/anyscale_client/__init__.py +0 -5
- anyscale/sdk/anyscale_client/api/default_api.py +0 -474
- anyscale/sdk/anyscale_client/models/__init__.py +0 -5
- anyscale/version.py +1 -1
- {anyscale-0.26.4.dist-info → anyscale-0.26.6.dist-info}/METADATA +1 -1
- {anyscale-0.26.4.dist-info → anyscale-0.26.6.dist-info}/RECORD +39 -51
- anyscale/client/openapi_client/models/anyscale_version_response.py +0 -121
- anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +0 -121
- anyscale/client/openapi_client/models/cluster_config.py +0 -178
- anyscale/client/openapi_client/models/cluster_config_with_session_idle_timeout.py +0 -204
- anyscale/client/openapi_client/models/cluster_startup.py +0 -208
- anyscale/client/openapi_client/models/decoratedjob_list_response.py +0 -147
- anyscale/client/openapi_client/models/execute_shell_command_options.py +0 -121
- anyscale/client/openapi_client/models/organizationavailability_response.py +0 -121
- anyscale/client/openapi_client/models/setup_initialize_session_options.py +0 -225
- anyscale/commands/anyscale_api/session_commands_commands.py +0 -80
- anyscale/sdk/anyscale_client/models/create_session_command.py +0 -152
- anyscale/sdk/anyscale_client/models/session_command.py +0 -350
- anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +0 -147
- anyscale/sdk/anyscale_client/models/sessioncommand_response.py +0 -121
- {anyscale-0.26.4.dist-info → anyscale-0.26.6.dist-info}/LICENSE +0 -0
- {anyscale-0.26.4.dist-info → anyscale-0.26.6.dist-info}/NOTICE +0 -0
- {anyscale-0.26.4.dist-info → anyscale-0.26.6.dist-info}/WHEEL +0 -0
- {anyscale-0.26.4.dist-info → anyscale-0.26.6.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.4.dist-info → anyscale-0.26.6.dist-info}/top_level.txt +0 -0
@@ -480,12 +480,8 @@ class AnyscaleClient(AnyscaleClientInterface):
|
|
480
480
|
|
481
481
|
if self._default_project_id_from_cloud_id.get(parent_cloud_id) is None:
|
482
482
|
# Cloud isolation organizations follow the permissions model in https://docs.anyscale.com/organization-and-user-account/access-controls
|
483
|
-
# TODO(nikita): Remove this FF check after completing the cloud isolation migration in Q2 2024
|
484
|
-
cloud_isolation_ff_on = self._internal_api_client.check_is_feature_flag_on_api_v2_userinfo_check_is_feature_flag_on_get(
|
485
|
-
"cloud-isolation-phase-1"
|
486
|
-
).result.is_on
|
487
483
|
default_project: Project = self._external_api_client.get_default_project(
|
488
|
-
parent_cloud_id=
|
484
|
+
parent_cloud_id=parent_cloud_id
|
489
485
|
).result
|
490
486
|
self._default_project_id_from_cloud_id[parent_cloud_id] = default_project.id
|
491
487
|
|
@@ -685,9 +685,6 @@ ALL_MODULES = [
|
|
685
685
|
"get_organization_temporary_object_storage_credentials": None,
|
686
686
|
"partial_update_organization": None,
|
687
687
|
"get_runtime_environment": None,
|
688
|
-
"create_session_command": None,
|
689
|
-
"get_session_command": None,
|
690
|
-
"list_session_commands": None,
|
691
688
|
"upsert_sso_config": None,
|
692
689
|
"upsert_test_sso_config": None,
|
693
690
|
},
|
anyscale/_private/docgen/api.md
CHANGED
@@ -1031,46 +1031,6 @@ Name | Type | Description | Notes
|
|
1031
1031
|
|
1032
1032
|
Returns [ServicemodelResponse](./models.md#servicemodelresponse)
|
1033
1033
|
|
1034
|
-
## Session Commands
|
1035
|
-
|
1036
|
-
### create_session_command
|
1037
|
-
|
1038
|
-
DEPRECATED: This API is now deprecated and will not be supported in Anyscale 2.0
|
1039
|
-
|
1040
|
-
Parameters
|
1041
|
-
|
1042
|
-
Name | Type | Description | Notes
|
1043
|
-
------------- | ------------- | ------------- | -------------
|
1044
|
-
`create_session_command` | [CreateSessionCommand](./models.md#createsessioncommand)| |
|
1045
|
-
|
1046
|
-
Returns [SessioncommandResponse](./models.md#sessioncommandresponse)
|
1047
|
-
|
1048
|
-
### get_session_command
|
1049
|
-
|
1050
|
-
Retrieves a session command with ID.
|
1051
|
-
|
1052
|
-
Parameters
|
1053
|
-
|
1054
|
-
Name | Type | Description | Notes
|
1055
|
-
------------- | ------------- | ------------- | -------------
|
1056
|
-
`session_command_id` | str| ID of the Session Command to retrieve. | Defaults to null
|
1057
|
-
|
1058
|
-
Returns [SessioncommandResponse](./models.md#sessioncommandresponse)
|
1059
|
-
|
1060
|
-
### list_session_commands
|
1061
|
-
|
1062
|
-
Retrieves a list of commands that were created on the Session.
|
1063
|
-
|
1064
|
-
Parameters
|
1065
|
-
|
1066
|
-
Name | Type | Description | Notes
|
1067
|
-
------------- | ------------- | ------------- | -------------
|
1068
|
-
`session_id` | str| ID of the Session to list Commands for. | Defaults to null
|
1069
|
-
`paging_token` | optional str| | Defaults to null
|
1070
|
-
`count` | optional int| | Defaults to 10
|
1071
|
-
|
1072
|
-
Returns [SessioncommandListResponse](./models.md#sessioncommandlistresponse)
|
1073
|
-
|
1074
1034
|
## Sso Configs
|
1075
1035
|
|
1076
1036
|
### upsert_sso_config
|
@@ -1007,15 +1007,6 @@ Name | Type | Description | Notes
|
|
1007
1007
|
**user_service_token** | **str** | User service token that is used to authenticate access to public user services. This must be a valid 32 byte URL safe string and can be generated by calling `secrets.token_urlsafe(32))`. This is ignored if the user service has private access. If not specified for a public user service, a token is autogenerated. | [optional] [default to null]
|
1008
1008
|
**ha_job_id** | **str** | This is used internally by Anyscale to associate clusters to a job. It is set automatically and should *not* be used directly. | [optional] [default to null]
|
1009
1009
|
|
1010
|
-
## CreateSessionCommand
|
1011
|
-
|
1012
|
-
Model used to create and execute a command on a Session.
|
1013
|
-
|
1014
|
-
Name | Type | Description | Notes
|
1015
|
-
------------ | ------------- | ------------- | -------------
|
1016
|
-
**session_id** | **str** | ID of the Session to execute this command on. | [default to null]
|
1017
|
-
**shell_command** | **str** | Shell command string that will be executed. | [default to null]
|
1018
|
-
|
1019
1010
|
## GrpcProtocolConfig
|
1020
1011
|
|
1021
1012
|
|
@@ -1829,29 +1820,6 @@ Name | Type | Description | Notes
|
|
1829
1820
|
**idle_termination_status** | [**IdleTerminationStatus**](#idleterminationstatus) | The status of autosuspend | [optional] [default to null]
|
1830
1821
|
**ray_dashboard_snapshot_last_reported_at** | **datetime** | The time of the last snapshot recorded from the ray dashboard | [optional] [default to null]
|
1831
1822
|
|
1832
|
-
## SessionCommand
|
1833
|
-
|
1834
|
-
Model used to create and execute a command on a Session.
|
1835
|
-
|
1836
|
-
Name | Type | Description | Notes
|
1837
|
-
------------ | ------------- | ------------- | -------------
|
1838
|
-
**session_id** | **str** | ID of the Session to execute this command on. | [default to null]
|
1839
|
-
**shell_command** | **str** | Shell command string that will be executed. | [default to null]
|
1840
|
-
**id** | **str** | Server assigned unique identifier. | [default to null]
|
1841
|
-
**type** | [**SessionCommandTypes**](#sessioncommandtypes) | Where this command was executed | [optional] [default to null]
|
1842
|
-
**created_at** | **datetime** | Timestamp of when this command was created. | [default to null]
|
1843
|
-
**finished_at** | **datetime** | Timestamp of when this command completed its execution. This value will be absent if the command is still running. | [optional] [default to null]
|
1844
|
-
**status_code** | **int** | Exit status of this command. This value will be absent if the command is still running. | [optional] [default to null]
|
1845
|
-
**killed_at** | **datetime** | Timestamp of when this command was killed. This value will be absent if the command is still running or completed its execution normally. | [optional] [default to null]
|
1846
|
-
**web_terminal_tab_id** | **str** | The id for the web terminal tab in which this command was executed. | [optional] [default to null]
|
1847
|
-
|
1848
|
-
## SessionCommandTypes
|
1849
|
-
|
1850
|
-
An enumeration.
|
1851
|
-
|
1852
|
-
Possible Values:
|
1853
|
-
['WEBTERMINAL', 'COMMAND_LINE_RUNNER']
|
1854
|
-
|
1855
1823
|
## SessionListResponse
|
1856
1824
|
|
1857
1825
|
A list response form the API. Contains a field \"results\" which has the contents of the response.
|
@@ -1921,23 +1889,6 @@ Name | Type | Description | Notes
|
|
1921
1889
|
**stop_progress** | **str** | | [optional] [default to null]
|
1922
1890
|
**stop_error** | **str** | | [optional] [default to null]
|
1923
1891
|
|
1924
|
-
## SessioncommandListResponse
|
1925
|
-
|
1926
|
-
A list response form the API. Contains a field \"results\" which has the contents of the response.
|
1927
|
-
|
1928
|
-
Name | Type | Description | Notes
|
1929
|
-
------------ | ------------- | ------------- | -------------
|
1930
|
-
**results** | [**List[SessionCommand]**](#sessioncommand) | | [default to null]
|
1931
|
-
**metadata** | [**ListResponseMetadata**](#listresponsemetadata) | | [optional] [default to null]
|
1932
|
-
|
1933
|
-
## SessioncommandResponse
|
1934
|
-
|
1935
|
-
A response from the API. Contains a field \"result\" which has the contents of the response.
|
1936
|
-
|
1937
|
-
Name | Type | Description | Notes
|
1938
|
-
------------ | ------------- | ------------- | -------------
|
1939
|
-
**result** | [**SessionCommand**](#sessioncommand) | | [default to null]
|
1940
|
-
|
1941
1892
|
## SessionoperationResponse
|
1942
1893
|
|
1943
1894
|
A response from the API. Contains a field \"result\" which has the contents of the response.
|
@@ -33,8 +33,9 @@ resources:
|
|
33
33
|
type: iam.v1.serviceAccount
|
34
34
|
properties:
|
35
35
|
accountId: ${CLOUD_ID}
|
36
|
-
displayName: ${CLOUD_ID} Cluster Node Service Account
|
37
36
|
projectId: ${PROJECT_ID}
|
37
|
+
serviceAccount:
|
38
|
+
displayName: ${CLOUD_ID} Cluster Node Service Account
|
38
39
|
- name: bucket-iam-anyscale-acess-${CLOUD_ID}
|
39
40
|
type: gcp-types/storage-v1:virtual.buckets.iamMemberBinding
|
40
41
|
properties:
|
@@ -56,8 +56,9 @@ resources:
|
|
56
56
|
type: iam.v1.serviceAccount
|
57
57
|
properties:
|
58
58
|
accountId: ${ANYSCALE_ACCESS_SERVICE_ACCOUNT}
|
59
|
-
displayName: ${CLOUD_ID} Anyscale access service account
|
60
59
|
projectId: ${PROJECT_ID}
|
60
|
+
serviceAccount:
|
61
|
+
displayName: ${CLOUD_ID} Anyscale access service account
|
61
62
|
accessControl:
|
62
63
|
gcpIamPolicy:
|
63
64
|
bindings:
|
@@ -80,8 +81,9 @@ resources:
|
|
80
81
|
type: iam.v1.serviceAccount
|
81
82
|
properties:
|
82
83
|
accountId: ${CLOUD_ID}
|
83
|
-
displayName: ${CLOUD_ID} Cluster Node Service Account
|
84
84
|
projectId: ${PROJECT_ID}
|
85
|
+
serviceAccount:
|
86
|
+
displayName: ${CLOUD_ID} Cluster Node Service Account
|
85
87
|
- name: iam-policy-instance-project-${CLOUD_ID}
|
86
88
|
type: gcp-types/cloudresourcemanager-v1:virtual.projects.iamMemberBinding
|
87
89
|
properties:
|
anyscale/client/README.md
CHANGED
@@ -94,9 +94,7 @@ Class | Method | HTTP request | Description
|
|
94
94
|
*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
|
95
95
|
*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
|
96
96
|
*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
|
97
|
-
*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
|
98
97
|
*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
|
99
|
-
*DefaultApi* | [**check_availability_api_v2_organizations_check_availability_get**](docs/DefaultApi.md#check_availability_api_v2_organizations_check_availability_get) | **GET** /api/v2/organizations/check_availability | Check Availability
|
100
98
|
*DefaultApi* | [**check_is_feature_flag_on_api_v2_userinfo_check_is_feature_flag_on_get**](docs/DefaultApi.md#check_is_feature_flag_on_api_v2_userinfo_check_is_feature_flag_on_get) | **GET** /api/v2/userinfo/check_is_feature_flag_on | Check Is Feature Flag On
|
101
99
|
*DefaultApi* | [**check_one_time_password_api_v2_users_request_otp_token_otp_get**](docs/DefaultApi.md#check_one_time_password_api_v2_users_request_otp_token_otp_get) | **GET** /api/v2/users/request_otp_token/{otp} | Check One Time Password
|
102
100
|
*DefaultApi* | [**check_waitlist_status_api_v2_aioa_cloud_waitlist_check_status_get**](docs/DefaultApi.md#check_waitlist_status_api_v2_aioa_cloud_waitlist_check_status_get) | **GET** /api/v2/aioa_cloud_waitlist/check_status | Check Waitlist Status
|
@@ -166,7 +164,6 @@ Class | Method | HTTP request | Description
|
|
166
164
|
*DefaultApi* | [**edit_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_patch**](docs/DefaultApi.md#edit_cloud_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_patch) | **PATCH** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id} | Edit Cloud Resource
|
167
165
|
*DefaultApi* | [**edit_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_patch**](docs/DefaultApi.md#edit_cloud_resource_api_v2_clouds_with_cloud_resource_router_cloud_id_patch) | **PATCH** /api/v2/clouds_with_cloud_resource_router/{cloud_id} | Edit Cloud Resource
|
168
166
|
*DefaultApi* | [**execute_interactive_command_api_v2_sessions_session_id_execute_interactive_command_post**](docs/DefaultApi.md#execute_interactive_command_api_v2_sessions_session_id_execute_interactive_command_post) | **POST** /api/v2/sessions/{session_id}/execute_interactive_command | Execute Interactive Command
|
169
|
-
*DefaultApi* | [**execute_shell_command_api_v2_sessions_session_id_execute_shell_command_post**](docs/DefaultApi.md#execute_shell_command_api_v2_sessions_session_id_execute_shell_command_post) | **POST** /api/v2/sessions/{session_id}/execute_shell_command | Execute Shell Command
|
170
167
|
*DefaultApi* | [**fetch_usage_group_by_cloud_api_v2_aggregated_instance_usage_cloud_post**](docs/DefaultApi.md#fetch_usage_group_by_cloud_api_v2_aggregated_instance_usage_cloud_post) | **POST** /api/v2/aggregated_instance_usage/cloud | Fetch Usage Group By Cloud
|
171
168
|
*DefaultApi* | [**fetch_usage_group_by_cluster_api_v2_aggregated_instance_usage_cluster_post**](docs/DefaultApi.md#fetch_usage_group_by_cluster_api_v2_aggregated_instance_usage_cluster_post) | **POST** /api/v2/aggregated_instance_usage/cluster | Fetch Usage Group By Cluster
|
172
169
|
*DefaultApi* | [**fetch_usage_group_by_instance_type_api_v2_aggregated_instance_usage_instance_type_post**](docs/DefaultApi.md#fetch_usage_group_by_instance_type_api_v2_aggregated_instance_usage_instance_type_post) | **POST** /api/v2/aggregated_instance_usage/instance_type | Fetch Usage Group By Instance Type
|
@@ -176,7 +173,6 @@ Class | Method | HTTP request | Description
|
|
176
173
|
*DefaultApi* | [**find_dataset_api_v2_datasets_find_get**](docs/DefaultApi.md#find_dataset_api_v2_datasets_find_get) | **GET** /api/v2/datasets/find | Find Dataset
|
177
174
|
*DefaultApi* | [**find_project_by_project_name_api_v2_projects_find_by_name_get**](docs/DefaultApi.md#find_project_by_project_name_api_v2_projects_find_by_name_get) | **GET** /api/v2/projects/find_by_name | Find Project By Project Name
|
178
175
|
*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
|
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
|
180
176
|
*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
|
181
177
|
*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
|
182
178
|
*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
|
@@ -184,7 +180,6 @@ Class | Method | HTTP request | Description
|
|
184
180
|
*DefaultApi* | [**generate_cloud_data_bucket_presigned_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_url_post**](docs/DefaultApi.md#generate_cloud_data_bucket_presigned_url_api_v2_clouds_cloud_id_generate_cloud_data_bucket_presigned_url_post) | **POST** /api/v2/clouds/{cloud_id}/generate_cloud_data_bucket_presigned_url | Generate Cloud Data Bucket Presigned Url
|
185
181
|
*DefaultApi* | [**get_active_billing_version_api_v2_organization_billing_active_billing_version_get**](docs/DefaultApi.md#get_active_billing_version_api_v2_organization_billing_active_billing_version_get) | **GET** /api/v2/organization_billing/active_billing_version | Get Active Billing Version
|
186
182
|
*DefaultApi* | [**get_anyscale_aws_account_api_v2_clouds_anyscale_aws_account_get**](docs/DefaultApi.md#get_anyscale_aws_account_api_v2_clouds_anyscale_aws_account_get) | **GET** /api/v2/clouds/anyscale/aws_account | Get Anyscale Aws Account
|
187
|
-
*DefaultApi* | [**get_anyscale_version_api_v2_userinfo_anyscale_version_get**](docs/DefaultApi.md#get_anyscale_version_api_v2_userinfo_anyscale_version_get) | **GET** /api/v2/userinfo/anyscale_version | Get Anyscale Version
|
188
183
|
*DefaultApi* | [**get_application_template_api_v2_application_templates_application_template_id_get**](docs/DefaultApi.md#get_application_template_api_v2_application_templates_application_template_id_get) | **GET** /api/v2/application_templates/{application_template_id} | Get Application Template
|
189
184
|
*DefaultApi* | [**get_billing_information_api_v2_organization_billing_billing_information_get**](docs/DefaultApi.md#get_billing_information_api_v2_organization_billing_billing_information_get) | **GET** /api/v2/organization_billing/billing_information | Get Billing Information
|
190
185
|
*DefaultApi* | [**get_billing_versions_by_organization_api_v2_organization_billing_billing_versions_get**](docs/DefaultApi.md#get_billing_versions_by_organization_api_v2_organization_billing_billing_versions_get) | **GET** /api/v2/organization_billing/billing_versions | Get Billing Versions By Organization
|
@@ -201,6 +196,7 @@ Class | Method | HTTP request | Description
|
|
201
196
|
*DefaultApi* | [**get_cluster_product_autoscaler_flag_api_v2_logs_cluster_product_autoscaler_flag_session_id_get**](docs/DefaultApi.md#get_cluster_product_autoscaler_flag_api_v2_logs_cluster_product_autoscaler_flag_session_id_get) | **GET** /api/v2/logs/cluster_product_autoscaler_flag/{session_id} | Get Cluster Product Autoscaler Flag
|
202
197
|
*DefaultApi* | [**get_compute_template_api_v2_compute_templates_template_id_get**](docs/DefaultApi.md#get_compute_template_api_v2_compute_templates_template_id_get) | **GET** /api/v2/compute_templates/{template_id} | Get Compute Template
|
203
198
|
*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
|
199
|
+
*DefaultApi* | [**get_dashboard_api_v2_dataset_runs_get**](docs/DefaultApi.md#get_dashboard_api_v2_dataset_runs_get) | **GET** /api/v2/dataset_runs/ | Get Dashboard
|
204
200
|
*DefaultApi* | [**get_dataset_api_v2_datasets_dataset_id_get**](docs/DefaultApi.md#get_dataset_api_v2_datasets_dataset_id_get) | **GET** /api/v2/datasets/{dataset_id} | Get Dataset
|
205
201
|
*DefaultApi* | [**get_dataset_download_info_api_v2_datasets_download_info_get**](docs/DefaultApi.md#get_dataset_download_info_api_v2_datasets_download_info_get) | **GET** /api/v2/datasets/download_info | Get Dataset Download Info
|
206
202
|
*DefaultApi* | [**get_dataset_download_url_api_v2_datasets_download_get**](docs/DefaultApi.md#get_dataset_download_url_api_v2_datasets_download_get) | **GET** /api/v2/datasets/download | Get Dataset Download Url
|
@@ -234,6 +230,7 @@ Class | Method | HTTP request | Description
|
|
234
230
|
*DefaultApi* | [**get_job_logs_query_info_api_v2_decorated_ha_jobs_production_job_id_logs_query_get**](docs/DefaultApi.md#get_job_logs_query_info_api_v2_decorated_ha_jobs_production_job_id_logs_query_get) | **GET** /api/v2/decorated_ha_jobs/{production_job_id}/logs_query | Get Job Logs Query Info
|
235
231
|
*DefaultApi* | [**get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get**](docs/DefaultApi.md#get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get) | **GET** /api/v2/logs/job_logs_stream/{job_id} | Get Job Logs Stream
|
236
232
|
*DefaultApi* | [**get_job_queue_api_v2_job_queues_job_queue_id_get**](docs/DefaultApi.md#get_job_queue_api_v2_job_queues_job_queue_id_get) | **GET** /api/v2/job_queues/{job_queue_id} | Get Job Queue
|
233
|
+
*DefaultApi* | [**get_jobs_api_v2_dataset_runs_jobs_get**](docs/DefaultApi.md#get_jobs_api_v2_dataset_runs_jobs_get) | **GET** /api/v2/dataset_runs/jobs | Get Jobs
|
237
234
|
*DefaultApi* | [**get_lb_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get_lb_resource_post**](docs/DefaultApi.md#get_lb_resource_api_v2_clouds_with_cloud_resource_gcp_router_cloud_id_get_lb_resource_post) | **POST** /api/v2/clouds_with_cloud_resource_gcp_router/{cloud_id}/get_lb_resource | Get Lb Resource
|
238
235
|
*DefaultApi* | [**get_log_files_api_v2_logs_get_log_files_post**](docs/DefaultApi.md#get_log_files_api_v2_logs_get_log_files_post) | **POST** /api/v2/logs/get_log_files | Get Log Files
|
239
236
|
*DefaultApi* | [**get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get**](docs/DefaultApi.md#get_manage_billing_url_api_v2_organization_billing_manage_billing_url_get) | **GET** /api/v2/organization_billing/manage_billing_url | Get Manage Billing Url
|
@@ -242,15 +239,12 @@ Class | Method | HTTP request | Description
|
|
242
239
|
*DefaultApi* | [**get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get**](docs/DefaultApi.md#get_metronome_embedded_usage_dashboard_by_organization_api_v2_organization_billing_organization_id_metronome_embedded_dashboard_url_dashboard_type_get) | **GET** /api/v2/organization_billing/{organization_id}/metronome_embedded_dashboard_url/{dashboard_type} | Get Metronome Embedded Usage Dashboard By Organization
|
243
240
|
*DefaultApi* | [**get_model_api_v2_llm_models_model_id_get**](docs/DefaultApi.md#get_model_api_v2_llm_models_model_id_get) | **GET** /api/v2/llm/models/{model_id} | Get Model
|
244
241
|
*DefaultApi* | [**get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get**](docs/DefaultApi.md#get_model_by_job_id_api_v2_llm_models_get_by_job_id_job_id_get) | **GET** /api/v2/llm/models/get_by_job_id/{job_id} | Get Model By Job Id
|
245
|
-
*DefaultApi* | [**get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get**](docs/DefaultApi.md#get_monitor_logs_api_v2_sessions_session_id_monitor_logs_get) | **GET** /api/v2/sessions/{session_id}/monitor_logs | Get Monitor Logs
|
246
242
|
*DefaultApi* | [**get_monitor_logs_archived_api_v2_sessions_session_id_monitor_logs_archived_get**](docs/DefaultApi.md#get_monitor_logs_archived_api_v2_sessions_session_id_monitor_logs_archived_get) | **GET** /api/v2/sessions/{session_id}/monitor_logs_archived | Get Monitor Logs Archived
|
247
243
|
*DefaultApi* | [**get_monitor_logs_download_api_v2_logs_monitor_logs_download_session_id_get**](docs/DefaultApi.md#get_monitor_logs_download_api_v2_logs_monitor_logs_download_session_id_get) | **GET** /api/v2/logs/monitor_logs_download/{session_id} | Get Monitor Logs Download
|
248
|
-
*DefaultApi* | [**get_monitor_logs_stream_api_v2_logs_monitor_logs_stream_session_id_get**](docs/DefaultApi.md#get_monitor_logs_stream_api_v2_logs_monitor_logs_stream_session_id_get) | **GET** /api/v2/logs/monitor_logs_stream/{session_id} | Get Monitor Logs Stream
|
249
244
|
*DefaultApi* | [**get_organization_metronome_usage_alerts_api_v2_organization_billing_alerts_get**](docs/DefaultApi.md#get_organization_metronome_usage_alerts_api_v2_organization_billing_alerts_get) | **GET** /api/v2/organization_billing/alerts | Get Organization Metronome Usage Alerts
|
250
245
|
*DefaultApi* | [**get_ping_external_services_api_v2_sessions_session_id_ping_external_services_get**](docs/DefaultApi.md#get_ping_external_services_api_v2_sessions_session_id_ping_external_services_get) | **GET** /api/v2/sessions/{session_id}/ping_external_services | Get Ping External Services
|
251
246
|
*DefaultApi* | [**get_project_api_v2_projects_project_id_get**](docs/DefaultApi.md#get_project_api_v2_projects_project_id_get) | **GET** /api/v2/projects/{project_id} | Get Project
|
252
247
|
*DefaultApi* | [**get_project_default_session_name_api_v2_projects_project_id_default_session_name_get**](docs/DefaultApi.md#get_project_default_session_name_api_v2_projects_project_id_default_session_name_get) | **GET** /api/v2/projects/{project_id}/default_session_name | Get Project Default Session Name
|
253
|
-
*DefaultApi* | [**get_project_latest_cluster_config_api_v2_projects_project_id_latest_cluster_config_get**](docs/DefaultApi.md#get_project_latest_cluster_config_api_v2_projects_project_id_latest_cluster_config_get) | **GET** /api/v2/projects/{project_id}/latest_cluster_config | Get Project Latest Cluster Config
|
254
248
|
*DefaultApi* | [**get_public_identifier_api_v2_organizations_public_identifier_get**](docs/DefaultApi.md#get_public_identifier_api_v2_organizations_public_identifier_get) | **GET** /api/v2/organizations/public_identifier | Get Public Identifier
|
255
249
|
*DefaultApi* | [**get_recent_cluster_compute_configs_api_v2_recent_activity_cluster_compute_configs_get**](docs/DefaultApi.md#get_recent_cluster_compute_configs_api_v2_recent_activity_cluster_compute_configs_get) | **GET** /api/v2/recent_activity/cluster_compute_configs | Get Recent Cluster Compute Configs
|
256
250
|
*DefaultApi* | [**get_recent_cluster_environments_api_v2_recent_activity_cluster_environment_builds_get**](docs/DefaultApi.md#get_recent_cluster_environments_api_v2_recent_activity_cluster_environment_builds_get) | **GET** /api/v2/recent_activity/cluster_environment_builds | Get Recent Cluster Environments
|
@@ -261,15 +255,12 @@ Class | Method | HTTP request | Description
|
|
261
255
|
*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
|
262
256
|
*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
|
263
257
|
*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
|
264
|
-
*DefaultApi* | [**get_runtime_env_logs_stream_api_v2_logs_runtime_env_logs_stream_session_id_get**](docs/DefaultApi.md#get_runtime_env_logs_stream_api_v2_logs_runtime_env_logs_stream_session_id_get) | **GET** /api/v2/logs/runtime_env_logs_stream/{session_id} | Get Runtime Env Logs Stream
|
265
258
|
*DefaultApi* | [**get_serve_logs_download_api_v2_logs_serve_logs_download_cluster_id_get**](docs/DefaultApi.md#get_serve_logs_download_api_v2_logs_serve_logs_download_cluster_id_get) | **GET** /api/v2/logs/serve_logs_download/{cluster_id} | Get Serve Logs Download
|
266
259
|
*DefaultApi* | [**get_service_api_v2_services_v2_service_id_get**](docs/DefaultApi.md#get_service_api_v2_services_v2_service_id_get) | **GET** /api/v2/services-v2/{service_id} | Get Service
|
267
260
|
*DefaultApi* | [**get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get**](docs/DefaultApi.md#get_service_event_verbose_message_api_v2_services_v2_events_event_id_verbose_message_get) | **GET** /api/v2/services-v2/events/{event_id}/verbose_message | Get Service Event Verbose Message
|
268
261
|
*DefaultApi* | [**get_service_events_api_v2_services_v2_service_id_events_get**](docs/DefaultApi.md#get_service_events_api_v2_services_v2_service_id_events_get) | **GET** /api/v2/services-v2/{service_id}/events | Get Service Events
|
269
262
|
*DefaultApi* | [**get_service_versions_api_v2_services_v2_service_id_versions_get**](docs/DefaultApi.md#get_service_versions_api_v2_services_v2_service_id_versions_get) | **GET** /api/v2/services-v2/{service_id}/versions | Get Service Versions
|
270
263
|
*DefaultApi* | [**get_session_api_v2_sessions_session_id_get**](docs/DefaultApi.md#get_session_api_v2_sessions_session_id_get) | **GET** /api/v2/sessions/{session_id} | Get Session
|
271
|
-
*DefaultApi* | [**get_session_cluster_config_api_v2_sessions_session_id_cluster_config_get**](docs/DefaultApi.md#get_session_cluster_config_api_v2_sessions_session_id_cluster_config_get) | **GET** /api/v2/sessions/{session_id}/cluster_config | Get Session Cluster Config
|
272
|
-
*DefaultApi* | [**get_session_cluster_config_with_session_idle_timeout_api_v2_sessions_session_id_cluster_config_with_session_idle_timeout_get**](docs/DefaultApi.md#get_session_cluster_config_with_session_idle_timeout_api_v2_sessions_session_id_cluster_config_with_session_idle_timeout_get) | **GET** /api/v2/sessions/{session_id}/cluster_config_with_session_idle_timeout | Get Session Cluster Config With Session Idle Timeout
|
273
264
|
*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
|
274
265
|
*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
|
275
266
|
*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
|
@@ -312,7 +303,6 @@ Class | Method | HTTP request | Description
|
|
312
303
|
*DefaultApi* | [**list_decorated_interactive_sessions_api_v2_decorated_interactive_sessions_get**](docs/DefaultApi.md#list_decorated_interactive_sessions_api_v2_decorated_interactive_sessions_get) | **GET** /api/v2/decorated_interactive_sessions/ | List Decorated Interactive Sessions
|
313
304
|
*DefaultApi* | [**list_decorated_job_submissions_api_v2_decorated_job_submissions_get**](docs/DefaultApi.md#list_decorated_job_submissions_api_v2_decorated_job_submissions_get) | **GET** /api/v2/decorated_job_submissions/ | List Decorated Job Submissions
|
314
305
|
*DefaultApi* | [**list_decorated_jobs_api_v2_decorated_ha_jobs_get**](docs/DefaultApi.md#list_decorated_jobs_api_v2_decorated_ha_jobs_get) | **GET** /api/v2/decorated_ha_jobs/ | List Decorated Jobs
|
315
|
-
*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
|
316
306
|
*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
|
317
307
|
*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
|
318
308
|
*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
|
@@ -377,7 +367,6 @@ Class | Method | HTTP request | Description
|
|
377
367
|
*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
|
378
368
|
*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
|
379
369
|
*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
|
380
|
-
*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
|
381
370
|
*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
|
382
371
|
*DefaultApi* | [**sso_login_info_api_v2_users_sso_login_info_get**](docs/DefaultApi.md#sso_login_info_api_v2_users_sso_login_info_get) | **GET** /api/v2/users/sso_login_info | Sso Login Info
|
383
372
|
*DefaultApi* | [**sso_login_test_api_v2_users_sso_login_test_get**](docs/DefaultApi.md#sso_login_test_api_v2_users_sso_login_test_get) | **GET** /api/v2/users/sso_login_test | Sso Login Test
|
@@ -411,7 +400,6 @@ Class | Method | HTTP request | Description
|
|
411
400
|
*DefaultApi* | [**upsert_support_request_for_user_organization_api_v2_support_requests_support_request_put**](docs/DefaultApi.md#upsert_support_request_for_user_organization_api_v2_support_requests_support_request_put) | **PUT** /api/v2/support_requests/support_request | Upsert Support Request For User Organization
|
412
401
|
*DefaultApi* | [**user_resend_email_api_v2_users_resend_email_post**](docs/DefaultApi.md#user_resend_email_api_v2_users_resend_email_post) | **POST** /api/v2/users/resend_email | User Resend Email
|
413
402
|
*DefaultApi* | [**user_verify_api_v2_users_verify_token_get**](docs/DefaultApi.md#user_verify_api_v2_users_verify_token_get) | **GET** /api/v2/users/verify/{token} | User Verify
|
414
|
-
*DefaultApi* | [**validate_cluster_api_v2_sessions_validate_cluster_post**](docs/DefaultApi.md#validate_cluster_api_v2_sessions_validate_cluster_post) | **POST** /api/v2/sessions/validate_cluster | Validate Cluster
|
415
403
|
*DefaultApi* | [**validate_invite_code_api_v2_users_validate_invite_code_invite_code_post**](docs/DefaultApi.md#validate_invite_code_api_v2_users_validate_invite_code_invite_code_post) | **POST** /api/v2/users/validate_invite_code/{invite_code} | Validate Invite Code
|
416
404
|
*DefaultApi* | [**validate_one_time_password_api_v2_users_validate_otp_token_post**](docs/DefaultApi.md#validate_one_time_password_api_v2_users_validate_otp_token_post) | **POST** /api/v2/users/validate_otp_token | Validate One Time Password
|
417
405
|
*DefaultApi* | [**verify_access_api_v2_cloudsverify_access_cloud_id_get**](docs/DefaultApi.md#verify_access_api_v2_cloudsverify_access_cloud_id_get) | **GET** /api/v2/cloudsverify_access/{cloud_id} | Verify Access
|
@@ -437,12 +425,10 @@ Class | Method | HTTP request | Description
|
|
437
425
|
- [AlertType](docs/AlertType.md)
|
438
426
|
- [AnyscaleAWSAccount](docs/AnyscaleAWSAccount.md)
|
439
427
|
- [AnyscaleServiceAccount](docs/AnyscaleServiceAccount.md)
|
440
|
-
- [AnyscaleVersionResponse](docs/AnyscaleVersionResponse.md)
|
441
428
|
- [AnyscaleawsaccountResponse](docs/AnyscaleawsaccountResponse.md)
|
442
429
|
- [AnyscaledCredentialResponse](docs/AnyscaledCredentialResponse.md)
|
443
430
|
- [AnyscaledcredentialresponseResponse](docs/AnyscaledcredentialresponseResponse.md)
|
444
431
|
- [AnyscaleserviceaccountResponse](docs/AnyscaleserviceaccountResponse.md)
|
445
|
-
- [AnyscaleversionresponseResponse](docs/AnyscaleversionresponseResponse.md)
|
446
432
|
- [ApiKeyParameters](docs/ApiKeyParameters.md)
|
447
433
|
- [AppConfig](docs/AppConfig.md)
|
448
434
|
- [AppConfigConfigSchema](docs/AppConfigConfigSchema.md)
|
@@ -461,6 +447,8 @@ Class | Method | HTTP request | Description
|
|
461
447
|
- [AwsRegionInfo](docs/AwsRegionInfo.md)
|
462
448
|
- [AwsregionandzonesResponse](docs/AwsregionandzonesResponse.md)
|
463
449
|
- [BASEIMAGESENUM](docs/BASEIMAGESENUM.md)
|
450
|
+
- [BackendServerApiProductModelsDatasetRunsDatasetResponse](docs/BackendServerApiProductModelsDatasetRunsDatasetResponse.md)
|
451
|
+
- [BackendServerApiProductRoutersDatasetsRouterDatasetResponse](docs/BackendServerApiProductRoutersDatasetsRouterDatasetResponse.md)
|
464
452
|
- [BankAccountInformation](docs/BankAccountInformation.md)
|
465
453
|
- [BaseJobStatus](docs/BaseJobStatus.md)
|
466
454
|
- [BatchResponseBatchedResultOrganizationInvitationBase](docs/BatchResponseBatchedResultOrganizationInvitationBase.md)
|
@@ -535,8 +523,6 @@ Class | Method | HTTP request | Description
|
|
535
523
|
- [CloudwithcloudresourceResponse](docs/CloudwithcloudresourceResponse.md)
|
536
524
|
- [CloudwithcloudresourcegcpResponse](docs/CloudwithcloudresourcegcpResponse.md)
|
537
525
|
- [ClusterAuthResponse](docs/ClusterAuthResponse.md)
|
538
|
-
- [ClusterConfig](docs/ClusterConfig.md)
|
539
|
-
- [ClusterConfigWithSessionIdleTimeout](docs/ClusterConfigWithSessionIdleTimeout.md)
|
540
526
|
- [ClusterEnvironmentsQuery](docs/ClusterEnvironmentsQuery.md)
|
541
527
|
- [ClusterEvent](docs/ClusterEvent.md)
|
542
528
|
- [ClusterEventSource](docs/ClusterEventSource.md)
|
@@ -544,12 +530,9 @@ Class | Method | HTTP request | Description
|
|
544
530
|
- [ClusterFeatures](docs/ClusterFeatures.md)
|
545
531
|
- [ClusterManagementStackVersions](docs/ClusterManagementStackVersions.md)
|
546
532
|
- [ClusterSize](docs/ClusterSize.md)
|
547
|
-
- [ClusterStartup](docs/ClusterStartup.md)
|
548
533
|
- [ClusterStatus](docs/ClusterStatus.md)
|
549
534
|
- [ClusterStatusDetails](docs/ClusterStatusDetails.md)
|
550
535
|
- [ClusterauthresponseResponse](docs/ClusterauthresponseResponse.md)
|
551
|
-
- [ClusterconfigResponse](docs/ClusterconfigResponse.md)
|
552
|
-
- [ClusterconfigwithsessionidletimeoutResponse](docs/ClusterconfigwithsessionidletimeoutResponse.md)
|
553
536
|
- [ClustereventListResponse](docs/ClustereventListResponse.md)
|
554
537
|
- [ClustereventsoutputResponse](docs/ClustereventsoutputResponse.md)
|
555
538
|
- [ClusterfeaturesResponse](docs/ClusterfeaturesResponse.md)
|
@@ -613,8 +596,10 @@ Class | Method | HTTP request | Description
|
|
613
596
|
- [CustomerAlertStatus](docs/CustomerAlertStatus.md)
|
614
597
|
- [DataplaneServices](docs/DataplaneServices.md)
|
615
598
|
- [Dataset](docs/Dataset.md)
|
599
|
+
- [DatasetJobs](docs/DatasetJobs.md)
|
616
600
|
- [DatasetListResponse](docs/DatasetListResponse.md)
|
617
|
-
- [
|
601
|
+
- [DatasetMetrics](docs/DatasetMetrics.md)
|
602
|
+
- [DatasetState](docs/DatasetState.md)
|
618
603
|
- [DatasetUpload](docs/DatasetUpload.md)
|
619
604
|
- [DatasetuploadResponse](docs/DatasetuploadResponse.md)
|
620
605
|
- [DecoratedApplicationTemplate](docs/DecoratedApplicationTemplate.md)
|
@@ -645,7 +630,6 @@ Class | Method | HTTP request | Description
|
|
645
630
|
- [DecoratedcomputetemplateResponse](docs/DecoratedcomputetemplateResponse.md)
|
646
631
|
- [DecoratedinteractivesessionListResponse](docs/DecoratedinteractivesessionListResponse.md)
|
647
632
|
- [DecoratedinteractivesessionResponse](docs/DecoratedinteractivesessionResponse.md)
|
648
|
-
- [DecoratedjobListResponse](docs/DecoratedjobListResponse.md)
|
649
633
|
- [DecoratedjobResponse](docs/DecoratedjobResponse.md)
|
650
634
|
- [DecoratedjobqueueListResponse](docs/DecoratedjobqueueListResponse.md)
|
651
635
|
- [DecoratedjobqueueResponse](docs/DecoratedjobqueueResponse.md)
|
@@ -687,7 +671,6 @@ Class | Method | HTTP request | Description
|
|
687
671
|
- [EventLevel](docs/EventLevel.md)
|
688
672
|
- [ExecuteCommandResponse](docs/ExecuteCommandResponse.md)
|
689
673
|
- [ExecuteInteractiveCommandOptions](docs/ExecuteInteractiveCommandOptions.md)
|
690
|
-
- [ExecuteShellCommandOptions](docs/ExecuteShellCommandOptions.md)
|
691
674
|
- [ExecutecommandresponseResponse](docs/ExecutecommandresponseResponse.md)
|
692
675
|
- [ExperimentalWorkspace](docs/ExperimentalWorkspace.md)
|
693
676
|
- [ExperimentalWorkspacesSortField](docs/ExperimentalWorkspacesSortField.md)
|
@@ -787,6 +770,7 @@ Class | Method | HTTP request | Description
|
|
787
770
|
- [MachineLaunchFailure](docs/MachineLaunchFailure.md)
|
788
771
|
- [MachinePool](docs/MachinePool.md)
|
789
772
|
- [MachineStateInfo](docs/MachineStateInfo.md)
|
773
|
+
- [Metric](docs/Metric.md)
|
790
774
|
- [MetronomeCustomerInfoModel](docs/MetronomeCustomerInfoModel.md)
|
791
775
|
- [MetronomeDashboardType](docs/MetronomeDashboardType.md)
|
792
776
|
- [MetronomecustomerinfomodelListResponse](docs/MetronomecustomerinfomodelListResponse.md)
|
@@ -819,8 +803,8 @@ Class | Method | HTTP request | Description
|
|
819
803
|
- [NotificationChannelSlackConfig](docs/NotificationChannelSlackConfig.md)
|
820
804
|
- [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
|
821
805
|
- [OnboardingUserCardsQuery](docs/OnboardingUserCardsQuery.md)
|
806
|
+
- [OperatorMetrics](docs/OperatorMetrics.md)
|
822
807
|
- [Organization](docs/Organization.md)
|
823
|
-
- [OrganizationAvailability](docs/OrganizationAvailability.md)
|
824
808
|
- [OrganizationCollaborator](docs/OrganizationCollaborator.md)
|
825
809
|
- [OrganizationConfiguration](docs/OrganizationConfiguration.md)
|
826
810
|
- [OrganizationConfigurationResponse](docs/OrganizationConfigurationResponse.md)
|
@@ -835,7 +819,6 @@ Class | Method | HTTP request | Description
|
|
835
819
|
- [OrganizationSummary](docs/OrganizationSummary.md)
|
836
820
|
- [OrganizationUsageAlert](docs/OrganizationUsageAlert.md)
|
837
821
|
- [OrganizationUsageAlertSeverity](docs/OrganizationUsageAlertSeverity.md)
|
838
|
-
- [OrganizationavailabilityResponse](docs/OrganizationavailabilityResponse.md)
|
839
822
|
- [OrganizationcollaboratorListResponse](docs/OrganizationcollaboratorListResponse.md)
|
840
823
|
- [OrganizationconfigurationListResponse](docs/OrganizationconfigurationListResponse.md)
|
841
824
|
- [OrganizationconfigurationresponseResponse](docs/OrganizationconfigurationresponseResponse.md)
|
@@ -963,7 +946,6 @@ Class | Method | HTTP request | Description
|
|
963
946
|
- [SessionhistoryitemListResponse](docs/SessionhistoryitemListResponse.md)
|
964
947
|
- [SessionsSortField](docs/SessionsSortField.md)
|
965
948
|
- [SessionsshkeyResponse](docs/SessionsshkeyResponse.md)
|
966
|
-
- [SetupInitializeSessionOptions](docs/SetupInitializeSessionOptions.md)
|
967
949
|
- [ShowOTPSourceReturnApiModel](docs/ShowOTPSourceReturnApiModel.md)
|
968
950
|
- [ShowotpsourcereturnapimodelResponse](docs/ShowotpsourcereturnapimodelResponse.md)
|
969
951
|
- [SnapshotCreateMessage](docs/SnapshotCreateMessage.md)
|
@@ -44,12 +44,10 @@ from openapi_client.models.aioacloudwaitlistrecord_response import Aioacloudwait
|
|
44
44
|
from openapi_client.models.alert_type import AlertType
|
45
45
|
from openapi_client.models.anyscale_aws_account import AnyscaleAWSAccount
|
46
46
|
from openapi_client.models.anyscale_service_account import AnyscaleServiceAccount
|
47
|
-
from openapi_client.models.anyscale_version_response import AnyscaleVersionResponse
|
48
47
|
from openapi_client.models.anyscaleawsaccount_response import AnyscaleawsaccountResponse
|
49
48
|
from openapi_client.models.anyscaled_credential_response import AnyscaledCredentialResponse
|
50
49
|
from openapi_client.models.anyscaledcredentialresponse_response import AnyscaledcredentialresponseResponse
|
51
50
|
from openapi_client.models.anyscaleserviceaccount_response import AnyscaleserviceaccountResponse
|
52
|
-
from openapi_client.models.anyscaleversionresponse_response import AnyscaleversionresponseResponse
|
53
51
|
from openapi_client.models.api_key_parameters import ApiKeyParameters
|
54
52
|
from openapi_client.models.app_config import AppConfig
|
55
53
|
from openapi_client.models.app_config_config_schema import AppConfigConfigSchema
|
@@ -68,6 +66,8 @@ from openapi_client.models.aws_region_and_zones import AwsRegionAndZones
|
|
68
66
|
from openapi_client.models.aws_region_info import AwsRegionInfo
|
69
67
|
from openapi_client.models.awsregionandzones_response import AwsregionandzonesResponse
|
70
68
|
from openapi_client.models.baseimagesenum import BASEIMAGESENUM
|
69
|
+
from openapi_client.models.backend_server_api_product_models_dataset_runs_dataset_response import BackendServerApiProductModelsDatasetRunsDatasetResponse
|
70
|
+
from openapi_client.models.backend_server_api_product_routers_datasets_router_dataset_response import BackendServerApiProductRoutersDatasetsRouterDatasetResponse
|
71
71
|
from openapi_client.models.bank_account_information import BankAccountInformation
|
72
72
|
from openapi_client.models.base_job_status import BaseJobStatus
|
73
73
|
from openapi_client.models.batch_response_batched_result_organization_invitation_base import BatchResponseBatchedResultOrganizationInvitationBase
|
@@ -142,8 +142,6 @@ from openapi_client.models.cloudresourcegcp_response import CloudresourcegcpResp
|
|
142
142
|
from openapi_client.models.cloudwithcloudresource_response import CloudwithcloudresourceResponse
|
143
143
|
from openapi_client.models.cloudwithcloudresourcegcp_response import CloudwithcloudresourcegcpResponse
|
144
144
|
from openapi_client.models.cluster_auth_response import ClusterAuthResponse
|
145
|
-
from openapi_client.models.cluster_config import ClusterConfig
|
146
|
-
from openapi_client.models.cluster_config_with_session_idle_timeout import ClusterConfigWithSessionIdleTimeout
|
147
145
|
from openapi_client.models.cluster_environments_query import ClusterEnvironmentsQuery
|
148
146
|
from openapi_client.models.cluster_event import ClusterEvent
|
149
147
|
from openapi_client.models.cluster_event_source import ClusterEventSource
|
@@ -151,12 +149,9 @@ from openapi_client.models.cluster_events_output import ClusterEventsOutput
|
|
151
149
|
from openapi_client.models.cluster_features import ClusterFeatures
|
152
150
|
from openapi_client.models.cluster_management_stack_versions import ClusterManagementStackVersions
|
153
151
|
from openapi_client.models.cluster_size import ClusterSize
|
154
|
-
from openapi_client.models.cluster_startup import ClusterStartup
|
155
152
|
from openapi_client.models.cluster_status import ClusterStatus
|
156
153
|
from openapi_client.models.cluster_status_details import ClusterStatusDetails
|
157
154
|
from openapi_client.models.clusterauthresponse_response import ClusterauthresponseResponse
|
158
|
-
from openapi_client.models.clusterconfig_response import ClusterconfigResponse
|
159
|
-
from openapi_client.models.clusterconfigwithsessionidletimeout_response import ClusterconfigwithsessionidletimeoutResponse
|
160
155
|
from openapi_client.models.clusterevent_list_response import ClustereventListResponse
|
161
156
|
from openapi_client.models.clustereventsoutput_response import ClustereventsoutputResponse
|
162
157
|
from openapi_client.models.clusterfeatures_response import ClusterfeaturesResponse
|
@@ -220,8 +215,10 @@ from openapi_client.models.credit_card_information import CreditCardInformation
|
|
220
215
|
from openapi_client.models.customer_alert_status import CustomerAlertStatus
|
221
216
|
from openapi_client.models.dataplane_services import DataplaneServices
|
222
217
|
from openapi_client.models.dataset import Dataset
|
218
|
+
from openapi_client.models.dataset_jobs import DatasetJobs
|
223
219
|
from openapi_client.models.dataset_list_response import DatasetListResponse
|
224
|
-
from openapi_client.models.
|
220
|
+
from openapi_client.models.dataset_metrics import DatasetMetrics
|
221
|
+
from openapi_client.models.dataset_state import DatasetState
|
225
222
|
from openapi_client.models.dataset_upload import DatasetUpload
|
226
223
|
from openapi_client.models.datasetupload_response import DatasetuploadResponse
|
227
224
|
from openapi_client.models.decorated_application_template import DecoratedApplicationTemplate
|
@@ -252,7 +249,6 @@ from openapi_client.models.decoratedcomputetemplate_list_response import Decorat
|
|
252
249
|
from openapi_client.models.decoratedcomputetemplate_response import DecoratedcomputetemplateResponse
|
253
250
|
from openapi_client.models.decoratedinteractivesession_list_response import DecoratedinteractivesessionListResponse
|
254
251
|
from openapi_client.models.decoratedinteractivesession_response import DecoratedinteractivesessionResponse
|
255
|
-
from openapi_client.models.decoratedjob_list_response import DecoratedjobListResponse
|
256
252
|
from openapi_client.models.decoratedjob_response import DecoratedjobResponse
|
257
253
|
from openapi_client.models.decoratedjobqueue_list_response import DecoratedjobqueueListResponse
|
258
254
|
from openapi_client.models.decoratedjobqueue_response import DecoratedjobqueueResponse
|
@@ -294,7 +290,6 @@ from openapi_client.models.error import Error
|
|
294
290
|
from openapi_client.models.event_level import EventLevel
|
295
291
|
from openapi_client.models.execute_command_response import ExecuteCommandResponse
|
296
292
|
from openapi_client.models.execute_interactive_command_options import ExecuteInteractiveCommandOptions
|
297
|
-
from openapi_client.models.execute_shell_command_options import ExecuteShellCommandOptions
|
298
293
|
from openapi_client.models.executecommandresponse_response import ExecutecommandresponseResponse
|
299
294
|
from openapi_client.models.experimental_workspace import ExperimentalWorkspace
|
300
295
|
from openapi_client.models.experimental_workspaces_sort_field import ExperimentalWorkspacesSortField
|
@@ -394,6 +389,7 @@ from openapi_client.models.machine_info import MachineInfo
|
|
394
389
|
from openapi_client.models.machine_launch_failure import MachineLaunchFailure
|
395
390
|
from openapi_client.models.machine_pool import MachinePool
|
396
391
|
from openapi_client.models.machine_state_info import MachineStateInfo
|
392
|
+
from openapi_client.models.metric import Metric
|
397
393
|
from openapi_client.models.metronome_customer_info_model import MetronomeCustomerInfoModel
|
398
394
|
from openapi_client.models.metronome_dashboard_type import MetronomeDashboardType
|
399
395
|
from openapi_client.models.metronomecustomerinfomodel_list_response import MetronomecustomerinfomodelListResponse
|
@@ -426,8 +422,8 @@ from openapi_client.models.notification_channel_email_config import Notification
|
|
426
422
|
from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
|
427
423
|
from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
|
428
424
|
from openapi_client.models.onboarding_user_cards_query import OnboardingUserCardsQuery
|
425
|
+
from openapi_client.models.operator_metrics import OperatorMetrics
|
429
426
|
from openapi_client.models.organization import Organization
|
430
|
-
from openapi_client.models.organization_availability import OrganizationAvailability
|
431
427
|
from openapi_client.models.organization_collaborator import OrganizationCollaborator
|
432
428
|
from openapi_client.models.organization_configuration import OrganizationConfiguration
|
433
429
|
from openapi_client.models.organization_configuration_response import OrganizationConfigurationResponse
|
@@ -442,7 +438,6 @@ from openapi_client.models.organization_response import OrganizationResponse
|
|
442
438
|
from openapi_client.models.organization_summary import OrganizationSummary
|
443
439
|
from openapi_client.models.organization_usage_alert import OrganizationUsageAlert
|
444
440
|
from openapi_client.models.organization_usage_alert_severity import OrganizationUsageAlertSeverity
|
445
|
-
from openapi_client.models.organizationavailability_response import OrganizationavailabilityResponse
|
446
441
|
from openapi_client.models.organizationcollaborator_list_response import OrganizationcollaboratorListResponse
|
447
442
|
from openapi_client.models.organizationconfiguration_list_response import OrganizationconfigurationListResponse
|
448
443
|
from openapi_client.models.organizationconfigurationresponse_response import OrganizationconfigurationresponseResponse
|
@@ -570,7 +565,6 @@ from openapi_client.models.sessiondetails_response import SessiondetailsResponse
|
|
570
565
|
from openapi_client.models.sessionhistoryitem_list_response import SessionhistoryitemListResponse
|
571
566
|
from openapi_client.models.sessions_sort_field import SessionsSortField
|
572
567
|
from openapi_client.models.sessionsshkey_response import SessionsshkeyResponse
|
573
|
-
from openapi_client.models.setup_initialize_session_options import SetupInitializeSessionOptions
|
574
568
|
from openapi_client.models.show_otp_source_return_api_model import ShowOTPSourceReturnApiModel
|
575
569
|
from openapi_client.models.showotpsourcereturnapimodel_response import ShowotpsourcereturnapimodelResponse
|
576
570
|
from openapi_client.models.snapshot_create_message import SnapshotCreateMessage
|