anyscale 0.26.9__py3-none-any.whl → 0.26.10__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/anyscale_halo/LICENSE +21 -0
 - anyscale/anyscale_halo/README.md +1 -0
 - anyscale/anyscale_halo/__init__.py +10 -0
 - anyscale/anyscale_halo/_utils.py +148 -0
 - anyscale/anyscale_halo/cursor.py +48 -0
 - anyscale/anyscale_halo/halo.py +609 -0
 - anyscale/anyscale_halo/halo_notebook.py +122 -0
 - anyscale/cli_logger.py +1 -1
 - anyscale/client/README.md +0 -14
 - anyscale/client/openapi_client/__init__.py +0 -9
 - anyscale/client/openapi_client/api/default_api.py +12 -577
 - anyscale/client/openapi_client/models/__init__.py +0 -9
 - anyscale/version.py +1 -1
 - {anyscale-0.26.9.dist-info → anyscale-0.26.10.dist-info}/METADATA +5 -2
 - {anyscale-0.26.9.dist-info → anyscale-0.26.10.dist-info}/RECORD +20 -22
 - anyscale/client/openapi_client/models/card.py +0 -181
 - anyscale/client/openapi_client/models/card_id.py +0 -108
 - anyscale/client/openapi_client/models/card_list_response.py +0 -147
 - anyscale/client/openapi_client/models/cluster_features.py +0 -152
 - anyscale/client/openapi_client/models/clusterfeatures_response.py +0 -121
 - anyscale/client/openapi_client/models/dismissal_type.py +0 -100
 - anyscale/client/openapi_client/models/feature_compatibility.py +0 -152
 - anyscale/client/openapi_client/models/onboarding_user_cards_query.py +0 -122
 - anyscale/client/openapi_client/models/visibility.py +0 -100
 - {anyscale-0.26.9.dist-info → anyscale-0.26.10.dist-info}/LICENSE +0 -0
 - {anyscale-0.26.9.dist-info → anyscale-0.26.10.dist-info}/NOTICE +0 -0
 - {anyscale-0.26.9.dist-info → anyscale-0.26.10.dist-info}/WHEEL +0 -0
 - {anyscale-0.26.9.dist-info → anyscale-0.26.10.dist-info}/entry_points.txt +0 -0
 - {anyscale-0.26.9.dist-info → anyscale-0.26.10.dist-info}/top_level.txt +0 -0
 
| 
         @@ -0,0 +1,122 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            from __future__ import absolute_import, print_function, unicode_literals
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            import sys
         
     | 
| 
      
 4 
     | 
    
         
            +
            import threading
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            import anyscale.anyscale_halo.cursor as cursor
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            from anyscale.anyscale_halo import Halo
         
     | 
| 
      
 9 
     | 
    
         
            +
            from anyscale.anyscale_halo._utils import colored_frame, decode_utf_8_text
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            class HaloNotebook(Halo):
         
     | 
| 
      
 13 
     | 
    
         
            +
                def __init__(
         
     | 
| 
      
 14 
     | 
    
         
            +
                    self,
         
     | 
| 
      
 15 
     | 
    
         
            +
                    text="",
         
     | 
| 
      
 16 
     | 
    
         
            +
                    color="cyan",
         
     | 
| 
      
 17 
     | 
    
         
            +
                    text_color=None,
         
     | 
| 
      
 18 
     | 
    
         
            +
                    spinner=None,
         
     | 
| 
      
 19 
     | 
    
         
            +
                    placement="left",
         
     | 
| 
      
 20 
     | 
    
         
            +
                    animation=None,
         
     | 
| 
      
 21 
     | 
    
         
            +
                    interval=-1,
         
     | 
| 
      
 22 
     | 
    
         
            +
                    enabled=True,
         
     | 
| 
      
 23 
     | 
    
         
            +
                    stream=sys.stdout,
         
     | 
| 
      
 24 
     | 
    
         
            +
                ):
         
     | 
