anyscale 0.26.4__py3-none-any.whl → 0.26.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.
- 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 -8
- anyscale/client/openapi_client/__init__.py +7 -5
- anyscale/client/openapi_client/api/default_api.py +304 -486
- anyscale/client/openapi_client/models/__init__.py +7 -5
- anyscale/client/openapi_client/models/{anyscaleversionresponse_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/{anyscale_version_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/{decoratedjob_list_response.py → metric.py} +64 -38
- 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/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.5.dist-info}/METADATA +1 -1
- {anyscale-0.26.4.dist-info → anyscale-0.26.5.dist-info}/RECORD +37 -41
- 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.5.dist-info}/LICENSE +0 -0
- {anyscale-0.26.4.dist-info → anyscale-0.26.5.dist-info}/NOTICE +0 -0
- {anyscale-0.26.4.dist-info → anyscale-0.26.5.dist-info}/WHEEL +0 -0
- {anyscale-0.26.4.dist-info → anyscale-0.26.5.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.4.dist-info → anyscale-0.26.5.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
@@ -184,7 +184,6 @@ Class | Method | HTTP request | Description
|
|
184
184
|
*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
185
|
*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
186
|
*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
187
|
*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
188
|
*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
189
|
*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 +200,7 @@ Class | Method | HTTP request | Description
|
|
201
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
|
202
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
|
203
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
|
203
|
+
*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
204
|
*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
205
|
*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
206
|
*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 +234,7 @@ Class | Method | HTTP request | Description
|
|
234
234
|
*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
235
|
*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
236
|
*DefaultApi* | [**get_job_queue_api_v2_job_queues_job_queue_id_get**](docs/DefaultApi.md#get_job_queue_api_v2_job_queues_job_queue_id_get) | **GET** /api/v2/job_queues/{job_queue_id} | Get Job Queue
|
237
|
+
*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
238
|
*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
239
|
*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
240
|
*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
|
@@ -312,7 +313,6 @@ Class | Method | HTTP request | Description
|
|
312
313
|
*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
314
|
*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
315
|
*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
316
|
*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
317
|
*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
318
|
*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 +377,6 @@ Class | Method | HTTP request | Description
|
|
377
377
|
*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
378
|
*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
379
|
*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
380
|
*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
381
|
*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
382
|
*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
|
@@ -437,12 +436,10 @@ Class | Method | HTTP request | Description
|
|
437
436
|
- [AlertType](docs/AlertType.md)
|
438
437
|
- [AnyscaleAWSAccount](docs/AnyscaleAWSAccount.md)
|
439
438
|
- [AnyscaleServiceAccount](docs/AnyscaleServiceAccount.md)
|
440
|
-
- [AnyscaleVersionResponse](docs/AnyscaleVersionResponse.md)
|
441
439
|
- [AnyscaleawsaccountResponse](docs/AnyscaleawsaccountResponse.md)
|
442
440
|
- [AnyscaledCredentialResponse](docs/AnyscaledCredentialResponse.md)
|
443
441
|
- [AnyscaledcredentialresponseResponse](docs/AnyscaledcredentialresponseResponse.md)
|
444
442
|
- [AnyscaleserviceaccountResponse](docs/AnyscaleserviceaccountResponse.md)
|
445
|
-
- [AnyscaleversionresponseResponse](docs/AnyscaleversionresponseResponse.md)
|
446
443
|
- [ApiKeyParameters](docs/ApiKeyParameters.md)
|
447
444
|
- [AppConfig](docs/AppConfig.md)
|
448
445
|
- [AppConfigConfigSchema](docs/AppConfigConfigSchema.md)
|
@@ -461,6 +458,8 @@ Class | Method | HTTP request | Description
|
|
461
458
|
- [AwsRegionInfo](docs/AwsRegionInfo.md)
|
462
459
|
- [AwsregionandzonesResponse](docs/AwsregionandzonesResponse.md)
|
463
460
|
- [BASEIMAGESENUM](docs/BASEIMAGESENUM.md)
|
461
|
+
- [BackendServerApiProductModelsDatasetRunsDatasetResponse](docs/BackendServerApiProductModelsDatasetRunsDatasetResponse.md)
|
462
|
+
- [BackendServerApiProductRoutersDatasetsRouterDatasetResponse](docs/BackendServerApiProductRoutersDatasetsRouterDatasetResponse.md)
|
464
463
|
- [BankAccountInformation](docs/BankAccountInformation.md)
|
465
464
|
- [BaseJobStatus](docs/BaseJobStatus.md)
|
466
465
|
- [BatchResponseBatchedResultOrganizationInvitationBase](docs/BatchResponseBatchedResultOrganizationInvitationBase.md)
|
@@ -613,8 +612,10 @@ Class | Method | HTTP request | Description
|
|
613
612
|
- [CustomerAlertStatus](docs/CustomerAlertStatus.md)
|
614
613
|
- [DataplaneServices](docs/DataplaneServices.md)
|
615
614
|
- [Dataset](docs/Dataset.md)
|
615
|
+
- [DatasetJobs](docs/DatasetJobs.md)
|
616
616
|
- [DatasetListResponse](docs/DatasetListResponse.md)
|
617
|
-
- [
|
617
|
+
- [DatasetMetrics](docs/DatasetMetrics.md)
|
618
|
+
- [DatasetState](docs/DatasetState.md)
|
618
619
|
- [DatasetUpload](docs/DatasetUpload.md)
|
619
620
|
- [DatasetuploadResponse](docs/DatasetuploadResponse.md)
|
620
621
|
- [DecoratedApplicationTemplate](docs/DecoratedApplicationTemplate.md)
|
@@ -645,7 +646,6 @@ Class | Method | HTTP request | Description
|
|
645
646
|
- [DecoratedcomputetemplateResponse](docs/DecoratedcomputetemplateResponse.md)
|
646
647
|
- [DecoratedinteractivesessionListResponse](docs/DecoratedinteractivesessionListResponse.md)
|
647
648
|
- [DecoratedinteractivesessionResponse](docs/DecoratedinteractivesessionResponse.md)
|
648
|
-
- [DecoratedjobListResponse](docs/DecoratedjobListResponse.md)
|
649
649
|
- [DecoratedjobResponse](docs/DecoratedjobResponse.md)
|
650
650
|
- [DecoratedjobqueueListResponse](docs/DecoratedjobqueueListResponse.md)
|
651
651
|
- [DecoratedjobqueueResponse](docs/DecoratedjobqueueResponse.md)
|
@@ -787,6 +787,7 @@ Class | Method | HTTP request | Description
|
|
787
787
|
- [MachineLaunchFailure](docs/MachineLaunchFailure.md)
|
788
788
|
- [MachinePool](docs/MachinePool.md)
|
789
789
|
- [MachineStateInfo](docs/MachineStateInfo.md)
|
790
|
+
- [Metric](docs/Metric.md)
|
790
791
|
- [MetronomeCustomerInfoModel](docs/MetronomeCustomerInfoModel.md)
|
791
792
|
- [MetronomeDashboardType](docs/MetronomeDashboardType.md)
|
792
793
|
- [MetronomecustomerinfomodelListResponse](docs/MetronomecustomerinfomodelListResponse.md)
|
@@ -819,6 +820,7 @@ Class | Method | HTTP request | Description
|
|
819
820
|
- [NotificationChannelSlackConfig](docs/NotificationChannelSlackConfig.md)
|
820
821
|
- [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
|
821
822
|
- [OnboardingUserCardsQuery](docs/OnboardingUserCardsQuery.md)
|
823
|
+
- [OperatorMetrics](docs/OperatorMetrics.md)
|
822
824
|
- [Organization](docs/Organization.md)
|
823
825
|
- [OrganizationAvailability](docs/OrganizationAvailability.md)
|
824
826
|
- [OrganizationCollaborator](docs/OrganizationCollaborator.md)
|
@@ -963,7 +965,6 @@ Class | Method | HTTP request | Description
|
|
963
965
|
- [SessionhistoryitemListResponse](docs/SessionhistoryitemListResponse.md)
|
964
966
|
- [SessionsSortField](docs/SessionsSortField.md)
|
965
967
|
- [SessionsshkeyResponse](docs/SessionsshkeyResponse.md)
|
966
|
-
- [SetupInitializeSessionOptions](docs/SetupInitializeSessionOptions.md)
|
967
968
|
- [ShowOTPSourceReturnApiModel](docs/ShowOTPSourceReturnApiModel.md)
|
968
969
|
- [ShowotpsourcereturnapimodelResponse](docs/ShowotpsourcereturnapimodelResponse.md)
|
969
970
|
- [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
|
@@ -220,8 +220,10 @@ from openapi_client.models.credit_card_information import CreditCardInformation
|
|
220
220
|
from openapi_client.models.customer_alert_status import CustomerAlertStatus
|
221
221
|
from openapi_client.models.dataplane_services import DataplaneServices
|
222
222
|
from openapi_client.models.dataset import Dataset
|
223
|
+
from openapi_client.models.dataset_jobs import DatasetJobs
|
223
224
|
from openapi_client.models.dataset_list_response import DatasetListResponse
|
224
|
-
from openapi_client.models.
|
225
|
+
from openapi_client.models.dataset_metrics import DatasetMetrics
|
226
|
+
from openapi_client.models.dataset_state import DatasetState
|
225
227
|
from openapi_client.models.dataset_upload import DatasetUpload
|
226
228
|
from openapi_client.models.datasetupload_response import DatasetuploadResponse
|
227
229
|
from openapi_client.models.decorated_application_template import DecoratedApplicationTemplate
|
@@ -252,7 +254,6 @@ from openapi_client.models.decoratedcomputetemplate_list_response import Decorat
|
|
252
254
|
from openapi_client.models.decoratedcomputetemplate_response import DecoratedcomputetemplateResponse
|
253
255
|
from openapi_client.models.decoratedinteractivesession_list_response import DecoratedinteractivesessionListResponse
|
254
256
|
from openapi_client.models.decoratedinteractivesession_response import DecoratedinteractivesessionResponse
|
255
|
-
from openapi_client.models.decoratedjob_list_response import DecoratedjobListResponse
|
256
257
|
from openapi_client.models.decoratedjob_response import DecoratedjobResponse
|
257
258
|
from openapi_client.models.decoratedjobqueue_list_response import DecoratedjobqueueListResponse
|
258
259
|
from openapi_client.models.decoratedjobqueue_response import DecoratedjobqueueResponse
|
@@ -394,6 +395,7 @@ from openapi_client.models.machine_info import MachineInfo
|
|
394
395
|
from openapi_client.models.machine_launch_failure import MachineLaunchFailure
|
395
396
|
from openapi_client.models.machine_pool import MachinePool
|
396
397
|
from openapi_client.models.machine_state_info import MachineStateInfo
|
398
|
+
from openapi_client.models.metric import Metric
|
397
399
|
from openapi_client.models.metronome_customer_info_model import MetronomeCustomerInfoModel
|
398
400
|
from openapi_client.models.metronome_dashboard_type import MetronomeDashboardType
|
399
401
|
from openapi_client.models.metronomecustomerinfomodel_list_response import MetronomecustomerinfomodelListResponse
|
@@ -426,6 +428,7 @@ from openapi_client.models.notification_channel_email_config import Notification
|
|
426
428
|
from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
|
427
429
|
from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
|
428
430
|
from openapi_client.models.onboarding_user_cards_query import OnboardingUserCardsQuery
|
431
|
+
from openapi_client.models.operator_metrics import OperatorMetrics
|
429
432
|
from openapi_client.models.organization import Organization
|
430
433
|
from openapi_client.models.organization_availability import OrganizationAvailability
|
431
434
|
from openapi_client.models.organization_collaborator import OrganizationCollaborator
|
@@ -570,7 +573,6 @@ from openapi_client.models.sessiondetails_response import SessiondetailsResponse
|
|
570
573
|
from openapi_client.models.sessionhistoryitem_list_response import SessionhistoryitemListResponse
|
571
574
|
from openapi_client.models.sessions_sort_field import SessionsSortField
|
572
575
|
from openapi_client.models.sessionsshkey_response import SessionsshkeyResponse
|
573
|
-
from openapi_client.models.setup_initialize_session_options import SetupInitializeSessionOptions
|
574
576
|
from openapi_client.models.show_otp_source_return_api_model import ShowOTPSourceReturnApiModel
|
575
577
|
from openapi_client.models.showotpsourcereturnapimodel_response import ShowotpsourcereturnapimodelResponse
|
576
578
|
from openapi_client.models.snapshot_create_message import SnapshotCreateMessage
|