anyscale 0.26.64__py3-none-any.whl → 0.26.66__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/common.py +1 -1
- anyscale/_private/docgen/__main__.py +23 -4
- anyscale/_private/docgen/generator.py +127 -34
- anyscale/_private/docgen/generator_legacy.py +35 -12
- anyscale/client/README.md +37 -1
- anyscale/client/openapi_client/__init__.py +26 -0
- anyscale/client/openapi_client/api/default_api.py +1446 -245
- anyscale/client/openapi_client/models/__init__.py +26 -0
- anyscale/client/openapi_client/models/baseimagesenum.py +70 -1
- anyscale/client/openapi_client/models/cloud_deployment_compute_config.py +29 -1
- anyscale/client/openapi_client/models/connection_type.py +99 -0
- anyscale/client/openapi_client/models/create_experimental_workspace.py +29 -1
- anyscale/client/openapi_client/models/data_catalog.py +281 -0
- anyscale/client/openapi_client/models/data_catalog_connection.py +308 -0
- anyscale/client/openapi_client/models/data_catalog_connection_status.py +102 -0
- anyscale/client/openapi_client/models/data_catalog_provider.py +101 -0
- anyscale/client/openapi_client/models/databricks_connection_config.py +152 -0
- anyscale/client/openapi_client/models/databricks_connection_info.py +229 -0
- anyscale/client/openapi_client/models/databricks_connection_response.py +148 -0
- anyscale/client/openapi_client/models/databricks_register_request.py +187 -0
- anyscale/client/openapi_client/models/databricksconnectioninfo_response.py +121 -0
- anyscale/client/openapi_client/models/databricksconnectionresponse_response.py +121 -0
- anyscale/client/openapi_client/models/datacatalog_list_response.py +147 -0
- anyscale/client/openapi_client/models/datacatalogconnection_list_response.py +147 -0
- anyscale/client/openapi_client/models/decorated_session.py +29 -1
- anyscale/client/openapi_client/models/domain_verification.py +181 -0
- anyscale/client/openapi_client/models/list_databricks_connections.py +121 -0
- anyscale/client/openapi_client/models/o_auth_connection_response.py +229 -0
- anyscale/client/openapi_client/models/oauth_auth_url_response.py +121 -0
- anyscale/client/openapi_client/models/oauthconnectionresponse_response.py +121 -0
- anyscale/client/openapi_client/models/sso_config.py +148 -0
- anyscale/client/openapi_client/models/sso_connection.py +148 -0
- anyscale/client/openapi_client/models/sso_connection_state.py +100 -0
- anyscale/client/openapi_client/models/ssoconfig_response.py +121 -0
- anyscale/client/openapi_client/models/supportedbaseimagesenum.py +70 -1
- anyscale/client/openapi_client/models/task_summary_config.py +29 -3
- anyscale/client/openapi_client/models/task_table_config.py +29 -3
- anyscale/client/openapi_client/models/update_workspace_template.py +346 -0
- anyscale/client/openapi_client/models/usage_by_cluster_type.py +174 -0
- anyscale/client/openapi_client/models/usagebyclustertype_list_response.py +147 -0
- anyscale/client/openapi_client/models/validation_status.py +101 -0
- anyscale/commands/cloud_commands.py +310 -206
- anyscale/controllers/cloud_controller.py +175 -241
- anyscale/controllers/cloud_functional_verification_controller.py +6 -3
- anyscale/sdk/anyscale_client/models/baseimagesenum.py +70 -1
- anyscale/sdk/anyscale_client/models/cloud_deployment_compute_config.py +29 -1
- anyscale/sdk/anyscale_client/models/session.py +31 -3
- anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +70 -1
- anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
- anyscale/util.py +1 -1
- anyscale/version.py +1 -1
- {anyscale-0.26.64.dist-info → anyscale-0.26.66.dist-info}/METADATA +1 -1
- {anyscale-0.26.64.dist-info → anyscale-0.26.66.dist-info}/RECORD +58 -33
- anyscale/commands/cloud_commands_util.py +0 -10
- {anyscale-0.26.64.dist-info → anyscale-0.26.66.dist-info}/WHEEL +0 -0
- {anyscale-0.26.64.dist-info → anyscale-0.26.66.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.64.dist-info → anyscale-0.26.66.dist-info}/licenses/LICENSE +0 -0
- {anyscale-0.26.64.dist-info → anyscale-0.26.66.dist-info}/licenses/NOTICE +0 -0
- {anyscale-0.26.64.dist-info → anyscale-0.26.66.dist-info}/top_level.txt +0 -0
@@ -149,6 +149,7 @@ from openapi_client.models.compute_template_config import ComputeTemplateConfig
|
|
149
149
|
from openapi_client.models.compute_template_query import ComputeTemplateQuery
|
150
150
|
from openapi_client.models.computetemplate_response import ComputetemplateResponse
|
151
151
|
from openapi_client.models.computetemplateconfig_response import ComputetemplateconfigResponse
|
152
|
+
from openapi_client.models.connection_type import ConnectionType
|
152
153
|
from openapi_client.models.create_aioa_cloud_waitlist import CreateAioaCloudWaitlist
|
153
154
|
from openapi_client.models.create_analytics_event import CreateAnalyticsEvent
|
154
155
|
from openapi_client.models.create_app_config import CreateAppConfig
|
@@ -204,6 +205,18 @@ from openapi_client.models.credit_type import CreditType
|
|
204
205
|
from openapi_client.models.credits_v2 import CreditsV2
|
205
206
|
from openapi_client.models.customer_alert_status import CustomerAlertStatus
|
206
207
|
from openapi_client.models.dashboard_panel import DashboardPanel
|
208
|
+
from openapi_client.models.data_catalog import DataCatalog
|
209
|
+
from openapi_client.models.data_catalog_connection import DataCatalogConnection
|
210
|
+
from openapi_client.models.data_catalog_connection_status import DataCatalogConnectionStatus
|
211
|
+
from openapi_client.models.data_catalog_provider import DataCatalogProvider
|
212
|
+
from openapi_client.models.databricks_connection_config import DatabricksConnectionConfig
|
213
|
+
from openapi_client.models.databricks_connection_info import DatabricksConnectionInfo
|
214
|
+
from openapi_client.models.databricks_connection_response import DatabricksConnectionResponse
|
215
|
+
from openapi_client.models.databricks_register_request import DatabricksRegisterRequest
|
216
|
+
from openapi_client.models.databricksconnectioninfo_response import DatabricksconnectioninfoResponse
|
217
|
+
from openapi_client.models.databricksconnectionresponse_response import DatabricksconnectionresponseResponse
|
218
|
+
from openapi_client.models.datacatalog_list_response import DatacatalogListResponse
|
219
|
+
from openapi_client.models.datacatalogconnection_list_response import DatacatalogconnectionListResponse
|
207
220
|
from openapi_client.models.dataplane_services import DataplaneServices
|
208
221
|
from openapi_client.models.dataset import Dataset
|
209
222
|
from openapi_client.models.dataset_dag import DatasetDag
|
@@ -283,6 +296,7 @@ from openapi_client.models.describemachinepoolresponse_response import Describem
|
|
283
296
|
from openapi_client.models.describesystemworkloadresponse_response import DescribesystemworkloadresponseResponse
|
284
297
|
from openapi_client.models.detach_machine_pool_from_cloud_request import DetachMachinePoolFromCloudRequest
|
285
298
|
from openapi_client.models.detachmachinepoolfromcloudresponse_response import DetachmachinepoolfromcloudresponseResponse
|
299
|
+
from openapi_client.models.domain_verification import DomainVerification
|
286
300
|
from openapi_client.models.editable_cloud_resource import EditableCloudResource
|
287
301
|
from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResourceGCP
|
288
302
|
from openapi_client.models.email_verification_request import EmailVerificationRequest
|
@@ -359,6 +373,7 @@ from openapi_client.models.kubernetes_manager_registration_response import Kuber
|
|
359
373
|
from openapi_client.models.kubernetesmanagerregistrationresponse_response import KubernetesmanagerregistrationresponseResponse
|
360
374
|
from openapi_client.models.lb_resource import LBResource
|
361
375
|
from openapi_client.models.lbresource_response import LbresourceResponse
|
376
|
+
from openapi_client.models.list_databricks_connections import ListDatabricksConnections
|
362
377
|
from openapi_client.models.list_machine_pools_response import ListMachinePoolsResponse
|
363
378
|
from openapi_client.models.list_machines_response import ListMachinesResponse
|
364
379
|
from openapi_client.models.list_ray_sessions_response import ListRaySessionsResponse
|
@@ -429,6 +444,9 @@ from openapi_client.models.nodemetricsresponse_response import Nodemetricsrespon
|
|
429
444
|
from openapi_client.models.notification_channel_email_config import NotificationChannelEmailConfig
|
430
445
|
from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
|
431
446
|
from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
|
447
|
+
from openapi_client.models.o_auth_connection_response import OAuthConnectionResponse
|
448
|
+
from openapi_client.models.oauth_auth_url_response import OauthAuthUrlResponse
|
449
|
+
from openapi_client.models.oauthconnectionresponse_response import OauthconnectionresponseResponse
|
432
450
|
from openapi_client.models.object_storage import ObjectStorage
|
433
451
|
from openapi_client.models.operation_error import OperationError
|
434
452
|
from openapi_client.models.operation_progress import OperationProgress
|
@@ -525,6 +543,9 @@ from openapi_client.models.rollout_strategy import RolloutStrategy
|
|
525
543
|
from openapi_client.models.run_attempt_status import RunAttemptStatus
|
526
544
|
from openapi_client.models.run_status import RunStatus
|
527
545
|
from openapi_client.models.s3_download_location import S3DownloadLocation
|
546
|
+
from openapi_client.models.sso_config import SSOConfig
|
547
|
+
from openapi_client.models.sso_connection import SSOConnection
|
548
|
+
from openapi_client.models.sso_connection_state import SSOConnectionState
|
528
549
|
from openapi_client.models.sso_login_info import SSOLoginInfo
|
529
550
|
from openapi_client.models.sso_mode import SSOMode
|
530
551
|
from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
|
@@ -568,6 +589,7 @@ from openapi_client.models.sessionsshkey_response import SessionsshkeyResponse
|
|
568
589
|
from openapi_client.models.show_otp_source_return_api_model import ShowOTPSourceReturnApiModel
|
569
590
|
from openapi_client.models.showotpsourcereturnapimodel_response import ShowotpsourcereturnapimodelResponse
|
570
591
|
from openapi_client.models.sort_order import SortOrder
|
592
|
+
from openapi_client.models.ssoconfig_response import SsoconfigResponse
|
571
593
|
from openapi_client.models.ssologininfo_response import SsologininfoResponse
|
572
594
|
from openapi_client.models.start_session_options import StartSessionOptions
|
573
595
|
from openapi_client.models.stop_session_options import StopSessionOptions
|
@@ -625,17 +647,20 @@ from openapi_client.models.update_organization_collaborator import UpdateOrganiz
|
|
625
647
|
from openapi_client.models.update_payment_info import UpdatePaymentInfo
|
626
648
|
from openapi_client.models.update_project_collaborator import UpdateProjectCollaborator
|
627
649
|
from openapi_client.models.update_resource_quota import UpdateResourceQuota
|
650
|
+
from openapi_client.models.update_workspace_template import UpdateWorkspaceTemplate
|
628
651
|
from openapi_client.models.updatemachinepoolresponse_response import UpdatemachinepoolresponseResponse
|
629
652
|
from openapi_client.models.upload_session_command_logs_locations import UploadSessionCommandLogsLocations
|
630
653
|
from openapi_client.models.uploadsessioncommandlogslocations_response import UploadsessioncommandlogslocationsResponse
|
631
654
|
from openapi_client.models.upsert_resource_tags_request import UpsertResourceTagsRequest
|
632
655
|
from openapi_client.models.usage_by_cloud import UsageByCloud
|
633
656
|
from openapi_client.models.usage_by_cluster import UsageByCluster
|
657
|
+
from openapi_client.models.usage_by_cluster_type import UsageByClusterType
|
634
658
|
from openapi_client.models.usage_by_instance_type import UsageByInstanceType
|
635
659
|
from openapi_client.models.usage_by_project import UsageByProject
|
636
660
|
from openapi_client.models.usage_by_user import UsageByUser
|
637
661
|
from openapi_client.models.usagebycloud_list_response import UsagebycloudListResponse
|
638
662
|
from openapi_client.models.usagebycluster_list_response import UsagebyclusterListResponse
|
663
|
+
from openapi_client.models.usagebyclustertype_list_response import UsagebyclustertypeListResponse
|
639
664
|
from openapi_client.models.usagebyinstancetype_list_response import UsagebyinstancetypeListResponse
|
640
665
|
from openapi_client.models.usagebyproject_list_response import UsagebyprojectListResponse
|
641
666
|
from openapi_client.models.usagebyuser_list_response import UsagebyuserListResponse
|
@@ -648,6 +673,7 @@ from openapi_client.models.useworkosresponse_response import UseworkosresponseRe
|
|
648
673
|
from openapi_client.models.utm_fields import UtmFields
|
649
674
|
from openapi_client.models.validate_otp_params_api_model import ValidateOTPParamsApiModel
|
650
675
|
from openapi_client.models.validation_error import ValidationError
|
676
|
+
from openapi_client.models.validation_status import ValidationStatus
|
651
677
|
from openapi_client.models.waitlist_status_response import WaitlistStatusResponse
|
652
678
|
from openapi_client.models.waitlist_status_type import WaitlistStatusType
|
653
679
|
from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
|