| 
      
 25 
     | 
    
         
            +
                    super(HaloNotebook, self).__init__(
         
     | 
| 
      
 26 
     | 
    
         
            +
                        text=text,
         
     | 
| 
      
 27 
     | 
    
         
            +
                        color=color,
         
     | 
| 
      
 28 
     | 
    
         
            +
                        text_color=text_color,
         
     | 
| 
      
 29 
     | 
    
         
            +
                        spinner=spinner,
         
     | 
| 
      
 30 
     | 
    
         
            +
                        placement=placement,
         
     | 
| 
      
 31 
     | 
    
         
            +
                        animation=animation,
         
     | 
| 
      
 32 
     | 
    
         
            +
                        interval=interval,
         
     | 
| 
      
 33 
     | 
    
         
            +
                        enabled=enabled,
         
     | 
| 
      
 34 
     | 
    
         
            +
                        stream=stream,
         
     | 
| 
      
 35 
     | 
    
         
            +
                    )
         
     | 
| 
      
 36 
     | 
    
         
            +
                    self.output = self._make_output_widget()
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
                def _make_output_widget(self):
         
     | 
| 
      
 39 
     | 
    
         
            +
                    from ipywidgets.widgets import Output
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                    return Output()
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
                # TODO: using property and setter
         
     | 
| 
      
 44 
     | 
    
         
            +
                def _output(self, text=""):
         
     | 
| 
      
 45 
     | 
    
         
            +
                    return ({"name": "stdout", "output_type": "stream", "text": text},)
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
                def clear(self):
         
     | 
| 
      
 48 
     | 
    
         
            +
                    if not self.enabled:
         
     | 
| 
      
 49 
     | 
    
         
            +
                        return self
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                    with self.output:
         
     | 
| 
      
 52 
     | 
    
         
            +
                        self.output.outputs += self._output("\r")
         
     | 
| 
      
 53 
     | 
    
         
            +
                        self.output.outputs += self._output(self.CLEAR_LINE)
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
                    self.output.outputs = self._output()
         
     | 
| 
      
 56 
     | 
    
         
            +
                    return self
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
                def _render_frame(self):
         
     | 
| 
      
 59 
     | 
    
         
            +
                    frame = self.frame()
         
     | 
| 
      
 60 
     | 
    
         
            +
                    output = "\r{}".format(frame)
         
     | 
| 
      
 61 
     | 
    
         
            +
                    with self.output:
         
     | 
| 
      
 62 
     | 
    
         
            +
                        self.output.outputs += self._output(output)
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
                def start(self, text=None):
         
     | 
| 
      
 65 
     | 
    
         
            +
                    if text is not None:
         
     | 
| 
      
 66 
     | 
    
         
            +
                        self.text = text
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
                    if not self.enabled or self._spinner_id is not None:
         
     | 
| 
      
 69 
     | 
    
         
            +
                        return self
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                    if self._stream.isatty():
         
     | 
| 
      
 72 
     | 
    
         
            +
                        cursor.hide()
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
                    self.output = self._make_output_widget()
         
     | 
| 
      
 75 
     | 
    
         
            +
                    from IPython.display import display
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
                    display(self.output)
         
     | 
| 
      
 78 
     | 
    
         
            +
                    self._stop_spinner = threading.Event()
         
     | 
| 
      
 79 
     | 
    
         
            +
                    self._spinner_thread = threading.Thread(target=self.render)
         
     | 
| 
      
 80 
     | 
    
         
            +
                    self._spinner_thread.setDaemon(True)
         
     | 
| 
      
 81 
     | 
    
         
            +
                    self._render_frame()
         
     | 
| 
      
 82 
     | 
    
         
            +
                    self._spinner_id = self._spinner_thread.name
         
     | 
| 
      
 83 
     | 
    
         
            +
                    self._spinner_thread.start()
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
                    return self
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                def stop_and_persist(self, symbol=" ", text=None):
         
     | 
