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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. anyscale/__init__.py +10 -0
  2. anyscale/_private/anyscale_client/anyscale_client.py +10 -0
  3. anyscale/_private/anyscale_client/common.py +9 -0
  4. anyscale/_private/anyscale_client/fake_anyscale_client.py +28 -0
  5. anyscale/_private/docgen/__main__.py +12 -0
  6. anyscale/_private/docgen/generator.py +1 -0
  7. anyscale/client/README.md +25 -2
  8. anyscale/client/openapi_client/__init__.py +18 -2
  9. anyscale/client/openapi_client/api/default_api.py +992 -105
  10. anyscale/client/openapi_client/models/__init__.py +18 -2
  11. anyscale/client/openapi_client/models/admin_create_user.py +255 -0
  12. anyscale/client/openapi_client/models/admin_created_user.py +281 -0
  13. anyscale/client/openapi_client/models/admincreateduser_list_response.py +147 -0
  14. anyscale/client/openapi_client/models/{aggregated_instance_usage_with_cost_model.py → aggregated_instance_usage_csv.py} +100 -100
  15. anyscale/client/openapi_client/models/aggregated_usage.py +147 -0
  16. anyscale/client/openapi_client/models/aggregated_usage_query.py +236 -0
  17. anyscale/client/openapi_client/models/{aggregatedinstanceusagewithcostmodel_list_response.py → aggregatedinstanceusagecsv_list_response.py} +15 -15
  18. anyscale/client/openapi_client/models/aggregatedusage_response.py +121 -0
  19. anyscale/client/openapi_client/models/cloud_resource.py +29 -1
  20. anyscale/client/openapi_client/models/cloud_resource_gcp.py +29 -1
  21. anyscale/client/openapi_client/models/create_cloud_resource.py +29 -1
  22. anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +29 -1
  23. anyscale/client/openapi_client/models/usage_by_cloud.py +201 -0
  24. anyscale/client/openapi_client/models/usage_by_cluster.py +544 -0
  25. anyscale/client/openapi_client/models/usage_by_instance_type.py +174 -0
  26. anyscale/client/openapi_client/models/usage_by_project.py +255 -0
  27. anyscale/client/openapi_client/models/usage_by_user.py +201 -0
  28. anyscale/client/openapi_client/models/usagebycloud_list_response.py +147 -0
  29. anyscale/client/openapi_client/models/usagebycluster_list_response.py +147 -0
  30. anyscale/client/openapi_client/models/usagebyinstancetype_list_response.py +147 -0
  31. anyscale/client/openapi_client/models/usagebyproject_list_response.py +147 -0
  32. anyscale/client/openapi_client/models/usagebyuser_list_response.py +147 -0
  33. anyscale/commands/cloud_commands.py +8 -0
  34. anyscale/commands/command_examples.py +6 -0
  35. anyscale/commands/user_commands.py +49 -0
  36. anyscale/controllers/cloud_controller.py +3 -0
  37. anyscale/scripts.py +2 -0
  38. anyscale/user/__init__.py +35 -0
  39. anyscale/user/_private/user_sdk.py +32 -0
  40. anyscale/user/commands.py +42 -0
  41. anyscale/user/models.py +191 -0
  42. anyscale/version.py +1 -1
  43. {anyscale-0.24.86.dist-info → anyscale-0.24.88.dist-info}/METADATA +1 -1
  44. {anyscale-0.24.86.dist-info → anyscale-0.24.88.dist-info}/RECORD +49 -28
  45. {anyscale-0.24.86.dist-info → anyscale-0.24.88.dist-info}/LICENSE +0 -0
  46. {anyscale-0.24.86.dist-info → anyscale-0.24.88.dist-info}/NOTICE +0 -0
  47. {anyscale-0.24.86.dist-info → anyscale-0.24.88.dist-info}/WHEEL +0 -0
  48. {anyscale-0.24.86.dist-info → anyscale-0.24.88.dist-info}/entry_points.txt +0 -0
  49. {anyscale-0.24.86.dist-info → anyscale-0.24.88.dist-info}/top_level.txt +0 -0
