anyscale 0.26.63__py3-none-any.whl → 0.26.65__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/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 -0
- anyscale/client/openapi_client/__init__.py +26 -0
- anyscale/client/openapi_client/api/default_api.py +1423 -97
- anyscale/client/openapi_client/models/__init__.py +26 -0
- anyscale/client/openapi_client/models/apply_production_service_v2_model.py +2 -2
- 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/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 +174 -240
- anyscale/controllers/cloud_functional_verification_controller.py +6 -3
- anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +2 -2
- anyscale/sdk/anyscale_client/models/apply_service_model.py +2 -2
- anyscale/sdk/anyscale_client/models/session.py +31 -3
- anyscale/util.py +1 -1
- anyscale/version.py +1 -1
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/METADATA +1 -1
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/RECORD +51 -26
- anyscale/commands/cloud_commands_util.py +0 -10
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/WHEEL +0 -0
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/licenses/LICENSE +0 -0
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/licenses/NOTICE +0 -0
- {anyscale-0.26.63.dist-info → anyscale-0.26.65.dist-info}/top_level.txt +0 -0
@@ -163,6 +163,7 @@ from openapi_client.models.compute_template_config import ComputeTemplateConfig
|
|
163
163
|
from openapi_client.models.compute_template_query import ComputeTemplateQuery
|
164
164
|
from openapi_client.models.computetemplate_response import ComputetemplateResponse
|
165
165
|
from openapi_client.models.computetemplateconfig_response import ComputetemplateconfigResponse
|
166
|
+
from openapi_client.models.connection_type import ConnectionType
|
166
167
|
from openapi_client.models.create_aioa_cloud_waitlist import CreateAioaCloudWaitlist
|
167
168
|
from openapi_client.models.create_analytics_event import CreateAnalyticsEvent
|
168
169
|
from openapi_client.models.create_app_config import CreateAppConfig
|
@@ -218,6 +219,18 @@ from openapi_client.models.credit_type import CreditType
|
|
218
219
|
from openapi_client.models.credits_v2 import CreditsV2
|
219
220
|
from openapi_client.models.customer_alert_status import CustomerAlertStatus
|
220
221
|
from openapi_client.models.dashboard_panel import DashboardPanel
|
222
|
+
from openapi_client.models.data_catalog import DataCatalog
|
223
|
+
from openapi_client.models.data_catalog_connection import DataCatalogConnection
|
224
|
+
from openapi_client.models.data_catalog_connection_status import DataCatalogConnectionStatus
|
225
|
+
from openapi_client.models.data_catalog_provider import DataCatalogProvider
|
226
|
+
from openapi_client.models.databricks_connection_config import DatabricksConnectionConfig
|
227
|
+
from openapi_client.models.databricks_connection_info import DatabricksConnectionInfo
|
228
|
+
from openapi_client.models.databricks_connection_response import DatabricksConnectionResponse
|
229
|
+
from openapi_client.models.databricks_register_request import DatabricksRegisterRequest
|
230
|
+
from openapi_client.models.databricksconnectioninfo_response import DatabricksconnectioninfoResponse
|
231
|
+
from openapi_client.models.databricksconnectionresponse_response import DatabricksconnectionresponseResponse
|
232
|
+
from openapi_client.models.datacatalog_list_response import DatacatalogListResponse
|
233
|
+
from openapi_client.models.datacatalogconnection_list_response import DatacatalogconnectionListResponse
|
221
234
|
from openapi_client.models.dataplane_services import DataplaneServices
|
222
235
|
from openapi_client.models.dataset import Dataset
|
223
236
|
from openapi_client.models.dataset_dag import DatasetDag
|
@@ -297,6 +310,7 @@ from openapi_client.models.describemachinepoolresponse_response import Describem
|
|
297
310
|
from openapi_client.models.describesystemworkloadresponse_response import DescribesystemworkloadresponseResponse
|
298
311
|
from openapi_client.models.detach_machine_pool_from_cloud_request import DetachMachinePoolFromCloudRequest
|
299
312
|
from openapi_client.models.detachmachinepoolfromcloudresponse_response import DetachmachinepoolfromcloudresponseResponse
|
313
|
+
from openapi_client.models.domain_verification import DomainVerification
|
300
314
|
from openapi_client.models.editable_cloud_resource import EditableCloudResource
|
301
315
|
from openapi_client.models.editable_cloud_resource_gcp import EditableCloudResourceGCP
|
302
316
|
from openapi_client.models.email_verification_request import EmailVerificationRequest
|
@@ -373,6 +387,7 @@ from openapi_client.models.kubernetes_manager_registration_response import Kuber
|
|
373
387
|
from openapi_client.models.kubernetesmanagerregistrationresponse_response import KubernetesmanagerregistrationresponseResponse
|
374
388
|
from openapi_client.models.lb_resource import LBResource
|
375
389
|
from openapi_client.models.lbresource_response import LbresourceResponse
|
390
|
+
from openapi_client.models.list_databricks_connections import ListDatabricksConnections
|
376
391
|
from openapi_client.models.list_machine_pools_response import ListMachinePoolsResponse
|
377
392
|
from openapi_client.models.list_machines_response import ListMachinesResponse
|
378
393
|
from openapi_client.models.list_ray_sessions_response import ListRaySessionsResponse
|
@@ -443,6 +458,9 @@ from openapi_client.models.nodemetricsresponse_response import Nodemetricsrespon
|
|
443
458
|
from openapi_client.models.notification_channel_email_config import NotificationChannelEmailConfig
|
444
459
|
from openapi_client.models.notification_channel_slack_config import NotificationChannelSlackConfig
|
445
460
|
from openapi_client.models.notification_channel_webhook_config import NotificationChannelWebhookConfig
|
461
|
+
from openapi_client.models.o_auth_connection_response import OAuthConnectionResponse
|
462
|
+
from openapi_client.models.oauth_auth_url_response import OauthAuthUrlResponse
|
463
|
+
from openapi_client.models.oauthconnectionresponse_response import OauthconnectionresponseResponse
|
446
464
|
from openapi_client.models.object_storage import ObjectStorage
|
447
465
|
from openapi_client.models.operation_error import OperationError
|
448
466
|
from openapi_client.models.operation_progress import OperationProgress
|
@@ -539,6 +557,9 @@ from openapi_client.models.rollout_strategy import RolloutStrategy
|
|
539
557
|
from openapi_client.models.run_attempt_status import RunAttemptStatus
|
540
558
|
from openapi_client.models.run_status import RunStatus
|
541
559
|
from openapi_client.models.s3_download_location import S3DownloadLocation
|
560
|
+
from openapi_client.models.sso_config import SSOConfig
|
561
|
+
from openapi_client.models.sso_connection import SSOConnection
|
562
|
+
from openapi_client.models.sso_connection_state import SSOConnectionState
|
542
563
|
from openapi_client.models.sso_login_info import SSOLoginInfo
|
543
564
|
from openapi_client.models.sso_mode import SSOMode
|
544
565
|
from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
|
@@ -582,6 +603,7 @@ from openapi_client.models.sessionsshkey_response import SessionsshkeyResponse
|
|
582
603
|
from openapi_client.models.show_otp_source_return_api_model import ShowOTPSourceReturnApiModel
|
583
604
|
from openapi_client.models.showotpsourcereturnapimodel_response import ShowotpsourcereturnapimodelResponse
|
584
605
|
from openapi_client.models.sort_order import SortOrder
|
606
|
+
from openapi_client.models.ssoconfig_response import SsoconfigResponse
|
585
607
|
from openapi_client.models.ssologininfo_response import SsologininfoResponse
|
586
608
|
from openapi_client.models.start_session_options import StartSessionOptions
|
587
609
|
from openapi_client.models.stop_session_options import StopSessionOptions
|
@@ -639,17 +661,20 @@ from openapi_client.models.update_organization_collaborator import UpdateOrganiz
|
|
639
661
|
from openapi_client.models.update_payment_info import UpdatePaymentInfo
|
640
662
|
from openapi_client.models.update_project_collaborator import UpdateProjectCollaborator
|
641
663
|
from openapi_client.models.update_resource_quota import UpdateResourceQuota
|
664
|
+
from openapi_client.models.update_workspace_template import UpdateWorkspaceTemplate
|
642
665
|
from openapi_client.models.updatemachinepoolresponse_response import UpdatemachinepoolresponseResponse
|
643
666
|
from openapi_client.models.upload_session_command_logs_locations import UploadSessionCommandLogsLocations
|
644
667
|
from openapi_client.models.uploadsessioncommandlogslocations_response import UploadsessioncommandlogslocationsResponse
|
645
668
|
from openapi_client.models.upsert_resource_tags_request import UpsertResourceTagsRequest
|
646
669
|
from openapi_client.models.usage_by_cloud import UsageByCloud
|
647
670
|
from openapi_client.models.usage_by_cluster import UsageByCluster
|
671
|
+
from openapi_client.models.usage_by_cluster_type import UsageByClusterType
|
648
672
|
from openapi_client.models.usage_by_instance_type import UsageByInstanceType
|
649
673
|
from openapi_client.models.usage_by_project import UsageByProject
|
650
674
|
from openapi_client.models.usage_by_user import UsageByUser
|
651
675
|
from openapi_client.models.usagebycloud_list_response import UsagebycloudListResponse
|
652
676
|
from openapi_client.models.usagebycluster_list_response import UsagebyclusterListResponse
|
677
|
+
from openapi_client.models.usagebyclustertype_list_response import UsagebyclustertypeListResponse
|
653
678
|
from openapi_client.models.usagebyinstancetype_list_response import UsagebyinstancetypeListResponse
|
654
679
|
from openapi_client.models.usagebyproject_list_response import UsagebyprojectListResponse
|
655
680
|
from openapi_client.models.usagebyuser_list_response import UsagebyuserListResponse
|
@@ -662,6 +687,7 @@ from openapi_client.models.useworkosresponse_response import UseworkosresponseRe
|
|
662
687
|
from openapi_client.models.utm_fields import UtmFields
|
663
688
|
from openapi_client.models.validate_otp_params_api_model import ValidateOTPParamsApiModel
|
664
689
|
from openapi_client.models.validation_error import ValidationError
|
690
|
+
from openapi_client.models.validation_status import ValidationStatus
|
665
691
|
from openapi_client.models.waitlist_status_response import WaitlistStatusResponse
|
666
692
|
from openapi_client.models.waitlist_status_type import WaitlistStatusType
|
667
693
|
from openapi_client.models.waitliststatusresponse_response import WaitliststatusresponseResponse
|