| 
      
 88 
     | 
    
         
            +
                    """Stops the spinner and persists the final frame to be shown.
         
     | 
| 
      
 89 
     | 
    
         
            +
                    Parameters
         
     | 
| 
      
 90 
     | 
    
         
            +
                    ----------
         
     | 
| 
      
 91 
     | 
    
         
            +
                    symbol : str, optional
         
     | 
| 
      
 92 
     | 
    
         
            +
                        Symbol to be shown in final frame
         
     | 
| 
      
 93 
     | 
    
         
            +
                    text: str, optional
         
     | 
| 
      
 94 
     | 
    
         
            +
                        Text to be shown in final frame
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
                    Returns
         
     | 
| 
      
 97 
     | 
    
         
            +
                    -------
         
     | 
| 
      
 98 
     | 
    
         
            +
                    self
         
     | 
| 
      
 99 
     | 
    
         
            +
                    """
         
     | 
| 
      
 100 
     | 
    
         
            +
                    if not self.enabled:
         
     | 
| 
      
 101 
     | 
    
         
            +
                        return self
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
                    symbol = decode_utf_8_text(symbol)
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
                    if text is not None:
         
     | 
| 
      
 106 
     | 
    
         
            +
                        text = decode_utf_8_text(text)
         
     | 
| 
      
 107 
     | 
    
         
            +
                    else:
         
     | 
| 
      
 108 
     | 
    
         
            +
                        text = self._text["original"]
         
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
                    text = text.strip()
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
                    if self._text_color:
         
     | 
| 
      
 113 
     | 
    
         
            +
                        text = colored_frame(text, self._text_color)
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
                    self.stop()
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
                    output = "\r{} {}\n".format(
         
     | 
| 
      
 118 
     | 
    
         
            +
                        *[(text, symbol) if self._placement == "right" else (symbol, text)][0]
         
     | 
| 
      
 119 
     | 
    
         
            +
                    )
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
                    with self.output:
         
     | 
| 
      
 122 
     | 
    
         
            +
                        self.output.outputs = self._output(output)
         
     | 
    
        anyscale/cli_logger.py
    CHANGED
    
    | 
         @@ -8,8 +8,8 @@ from typing import List, Optional 
     | 
|
| 
       8 
8 
     | 
    
         
             
            from botocore.exceptions import ClientError
         
     | 
| 
       9 
9 
     | 
    
         
             
            import click
         
     | 
| 
       10 
10 
     | 
    
         
             
            import colorama
         
     | 
| 
       11 
     | 
    
         
            -
            from halo import Halo
         
     | 
| 
       12 
11 
     | 
    
         | 
| 
      
 12 
     | 
    
         
            +
            from anyscale.anyscale_halo import Halo
         
     | 
| 
       13 