anyscale/__init__.py CHANGED
@@ -27,6 +27,7 @@ from anyscale import (
27
27
  llm,
28
28
  schedule,
29
29
  service,
30
+ user,
30
31
  )
31
32
  from anyscale._private.anyscale_client import AnyscaleClient, AnyscaleClientInterface
32
33
  from anyscale._private.sdk.base_sdk import Timer
@@ -43,6 +44,7 @@ from anyscale.llm import LLMSDK
43
44
  from anyscale.schedule import ScheduleSDK
44
45
  from anyscale.sdk.anyscale_client.sdk import AnyscaleSDK
45
46
  from anyscale.service import ServiceSDK
47
+ from anyscale.user import UserSDK
46
48
  from anyscale.workspace import WorkspaceSDK
47
49
 
48
50
 
@@ -108,6 +110,7 @@ class Anyscale:
108
110
  self._schedule_sdk = ScheduleSDK(client=self._anyscale_client)
109
111
  self._image_sdk = ImageSDK(client=self._anyscale_client)
110
112
  self._llm_sdk = LLMSDK(client=self._anyscale_client)
113
+ self._user_sdk = UserSDK(client=self._anyscale_client)
111
114
  self._workspace_sdk = WorkspaceSDK(client=self._anyscale_client)
112
115
 
113
116
  @classmethod
@@ -132,6 +135,9 @@ class Anyscale:
132
135
  client=client, logger=logger, timer=timer,
133
136
  )
134
137
  obj._image_sdk = ImageSDK(client=client, logger=logger) # noqa: SLF001
138
+ obj._user_sdk = UserSDK( # noqa: SLF001
139
+ client=client, logger=logger, timer=timer
140
+ )
135
141
  obj._workspace_sdk = WorkspaceSDK( # noqa: SLF001
136
142
  client=client, logger=logger, timer=timer,
137
143
  )
@@ -165,6 +171,10 @@ class Anyscale:
165
171
  def llm(self) -> LLMSDK: # noqa: F811
166
172
  return self._llm_sdk
167
173
 
174
+ @property
175
+ def user(self) -> UserSDK: # noqa: F811
176
+ return self._user_sdk
177
+
168
178
  @property
169
179
  def workspace(self) -> WorkspaceSDK: # noqa: F811
170
180
  return self._workspace_sdk
@@ -34,6 +34,8 @@ from anyscale.authenticate import AuthenticationBlock, get_auth_api_client
34
34
  from anyscale.cli_logger import BlockLogger
35
35
  from anyscale.client.openapi_client.api.default_api import DefaultApi as InternalApi
36
36
  from anyscale.client.openapi_client.models import (
37
+ AdminCreatedUser,
38
+ AdminCreateUser,
37
39
  ArchiveStatus,
38
40
  Cloud,
39
41
  CloudDataBucketAccessMode,
@@ -1845,3 +1847,11 @@ class AnyscaleClient(AnyscaleClientInterface):
1845
1847
  )
1846
1848
 
1847
1849
  return filepath
1850
+
1851
+ @handle_api_exceptions
1852
+ def admin_batch_create_users(
1853
+ self, admin_create_users: List[AdminCreateUser]
1854
+ ) -> List[AdminCreatedUser]:
1855
+ return self._internal_api_client.admin_batch_create_users_api_v2_users_admin_batch_create_post(
1856
+ admin_create_users
1857
+ ).results
@@ -4,6 +4,8 @@ from typing import Dict, Generator, List, Optional, Tuple
4
4
 
5
5
  from anyscale._private.models.image_uri import ImageURI
6
6
  from anyscale.client.openapi_client.models import (
7
+ AdminCreatedUser,
8
+ AdminCreateUser,
7
9
  Cloud,
8
10
  ComputeTemplateConfig,
9
11
  CreateExperimentalWorkspace,
@@ -591,3 +593,10 @@ class AnyscaleClientInterface(ABC):
591
593
  ) -> str:
592
594
  """Download the aggregated instance usage csv."""
593
595
  raise NotImplementedError
596
+
597
+ @abstractmethod
598
+ def admin_batch_create_users(
599
+ self, admin_create_users: List[AdminCreateUser]
600
+ ) -> List[AdminCreatedUser]:
601
+ """Batch create users without email verification as an admin."""
602
+ raise NotImplementedError
@@ -14,6 +14,8 @@ from anyscale._private.models.image_uri import ImageURI
14
14
  from anyscale._private.models.model_base import ListResponse
15
15
  from anyscale.cli_logger import BlockLogger
16
16
  from anyscale.client.openapi_client.models import (
17
+ AdminCreatedUser,
18
+ AdminCreateUser,
17
19
  Cloud,
18
20
  ComputeTemplateConfig,
19
21
  CreateExperimentalWorkspace,
@@ -146,6 +148,7 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
146
148
  self._controller_logs: Dict[str, str] = {}
147
149
  self._schedules: Dict[str, DecoratedSchedule] = {}
148
150
  self._schedule_trigger_counts: Dict[str, int] = defaultdict(int)
151
+ self._users: Dict[str, AdminCreatedUser] = {}
149
152
  self._workspaces: Dict[str, ExperimentalWorkspace] = {}
150
153
  self._workspaces_dependencies: Dict[str, List[str]] = {}
151
154
  self._workspaces_env_vars: Dict[str, Dict[str, str]] = {}
@@ -1078,3 +1081,28 @@ class FakeAnyscaleClient(AnyscaleClientInterface):
1078
1081
  filepath = filename
1079
1082
 
1080
1083
  return filepath
1084
+
1085
+ def admin_batch_create_users(
1086
+ self, admin_create_users: List[AdminCreateUser]
1087
+ ) -> List[AdminCreatedUser]:
1088
+ created_users = []
1089
+ for admin_create_user in admin_create_users:
1090
+ if admin_create_user.email in self._users:
1091
+ raise ValueError(
1092
+ f"User with email '{admin_create_user.email}' already exists."
1093
+ )
1094
+
1095
+ user_id = f"user-id-{uuid.uuid4()!s}"
1096
+ created_user = AdminCreatedUser(
1097
+ user_id=user_id,
1098
+ email=admin_create_user.email,
1099
+ created_at=datetime.utcnow(),
1100
+ name=admin_create_user.name,
1101
+ lastname=admin_create_user.lastname,
1102
+ title=admin_create_user.title,
1103
+ is_sso_user=admin_create_user.is_sso_user,
1104
+ )
1105
+ created_users.append(created_user)
1106
+ self._users[admin_create_user.email] = created_user
1107
+
1108
+ return created_users
@@ -27,6 +27,7 @@ from anyscale.commands import (
27
27
  schedule_commands,
28
28
  service_account_commands,
29
29
  service_commands,
30
+ user_commands,
30
31
  workspace_commands,
31
32
  workspace_commands_v2,
32
33
  )
@@ -67,6 +68,7 @@ from anyscale.service.models import (
67
68
  ServiceVersionStatus,
68
69
  TracingConfig,
69
70
  )
71
+ from anyscale.user.models import AdminCreatedUser, AdminCreateUser
70
72
  from anyscale.workspace.models import WorkspaceConfig
71
73
 
72
74
 
@@ -81,6 +83,15 @@ ALL_MODULES = [
81
83
  sdk_commands=[anyscale.aggregated_instance_usage.download_csv,],
82
84
  models=[DownloadCSVFilters],
83
85
  ),
86
+ Module(
87
+ title="User",
88
+ filename="user.md",
89
+ cli_prefix="user",
90
+ cli_commands=[user_commands.admin_batch_create],
91
+ sdk_prefix="anyscale.user",
92
+ sdk_commands=[anyscale.user.admin_batch_create,],
93
+ models=[AdminCreateUser, AdminCreatedUser],
94
+ ),
84
95
  Module(
85
96
  title="Job",
86
97
  filename="job-api.md",
@@ -389,6 +400,7 @@ ALL_MODULES = [
389
400
  cloud_commands.cloud_verify,
390
401
  cloud_commands.list_cloud,
391
402
  cloud_commands.cloud_config_update,
403
+ cloud_commands.cloud_set_default,
392
404
  ],
393
405
  sdk_prefix="anyscale.cloud",
394
406
  sdk_commands=[],
@@ -26,6 +26,7 @@ CLI_NO_EXAMPLES = {
26
26
  "anyscale",
27
27
  "anyscale cloud",
28
28
  "anyscale cloud config",
29
+ "anyscale cloud set-default",
29
30
  "anyscale logs",
30
31
  "anyscale service-account",
31
32
  "anyscale service",
anyscale/client/README.md CHANGED
@@ -76,6 +76,7 @@ All URIs are relative to *http://localhost*
76
76
  Class | Method | HTTP request | Description
77
77
  ------------ | ------------- | ------------- | -------------
78
78
  *DefaultApi* | [**add_to_waitlist_api_v2_aioa_cloud_waitlist_post**](docs/DefaultApi.md#add_to_waitlist_api_v2_aioa_cloud_waitlist_post) | **POST** /api/v2/aioa_cloud_waitlist/ | Add To Waitlist
79
+ *DefaultApi* | [**admin_batch_create_users_api_v2_users_admin_batch_create_post**](docs/DefaultApi.md#admin_batch_create_users_api_v2_users_admin_batch_create_post) | **POST** /api/v2/users/admin_batch_create | Admin Batch Create Users
79
80
  *DefaultApi* | [**admission_api_v2_kubernetes_manager_admission_cloud_resource_id_post**](docs/DefaultApi.md#admission_api_v2_kubernetes_manager_admission_cloud_resource_id_post) | **POST** /api/v2/kubernetes_manager/admission/{cloud_resource_id} | Admission
80
81
  *DefaultApi* | [**alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put**](docs/DefaultApi.md#alter_organization_collaborator_api_v2_organization_collaborators_identity_id_put) | **PUT** /api/v2/organization_collaborators/{identity_id} | Alter Organization Collaborator
81
82
  *DefaultApi* | [**alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put**](docs/DefaultApi.md#alter_project_collaborator_api_v2_projects_project_id_collaborators_role_or_identity_id_put) | **PUT** /api/v2/projects/{project_id}/collaborators/{role_or_identity_id} | Alter Project Collaborator
@@ -162,6 +163,11 @@ Class | Method | HTTP request | Description
162
163
  *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
163
164
  *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
164
165
  *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
166
+ *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
167
+ *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
168
+ *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
169
+ *DefaultApi* | [**fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post**](docs/DefaultApi.md#fetch_usage_group_by_project_api_v2_aggregated_instance_usage_project_post) | **POST** /api/v2/aggregated_instance_usage/project | Fetch Usage Group By Project
170
+ *DefaultApi* | [**fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post**](docs/DefaultApi.md#fetch_usage_group_by_user_api_v2_aggregated_instance_usage_user_post) | **POST** /api/v2/aggregated_instance_usage/user | Fetch Usage Group By User
165
171
  *DefaultApi* | [**find_cloud_by_name_api_v2_clouds_find_by_name_post**](docs/DefaultApi.md#find_cloud_by_name_api_v2_clouds_find_by_name_post) | **POST** /api/v2/clouds/find_by_name | Find Cloud By Name
166
172
  *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
167
173
  *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
@@ -277,6 +283,7 @@ Class | Method | HTTP request | Description
277
283
  *DefaultApi* | [**get_template_readme_api_v2_experimental_workspaces_template_readme_template_id_get**](docs/DefaultApi.md#get_template_readme_api_v2_experimental_workspaces_template_readme_template_id_get) | **GET** /api/v2/experimental_workspaces/template/readme/{template_id} | Get Template Readme
278
284
  *DefaultApi* | [**get_templatized_cluster_environments_api_v2_application_templates_templatized_get**](docs/DefaultApi.md#get_templatized_cluster_environments_api_v2_application_templates_templatized_get) | **GET** /api/v2/application_templates/templatized/ | Get Templatized Cluster Environments
279
285
  *DefaultApi* | [**get_templatized_compute_configs_api_v2_compute_templates_templatized_cloud_id_get**](docs/DefaultApi.md#get_templatized_compute_configs_api_v2_compute_templates_templatized_cloud_id_get) | **GET** /api/v2/compute_templates/templatized/{cloud_id} | Get Templatized Compute Configs
286
+ *DefaultApi* | [**get_total_usage_api_v2_aggregated_instance_usage_get**](docs/DefaultApi.md#get_total_usage_api_v2_aggregated_instance_usage_get) | **GET** /api/v2/aggregated_instance_usage/ | Get Total Usage
280
287
  *DefaultApi* | [**get_user_info_api_v2_userinfo_get**](docs/DefaultApi.md#get_user_info_api_v2_userinfo_get) | **GET** /api/v2/userinfo/ | Get User Info
281
288
  *DefaultApi* | [**get_workspace_api_v2_experimental_workspaces_workspace_id_get**](docs/DefaultApi.md#get_workspace_api_v2_experimental_workspaces_workspace_id_get) | **GET** /api/v2/experimental_workspaces/{workspace_id} | Get Workspace
282
289
  *DefaultApi* | [**get_workspace_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_dataplane_artifacts_get**](docs/DefaultApi.md#get_workspace_dataplane_artifacts_api_v2_experimental_workspaces_workspace_id_dataplane_artifacts_get) | **GET** /api/v2/experimental_workspaces/{workspace_id}/dataplane_artifacts | Get Workspace Dataplane Artifacts
@@ -424,8 +431,14 @@ Class | Method | HTTP request | Description
424
431
  - [AWSCredentials](docs/AWSCredentials.md)
425
432
  - [AWSMemoryDBClusterConfig](docs/AWSMemoryDBClusterConfig.md)
426
433
  - [AccessConfig](docs/AccessConfig.md)
427
- - [AggregatedInstanceUsageWithCostModel](docs/AggregatedInstanceUsageWithCostModel.md)
428
- - [AggregatedinstanceusagewithcostmodelListResponse](docs/AggregatedinstanceusagewithcostmodelListResponse.md)
434
+ - [AdminCreateUser](docs/AdminCreateUser.md)
435
+ - [AdminCreatedUser](docs/AdminCreatedUser.md)
436
+ - [AdmincreateduserListResponse](docs/AdmincreateduserListResponse.md)
437
+ - [AggregatedInstanceUsageCSV](docs/AggregatedInstanceUsageCSV.md)
438
+ - [AggregatedUsage](docs/AggregatedUsage.md)
439
+ - [AggregatedUsageQuery](docs/AggregatedUsageQuery.md)
440
+ - [AggregatedinstanceusagecsvListResponse](docs/AggregatedinstanceusagecsvListResponse.md)
441
+ - [AggregatedusageResponse](docs/AggregatedusageResponse.md)
429
442
  - [AicaEndpoint](docs/AicaEndpoint.md)
430
443
  - [AicaEndpointEvent](docs/AicaEndpointEvent.md)
431
444
  - [AicaEndpointEventLevel](docs/AicaEndpointEventLevel.md)
@@ -1017,6 +1030,16 @@ Class | Method | HTTP request | Description
1017
1030
  - [UpdatemachinepoolresponseResponse](docs/UpdatemachinepoolresponseResponse.md)
1018
1031
  - [UploadSessionCommandLogsLocations](docs/UploadSessionCommandLogsLocations.md)
1019
1032
  - [UploadsessioncommandlogslocationsResponse](docs/UploadsessioncommandlogslocationsResponse.md)
1033
+ - [UsageByCloud](docs/UsageByCloud.md)
1034
+ - [UsageByCluster](docs/UsageByCluster.md)
1035
+ - [UsageByInstanceType](docs/UsageByInstanceType.md)
1036
+ - [UsageByProject](docs/UsageByProject.md)
1037
+ - [UsageByUser](docs/UsageByUser.md)
1038
+ - [UsagebycloudListResponse](docs/UsagebycloudListResponse.md)
1039
+ - [UsagebyclusterListResponse](docs/UsagebyclusterListResponse.md)
1040
+ - [UsagebyinstancetypeListResponse](docs/UsagebyinstancetypeListResponse.md)
1041
+ - [UsagebyprojectListResponse](docs/UsagebyprojectListResponse.md)
1042
+ - [UsagebyuserListResponse](docs/UsagebyuserListResponse.md)
1020
1043
  - [UserInfo](docs/UserInfo.md)
1021
1044
  - [UserResendEmailOptions](docs/UserResendEmailOptions.md)
1022
1045
  - [UserServiceAccessTypes](docs/UserServiceAccessTypes.md)
@@ -31,8 +31,14 @@ from openapi_client.exceptions import ApiException
31
31
  from openapi_client.models.aws_credentials import AWSCredentials
32
32
  from openapi_client.models.aws_memory_db_cluster_config import AWSMemoryDBClusterConfig
33
33
  from openapi_client.models.access_config import AccessConfig
34
- from openapi_client.models.aggregated_instance_usage_with_cost_model import AggregatedInstanceUsageWithCostModel
35
- from openapi_client.models.aggregatedinstanceusagewithcostmodel_list_response import AggregatedinstanceusagewithcostmodelListResponse
34
+ from openapi_client.models.admin_create_user import AdminCreateUser
35
+ from openapi_client.models.admin_created_user import AdminCreatedUser
36
+ from openapi_client.models.admincreateduser_list_response import AdmincreateduserListResponse
37
+ from openapi_client.models.aggregated_instance_usage_csv import AggregatedInstanceUsageCSV
38
+ from openapi_client.models.aggregated_usage import AggregatedUsage
39
+ from openapi_client.models.aggregated_usage_query import AggregatedUsageQuery
40
+ from openapi_client.models.aggregatedinstanceusagecsv_list_response import AggregatedinstanceusagecsvListResponse
41
+ from openapi_client.models.aggregatedusage_response import AggregatedusageResponse
36
42
  from openapi_client.models.aica_endpoint import AicaEndpoint
37
43
  from openapi_client.models.aica_endpoint_event import AicaEndpointEvent
38
44
  from openapi_client.models.aica_endpoint_event_level import AicaEndpointEventLevel
@@ -624,6 +630,16 @@ from openapi_client.models.update_resource_quota import UpdateResourceQuota
624
630
  from openapi_client.models.updatemachinepoolresponse_response import UpdatemachinepoolresponseResponse
625
631
  from openapi_client.models.upload_session_command_logs_locations import UploadSessionCommandLogsLocations
626
632
  from openapi_client.models.uploadsessioncommandlogslocations_response import UploadsessioncommandlogslocationsResponse
633
+ from openapi_client.models.usage_by_cloud import UsageByCloud
634
+ from openapi_client.models.usage_by_cluster import UsageByCluster
635
+ from openapi_client.models.usage_by_instance_type import UsageByInstanceType
636
+ from openapi_client.models.usage_by_project import UsageByProject
637
+ from openapi_client.models.usage_by_user import UsageByUser
638
+ from openapi_client.models.usagebycloud_list_response import UsagebycloudListResponse
639
+ from openapi_client.models.usagebycluster_list_response import UsagebyclusterListResponse
640
+ from openapi_client.models.usagebyinstancetype_list_response import UsagebyinstancetypeListResponse
641
+ from openapi_client.models.usagebyproject_list_response import UsagebyprojectListResponse
642
+ from openapi_client.models.usagebyuser_list_response import UsagebyuserListResponse
627
643
  from openapi_client.models.user_info import UserInfo
628
644
  from openapi_client.models.user_resend_email_options import UserResendEmailOptions
629
645
  from openapi_client.models.user_service_access_types import UserServiceAccessTypes