13 
     | 
    
         
             
            from anyscale.client.openapi_client.models import (
         
     | 
| 
       14 
14 
     | 
    
         
             
                CloudAnalyticsEventCloudProviderError,
         
     | 
| 
       15 
15 
     | 
    
         
             
                CloudAnalyticsEventCloudResource,
         
     | 
    
        anyscale/client/README.md
    CHANGED
    
    | 
         @@ -115,7 +115,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       115 
115 
     | 
    
         
             
            *DefaultApi* | [**create_configuration_script_api_v2_organization_configurations_create_helper_get**](docs/DefaultApi.md#create_configuration_script_api_v2_organization_configurations_create_helper_get) | **GET** /api/v2/organization_configurations/create_helper | Create Configuration Script
         
     | 
| 
       116 
116 
     | 
    
         
             
            *DefaultApi* | [**create_connect_session_api_v2_sessions_create_connect_session_post**](docs/DefaultApi.md#create_connect_session_api_v2_sessions_create_connect_session_post) | **POST** /api/v2/sessions/create_connect_session | Create Connect Session
         
     | 
| 
       117 
117 
     | 
    
         
             
            *DefaultApi* | [**create_dataset_upload_api_v2_datasets_upload_post**](docs/DefaultApi.md#create_dataset_upload_api_v2_datasets_upload_post) | **POST** /api/v2/datasets/upload | Create Dataset Upload
         
     | 
| 
       118 
     | 
    
         
            -
            *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
         
     | 
| 
       119 
118 
     | 
    
         
             
            *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
         
     | 
| 
       120 
119 
     | 
    
         
             
            *DefaultApi* | [**create_invitation_api_v2_organization_invitations_post**](docs/DefaultApi.md#create_invitation_api_v2_organization_invitations_post) | **POST** /api/v2/organization_invitations/ | Create Invitation
         
     | 
| 
       121 
120 
     | 
    
         
             
            *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
         
     | 
| 
         @@ -157,7 +156,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       157 
156 
     | 
    
         
             
            *DefaultApi* | [**describe_session_api_v2_sessions_session_id_describe_get**](docs/DefaultApi.md#describe_session_api_v2_sessions_session_id_describe_get) | **GET** /api/v2/sessions/{session_id}/describe | Describe Session
         
     | 
| 
       158 
157 
     | 
    
         
             
            *DefaultApi* | [**describe_system_workload_api_v2_system_workload_cloud_id_describe_post**](docs/DefaultApi.md#describe_system_workload_api_v2_system_workload_cloud_id_describe_post) | **POST** /api/v2/system_workload/{cloud_id}/describe | Describe System Workload
         
     | 
| 
       159 
158 
     | 
    
         
             
            *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
         
     | 
| 
       160 
     | 
    
         
            -
            *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
         
     | 
| 
       161 
159 
     | 
    
         
             
            *DefaultApi* | [**download_aggregated_instance_usage_csv_api_v2_aggregated_instance_usage_download_csv_get**](docs/DefaultApi.md#download_aggregated_instance_usage_csv_api_v2_aggregated_instance_usage_download_csv_get) | **GET** /api/v2/aggregated_instance_usage/download_csv | Download Aggregated Instance Usage Csv
         
     | 
| 
       162 
160 
     | 
    
         
             
            *DefaultApi* | [**download_aggregated_instance_usage_csv_internal_api_v2_aggregated_instance_usage_download_csv_internal_get**](docs/DefaultApi.md#download_aggregated_instance_usage_csv_internal_api_v2_aggregated_instance_usage_download_csv_internal_get) | **GET** /api/v2/aggregated_instance_usage/download_csv_internal | Download Aggregated Instance Usage Csv Internal
         
     | 
| 
       163 
161 
     | 
    
         
             
            *DefaultApi* | [**echo_ip_api_v2_health_echo_ip_get**](docs/DefaultApi.md#echo_ip_api_v2_health_echo_ip_get) | **GET** /api/v2/health/echo_ip | Echo Ip
         
     | 
| 
         @@ -214,7 +212,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       214 
212 
     | 
    
         
             
            *DefaultApi* | [**get_events_api_v2_sessions_session_id_events_get**](docs/DefaultApi.md#get_events_api_v2_sessions_session_id_events_get) | **GET** /api/v2/sessions/{session_id}/events | Get Events
         
     | 
| 
       215 
213 
     | 
    
         
             
            *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
         
     | 
| 
       216 
214 
     | 
    
         
             
            *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
         
     | 
| 
       217 
     | 
    
         
            -
            *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
         
     | 
| 
       218 
215 
     | 
    
         
             
            *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
         
     | 
| 
       219 
216 
     | 
    
         
             
            *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
         
     | 
| 
       220 
217 
     | 
    
         
             
            *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
         
     | 
| 
         @@ -356,7 +353,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       356 
353 
     | 
    
         
             
            *DefaultApi* | [**search_resource_notifications_api_v2_resource_notifications_search_post**](docs/DefaultApi.md#search_resource_notifications_api_v2_resource_notifications_search_post) | **POST** /api/v2/resource_notifications/search | Search Resource Notifications
         
     | 
| 
       357 
354 
     | 
    
         
             
            *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
         
     | 
| 
       358 
355 
     | 
    
         
             
            *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
         
     | 
| 
       359 
     | 
    
         
            -
            *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
         
     | 
| 
       360 
356 
     | 
    
         
             
            *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
         
     | 
| 
       361 
357 
     | 
    
         
             
            *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
         
     | 
| 
       362 
358 
     | 
    
         
             
            *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
         
     | 
| 
         @@ -371,7 +367,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       371 
367 
     | 
    
         
             
            *DefaultApi* | [**trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post**](docs/DefaultApi.md#trigger_cron_job_api_v2_experimental_cron_jobs_cron_job_id_trigger_post) | **POST** /api/v2/experimental_cron_jobs/{cron_job_id}/trigger | Trigger Cron Job
         
     | 
| 
       372 
368 
     | 
    
         
             
            *DefaultApi* | [**try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post**](docs/DefaultApi.md#try_claim_cloud_api_v2_aioa_cloud_waitlist_claim_cloud_post) | **POST** /api/v2/aioa_cloud_waitlist/claim_cloud | Try Claim Cloud
         
     | 
| 
       373 
369 
     | 
    
         
             
            *DefaultApi* | [**try_login_api_v2_users_try_login_post**](docs/DefaultApi.md#try_login_api_v2_users_try_login_post) | **POST** /api/v2/users/try-login | Try Login
         
     | 
| 
       374 
     | 
    
         
            -
            *DefaultApi* | [**undismiss_user_card_api_v2_onboarding_cards_card_id_undismiss_post**](docs/DefaultApi.md#undismiss_user_card_api_v2_onboarding_cards_card_id_undismiss_post) | **POST** /api/v2/onboarding_cards/{card_id}/undismiss | Undismiss User Card
         
     | 
| 
       375 
370 
     | 
    
         
             
            *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
         
     | 
| 
       376 
371 
     | 
    
         
             
            *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
         
     | 
| 
       377 
372 
     | 
    
         
             
            *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
         
     | 
| 
         @@ -453,9 +448,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       453 
448 
     | 
    
         
             
             - [BuildResponse](docs/BuildResponse.md)
         
     | 
| 
       454 
449 
     | 
    
         
             
             - [BuildStatus](docs/BuildStatus.md)
         
     | 
| 
       455 
450 
     | 
    
         
             
             - [BuildlogresponseResponse](docs/BuildlogresponseResponse.md)
         
     | 
| 
       456 
     | 
    
         
            -
             - [Card](docs/Card.md)
         
     | 
| 
       457 
     | 
    
         
            -
             - [CardId](docs/CardId.md)
         
     | 
| 
       458 
     | 
    
         
            -
             - [CardListResponse](docs/CardListResponse.md)
         
     | 
| 
       459 
451 
     | 
    
         
             
             - [ChangePasswordParams](docs/ChangePasswordParams.md)
         
     | 
| 
       460 
452 
     | 
    
         
             
             - [CleanupLeakedGrafanaDashboardResponse](docs/CleanupLeakedGrafanaDashboardResponse.md)
         
     | 
| 
       461 
453 
     | 
    
         
             
             - [CleanupleakedgrafanadashboardresponseResponse](docs/CleanupleakedgrafanadashboardresponseResponse.md)
         
     | 
| 
         @@ -517,7 +509,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       517 
509 
     | 
    
         
             
             - [ClusterEvent](docs/ClusterEvent.md)
         
     | 
| 
       518 
510 
     | 
    
         
             
             - [ClusterEventSource](docs/ClusterEventSource.md)
         
     | 
| 
       519 
511 
     | 
    
         
             
             - [ClusterEventsOutput](docs/ClusterEventsOutput.md)
         
     | 
| 
       520 
     | 
    
         
            -
             - [ClusterFeatures](docs/ClusterFeatures.md)
         
     | 
| 
       521 
512 
     | 
    
         
             
             - [ClusterManagementStackVersions](docs/ClusterManagementStackVersions.md)
         
     | 
| 
       522 
513 
     | 
    
         
             
             - [ClusterSize](docs/ClusterSize.md)
         
     | 
| 
       523 
514 
     | 
    
         
             
             - [ClusterState](docs/ClusterState.md)
         
     | 
| 
         @@ -526,7 +517,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       526 
517 
     | 
    
         
             
             - [ClusterauthresponseResponse](docs/ClusterauthresponseResponse.md)
         
     | 
| 
       527 
518 
     | 
    
         
             
             - [ClustereventListResponse](docs/ClustereventListResponse.md)
         
     | 
| 
       528 
519 
     | 
    
         
             
             - [ClustereventsoutputResponse](docs/ClustereventsoutputResponse.md)
         
     | 
| 
       529 
     | 
    
         
            -
             - [ClusterfeaturesResponse](docs/ClusterfeaturesResponse.md)
         
     | 
| 
       530 
520 
     | 
    
         
             
             - [ComputeNodeType](docs/ComputeNodeType.md)
         
     | 
| 
       531 
521 
     | 
    
         
             
             - [ComputeStack](docs/ComputeStack.md)
         
     | 
| 
       532 
522 
     | 
    
         
             
             - [ComputeTemplate](docs/ComputeTemplate.md)
         
     | 
| 
         @@ -654,7 +644,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       654 
644 
     | 
    
         
             
             - [DescribesystemworkloadresponseResponse](docs/DescribesystemworkloadresponseResponse.md)
         
     | 
| 
       655 
645 
     | 
    
         
             
             - [DetachMachinePoolFromCloudRequest](docs/DetachMachinePoolFromCloudRequest.md)
         
     | 
| 
       656 
646 
     | 
    
         
             
             - [DetachmachinepoolfromcloudresponseResponse](docs/DetachmachinepoolfromcloudresponseResponse.md)
         
     | 
| 
       657 
     | 
    
         
            -
             - [DismissalType](docs/DismissalType.md)
         
     | 
| 
       658 
647 
     | 
    
         
             
             - [EditableCloudResource](docs/EditableCloudResource.md)
         
     | 
| 
       659 
648 
     | 
    
         
             
             - [EditableCloudResourceGCP](docs/EditableCloudResourceGCP.md)
         
     | 
| 
       660 
649 
     | 
    
         
             
             - [Error](docs/Error.md)
         
     | 
| 
         @@ -670,7 +659,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       670 
659 
     | 
    
         
             
             - [ExternalServiceStatusResponse](docs/ExternalServiceStatusResponse.md)
         
     | 
| 
       671 
660 
     | 
    
         
             
             - [ExternalTerminalCommand](docs/ExternalTerminalCommand.md)
         
     | 
| 
       672 
661 
     | 
    
         
             
             - [ExternalservicestatusresponseResponse](docs/ExternalservicestatusresponseResponse.md)
         
     | 
| 
       673 
     | 
    
         
            -
             - [FeatureCompatibility](docs/FeatureCompatibility.md)
         
     | 
| 
       674 
662 
     | 
    
         
             
             - [FeatureFlagResponse](docs/FeatureFlagResponse.md)
         
     | 
| 
       675 
663 
     | 
    
         
             
             - [FeatureflagresponseResponse](docs/FeatureflagresponseResponse.md)
         
     | 
| 
       676 
664 
     | 
    
         
             
             - [FineTuneType](docs/FineTuneType.md)
         
     | 
| 
         @@ -784,7 +772,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       784 
772 
     | 
    
         
             
             - [NotificationChannelEmailConfig](docs/NotificationChannelEmailConfig.md)
         
     | 
| 
       785 
773 
     | 
    
         
             
             - [NotificationChannelSlackConfig](docs/NotificationChannelSlackConfig.md)
         
     | 
| 
       786 
774 
     | 
    
         
             
             - [NotificationChannelWebhookConfig](docs/NotificationChannelWebhookConfig.md)
         
     | 
| 
       787 
     | 
    
         
            -
             - [OnboardingUserCardsQuery](docs/OnboardingUserCardsQuery.md)
         
     | 
| 
       788 
775 
     | 
    
         
             
             - [OperatorMetricId](docs/OperatorMetricId.md)
         
     | 
| 
       789 
776 
     | 
    
         
             
             - [OperatorMetrics](docs/OperatorMetrics.md)
         
     | 
| 
       790 
777 
     | 
    
         
             
             - [Organization](docs/Organization.md)
         
     | 
| 
         @@ -990,7 +977,6 @@ Class | Method | HTTP request | Description 
     | 
|
| 
       990 
977 
     | 
    
         
             
             - [UtmFields](docs/UtmFields.md)
         
     | 
| 
       991 
978 
     | 
    
         
             
             - [ValidateOTPParamsApiModel](docs/ValidateOTPParamsApiModel.md)
         
     | 
| 
       992 
979 
     | 
    
         
             
             - [ValidationError](docs/ValidationError.md)
         
     | 
| 
       993 
     | 
    
         
            -
             - [Visibility](docs/Visibility.md)
         
     | 
| 
       994 
980 
     | 
    
         
             
             - [WaitlistStatusResponse](docs/WaitlistStatusResponse.md)
         
     | 
| 
       995 
981 
     | 
    
         
             
             - [WaitlistStatusType](docs/WaitlistStatusType.md)
         
     | 
| 
       996 
982 
     | 
    
         
             
             - [WaitliststatusresponseResponse](docs/WaitliststatusresponseResponse.md)
         
     | 
| 
         @@ -82,9 +82,6 @@ from openapi_client.models.build_registration import BuildRegistration 
     | 
|
| 
       82 
82 
     | 
    
         
             
            from openapi_client.models.build_response import BuildResponse
         
     | 
| 
       83 
83 
     | 
    
         
             
            from openapi_client.models.build_status import BuildStatus
         
     | 
| 
       84 
84 
     | 
    
         
             
            from openapi_client.models.buildlogresponse_response import BuildlogresponseResponse
         
     | 
| 
       85 
     | 
    
         
            -
            from openapi_client.models.card import Card
         
     | 
| 
       86 
     | 
    
         
            -
            from openapi_client.models.card_id import CardId
         
     | 
| 
       87 
     | 
    
         
            -
            from openapi_client.models.card_list_response import CardListResponse
         
     | 
| 
       88 
85 
     | 
    
         
             
            from openapi_client.models.change_password_params import ChangePasswordParams
         
     | 
| 
       89 
86 
     | 
    
         
             
            from openapi_client.models.cleanup_leaked_grafana_dashboard_response import CleanupLeakedGrafanaDashboardResponse
         
     | 
| 
       90 
87 
     | 
    
         
             
            from openapi_client.models.cleanupleakedgrafanadashboardresponse_response import CleanupleakedgrafanadashboardresponseResponse
         
     | 
| 
         @@ -146,7 +143,6 @@ from openapi_client.models.cluster_environments_query import ClusterEnvironments 
     | 
|
| 
       146 
143 
     | 
    
         
             
            from openapi_client.models.cluster_event import ClusterEvent
         
     | 
| 
       147 
144 
     | 
    
         
             
            from openapi_client.models.cluster_event_source import ClusterEventSource
         
     | 
| 
       148 
145 
     | 
    
         
             
            from openapi_client.models.cluster_events_output import ClusterEventsOutput
         
     | 
| 
       149 
     | 
    
         
            -
            from openapi_client.models.cluster_features import ClusterFeatures
         
     | 
| 
       150 
146 
     | 
    
         
             
            from openapi_client.models.cluster_management_stack_versions import ClusterManagementStackVersions
         
     | 
| 
       151 
147 
     | 
    
         
             
            from openapi_client.models.cluster_size import ClusterSize
         
     | 
| 
       152 
148 
     | 
    
         
             
            from openapi_client.models.cluster_state import ClusterState
         
     | 
| 
         @@ -155,7 +151,6 @@ from openapi_client.models.cluster_status_details import ClusterStatusDetails 
     | 
|
| 
       155 
151 
     | 
    
         
             
            from openapi_client.models.clusterauthresponse_response import ClusterauthresponseResponse
         
     | 
| 
       156 
152 
     | 
    
         
             
            from openapi_client.models.clusterevent_list_response import ClustereventListResponse
         
     | 
| 
       157 
153 
     | 
    
         
             
            from openapi_client.models.clustereventsoutput_response import ClustereventsoutputResponse
         
     | 
| 
       158 
     | 
    
         
            -
            from openapi_client.models.clusterfeatures_response import ClusterfeaturesResponse
         
     | 
| 
       159 
154 
     | 
    
         
             
            from openapi_client.models.compute_node_type import ComputeNodeType
         
     | 
| 
       160 
155 
     | 
    
         
             
            from openapi_client.models.compute_stack import ComputeStack
         
     | 
| 
       161 
156 
     | 
    
         
             
            from openapi_client.models.compute_template import ComputeTemplate
         
     | 
| 
         @@ -283,7 +278,6 @@ from openapi_client.models.describemachinepoolresponse_response import Describem 
     | 
|
| 
       283 
278 
     | 
    
         
             
            from openapi_client.models.describesystemworkloadresponse_response import DescribesystemworkloadresponseResponse
         
     | 
| 
       284 
279 
     | 
    
         
             
            from openapi_client.models.detach_machine_pool_from_cloud_request import DetachMachinePoolFromCloudRequest
         
     | 
| 
       285 
280 
     | 
    
         
             
            from openapi_client.models.detachmachinepoolfromcloudresponse_response import DetachmachinepoolfromcloudresponseResponse
         
     | 
| 
       286 
     | 
    
         
            -
            from openapi_client.models.dismissal_type import DismissalType
         
     | 
| 
       287 
281 
     | 
    
         
             
            from openapi_client.models.editable_cloud_resource import EditableCloudResource
         
     | 
| 
       288 
282 
     | 
    
         
             
            from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResourceGCP
         
     | 
| 
       289 
283 
     | 
    
         
             
            from openapi_client.models.error import Error
         
     | 
| 
         @@ -299,7 +293,6 @@ from openapi_client.models.external_service_status import ExternalServiceStatus 
     | 
|
| 
       299 
293 
     | 
    
         
             
            from openapi_client.models.external_service_status_response import ExternalServiceStatusResponse
         
     | 
| 
       300 
294 
     | 
    
         
             
            from openapi_client.models.external_terminal_command import ExternalTerminalCommand
         
     | 
| 
       301 
295 
     | 
    
         
             
            from openapi_client.models.externalservicestatusresponse_response import ExternalservicestatusresponseResponse
         
     | 
| 
       302 
     | 
    
         
            -
            from openapi_client.models.feature_compatibility import FeatureCompatibility
         
     | 
| 
       303 
296 
     | 
    
         
             
            from openapi_client.models.feature_flag_response import FeatureFlagResponse
         
     | 
| 
       304 
297 
     | 
    
         
             
            from openapi_client.models.featureflagresponse_response import FeatureflagresponseResponse
         
     | 
| 
       305 
298 
     | 
    
         
             
            from openapi_client.models.fine_tune_type import FineTuneType
         
     | 
| 
         @@ -413,7 +406,6 @@ from openapi_client.models.node_type import NodeType 
     | 
|
| 
       413 
406 
     | 
    
         
             
            from openapi_client.models.notification_channel_email_config import NotificationChannelEmailConfig
         
     | 
| 
       414 
407 
     | 
    
         
             
            from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
         
     | 
| 
       415 
408 
     | 
    
         
             
            from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
         
     | 
| 
       416 
     | 
    
         
            -
            from openapi_client.models.onboarding_user_cards_query import OnboardingUserCardsQuery
         
     | 
| 
       417 
409 
     | 
    
         
             
            from openapi_client.models.operator_metric_id import OperatorMetricId
         
     | 
| 
       418 
410 
     | 
    
         
             
            from openapi_client.models.operator_metrics import OperatorMetrics
         
     | 
| 
       419 
411 
     | 
    
         
             
            from openapi_client.models.organization import Organization
         
     | 
| 
         @@ -619,7 +611,6 @@ from openapi_client.models.userinfo_response import UserinfoResponse 
     | 
|
| 
       619 
611 
     | 
    
         
             
            from openapi_client.models.utm_fields import UtmFields
         
     | 
| 
       620 
612 
     | 
    
         
             
            from openapi_client.models.validate_otp_params_api_model import ValidateOTPParamsApiModel
         
     | 
| 
       621 
613 
     | 
    
         
             
            from openapi_client.models.validation_error import ValidationError
         
     | 
| 
       622 
     | 
    
         
            -
            from openapi_client.models.visibility import Visibility
         
     | 
| 
       623 
614 
     | 
    
         
             
            from openapi_client.models.waitlist_status_response import WaitlistStatusResponse
         
     | 
| 
       624 
615 
     | 
    
         
             
            from openapi_client.models.waitlist_status_type import WaitlistStatusType
         
     | 
| 
       625 
616 
     | 
    
         
             
            from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
         
     |