lightning-sdk 0.1.2__py3-none-any.whl → 0.1.46__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.
- lightning_sdk/__init__.py +12 -2
- lightning_sdk/agents.py +46 -0
- lightning_sdk/ai_hub.py +185 -0
- lightning_sdk/api/__init__.py +4 -0
- lightning_sdk/api/agents_api.py +107 -0
- lightning_sdk/api/ai_hub_api.py +130 -0
- lightning_sdk/api/deployment_api.py +574 -0
- lightning_sdk/api/job_api.py +308 -0
- lightning_sdk/api/mmt_api.py +188 -0
- lightning_sdk/api/org_api.py +1 -3
- lightning_sdk/api/studio_api.py +174 -83
- lightning_sdk/api/teamspace_api.py +219 -20
- lightning_sdk/api/user_api.py +24 -9
- lightning_sdk/api/utils.py +429 -47
- lightning_sdk/cli/ai_hub.py +49 -0
- lightning_sdk/cli/download.py +132 -0
- lightning_sdk/cli/entrypoint.py +11 -3
- lightning_sdk/cli/run.py +206 -0
- lightning_sdk/cli/serve.py +218 -0
- lightning_sdk/cli/studios_menu.py +78 -0
- lightning_sdk/cli/upload.py +79 -89
- lightning_sdk/constants.py +29 -1
- lightning_sdk/deployment/__init__.py +25 -0
- lightning_sdk/deployment/deployment.py +389 -0
- lightning_sdk/helpers.py +49 -0
- lightning_sdk/job/__init__.py +5 -0
- lightning_sdk/job/base.py +295 -0
- lightning_sdk/job/job.py +266 -0
- lightning_sdk/job/v1.py +241 -0
- lightning_sdk/job/v2.py +193 -0
- lightning_sdk/job/work.py +72 -0
- lightning_sdk/lightning_cloud/__version__.py +1 -1
- lightning_sdk/lightning_cloud/cli/__main__.py +15 -13
- lightning_sdk/lightning_cloud/env.py +1 -0
- lightning_sdk/lightning_cloud/login.py +12 -8
- lightning_sdk/lightning_cloud/openapi/__init__.py +314 -43
- lightning_sdk/lightning_cloud/openapi/api/__init__.py +10 -0
- lightning_sdk/lightning_cloud/openapi/api/analytics_service_api.py +141 -0
- lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +1075 -227
- lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +9 -1
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +3115 -895
- lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +908 -141
- lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +10 -5
- lightning_sdk/lightning_cloud/openapi/api/deployment_templates_service_api.py +756 -0
- lightning_sdk/lightning_cloud/openapi/api/endpoint_service_api.py +1658 -159
- lightning_sdk/lightning_cloud/openapi/api/experiments_service_api.py +242 -0
- lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +674 -0
- lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +3823 -0
- lightning_sdk/lightning_cloud/openapi/api/lightningapp_instance_service_api.py +158 -590
- lightning_sdk/lightning_cloud/openapi/api/lightningapp_v2_service_api.py +0 -1086
- lightning_sdk/lightning_cloud/openapi/api/lightningwork_service_api.py +113 -0
- lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +1753 -0
- lightning_sdk/lightning_cloud/openapi/api/lit_registry_service_api.py +242 -0
- lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +1423 -108
- lightning_sdk/lightning_cloud/openapi/api/organizations_service_api.py +421 -1
- lightning_sdk/lightning_cloud/openapi/api/profiler_service_api.py +663 -0
- lightning_sdk/lightning_cloud/openapi/api/projects_service_api.py +5 -1
- lightning_sdk/lightning_cloud/openapi/api/secret_service_api.py +478 -1
- lightning_sdk/lightning_cloud/openapi/api/slurm_jobs_user_service_api.py +9 -5
- lightning_sdk/lightning_cloud/openapi/api/snowflake_service_api.py +686 -0
- lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +1094 -0
- lightning_sdk/lightning_cloud/openapi/api/studio_jobs_service_api.py +4 -4
- lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +1081 -34
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +304 -41
- lightning_sdk/lightning_cloud/openapi/models/affiliatelinks_id_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/agentmanagedendpoints_id_body.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/agents_id_body.py +643 -0
- lightning_sdk/lightning_cloud/openapi/models/app_id_works_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/approveautojoindomain_domain_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/apps_id_body1.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/assistant_id_conversations_body.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/{v1_get_cluster_health_response.py → captures_id_body.py} +16 -16
- lightning_sdk/lightning_cloud/openapi/models/cloud_space_id_versionpublications_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/cloud_space_id_versionpublications_body1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/cloud_space_id_versions_body.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_runs_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/cloudspaces_id_body.py +84 -6
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityblock_body.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityreservations_body.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_proxies_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/clusters_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/create.py +157 -1
- lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +565 -0
- lightning_sdk/lightning_cloud/openapi/models/deploymenttemplates_id_body.py +513 -0
- lightning_sdk/lightning_cloud/openapi/models/endpoints_id_body.py +43 -17
- lightning_sdk/lightning_cloud/openapi/models/experiment_name_variant_name_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +107 -1
- lightning_sdk/lightning_cloud/openapi/models/externalv1_lightningapp_instance.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/externalv1_user_status.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/fileendpoints_id_body.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +29 -55
- lightning_sdk/lightning_cloud/openapi/models/id_complete_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_engage_body.py +3 -29
- lightning_sdk/lightning_cloud/openapi/models/id_engage_body1.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/id_execute_body.py +3 -55
- lightning_sdk/lightning_cloud/openapi/models/id_execute_body1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_fork_body.py +31 -31
- lightning_sdk/lightning_cloud/openapi/models/id_fork_body1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_get_body.py +133 -3
- lightning_sdk/lightning_cloud/openapi/models/id_index_body.py +67 -15
- lightning_sdk/lightning_cloud/openapi/models/id_index_body2.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/id_index_body3.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_reportlogsactivity_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/id_start_body.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/id_storage_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_uploads_body1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_visibility_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/jobs_id_body1.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/jobs_id_body2.py +17 -43
- lightning_sdk/lightning_cloud/openapi/models/jobs_id_body3.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/litloggermetrics_id_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/litpages_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/loggermetrics_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/metrics_stream_id_loggerartifacts_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/metricsstream_create_body.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_cloud_space_id_list.py → metricsstream_delete_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/metricsstream_id_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_upload_model_response.py → model_id_versions_body.py} +25 -51
- lightning_sdk/lightning_cloud/openapi/models/model_id_visibility_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/models_model_id_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/multimachinejobs_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/org_id_memberships_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +183 -1
- lightning_sdk/lightning_cloud/openapi/models/profiler_captures_body.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/profiler_enabled_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_agentmanagedendpoints_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/{project_id_assistants_body.py → project_id_agents_body.py} +181 -51
- lightning_sdk/lightning_cloud/openapi/models/project_id_cloudspaces_body.py +71 -19
- lightning_sdk/lightning_cloud/openapi/models/project_id_fileendpoints_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_jobs_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_litregistry_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_memberships_body.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_upload_model_request.py → project_id_models_body.py} +70 -70
- lightning_sdk/lightning_cloud/openapi/models/project_id_multimachinejobs_body.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_secrets_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_serviceexecution_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_snowflake_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/query_query_id_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/secrets_id_body1.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/servers_server_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/service_artifact_artifact_kind.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/serviceexecution_id_body.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/slurm_jobs_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/snowflake_export_body.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_download_model_response.py → snowflake_query_body.py} +51 -51
- lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/update.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/upload_id_complete_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/upload_id_parts_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/user_id_affiliatelinks_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_accelerator_quota_info.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ack_user_storage_violation_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_add_job_timing_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_affiliate_link.py +435 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_agent_job.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_api_pricing_spec.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_app_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_append_logger_metrics_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_approve_auto_join_domain_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_assign_variant_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant.py +157 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant_knowledge_item_status.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant_knowledge_status.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant_model_status.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_auto_join_domain_validation.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_auto_join_org_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_autoscaling_spec.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_autoscaling_target_metric.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_aws_direct_v1.py +133 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_batch_update_lightningwork_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cancellation_metadata.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_check_snowflake_connection_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_checkbox.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +162 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_code_version.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_code_version_status.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_instance_config.py +1 -53
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_instance_startup_status.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_cluster_log_service.py → v1_cloud_space_session.py} +49 -49
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_version.py +669 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_version_publication.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +445 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_names.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_proxy.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_resource_tag.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +157 -107
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_state.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_status.py +17 -43
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_tagging_options.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_type.py +0 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_command_argument.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_model_upload_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_multi_part_upload_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_upload_service_execution_artifact_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_completed_part.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +15 -15
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation_response_chunk.py +26 -26
- lightning_sdk/lightning_cloud/openapi/models/v1_count_metrics_streams_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_checkout_session_request.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_template_request.py +539 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_multi_part_upload_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_organization_request.py +159 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_create_project_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_shared_metrics_stream_request.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_shared_metrics_stream_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_snowflake_connection_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_user_secret_request.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +365 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_cluster_performance_profile.py → v1_data_connection_state.py} +11 -9
- lightning_sdk/lightning_cloud/openapi/models/v1_data_path.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_affiliate_link_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_session_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_version_publication_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_version_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_cluster_proxy_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_deployment_release_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_azure_cluster_driver_status.py → v1_delete_deployment_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_index_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_byom_cluster_driver.py → v1_delete_job_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/{v1_delete_lightningapp_v2_response.py → v1_delete_logger_artifact_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_managed_endpoint_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_metrics_stream_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_multi_machine_job_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_profiler_capture_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_service_execution_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_delete_lightningapp_release_response.py → v1_delete_shared_metrics_stream_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +617 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_api.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_metrics.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_performance.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_release.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_spec.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_state.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_status.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/{appsv2_id_body.py → v1_deployment_strategy.py} +39 -39
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template.py +721 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_engagement_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_gallery_response.py +591 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_parameter.py +435 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_parameter_placement.py +106 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_parameter_type.py +106 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_summary.py +591 -0
- lightning_sdk/lightning_cloud/openapi/models/{instance_type_availability.py → v1_deployment_template_type.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{v1_get_lightningapp_source_code_download_url_response.py → v1_download_job_logs_response.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/v1_download_service_execution_artifact_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_efs_config.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_endpoint.py +53 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_endpoint_auth.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_endpoint_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_execute_cloud_space_command_response.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_execute_in_cloud_space_session_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_execute_snowflake_query_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_experiment.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_export_snowflake_query_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_file_endpoint.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_instance_spec.py → v1_filesystem_app.py} +85 -59
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_cloud_space.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_dataset.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_job.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_slurm_job.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_snowflake_connection.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_work.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_find_capacity_block_offering_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_gcp_data_connection.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_gcs_folder_data_connection.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_affiliate_link_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_list_cluster_instance_types_response.py → v1_get_deployment_routing_telemetry_aggregated_response.py} +23 -23
- lightning_sdk/lightning_cloud/openapi/models/v1_get_deployment_routing_telemetry_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_folder_index_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_cluster_driver_status.py → v1_get_job_stats_response.py} +39 -39
- lightning_sdk/lightning_cloud/openapi/models/v1_get_job_system_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_lightningapp_instance_open_ports_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_logger_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_model_file_upload_urls_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_model_file_url_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_model_files_response.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_model_files_url_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_lightningwork_cluster_driver.py → v1_get_project_artifact_response.py} +33 -14
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_balance_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_service_execution_status_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_snowflake_query_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_balance_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_response.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +163 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1_status.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_header.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_external_kubeconfig.py → v1_health_check_exec.py} +21 -21
- lightning_sdk/lightning_cloud/openapi/models/v1_health_check_http_get.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ids_logger_metrics.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_input.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_interrupt_server_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job.py +697 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_health_check_config.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_log_entry.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_logs_page.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_logs_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +669 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_timing.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_joinable_organization.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_knowledge_configuration.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lambda_labs_direct_v1.py +125 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lightning_run.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_spec.py +105 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_status.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_spec.py +27 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_status.py +81 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_list_affiliate_links_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_python_versions_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_sessions_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_tags_response.py +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_version_publications_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_versions_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_availabilities_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_proxies_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_events_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_releases_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_tags_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_templates_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployments_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_experiments_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_apps_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_cloud_spaces_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_datasets_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_jobs_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_slurm_jobs_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_snowflake_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_list_lightningapps_v2_response.py → v1_list_jobs_response.py} +31 -31
- lightning_sdk/lightning_cloud/openapi/models/v1_list_joinable_organizations_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_logger_artifact_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_metrics_streams_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_multi_machine_job_events_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_multi_machine_jobs_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_new_features_for_user_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_profiler_captures_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_project_locked_resources_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_published_cloud_spaces_response.py +3 -29
- lightning_sdk/lightning_cloud/openapi/models/v1_list_published_deployment_templates_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_service_execution_lightningapp_instances_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_service_executions_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_page.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_project.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_repository.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_locked_resource.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_logger_artifact.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_machines_selector.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_request.py +81 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_response.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_endpoint.py +175 -19
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_model_abilities.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_message.py +138 -8
- lightning_sdk/lightning_cloud/openapi/models/v1_message_content.py +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_message_content_type.py +103 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metadata.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_metric_value.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics_stream.py +799 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics_tags.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics_tracker.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_model.py +95 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_model_file.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_model_version_archive.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_mount_target.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job.py +487 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_event.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/{get_cluster_health_response_health_status.py → v1_multi_machine_job_event_type.py} +9 -9
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_fault_tolerance.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_fault_tolerance_strategy.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_state.py +108 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_status.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_named_get_logger_metrics.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_new_feature.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_onboarding_event_request.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_onboarding_event_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +209 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_parameterization_spec.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_path_telemetry.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_phase_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_profiler_capture.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_profiler_enabled_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_project.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +263 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_published_cloud_space_response.py +188 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_purchase_capacity_block_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_query_param.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_query_result.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_query_result_row.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_refresh_path_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_regional_load_balancer.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_report_logs_activity_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_request_cluster_access_request.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_request_cluster_access_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_cloud_space_tag.py → v1_resource_tag.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/v1_resource_visibility.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_resources.py +37 -11
- lightning_sdk/lightning_cloud/openapi/models/v1_restore_deployment_release_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_rolling_update_strategy.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_rule_condition.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +11 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_s3_folder_data_connection.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_search_job_logs_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_search_users_response.py +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_secret.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/{v1_lightningapp_cluster_driver.py → v1_secret_type.py} +10 -9
- lightning_sdk/lightning_cloud/openapi/models/v1_select.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_server_check_in_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_update_cluster_response.py → v1_service_artifact.py} +54 -54
- lightning_sdk/lightning_cloud/openapi/models/v1_service_execution.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_should_start_syncing_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_signed_url.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_job.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_node.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_snowflake_data_connection.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_status_code_telemetry.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_studio_job_app.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_system_info.py +617 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_telemetry.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_timestamp_code_telemetry.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_transfer_user_balance_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_billing_subscription_request.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_cluster_accelerators_request.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_index_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_metrics_stream_visibility_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_model_visibility_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_shared_metrics_stream_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_snowflake_query_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_viewed_new_features_request.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_viewed_new_features_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_upload_service_execution_artifact_parts_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_upload_service_execution_artifact_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_upstream_cloud_space.py +97 -19
- lightning_sdk/lightning_cloud/openapi/models/v1_upstream_job.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_usage_details.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +1030 -302
- lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py +45 -45
- lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_flow_compute_config.py +29 -29
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_assistant_status_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_auto_join_domain_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_data_connection_response.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_request.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_endpoint_request.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_endpoint_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_model_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_vultr_direct_v1.py +125 -0
- lightning_sdk/lightning_cloud/openapi/models/validate.py +97 -19
- lightning_sdk/lightning_cloud/openapi/models/validateautojoindomain_domain_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/version_uploads_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/versions_id_body.py +357 -0
- lightning_sdk/lightning_cloud/rest_client.py +49 -23
- lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +1 -1
- lightning_sdk/lightning_cloud/source_code/tar.py +1 -3
- lightning_sdk/lightning_cloud/utils/data_connection.py +145 -7
- lightning_sdk/machine.py +17 -4
- lightning_sdk/mmt/__init__.py +4 -0
- lightning_sdk/mmt/base.py +288 -0
- lightning_sdk/mmt/mmt.py +282 -0
- lightning_sdk/mmt/v1.py +185 -0
- lightning_sdk/mmt/v2.py +193 -0
- lightning_sdk/models.py +153 -0
- lightning_sdk/organization.py +1 -1
- lightning_sdk/plugin.py +207 -41
- lightning_sdk/services/__init__.py +5 -0
- lightning_sdk/services/file_endpoint.py +223 -0
- lightning_sdk/services/finetune/__init__.py +35 -0
- lightning_sdk/services/utilities.py +111 -0
- lightning_sdk/status.py +2 -1
- lightning_sdk/studio.py +90 -17
- lightning_sdk/teamspace.py +189 -11
- lightning_sdk/user.py +1 -1
- lightning_sdk/utils/__init__.py +0 -0
- lightning_sdk/utils/dynamic.py +61 -0
- lightning_sdk/utils/enum.py +116 -0
- lightning_sdk/{utils.py → utils/resolve.py} +41 -4
- lightning_sdk-0.1.46.dist-info/LICENSE +21 -0
- {lightning_sdk-0.1.2.dist-info → lightning_sdk-0.1.46.dist-info}/METADATA +30 -4
- lightning_sdk-0.1.46.dist-info/RECORD +858 -0
- {lightning_sdk-0.1.2.dist-info → lightning_sdk-0.1.46.dist-info}/WHEEL +1 -1
- lightning_sdk/lightning_cloud/openapi/models/app_id_releases_body.py +0 -541
- lightning_sdk/lightning_cloud/openapi/models/assistants_id_body.py +0 -487
- lightning_sdk/lightning_cloud/openapi/models/id_endpoint_body.py +0 -409
- lightning_sdk/lightning_cloud/openapi/models/id_get_body1.py +0 -333
- lightning_sdk/lightning_cloud/openapi/models/project_id_appsv2_body.py +0 -201
- lightning_sdk/lightning_cloud/openapi/models/v1_aws_cluster_driver_spec.py +0 -1039
- lightning_sdk/lightning_cloud/openapi/models/v1_aws_cluster_secondary_region_spec.py +0 -253
- lightning_sdk/lightning_cloud/openapi/models/v1_azure_cluster_driver_spec.py +0 -227
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_driver.py +0 -175
- lightning_sdk/lightning_cloud/openapi/models/v1_container_resources.py +0 -201
- lightning_sdk/lightning_cloud/openapi/models/v1_eks_custer_driver_status.py +0 -387
- lightning_sdk/lightning_cloud/openapi/models/v1_instance_type.py +0 -305
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_cluster_driver.py +0 -359
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_cluster_status.py +0 -279
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_release.py +0 -697
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_v2.py +0 -331
- lightning_sdk-0.1.2.dist-info/RECORD +0 -550
- {lightning_sdk-0.1.2.dist-info → lightning_sdk-0.1.46.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.1.2.dist-info → lightning_sdk-0.1.46.dist-info}/top_level.txt +0 -0
|
@@ -41,32 +41,53 @@ class V1UserFeatures(object):
|
|
|
41
41
|
and the value is json key in definition.
|
|
42
42
|
"""
|
|
43
43
|
swagger_types = {
|
|
44
|
-
'
|
|
45
|
-
'
|
|
44
|
+
'advanced_deployment_autoscaling': 'bool',
|
|
45
|
+
'affiliate_links': 'bool',
|
|
46
|
+
'agents_v2': 'bool',
|
|
47
|
+
'ai_hub_monetization': 'bool',
|
|
48
|
+
'auto_fast_load': 'bool',
|
|
49
|
+
'auto_join_orgs': 'bool',
|
|
46
50
|
'b2c_experience': 'bool',
|
|
47
|
-
'byom': 'bool',
|
|
48
51
|
'cap_add': 'list[str]',
|
|
49
52
|
'cap_drop': 'list[str]',
|
|
50
|
-
'
|
|
53
|
+
'capacity_reservation_byoc': 'bool',
|
|
54
|
+
'capacity_reservation_dry_run': 'bool',
|
|
55
|
+
'cluster_proxy': 'bool',
|
|
51
56
|
'code_tab': 'bool',
|
|
52
|
-
'collab_mouse_tracking': 'bool',
|
|
53
57
|
'collab_screen_sharing': 'bool',
|
|
54
|
-
'
|
|
55
|
-
'crypto_monitoring': 'bool',
|
|
58
|
+
'cost_attribution_settings': 'bool',
|
|
56
59
|
'custom_app_domain': 'bool',
|
|
57
60
|
'custom_instance_types': 'bool',
|
|
61
|
+
'default_one_cluster': 'bool',
|
|
62
|
+
'deployment_customize_api': 'bool',
|
|
63
|
+
'deployment_data_path': 'bool',
|
|
64
|
+
'deployment_gallery': 'bool',
|
|
65
|
+
'deployment_persistent_disk': 'bool',
|
|
66
|
+
'deployment_version_visibility': 'bool',
|
|
67
|
+
'docs_agent': 'bool',
|
|
68
|
+
'drive_v2': 'bool',
|
|
69
|
+
'dynamic_workload_scheduling': 'bool',
|
|
58
70
|
'enable_crypto_crackdown': 'bool',
|
|
71
|
+
'enable_efs': 'bool',
|
|
72
|
+
'enable_storage_limits': 'bool',
|
|
59
73
|
'featured_studios_admin': 'bool',
|
|
60
74
|
'filesystem_optimisation': 'bool',
|
|
61
|
-
'
|
|
75
|
+
'gcp': 'bool',
|
|
76
|
+
'inference_job_deployment_plugin': 'bool',
|
|
77
|
+
'instant_capacity_reservation': 'bool',
|
|
62
78
|
'jobs_init': 'bool',
|
|
63
|
-
'
|
|
79
|
+
'jobs_v2': 'bool',
|
|
64
80
|
'landing_studios': 'bool',
|
|
65
|
-
'
|
|
81
|
+
'lightning_registry': 'bool',
|
|
82
|
+
'lit_logger': 'bool',
|
|
83
|
+
'lit_logger_storage_v2': 'bool',
|
|
84
|
+
'mmt_fault_tolerance': 'bool',
|
|
66
85
|
'mmt_strategy_selector': 'bool',
|
|
67
|
-
'
|
|
68
|
-
'
|
|
69
|
-
'
|
|
86
|
+
'mmt_v2': 'bool',
|
|
87
|
+
'model_store': 'bool',
|
|
88
|
+
'multiple_deployment_versions': 'bool',
|
|
89
|
+
'multiple_studio_versions': 'bool',
|
|
90
|
+
'org_level_member_permissions': 'bool',
|
|
70
91
|
'plugin_biz_chat': 'bool',
|
|
71
92
|
'plugin_distributed': 'bool',
|
|
72
93
|
'plugin_fiftyone': 'bool',
|
|
@@ -85,44 +106,72 @@ class V1UserFeatures(object):
|
|
|
85
106
|
'pricing_updates': 'bool',
|
|
86
107
|
'product_generator': 'bool',
|
|
87
108
|
'project_selector': 'bool',
|
|
88
|
-
'public_studio_drive': 'bool',
|
|
89
|
-
'publish_ai_app': 'bool',
|
|
90
|
-
'quests': 'bool',
|
|
91
109
|
'restart_ide_on_hang': 'bool',
|
|
92
110
|
'restartable_jobs': 'bool',
|
|
111
|
+
'runnable_public_studio_page': 'bool',
|
|
93
112
|
'show_dev_admin': 'bool',
|
|
94
113
|
'slurm': 'bool',
|
|
95
|
-
'
|
|
114
|
+
'slurm_machine_selector': 'bool',
|
|
115
|
+
'snapshotter_service': 'bool',
|
|
116
|
+
'snowflake_connection': 'bool',
|
|
117
|
+
'spot_v2': 'bool',
|
|
118
|
+
'studio_config': 'bool',
|
|
119
|
+
'studio_on_stop': 'bool',
|
|
120
|
+
'studio_version_visibility': 'bool',
|
|
121
|
+
'teamspace_storage_tab': 'bool',
|
|
122
|
+
'trainium2': 'bool',
|
|
123
|
+
'use_rclone_mounts_only': 'bool',
|
|
96
124
|
'writable_data_connections': 'bool'
|
|
97
125
|
}
|
|
98
126
|
|
|
99
127
|
attribute_map = {
|
|
100
|
-
'
|
|
101
|
-
'
|
|
128
|
+
'advanced_deployment_autoscaling': 'advancedDeploymentAutoscaling',
|
|
129
|
+
'affiliate_links': 'affiliateLinks',
|
|
130
|
+
'agents_v2': 'agentsV2',
|
|
131
|
+
'ai_hub_monetization': 'aiHubMonetization',
|
|
132
|
+
'auto_fast_load': 'autoFastLoad',
|
|
133
|
+
'auto_join_orgs': 'autoJoinOrgs',
|
|
102
134
|
'b2c_experience': 'b2cExperience',
|
|
103
|
-
'byom': 'byom',
|
|
104
135
|
'cap_add': 'capAdd',
|
|
105
136
|
'cap_drop': 'capDrop',
|
|
106
|
-
'
|
|
137
|
+
'capacity_reservation_byoc': 'capacityReservationByoc',
|
|
138
|
+
'capacity_reservation_dry_run': 'capacityReservationDryRun',
|
|
139
|
+
'cluster_proxy': 'clusterProxy',
|
|
107
140
|
'code_tab': 'codeTab',
|
|
108
|
-
'collab_mouse_tracking': 'collabMouseTracking',
|
|
109
141
|
'collab_screen_sharing': 'collabScreenSharing',
|
|
110
|
-
'
|
|
111
|
-
'crypto_monitoring': 'cryptoMonitoring',
|
|
142
|
+
'cost_attribution_settings': 'costAttributionSettings',
|
|
112
143
|
'custom_app_domain': 'customAppDomain',
|
|
113
144
|
'custom_instance_types': 'customInstanceTypes',
|
|
145
|
+
'default_one_cluster': 'defaultOneCluster',
|
|
146
|
+
'deployment_customize_api': 'deploymentCustomizeApi',
|
|
147
|
+
'deployment_data_path': 'deploymentDataPath',
|
|
148
|
+
'deployment_gallery': 'deploymentGallery',
|
|
149
|
+
'deployment_persistent_disk': 'deploymentPersistentDisk',
|
|
150
|
+
'deployment_version_visibility': 'deploymentVersionVisibility',
|
|
151
|
+
'docs_agent': 'docsAgent',
|
|
152
|
+
'drive_v2': 'driveV2',
|
|
153
|
+
'dynamic_workload_scheduling': 'dynamicWorkloadScheduling',
|
|
114
154
|
'enable_crypto_crackdown': 'enableCryptoCrackdown',
|
|
155
|
+
'enable_efs': 'enableEfs',
|
|
156
|
+
'enable_storage_limits': 'enableStorageLimits',
|
|
115
157
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
116
158
|
'filesystem_optimisation': 'filesystemOptimisation',
|
|
117
|
-
'
|
|
159
|
+
'gcp': 'gcp',
|
|
160
|
+
'inference_job_deployment_plugin': 'inferenceJobDeploymentPlugin',
|
|
161
|
+
'instant_capacity_reservation': 'instantCapacityReservation',
|
|
118
162
|
'jobs_init': 'jobsInit',
|
|
119
|
-
'
|
|
163
|
+
'jobs_v2': 'jobsV2',
|
|
120
164
|
'landing_studios': 'landingStudios',
|
|
121
|
-
'
|
|
165
|
+
'lightning_registry': 'lightningRegistry',
|
|
166
|
+
'lit_logger': 'litLogger',
|
|
167
|
+
'lit_logger_storage_v2': 'litLoggerStorageV2',
|
|
168
|
+
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
122
169
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
123
|
-
'
|
|
124
|
-
'
|
|
125
|
-
'
|
|
170
|
+
'mmt_v2': 'mmtV2',
|
|
171
|
+
'model_store': 'modelStore',
|
|
172
|
+
'multiple_deployment_versions': 'multipleDeploymentVersions',
|
|
173
|
+
'multiple_studio_versions': 'multipleStudioVersions',
|
|
174
|
+
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
126
175
|
'plugin_biz_chat': 'pluginBizChat',
|
|
127
176
|
'plugin_distributed': 'pluginDistributed',
|
|
128
177
|
'plugin_fiftyone': 'pluginFiftyone',
|
|
@@ -141,45 +190,73 @@ class V1UserFeatures(object):
|
|
|
141
190
|
'pricing_updates': 'pricingUpdates',
|
|
142
191
|
'product_generator': 'productGenerator',
|
|
143
192
|
'project_selector': 'projectSelector',
|
|
144
|
-
'public_studio_drive': 'publicStudioDrive',
|
|
145
|
-
'publish_ai_app': 'publishAiApp',
|
|
146
|
-
'quests': 'quests',
|
|
147
193
|
'restart_ide_on_hang': 'restartIdeOnHang',
|
|
148
194
|
'restartable_jobs': 'restartableJobs',
|
|
195
|
+
'runnable_public_studio_page': 'runnablePublicStudioPage',
|
|
149
196
|
'show_dev_admin': 'showDevAdmin',
|
|
150
197
|
'slurm': 'slurm',
|
|
151
|
-
'
|
|
198
|
+
'slurm_machine_selector': 'slurmMachineSelector',
|
|
199
|
+
'snapshotter_service': 'snapshotterService',
|
|
200
|
+
'snowflake_connection': 'snowflakeConnection',
|
|
201
|
+
'spot_v2': 'spotV2',
|
|
202
|
+
'studio_config': 'studioConfig',
|
|
203
|
+
'studio_on_stop': 'studioOnStop',
|
|
204
|
+
'studio_version_visibility': 'studioVersionVisibility',
|
|
205
|
+
'teamspace_storage_tab': 'teamspaceStorageTab',
|
|
206
|
+
'trainium2': 'trainium2',
|
|
207
|
+
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
152
208
|
'writable_data_connections': 'writableDataConnections'
|
|
153
209
|
}
|
|
154
210
|
|
|
155
|
-
def __init__(self,
|
|
211
|
+
def __init__(self, advanced_deployment_autoscaling: 'bool' =None, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, b2c_experience: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, cluster_proxy: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, custom_instance_types: 'bool' =None, default_one_cluster: 'bool' =None, deployment_customize_api: 'bool' =None, deployment_data_path: 'bool' =None, deployment_gallery: 'bool' =None, deployment_persistent_disk: 'bool' =None, deployment_version_visibility: 'bool' =None, docs_agent: 'bool' =None, drive_v2: 'bool' =None, dynamic_workload_scheduling: 'bool' =None, enable_crypto_crackdown: 'bool' =None, enable_efs: 'bool' =None, enable_storage_limits: 'bool' =None, featured_studios_admin: 'bool' =None, filesystem_optimisation: 'bool' =None, gcp: 'bool' =None, inference_job_deployment_plugin: 'bool' =None, instant_capacity_reservation: 'bool' =None, jobs_init: 'bool' =None, jobs_v2: 'bool' =None, landing_studios: 'bool' =None, lightning_registry: 'bool' =None, lit_logger: 'bool' =None, lit_logger_storage_v2: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, mmt_v2: 'bool' =None, model_store: 'bool' =None, multiple_deployment_versions: 'bool' =None, multiple_studio_versions: 'bool' =None, org_level_member_permissions: 'bool' =None, plugin_biz_chat: 'bool' =None, plugin_distributed: 'bool' =None, plugin_fiftyone: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_lightning_apps: 'bool' =None, plugin_lightning_apps_distributed: 'bool' =None, plugin_mage_ai: 'bool' =None, plugin_milvus: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_react: 'bool' =None, plugin_service: 'bool' =None, plugin_sweeps: 'bool' =None, plugin_weviate: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, project_selector: 'bool' =None, restart_ide_on_hang: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, show_dev_admin: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, snapshotter_service: 'bool' =None, snowflake_connection: 'bool' =None, spot_v2: 'bool' =None, studio_config: 'bool' =None, studio_on_stop: 'bool' =None, studio_version_visibility: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, writable_data_connections: 'bool' =None): # noqa: E501
|
|
156
212
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
157
|
-
self.
|
|
158
|
-
self.
|
|
213
|
+
self._advanced_deployment_autoscaling = None
|
|
214
|
+
self._affiliate_links = None
|
|
215
|
+
self._agents_v2 = None
|
|
216
|
+
self._ai_hub_monetization = None
|
|
217
|
+
self._auto_fast_load = None
|
|
218
|
+
self._auto_join_orgs = None
|
|
159
219
|
self._b2c_experience = None
|
|
160
|
-
self._byom = None
|
|
161
220
|
self._cap_add = None
|
|
162
221
|
self._cap_drop = None
|
|
163
|
-
self.
|
|
222
|
+
self._capacity_reservation_byoc = None
|
|
223
|
+
self._capacity_reservation_dry_run = None
|
|
224
|
+
self._cluster_proxy = None
|
|
164
225
|
self._code_tab = None
|
|
165
|
-
self._collab_mouse_tracking = None
|
|
166
226
|
self._collab_screen_sharing = None
|
|
167
|
-
self.
|
|
168
|
-
self._crypto_monitoring = None
|
|
227
|
+
self._cost_attribution_settings = None
|
|
169
228
|
self._custom_app_domain = None
|
|
170
229
|
self._custom_instance_types = None
|
|
230
|
+
self._default_one_cluster = None
|
|
231
|
+
self._deployment_customize_api = None
|
|
232
|
+
self._deployment_data_path = None
|
|
233
|
+
self._deployment_gallery = None
|
|
234
|
+
self._deployment_persistent_disk = None
|
|
235
|
+
self._deployment_version_visibility = None
|
|
236
|
+
self._docs_agent = None
|
|
237
|
+
self._drive_v2 = None
|
|
238
|
+
self._dynamic_workload_scheduling = None
|
|
171
239
|
self._enable_crypto_crackdown = None
|
|
240
|
+
self._enable_efs = None
|
|
241
|
+
self._enable_storage_limits = None
|
|
172
242
|
self._featured_studios_admin = None
|
|
173
243
|
self._filesystem_optimisation = None
|
|
174
|
-
self.
|
|
244
|
+
self._gcp = None
|
|
245
|
+
self._inference_job_deployment_plugin = None
|
|
246
|
+
self._instant_capacity_reservation = None
|
|
175
247
|
self._jobs_init = None
|
|
176
|
-
self.
|
|
248
|
+
self._jobs_v2 = None
|
|
177
249
|
self._landing_studios = None
|
|
178
|
-
self.
|
|
250
|
+
self._lightning_registry = None
|
|
251
|
+
self._lit_logger = None
|
|
252
|
+
self._lit_logger_storage_v2 = None
|
|
253
|
+
self._mmt_fault_tolerance = None
|
|
179
254
|
self._mmt_strategy_selector = None
|
|
180
|
-
self.
|
|
181
|
-
self.
|
|
182
|
-
self.
|
|
255
|
+
self._mmt_v2 = None
|
|
256
|
+
self._model_store = None
|
|
257
|
+
self._multiple_deployment_versions = None
|
|
258
|
+
self._multiple_studio_versions = None
|
|
259
|
+
self._org_level_member_permissions = None
|
|
183
260
|
self._plugin_biz_chat = None
|
|
184
261
|
self._plugin_distributed = None
|
|
185
262
|
self._plugin_fiftyone = None
|
|
@@ -198,68 +275,117 @@ class V1UserFeatures(object):
|
|
|
198
275
|
self._pricing_updates = None
|
|
199
276
|
self._product_generator = None
|
|
200
277
|
self._project_selector = None
|
|
201
|
-
self._public_studio_drive = None
|
|
202
|
-
self._publish_ai_app = None
|
|
203
|
-
self._quests = None
|
|
204
278
|
self._restart_ide_on_hang = None
|
|
205
279
|
self._restartable_jobs = None
|
|
280
|
+
self._runnable_public_studio_page = None
|
|
206
281
|
self._show_dev_admin = None
|
|
207
282
|
self._slurm = None
|
|
208
|
-
self.
|
|
283
|
+
self._slurm_machine_selector = None
|
|
284
|
+
self._snapshotter_service = None
|
|
285
|
+
self._snowflake_connection = None
|
|
286
|
+
self._spot_v2 = None
|
|
287
|
+
self._studio_config = None
|
|
288
|
+
self._studio_on_stop = None
|
|
289
|
+
self._studio_version_visibility = None
|
|
290
|
+
self._teamspace_storage_tab = None
|
|
291
|
+
self._trainium2 = None
|
|
292
|
+
self._use_rclone_mounts_only = None
|
|
209
293
|
self._writable_data_connections = None
|
|
210
294
|
self.discriminator = None
|
|
211
|
-
if
|
|
212
|
-
self.
|
|
213
|
-
if
|
|
214
|
-
self.
|
|
295
|
+
if advanced_deployment_autoscaling is not None:
|
|
296
|
+
self.advanced_deployment_autoscaling = advanced_deployment_autoscaling
|
|
297
|
+
if affiliate_links is not None:
|
|
298
|
+
self.affiliate_links = affiliate_links
|
|
299
|
+
if agents_v2 is not None:
|
|
300
|
+
self.agents_v2 = agents_v2
|
|
301
|
+
if ai_hub_monetization is not None:
|
|
302
|
+
self.ai_hub_monetization = ai_hub_monetization
|
|
303
|
+
if auto_fast_load is not None:
|
|
304
|
+
self.auto_fast_load = auto_fast_load
|
|
305
|
+
if auto_join_orgs is not None:
|
|
306
|
+
self.auto_join_orgs = auto_join_orgs
|
|
215
307
|
if b2c_experience is not None:
|
|
216
308
|
self.b2c_experience = b2c_experience
|
|
217
|
-
if byom is not None:
|
|
218
|
-
self.byom = byom
|
|
219
309
|
if cap_add is not None:
|
|
220
310
|
self.cap_add = cap_add
|
|
221
311
|
if cap_drop is not None:
|
|
222
312
|
self.cap_drop = cap_drop
|
|
223
|
-
if
|
|
224
|
-
self.
|
|
313
|
+
if capacity_reservation_byoc is not None:
|
|
314
|
+
self.capacity_reservation_byoc = capacity_reservation_byoc
|
|
315
|
+
if capacity_reservation_dry_run is not None:
|
|
316
|
+
self.capacity_reservation_dry_run = capacity_reservation_dry_run
|
|
317
|
+
if cluster_proxy is not None:
|
|
318
|
+
self.cluster_proxy = cluster_proxy
|
|
225
319
|
if code_tab is not None:
|
|
226
320
|
self.code_tab = code_tab
|
|
227
|
-
if collab_mouse_tracking is not None:
|
|
228
|
-
self.collab_mouse_tracking = collab_mouse_tracking
|
|
229
321
|
if collab_screen_sharing is not None:
|
|
230
322
|
self.collab_screen_sharing = collab_screen_sharing
|
|
231
|
-
if
|
|
232
|
-
self.
|
|
233
|
-
if crypto_monitoring is not None:
|
|
234
|
-
self.crypto_monitoring = crypto_monitoring
|
|
323
|
+
if cost_attribution_settings is not None:
|
|
324
|
+
self.cost_attribution_settings = cost_attribution_settings
|
|
235
325
|
if custom_app_domain is not None:
|
|
236
326
|
self.custom_app_domain = custom_app_domain
|
|
237
327
|
if custom_instance_types is not None:
|
|
238
328
|
self.custom_instance_types = custom_instance_types
|
|
329
|
+
if default_one_cluster is not None:
|
|
330
|
+
self.default_one_cluster = default_one_cluster
|
|
331
|
+
if deployment_customize_api is not None:
|
|
332
|
+
self.deployment_customize_api = deployment_customize_api
|
|
333
|
+
if deployment_data_path is not None:
|
|
334
|
+
self.deployment_data_path = deployment_data_path
|
|
335
|
+
if deployment_gallery is not None:
|
|
336
|
+
self.deployment_gallery = deployment_gallery
|
|
337
|
+
if deployment_persistent_disk is not None:
|
|
338
|
+
self.deployment_persistent_disk = deployment_persistent_disk
|
|
339
|
+
if deployment_version_visibility is not None:
|
|
340
|
+
self.deployment_version_visibility = deployment_version_visibility
|
|
341
|
+
if docs_agent is not None:
|
|
342
|
+
self.docs_agent = docs_agent
|
|
343
|
+
if drive_v2 is not None:
|
|
344
|
+
self.drive_v2 = drive_v2
|
|
345
|
+
if dynamic_workload_scheduling is not None:
|
|
346
|
+
self.dynamic_workload_scheduling = dynamic_workload_scheduling
|
|
239
347
|
if enable_crypto_crackdown is not None:
|
|
240
348
|
self.enable_crypto_crackdown = enable_crypto_crackdown
|
|
349
|
+
if enable_efs is not None:
|
|
350
|
+
self.enable_efs = enable_efs
|
|
351
|
+
if enable_storage_limits is not None:
|
|
352
|
+
self.enable_storage_limits = enable_storage_limits
|
|
241
353
|
if featured_studios_admin is not None:
|
|
242
354
|
self.featured_studios_admin = featured_studios_admin
|
|
243
355
|
if filesystem_optimisation is not None:
|
|
244
356
|
self.filesystem_optimisation = filesystem_optimisation
|
|
245
|
-
if
|
|
246
|
-
self.
|
|
357
|
+
if gcp is not None:
|
|
358
|
+
self.gcp = gcp
|
|
359
|
+
if inference_job_deployment_plugin is not None:
|
|
360
|
+
self.inference_job_deployment_plugin = inference_job_deployment_plugin
|
|
361
|
+
if instant_capacity_reservation is not None:
|
|
362
|
+
self.instant_capacity_reservation = instant_capacity_reservation
|
|
247
363
|
if jobs_init is not None:
|
|
248
364
|
self.jobs_init = jobs_init
|
|
249
|
-
if
|
|
250
|
-
self.
|
|
365
|
+
if jobs_v2 is not None:
|
|
366
|
+
self.jobs_v2 = jobs_v2
|
|
251
367
|
if landing_studios is not None:
|
|
252
368
|
self.landing_studios = landing_studios
|
|
253
|
-
if
|
|
254
|
-
self.
|
|
369
|
+
if lightning_registry is not None:
|
|
370
|
+
self.lightning_registry = lightning_registry
|
|
371
|
+
if lit_logger is not None:
|
|
372
|
+
self.lit_logger = lit_logger
|
|
373
|
+
if lit_logger_storage_v2 is not None:
|
|
374
|
+
self.lit_logger_storage_v2 = lit_logger_storage_v2
|
|
375
|
+
if mmt_fault_tolerance is not None:
|
|
376
|
+
self.mmt_fault_tolerance = mmt_fault_tolerance
|
|
255
377
|
if mmt_strategy_selector is not None:
|
|
256
378
|
self.mmt_strategy_selector = mmt_strategy_selector
|
|
257
|
-
if
|
|
258
|
-
self.
|
|
259
|
-
if
|
|
260
|
-
self.
|
|
261
|
-
if
|
|
262
|
-
self.
|
|
379
|
+
if mmt_v2 is not None:
|
|
380
|
+
self.mmt_v2 = mmt_v2
|
|
381
|
+
if model_store is not None:
|
|
382
|
+
self.model_store = model_store
|
|
383
|
+
if multiple_deployment_versions is not None:
|
|
384
|
+
self.multiple_deployment_versions = multiple_deployment_versions
|
|
385
|
+
if multiple_studio_versions is not None:
|
|
386
|
+
self.multiple_studio_versions = multiple_studio_versions
|
|
387
|
+
if org_level_member_permissions is not None:
|
|
388
|
+
self.org_level_member_permissions = org_level_member_permissions
|
|
263
389
|
if plugin_biz_chat is not None:
|
|
264
390
|
self.plugin_biz_chat = plugin_biz_chat
|
|
265
391
|
if plugin_distributed is not None:
|
|
@@ -296,108 +422,185 @@ class V1UserFeatures(object):
|
|
|
296
422
|
self.product_generator = product_generator
|
|
297
423
|
if project_selector is not None:
|
|
298
424
|
self.project_selector = project_selector
|
|
299
|
-
if public_studio_drive is not None:
|
|
300
|
-
self.public_studio_drive = public_studio_drive
|
|
301
|
-
if publish_ai_app is not None:
|
|
302
|
-
self.publish_ai_app = publish_ai_app
|
|
303
|
-
if quests is not None:
|
|
304
|
-
self.quests = quests
|
|
305
425
|
if restart_ide_on_hang is not None:
|
|
306
426
|
self.restart_ide_on_hang = restart_ide_on_hang
|
|
307
427
|
if restartable_jobs is not None:
|
|
308
428
|
self.restartable_jobs = restartable_jobs
|
|
429
|
+
if runnable_public_studio_page is not None:
|
|
430
|
+
self.runnable_public_studio_page = runnable_public_studio_page
|
|
309
431
|
if show_dev_admin is not None:
|
|
310
432
|
self.show_dev_admin = show_dev_admin
|
|
311
433
|
if slurm is not None:
|
|
312
434
|
self.slurm = slurm
|
|
313
|
-
if
|
|
314
|
-
self.
|
|
435
|
+
if slurm_machine_selector is not None:
|
|
436
|
+
self.slurm_machine_selector = slurm_machine_selector
|
|
437
|
+
if snapshotter_service is not None:
|
|
438
|
+
self.snapshotter_service = snapshotter_service
|
|
439
|
+
if snowflake_connection is not None:
|
|
440
|
+
self.snowflake_connection = snowflake_connection
|
|
441
|
+
if spot_v2 is not None:
|
|
442
|
+
self.spot_v2 = spot_v2
|
|
443
|
+
if studio_config is not None:
|
|
444
|
+
self.studio_config = studio_config
|
|
445
|
+
if studio_on_stop is not None:
|
|
446
|
+
self.studio_on_stop = studio_on_stop
|
|
447
|
+
if studio_version_visibility is not None:
|
|
448
|
+
self.studio_version_visibility = studio_version_visibility
|
|
449
|
+
if teamspace_storage_tab is not None:
|
|
450
|
+
self.teamspace_storage_tab = teamspace_storage_tab
|
|
451
|
+
if trainium2 is not None:
|
|
452
|
+
self.trainium2 = trainium2
|
|
453
|
+
if use_rclone_mounts_only is not None:
|
|
454
|
+
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
315
455
|
if writable_data_connections is not None:
|
|
316
456
|
self.writable_data_connections = writable_data_connections
|
|
317
457
|
|
|
318
458
|
@property
|
|
319
|
-
def
|
|
320
|
-
"""Gets the
|
|
459
|
+
def advanced_deployment_autoscaling(self) -> 'bool':
|
|
460
|
+
"""Gets the advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
321
461
|
|
|
322
462
|
|
|
323
|
-
:return: The
|
|
463
|
+
:return: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
324
464
|
:rtype: bool
|
|
325
465
|
"""
|
|
326
|
-
return self.
|
|
466
|
+
return self._advanced_deployment_autoscaling
|
|
327
467
|
|
|
328
|
-
@
|
|
329
|
-
def
|
|
330
|
-
"""Sets the
|
|
468
|
+
@advanced_deployment_autoscaling.setter
|
|
469
|
+
def advanced_deployment_autoscaling(self, advanced_deployment_autoscaling: 'bool'):
|
|
470
|
+
"""Sets the advanced_deployment_autoscaling of this V1UserFeatures.
|
|
331
471
|
|
|
332
472
|
|
|
333
|
-
:param
|
|
473
|
+
:param advanced_deployment_autoscaling: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
334
474
|
:type: bool
|
|
335
475
|
"""
|
|
336
476
|
|
|
337
|
-
self.
|
|
477
|
+
self._advanced_deployment_autoscaling = advanced_deployment_autoscaling
|
|
338
478
|
|
|
339
479
|
@property
|
|
340
|
-
def
|
|
341
|
-
"""Gets the
|
|
480
|
+
def affiliate_links(self) -> 'bool':
|
|
481
|
+
"""Gets the affiliate_links of this V1UserFeatures. # noqa: E501
|
|
342
482
|
|
|
343
483
|
|
|
344
|
-
:return: The
|
|
484
|
+
:return: The affiliate_links of this V1UserFeatures. # noqa: E501
|
|
345
485
|
:rtype: bool
|
|
346
486
|
"""
|
|
347
|
-
return self.
|
|
487
|
+
return self._affiliate_links
|
|
348
488
|
|
|
349
|
-
@
|
|
350
|
-
def
|
|
351
|
-
"""Sets the
|
|
489
|
+
@affiliate_links.setter
|
|
490
|
+
def affiliate_links(self, affiliate_links: 'bool'):
|
|
491
|
+
"""Sets the affiliate_links of this V1UserFeatures.
|
|
352
492
|
|
|
353
493
|
|
|
354
|
-
:param
|
|
494
|
+
:param affiliate_links: The affiliate_links of this V1UserFeatures. # noqa: E501
|
|
355
495
|
:type: bool
|
|
356
496
|
"""
|
|
357
497
|
|
|
358
|
-
self.
|
|
498
|
+
self._affiliate_links = affiliate_links
|
|
359
499
|
|
|
360
500
|
@property
|
|
361
|
-
def
|
|
362
|
-
"""Gets the
|
|
501
|
+
def agents_v2(self) -> 'bool':
|
|
502
|
+
"""Gets the agents_v2 of this V1UserFeatures. # noqa: E501
|
|
363
503
|
|
|
364
504
|
|
|
365
|
-
:return: The
|
|
505
|
+
:return: The agents_v2 of this V1UserFeatures. # noqa: E501
|
|
366
506
|
:rtype: bool
|
|
367
507
|
"""
|
|
368
|
-
return self.
|
|
508
|
+
return self._agents_v2
|
|
369
509
|
|
|
370
|
-
@
|
|
371
|
-
def
|
|
372
|
-
"""Sets the
|
|
510
|
+
@agents_v2.setter
|
|
511
|
+
def agents_v2(self, agents_v2: 'bool'):
|
|
512
|
+
"""Sets the agents_v2 of this V1UserFeatures.
|
|
373
513
|
|
|
374
514
|
|
|
375
|
-
:param
|
|
515
|
+
:param agents_v2: The agents_v2 of this V1UserFeatures. # noqa: E501
|
|
376
516
|
:type: bool
|
|
377
517
|
"""
|
|
378
518
|
|
|
379
|
-
self.
|
|
519
|
+
self._agents_v2 = agents_v2
|
|
520
|
+
|
|
521
|
+
@property
|
|
522
|
+
def ai_hub_monetization(self) -> 'bool':
|
|
523
|
+
"""Gets the ai_hub_monetization of this V1UserFeatures. # noqa: E501
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
:return: The ai_hub_monetization of this V1UserFeatures. # noqa: E501
|
|
527
|
+
:rtype: bool
|
|
528
|
+
"""
|
|
529
|
+
return self._ai_hub_monetization
|
|
530
|
+
|
|
531
|
+
@ai_hub_monetization.setter
|
|
532
|
+
def ai_hub_monetization(self, ai_hub_monetization: 'bool'):
|
|
533
|
+
"""Sets the ai_hub_monetization of this V1UserFeatures.
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
:param ai_hub_monetization: The ai_hub_monetization of this V1UserFeatures. # noqa: E501
|
|
537
|
+
:type: bool
|
|
538
|
+
"""
|
|
539
|
+
|
|
540
|
+
self._ai_hub_monetization = ai_hub_monetization
|
|
541
|
+
|
|
542
|
+
@property
|
|
543
|
+
def auto_fast_load(self) -> 'bool':
|
|
544
|
+
"""Gets the auto_fast_load of this V1UserFeatures. # noqa: E501
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
:return: The auto_fast_load of this V1UserFeatures. # noqa: E501
|
|
548
|
+
:rtype: bool
|
|
549
|
+
"""
|
|
550
|
+
return self._auto_fast_load
|
|
551
|
+
|
|
552
|
+
@auto_fast_load.setter
|
|
553
|
+
def auto_fast_load(self, auto_fast_load: 'bool'):
|
|
554
|
+
"""Sets the auto_fast_load of this V1UserFeatures.
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
:param auto_fast_load: The auto_fast_load of this V1UserFeatures. # noqa: E501
|
|
558
|
+
:type: bool
|
|
559
|
+
"""
|
|
560
|
+
|
|
561
|
+
self._auto_fast_load = auto_fast_load
|
|
380
562
|
|
|
381
563
|
@property
|
|
382
|
-
def
|
|
383
|
-
"""Gets the
|
|
564
|
+
def auto_join_orgs(self) -> 'bool':
|
|
565
|
+
"""Gets the auto_join_orgs of this V1UserFeatures. # noqa: E501
|
|
384
566
|
|
|
385
567
|
|
|
386
|
-
:return: The
|
|
568
|
+
:return: The auto_join_orgs of this V1UserFeatures. # noqa: E501
|
|
387
569
|
:rtype: bool
|
|
388
570
|
"""
|
|
389
|
-
return self.
|
|
571
|
+
return self._auto_join_orgs
|
|
390
572
|
|
|
391
|
-
@
|
|
392
|
-
def
|
|
393
|
-
"""Sets the
|
|
573
|
+
@auto_join_orgs.setter
|
|
574
|
+
def auto_join_orgs(self, auto_join_orgs: 'bool'):
|
|
575
|
+
"""Sets the auto_join_orgs of this V1UserFeatures.
|
|
394
576
|
|
|
395
577
|
|
|
396
|
-
:param
|
|
578
|
+
:param auto_join_orgs: The auto_join_orgs of this V1UserFeatures. # noqa: E501
|
|
397
579
|
:type: bool
|
|
398
580
|
"""
|
|
399
581
|
|
|
400
|
-
self.
|
|
582
|
+
self._auto_join_orgs = auto_join_orgs
|
|
583
|
+
|
|
584
|
+
@property
|
|
585
|
+
def b2c_experience(self) -> 'bool':
|
|
586
|
+
"""Gets the b2c_experience of this V1UserFeatures. # noqa: E501
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
:return: The b2c_experience of this V1UserFeatures. # noqa: E501
|
|
590
|
+
:rtype: bool
|
|
591
|
+
"""
|
|
592
|
+
return self._b2c_experience
|
|
593
|
+
|
|
594
|
+
@b2c_experience.setter
|
|
595
|
+
def b2c_experience(self, b2c_experience: 'bool'):
|
|
596
|
+
"""Sets the b2c_experience of this V1UserFeatures.
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
:param b2c_experience: The b2c_experience of this V1UserFeatures. # noqa: E501
|
|
600
|
+
:type: bool
|
|
601
|
+
"""
|
|
602
|
+
|
|
603
|
+
self._b2c_experience = b2c_experience
|
|
401
604
|
|
|
402
605
|
@property
|
|
403
606
|
def cap_add(self) -> 'list[str]':
|
|
@@ -442,130 +645,130 @@ class V1UserFeatures(object):
|
|
|
442
645
|
self._cap_drop = cap_drop
|
|
443
646
|
|
|
444
647
|
@property
|
|
445
|
-
def
|
|
446
|
-
"""Gets the
|
|
648
|
+
def capacity_reservation_byoc(self) -> 'bool':
|
|
649
|
+
"""Gets the capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
|
|
447
650
|
|
|
448
651
|
|
|
449
|
-
:return: The
|
|
652
|
+
:return: The capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
|
|
450
653
|
:rtype: bool
|
|
451
654
|
"""
|
|
452
|
-
return self.
|
|
655
|
+
return self._capacity_reservation_byoc
|
|
453
656
|
|
|
454
|
-
@
|
|
455
|
-
def
|
|
456
|
-
"""Sets the
|
|
657
|
+
@capacity_reservation_byoc.setter
|
|
658
|
+
def capacity_reservation_byoc(self, capacity_reservation_byoc: 'bool'):
|
|
659
|
+
"""Sets the capacity_reservation_byoc of this V1UserFeatures.
|
|
457
660
|
|
|
458
661
|
|
|
459
|
-
:param
|
|
662
|
+
:param capacity_reservation_byoc: The capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
|
|
460
663
|
:type: bool
|
|
461
664
|
"""
|
|
462
665
|
|
|
463
|
-
self.
|
|
666
|
+
self._capacity_reservation_byoc = capacity_reservation_byoc
|
|
464
667
|
|
|
465
668
|
@property
|
|
466
|
-
def
|
|
467
|
-
"""Gets the
|
|
669
|
+
def capacity_reservation_dry_run(self) -> 'bool':
|
|
670
|
+
"""Gets the capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
|
|
468
671
|
|
|
469
672
|
|
|
470
|
-
:return: The
|
|
673
|
+
:return: The capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
|
|
471
674
|
:rtype: bool
|
|
472
675
|
"""
|
|
473
|
-
return self.
|
|
676
|
+
return self._capacity_reservation_dry_run
|
|
474
677
|
|
|
475
|
-
@
|
|
476
|
-
def
|
|
477
|
-
"""Sets the
|
|
678
|
+
@capacity_reservation_dry_run.setter
|
|
679
|
+
def capacity_reservation_dry_run(self, capacity_reservation_dry_run: 'bool'):
|
|
680
|
+
"""Sets the capacity_reservation_dry_run of this V1UserFeatures.
|
|
478
681
|
|
|
479
682
|
|
|
480
|
-
:param
|
|
683
|
+
:param capacity_reservation_dry_run: The capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
|
|
481
684
|
:type: bool
|
|
482
685
|
"""
|
|
483
686
|
|
|
484
|
-
self.
|
|
687
|
+
self._capacity_reservation_dry_run = capacity_reservation_dry_run
|
|
485
688
|
|
|
486
689
|
@property
|
|
487
|
-
def
|
|
488
|
-
"""Gets the
|
|
690
|
+
def cluster_proxy(self) -> 'bool':
|
|
691
|
+
"""Gets the cluster_proxy of this V1UserFeatures. # noqa: E501
|
|
489
692
|
|
|
490
693
|
|
|
491
|
-
:return: The
|
|
694
|
+
:return: The cluster_proxy of this V1UserFeatures. # noqa: E501
|
|
492
695
|
:rtype: bool
|
|
493
696
|
"""
|
|
494
|
-
return self.
|
|
697
|
+
return self._cluster_proxy
|
|
495
698
|
|
|
496
|
-
@
|
|
497
|
-
def
|
|
498
|
-
"""Sets the
|
|
699
|
+
@cluster_proxy.setter
|
|
700
|
+
def cluster_proxy(self, cluster_proxy: 'bool'):
|
|
701
|
+
"""Sets the cluster_proxy of this V1UserFeatures.
|
|
499
702
|
|
|
500
703
|
|
|
501
|
-
:param
|
|
704
|
+
:param cluster_proxy: The cluster_proxy of this V1UserFeatures. # noqa: E501
|
|
502
705
|
:type: bool
|
|
503
706
|
"""
|
|
504
707
|
|
|
505
|
-
self.
|
|
708
|
+
self._cluster_proxy = cluster_proxy
|
|
506
709
|
|
|
507
710
|
@property
|
|
508
|
-
def
|
|
509
|
-
"""Gets the
|
|
711
|
+
def code_tab(self) -> 'bool':
|
|
712
|
+
"""Gets the code_tab of this V1UserFeatures. # noqa: E501
|
|
510
713
|
|
|
511
714
|
|
|
512
|
-
:return: The
|
|
715
|
+
:return: The code_tab of this V1UserFeatures. # noqa: E501
|
|
513
716
|
:rtype: bool
|
|
514
717
|
"""
|
|
515
|
-
return self.
|
|
718
|
+
return self._code_tab
|
|
516
719
|
|
|
517
|
-
@
|
|
518
|
-
def
|
|
519
|
-
"""Sets the
|
|
720
|
+
@code_tab.setter
|
|
721
|
+
def code_tab(self, code_tab: 'bool'):
|
|
722
|
+
"""Sets the code_tab of this V1UserFeatures.
|
|
520
723
|
|
|
521
724
|
|
|
522
|
-
:param
|
|
725
|
+
:param code_tab: The code_tab of this V1UserFeatures. # noqa: E501
|
|
523
726
|
:type: bool
|
|
524
727
|
"""
|
|
525
728
|
|
|
526
|
-
self.
|
|
729
|
+
self._code_tab = code_tab
|
|
527
730
|
|
|
528
731
|
@property
|
|
529
|
-
def
|
|
530
|
-
"""Gets the
|
|
732
|
+
def collab_screen_sharing(self) -> 'bool':
|
|
733
|
+
"""Gets the collab_screen_sharing of this V1UserFeatures. # noqa: E501
|
|
531
734
|
|
|
532
735
|
|
|
533
|
-
:return: The
|
|
736
|
+
:return: The collab_screen_sharing of this V1UserFeatures. # noqa: E501
|
|
534
737
|
:rtype: bool
|
|
535
738
|
"""
|
|
536
|
-
return self.
|
|
739
|
+
return self._collab_screen_sharing
|
|
537
740
|
|
|
538
|
-
@
|
|
539
|
-
def
|
|
540
|
-
"""Sets the
|
|
741
|
+
@collab_screen_sharing.setter
|
|
742
|
+
def collab_screen_sharing(self, collab_screen_sharing: 'bool'):
|
|
743
|
+
"""Sets the collab_screen_sharing of this V1UserFeatures.
|
|
541
744
|
|
|
542
745
|
|
|
543
|
-
:param
|
|
746
|
+
:param collab_screen_sharing: The collab_screen_sharing of this V1UserFeatures. # noqa: E501
|
|
544
747
|
:type: bool
|
|
545
748
|
"""
|
|
546
749
|
|
|
547
|
-
self.
|
|
750
|
+
self._collab_screen_sharing = collab_screen_sharing
|
|
548
751
|
|
|
549
752
|
@property
|
|
550
|
-
def
|
|
551
|
-
"""Gets the
|
|
753
|
+
def cost_attribution_settings(self) -> 'bool':
|
|
754
|
+
"""Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
552
755
|
|
|
553
756
|
|
|
554
|
-
:return: The
|
|
757
|
+
:return: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
555
758
|
:rtype: bool
|
|
556
759
|
"""
|
|
557
|
-
return self.
|
|
760
|
+
return self._cost_attribution_settings
|
|
558
761
|
|
|
559
|
-
@
|
|
560
|
-
def
|
|
561
|
-
"""Sets the
|
|
762
|
+
@cost_attribution_settings.setter
|
|
763
|
+
def cost_attribution_settings(self, cost_attribution_settings: 'bool'):
|
|
764
|
+
"""Sets the cost_attribution_settings of this V1UserFeatures.
|
|
562
765
|
|
|
563
766
|
|
|
564
|
-
:param
|
|
767
|
+
:param cost_attribution_settings: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
565
768
|
:type: bool
|
|
566
769
|
"""
|
|
567
770
|
|
|
568
|
-
self.
|
|
771
|
+
self._cost_attribution_settings = cost_attribution_settings
|
|
569
772
|
|
|
570
773
|
@property
|
|
571
774
|
def custom_app_domain(self) -> 'bool':
|
|
@@ -609,6 +812,195 @@ class V1UserFeatures(object):
|
|
|
609
812
|
|
|
610
813
|
self._custom_instance_types = custom_instance_types
|
|
611
814
|
|
|
815
|
+
@property
|
|
816
|
+
def default_one_cluster(self) -> 'bool':
|
|
817
|
+
"""Gets the default_one_cluster of this V1UserFeatures. # noqa: E501
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
:return: The default_one_cluster of this V1UserFeatures. # noqa: E501
|
|
821
|
+
:rtype: bool
|
|
822
|
+
"""
|
|
823
|
+
return self._default_one_cluster
|
|
824
|
+
|
|
825
|
+
@default_one_cluster.setter
|
|
826
|
+
def default_one_cluster(self, default_one_cluster: 'bool'):
|
|
827
|
+
"""Sets the default_one_cluster of this V1UserFeatures.
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
:param default_one_cluster: The default_one_cluster of this V1UserFeatures. # noqa: E501
|
|
831
|
+
:type: bool
|
|
832
|
+
"""
|
|
833
|
+
|
|
834
|
+
self._default_one_cluster = default_one_cluster
|
|
835
|
+
|
|
836
|
+
@property
|
|
837
|
+
def deployment_customize_api(self) -> 'bool':
|
|
838
|
+
"""Gets the deployment_customize_api of this V1UserFeatures. # noqa: E501
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
:return: The deployment_customize_api of this V1UserFeatures. # noqa: E501
|
|
842
|
+
:rtype: bool
|
|
843
|
+
"""
|
|
844
|
+
return self._deployment_customize_api
|
|
845
|
+
|
|
846
|
+
@deployment_customize_api.setter
|
|
847
|
+
def deployment_customize_api(self, deployment_customize_api: 'bool'):
|
|
848
|
+
"""Sets the deployment_customize_api of this V1UserFeatures.
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
:param deployment_customize_api: The deployment_customize_api of this V1UserFeatures. # noqa: E501
|
|
852
|
+
:type: bool
|
|
853
|
+
"""
|
|
854
|
+
|
|
855
|
+
self._deployment_customize_api = deployment_customize_api
|
|
856
|
+
|
|
857
|
+
@property
|
|
858
|
+
def deployment_data_path(self) -> 'bool':
|
|
859
|
+
"""Gets the deployment_data_path of this V1UserFeatures. # noqa: E501
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
:return: The deployment_data_path of this V1UserFeatures. # noqa: E501
|
|
863
|
+
:rtype: bool
|
|
864
|
+
"""
|
|
865
|
+
return self._deployment_data_path
|
|
866
|
+
|
|
867
|
+
@deployment_data_path.setter
|
|
868
|
+
def deployment_data_path(self, deployment_data_path: 'bool'):
|
|
869
|
+
"""Sets the deployment_data_path of this V1UserFeatures.
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
:param deployment_data_path: The deployment_data_path of this V1UserFeatures. # noqa: E501
|
|
873
|
+
:type: bool
|
|
874
|
+
"""
|
|
875
|
+
|
|
876
|
+
self._deployment_data_path = deployment_data_path
|
|
877
|
+
|
|
878
|
+
@property
|
|
879
|
+
def deployment_gallery(self) -> 'bool':
|
|
880
|
+
"""Gets the deployment_gallery of this V1UserFeatures. # noqa: E501
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
:return: The deployment_gallery of this V1UserFeatures. # noqa: E501
|
|
884
|
+
:rtype: bool
|
|
885
|
+
"""
|
|
886
|
+
return self._deployment_gallery
|
|
887
|
+
|
|
888
|
+
@deployment_gallery.setter
|
|
889
|
+
def deployment_gallery(self, deployment_gallery: 'bool'):
|
|
890
|
+
"""Sets the deployment_gallery of this V1UserFeatures.
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
:param deployment_gallery: The deployment_gallery of this V1UserFeatures. # noqa: E501
|
|
894
|
+
:type: bool
|
|
895
|
+
"""
|
|
896
|
+
|
|
897
|
+
self._deployment_gallery = deployment_gallery
|
|
898
|
+
|
|
899
|
+
@property
|
|
900
|
+
def deployment_persistent_disk(self) -> 'bool':
|
|
901
|
+
"""Gets the deployment_persistent_disk of this V1UserFeatures. # noqa: E501
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
:return: The deployment_persistent_disk of this V1UserFeatures. # noqa: E501
|
|
905
|
+
:rtype: bool
|
|
906
|
+
"""
|
|
907
|
+
return self._deployment_persistent_disk
|
|
908
|
+
|
|
909
|
+
@deployment_persistent_disk.setter
|
|
910
|
+
def deployment_persistent_disk(self, deployment_persistent_disk: 'bool'):
|
|
911
|
+
"""Sets the deployment_persistent_disk of this V1UserFeatures.
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
:param deployment_persistent_disk: The deployment_persistent_disk of this V1UserFeatures. # noqa: E501
|
|
915
|
+
:type: bool
|
|
916
|
+
"""
|
|
917
|
+
|
|
918
|
+
self._deployment_persistent_disk = deployment_persistent_disk
|
|
919
|
+
|
|
920
|
+
@property
|
|
921
|
+
def deployment_version_visibility(self) -> 'bool':
|
|
922
|
+
"""Gets the deployment_version_visibility of this V1UserFeatures. # noqa: E501
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
:return: The deployment_version_visibility of this V1UserFeatures. # noqa: E501
|
|
926
|
+
:rtype: bool
|
|
927
|
+
"""
|
|
928
|
+
return self._deployment_version_visibility
|
|
929
|
+
|
|
930
|
+
@deployment_version_visibility.setter
|
|
931
|
+
def deployment_version_visibility(self, deployment_version_visibility: 'bool'):
|
|
932
|
+
"""Sets the deployment_version_visibility of this V1UserFeatures.
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
:param deployment_version_visibility: The deployment_version_visibility of this V1UserFeatures. # noqa: E501
|
|
936
|
+
:type: bool
|
|
937
|
+
"""
|
|
938
|
+
|
|
939
|
+
self._deployment_version_visibility = deployment_version_visibility
|
|
940
|
+
|
|
941
|
+
@property
|
|
942
|
+
def docs_agent(self) -> 'bool':
|
|
943
|
+
"""Gets the docs_agent of this V1UserFeatures. # noqa: E501
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
:return: The docs_agent of this V1UserFeatures. # noqa: E501
|
|
947
|
+
:rtype: bool
|
|
948
|
+
"""
|
|
949
|
+
return self._docs_agent
|
|
950
|
+
|
|
951
|
+
@docs_agent.setter
|
|
952
|
+
def docs_agent(self, docs_agent: 'bool'):
|
|
953
|
+
"""Sets the docs_agent of this V1UserFeatures.
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
:param docs_agent: The docs_agent of this V1UserFeatures. # noqa: E501
|
|
957
|
+
:type: bool
|
|
958
|
+
"""
|
|
959
|
+
|
|
960
|
+
self._docs_agent = docs_agent
|
|
961
|
+
|
|
962
|
+
@property
|
|
963
|
+
def drive_v2(self) -> 'bool':
|
|
964
|
+
"""Gets the drive_v2 of this V1UserFeatures. # noqa: E501
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
:return: The drive_v2 of this V1UserFeatures. # noqa: E501
|
|
968
|
+
:rtype: bool
|
|
969
|
+
"""
|
|
970
|
+
return self._drive_v2
|
|
971
|
+
|
|
972
|
+
@drive_v2.setter
|
|
973
|
+
def drive_v2(self, drive_v2: 'bool'):
|
|
974
|
+
"""Sets the drive_v2 of this V1UserFeatures.
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
:param drive_v2: The drive_v2 of this V1UserFeatures. # noqa: E501
|
|
978
|
+
:type: bool
|
|
979
|
+
"""
|
|
980
|
+
|
|
981
|
+
self._drive_v2 = drive_v2
|
|
982
|
+
|
|
983
|
+
@property
|
|
984
|
+
def dynamic_workload_scheduling(self) -> 'bool':
|
|
985
|
+
"""Gets the dynamic_workload_scheduling of this V1UserFeatures. # noqa: E501
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
:return: The dynamic_workload_scheduling of this V1UserFeatures. # noqa: E501
|
|
989
|
+
:rtype: bool
|
|
990
|
+
"""
|
|
991
|
+
return self._dynamic_workload_scheduling
|
|
992
|
+
|
|
993
|
+
@dynamic_workload_scheduling.setter
|
|
994
|
+
def dynamic_workload_scheduling(self, dynamic_workload_scheduling: 'bool'):
|
|
995
|
+
"""Sets the dynamic_workload_scheduling of this V1UserFeatures.
|
|
996
|
+
|
|
997
|
+
|
|
998
|
+
:param dynamic_workload_scheduling: The dynamic_workload_scheduling of this V1UserFeatures. # noqa: E501
|
|
999
|
+
:type: bool
|
|
1000
|
+
"""
|
|
1001
|
+
|
|
1002
|
+
self._dynamic_workload_scheduling = dynamic_workload_scheduling
|
|
1003
|
+
|
|
612
1004
|
@property
|
|
613
1005
|
def enable_crypto_crackdown(self) -> 'bool':
|
|
614
1006
|
"""Gets the enable_crypto_crackdown of this V1UserFeatures. # noqa: E501
|
|
@@ -630,6 +1022,48 @@ class V1UserFeatures(object):
|
|
|
630
1022
|
|
|
631
1023
|
self._enable_crypto_crackdown = enable_crypto_crackdown
|
|
632
1024
|
|
|
1025
|
+
@property
|
|
1026
|
+
def enable_efs(self) -> 'bool':
|
|
1027
|
+
"""Gets the enable_efs of this V1UserFeatures. # noqa: E501
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
:return: The enable_efs of this V1UserFeatures. # noqa: E501
|
|
1031
|
+
:rtype: bool
|
|
1032
|
+
"""
|
|
1033
|
+
return self._enable_efs
|
|
1034
|
+
|
|
1035
|
+
@enable_efs.setter
|
|
1036
|
+
def enable_efs(self, enable_efs: 'bool'):
|
|
1037
|
+
"""Sets the enable_efs of this V1UserFeatures.
|
|
1038
|
+
|
|
1039
|
+
|
|
1040
|
+
:param enable_efs: The enable_efs of this V1UserFeatures. # noqa: E501
|
|
1041
|
+
:type: bool
|
|
1042
|
+
"""
|
|
1043
|
+
|
|
1044
|
+
self._enable_efs = enable_efs
|
|
1045
|
+
|
|
1046
|
+
@property
|
|
1047
|
+
def enable_storage_limits(self) -> 'bool':
|
|
1048
|
+
"""Gets the enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
:return: The enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1052
|
+
:rtype: bool
|
|
1053
|
+
"""
|
|
1054
|
+
return self._enable_storage_limits
|
|
1055
|
+
|
|
1056
|
+
@enable_storage_limits.setter
|
|
1057
|
+
def enable_storage_limits(self, enable_storage_limits: 'bool'):
|
|
1058
|
+
"""Sets the enable_storage_limits of this V1UserFeatures.
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
:param enable_storage_limits: The enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1062
|
+
:type: bool
|
|
1063
|
+
"""
|
|
1064
|
+
|
|
1065
|
+
self._enable_storage_limits = enable_storage_limits
|
|
1066
|
+
|
|
633
1067
|
@property
|
|
634
1068
|
def featured_studios_admin(self) -> 'bool':
|
|
635
1069
|
"""Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
|
|
@@ -673,25 +1107,67 @@ class V1UserFeatures(object):
|
|
|
673
1107
|
self._filesystem_optimisation = filesystem_optimisation
|
|
674
1108
|
|
|
675
1109
|
@property
|
|
676
|
-
def
|
|
677
|
-
"""Gets the
|
|
1110
|
+
def gcp(self) -> 'bool':
|
|
1111
|
+
"""Gets the gcp of this V1UserFeatures. # noqa: E501
|
|
1112
|
+
|
|
1113
|
+
|
|
1114
|
+
:return: The gcp of this V1UserFeatures. # noqa: E501
|
|
1115
|
+
:rtype: bool
|
|
1116
|
+
"""
|
|
1117
|
+
return self._gcp
|
|
1118
|
+
|
|
1119
|
+
@gcp.setter
|
|
1120
|
+
def gcp(self, gcp: 'bool'):
|
|
1121
|
+
"""Sets the gcp of this V1UserFeatures.
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
:param gcp: The gcp of this V1UserFeatures. # noqa: E501
|
|
1125
|
+
:type: bool
|
|
1126
|
+
"""
|
|
1127
|
+
|
|
1128
|
+
self._gcp = gcp
|
|
1129
|
+
|
|
1130
|
+
@property
|
|
1131
|
+
def inference_job_deployment_plugin(self) -> 'bool':
|
|
1132
|
+
"""Gets the inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
:return: The inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
|
|
1136
|
+
:rtype: bool
|
|
1137
|
+
"""
|
|
1138
|
+
return self._inference_job_deployment_plugin
|
|
1139
|
+
|
|
1140
|
+
@inference_job_deployment_plugin.setter
|
|
1141
|
+
def inference_job_deployment_plugin(self, inference_job_deployment_plugin: 'bool'):
|
|
1142
|
+
"""Sets the inference_job_deployment_plugin of this V1UserFeatures.
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
:param inference_job_deployment_plugin: The inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
|
|
1146
|
+
:type: bool
|
|
1147
|
+
"""
|
|
1148
|
+
|
|
1149
|
+
self._inference_job_deployment_plugin = inference_job_deployment_plugin
|
|
1150
|
+
|
|
1151
|
+
@property
|
|
1152
|
+
def instant_capacity_reservation(self) -> 'bool':
|
|
1153
|
+
"""Gets the instant_capacity_reservation of this V1UserFeatures. # noqa: E501
|
|
678
1154
|
|
|
679
1155
|
|
|
680
|
-
:return: The
|
|
1156
|
+
:return: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
|
|
681
1157
|
:rtype: bool
|
|
682
1158
|
"""
|
|
683
|
-
return self.
|
|
1159
|
+
return self._instant_capacity_reservation
|
|
684
1160
|
|
|
685
|
-
@
|
|
686
|
-
def
|
|
687
|
-
"""Sets the
|
|
1161
|
+
@instant_capacity_reservation.setter
|
|
1162
|
+
def instant_capacity_reservation(self, instant_capacity_reservation: 'bool'):
|
|
1163
|
+
"""Sets the instant_capacity_reservation of this V1UserFeatures.
|
|
688
1164
|
|
|
689
1165
|
|
|
690
|
-
:param
|
|
1166
|
+
:param instant_capacity_reservation: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
|
|
691
1167
|
:type: bool
|
|
692
1168
|
"""
|
|
693
1169
|
|
|
694
|
-
self.
|
|
1170
|
+
self._instant_capacity_reservation = instant_capacity_reservation
|
|
695
1171
|
|
|
696
1172
|
@property
|
|
697
1173
|
def jobs_init(self) -> 'bool':
|
|
@@ -715,25 +1191,25 @@ class V1UserFeatures(object):
|
|
|
715
1191
|
self._jobs_init = jobs_init
|
|
716
1192
|
|
|
717
1193
|
@property
|
|
718
|
-
def
|
|
719
|
-
"""Gets the
|
|
1194
|
+
def jobs_v2(self) -> 'bool':
|
|
1195
|
+
"""Gets the jobs_v2 of this V1UserFeatures. # noqa: E501
|
|
720
1196
|
|
|
721
1197
|
|
|
722
|
-
:return: The
|
|
1198
|
+
:return: The jobs_v2 of this V1UserFeatures. # noqa: E501
|
|
723
1199
|
:rtype: bool
|
|
724
1200
|
"""
|
|
725
|
-
return self.
|
|
1201
|
+
return self._jobs_v2
|
|
726
1202
|
|
|
727
|
-
@
|
|
728
|
-
def
|
|
729
|
-
"""Sets the
|
|
1203
|
+
@jobs_v2.setter
|
|
1204
|
+
def jobs_v2(self, jobs_v2: 'bool'):
|
|
1205
|
+
"""Sets the jobs_v2 of this V1UserFeatures.
|
|
730
1206
|
|
|
731
1207
|
|
|
732
|
-
:param
|
|
1208
|
+
:param jobs_v2: The jobs_v2 of this V1UserFeatures. # noqa: E501
|
|
733
1209
|
:type: bool
|
|
734
1210
|
"""
|
|
735
1211
|
|
|
736
|
-
self.
|
|
1212
|
+
self._jobs_v2 = jobs_v2
|
|
737
1213
|
|
|
738
1214
|
@property
|
|
739
1215
|
def landing_studios(self) -> 'bool':
|
|
@@ -757,25 +1233,88 @@ class V1UserFeatures(object):
|
|
|
757
1233
|
self._landing_studios = landing_studios
|
|
758
1234
|
|
|
759
1235
|
@property
|
|
760
|
-
def
|
|
761
|
-
"""Gets the
|
|
1236
|
+
def lightning_registry(self) -> 'bool':
|
|
1237
|
+
"""Gets the lightning_registry of this V1UserFeatures. # noqa: E501
|
|
1238
|
+
|
|
1239
|
+
|
|
1240
|
+
:return: The lightning_registry of this V1UserFeatures. # noqa: E501
|
|
1241
|
+
:rtype: bool
|
|
1242
|
+
"""
|
|
1243
|
+
return self._lightning_registry
|
|
1244
|
+
|
|
1245
|
+
@lightning_registry.setter
|
|
1246
|
+
def lightning_registry(self, lightning_registry: 'bool'):
|
|
1247
|
+
"""Sets the lightning_registry of this V1UserFeatures.
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
:param lightning_registry: The lightning_registry of this V1UserFeatures. # noqa: E501
|
|
1251
|
+
:type: bool
|
|
1252
|
+
"""
|
|
1253
|
+
|
|
1254
|
+
self._lightning_registry = lightning_registry
|
|
1255
|
+
|
|
1256
|
+
@property
|
|
1257
|
+
def lit_logger(self) -> 'bool':
|
|
1258
|
+
"""Gets the lit_logger of this V1UserFeatures. # noqa: E501
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
:return: The lit_logger of this V1UserFeatures. # noqa: E501
|
|
1262
|
+
:rtype: bool
|
|
1263
|
+
"""
|
|
1264
|
+
return self._lit_logger
|
|
1265
|
+
|
|
1266
|
+
@lit_logger.setter
|
|
1267
|
+
def lit_logger(self, lit_logger: 'bool'):
|
|
1268
|
+
"""Sets the lit_logger of this V1UserFeatures.
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
:param lit_logger: The lit_logger of this V1UserFeatures. # noqa: E501
|
|
1272
|
+
:type: bool
|
|
1273
|
+
"""
|
|
1274
|
+
|
|
1275
|
+
self._lit_logger = lit_logger
|
|
1276
|
+
|
|
1277
|
+
@property
|
|
1278
|
+
def lit_logger_storage_v2(self) -> 'bool':
|
|
1279
|
+
"""Gets the lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
|
|
762
1280
|
|
|
763
1281
|
|
|
764
|
-
:return: The
|
|
1282
|
+
:return: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
|
|
765
1283
|
:rtype: bool
|
|
766
1284
|
"""
|
|
767
|
-
return self.
|
|
1285
|
+
return self._lit_logger_storage_v2
|
|
768
1286
|
|
|
769
|
-
@
|
|
770
|
-
def
|
|
771
|
-
"""Sets the
|
|
1287
|
+
@lit_logger_storage_v2.setter
|
|
1288
|
+
def lit_logger_storage_v2(self, lit_logger_storage_v2: 'bool'):
|
|
1289
|
+
"""Sets the lit_logger_storage_v2 of this V1UserFeatures.
|
|
772
1290
|
|
|
773
1291
|
|
|
774
|
-
:param
|
|
1292
|
+
:param lit_logger_storage_v2: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
|
|
775
1293
|
:type: bool
|
|
776
1294
|
"""
|
|
777
1295
|
|
|
778
|
-
self.
|
|
1296
|
+
self._lit_logger_storage_v2 = lit_logger_storage_v2
|
|
1297
|
+
|
|
1298
|
+
@property
|
|
1299
|
+
def mmt_fault_tolerance(self) -> 'bool':
|
|
1300
|
+
"""Gets the mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
|
|
1301
|
+
|
|
1302
|
+
|
|
1303
|
+
:return: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
|
|
1304
|
+
:rtype: bool
|
|
1305
|
+
"""
|
|
1306
|
+
return self._mmt_fault_tolerance
|
|
1307
|
+
|
|
1308
|
+
@mmt_fault_tolerance.setter
|
|
1309
|
+
def mmt_fault_tolerance(self, mmt_fault_tolerance: 'bool'):
|
|
1310
|
+
"""Sets the mmt_fault_tolerance of this V1UserFeatures.
|
|
1311
|
+
|
|
1312
|
+
|
|
1313
|
+
:param mmt_fault_tolerance: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
|
|
1314
|
+
:type: bool
|
|
1315
|
+
"""
|
|
1316
|
+
|
|
1317
|
+
self._mmt_fault_tolerance = mmt_fault_tolerance
|
|
779
1318
|
|
|
780
1319
|
@property
|
|
781
1320
|
def mmt_strategy_selector(self) -> 'bool':
|
|
@@ -799,67 +1338,109 @@ class V1UserFeatures(object):
|
|
|
799
1338
|
self._mmt_strategy_selector = mmt_strategy_selector
|
|
800
1339
|
|
|
801
1340
|
@property
|
|
802
|
-
def
|
|
803
|
-
"""Gets the
|
|
1341
|
+
def mmt_v2(self) -> 'bool':
|
|
1342
|
+
"""Gets the mmt_v2 of this V1UserFeatures. # noqa: E501
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
:return: The mmt_v2 of this V1UserFeatures. # noqa: E501
|
|
1346
|
+
:rtype: bool
|
|
1347
|
+
"""
|
|
1348
|
+
return self._mmt_v2
|
|
1349
|
+
|
|
1350
|
+
@mmt_v2.setter
|
|
1351
|
+
def mmt_v2(self, mmt_v2: 'bool'):
|
|
1352
|
+
"""Sets the mmt_v2 of this V1UserFeatures.
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
:param mmt_v2: The mmt_v2 of this V1UserFeatures. # noqa: E501
|
|
1356
|
+
:type: bool
|
|
1357
|
+
"""
|
|
1358
|
+
|
|
1359
|
+
self._mmt_v2 = mmt_v2
|
|
1360
|
+
|
|
1361
|
+
@property
|
|
1362
|
+
def model_store(self) -> 'bool':
|
|
1363
|
+
"""Gets the model_store of this V1UserFeatures. # noqa: E501
|
|
804
1364
|
|
|
805
1365
|
|
|
806
|
-
:return: The
|
|
1366
|
+
:return: The model_store of this V1UserFeatures. # noqa: E501
|
|
807
1367
|
:rtype: bool
|
|
808
1368
|
"""
|
|
809
|
-
return self.
|
|
1369
|
+
return self._model_store
|
|
810
1370
|
|
|
811
|
-
@
|
|
812
|
-
def
|
|
813
|
-
"""Sets the
|
|
1371
|
+
@model_store.setter
|
|
1372
|
+
def model_store(self, model_store: 'bool'):
|
|
1373
|
+
"""Sets the model_store of this V1UserFeatures.
|
|
814
1374
|
|
|
815
1375
|
|
|
816
|
-
:param
|
|
1376
|
+
:param model_store: The model_store of this V1UserFeatures. # noqa: E501
|
|
817
1377
|
:type: bool
|
|
818
1378
|
"""
|
|
819
1379
|
|
|
820
|
-
self.
|
|
1380
|
+
self._model_store = model_store
|
|
821
1381
|
|
|
822
1382
|
@property
|
|
823
|
-
def
|
|
824
|
-
"""Gets the
|
|
1383
|
+
def multiple_deployment_versions(self) -> 'bool':
|
|
1384
|
+
"""Gets the multiple_deployment_versions of this V1UserFeatures. # noqa: E501
|
|
825
1385
|
|
|
826
1386
|
|
|
827
|
-
:return: The
|
|
1387
|
+
:return: The multiple_deployment_versions of this V1UserFeatures. # noqa: E501
|
|
828
1388
|
:rtype: bool
|
|
829
1389
|
"""
|
|
830
|
-
return self.
|
|
1390
|
+
return self._multiple_deployment_versions
|
|
831
1391
|
|
|
832
|
-
@
|
|
833
|
-
def
|
|
834
|
-
"""Sets the
|
|
1392
|
+
@multiple_deployment_versions.setter
|
|
1393
|
+
def multiple_deployment_versions(self, multiple_deployment_versions: 'bool'):
|
|
1394
|
+
"""Sets the multiple_deployment_versions of this V1UserFeatures.
|
|
835
1395
|
|
|
836
1396
|
|
|
837
|
-
:param
|
|
1397
|
+
:param multiple_deployment_versions: The multiple_deployment_versions of this V1UserFeatures. # noqa: E501
|
|
838
1398
|
:type: bool
|
|
839
1399
|
"""
|
|
840
1400
|
|
|
841
|
-
self.
|
|
1401
|
+
self._multiple_deployment_versions = multiple_deployment_versions
|
|
842
1402
|
|
|
843
1403
|
@property
|
|
844
|
-
def
|
|
845
|
-
"""Gets the
|
|
1404
|
+
def multiple_studio_versions(self) -> 'bool':
|
|
1405
|
+
"""Gets the multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
846
1406
|
|
|
847
1407
|
|
|
848
|
-
:return: The
|
|
1408
|
+
:return: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
849
1409
|
:rtype: bool
|
|
850
1410
|
"""
|
|
851
|
-
return self.
|
|
1411
|
+
return self._multiple_studio_versions
|
|
852
1412
|
|
|
853
|
-
@
|
|
854
|
-
def
|
|
855
|
-
"""Sets the
|
|
1413
|
+
@multiple_studio_versions.setter
|
|
1414
|
+
def multiple_studio_versions(self, multiple_studio_versions: 'bool'):
|
|
1415
|
+
"""Sets the multiple_studio_versions of this V1UserFeatures.
|
|
856
1416
|
|
|
857
1417
|
|
|
858
|
-
:param
|
|
1418
|
+
:param multiple_studio_versions: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
859
1419
|
:type: bool
|
|
860
1420
|
"""
|
|
861
1421
|
|
|
862
|
-
self.
|
|
1422
|
+
self._multiple_studio_versions = multiple_studio_versions
|
|
1423
|
+
|
|
1424
|
+
@property
|
|
1425
|
+
def org_level_member_permissions(self) -> 'bool':
|
|
1426
|
+
"""Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
1427
|
+
|
|
1428
|
+
|
|
1429
|
+
:return: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
1430
|
+
:rtype: bool
|
|
1431
|
+
"""
|
|
1432
|
+
return self._org_level_member_permissions
|
|
1433
|
+
|
|
1434
|
+
@org_level_member_permissions.setter
|
|
1435
|
+
def org_level_member_permissions(self, org_level_member_permissions: 'bool'):
|
|
1436
|
+
"""Sets the org_level_member_permissions of this V1UserFeatures.
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
:param org_level_member_permissions: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
1440
|
+
:type: bool
|
|
1441
|
+
"""
|
|
1442
|
+
|
|
1443
|
+
self._org_level_member_permissions = org_level_member_permissions
|
|
863
1444
|
|
|
864
1445
|
@property
|
|
865
1446
|
def plugin_biz_chat(self) -> 'bool':
|
|
@@ -1239,69 +1820,6 @@ class V1UserFeatures(object):
|
|
|
1239
1820
|
|
|
1240
1821
|
self._project_selector = project_selector
|
|
1241
1822
|
|
|
1242
|
-
@property
|
|
1243
|
-
def public_studio_drive(self) -> 'bool':
|
|
1244
|
-
"""Gets the public_studio_drive of this V1UserFeatures. # noqa: E501
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
:return: The public_studio_drive of this V1UserFeatures. # noqa: E501
|
|
1248
|
-
:rtype: bool
|
|
1249
|
-
"""
|
|
1250
|
-
return self._public_studio_drive
|
|
1251
|
-
|
|
1252
|
-
@public_studio_drive.setter
|
|
1253
|
-
def public_studio_drive(self, public_studio_drive: 'bool'):
|
|
1254
|
-
"""Sets the public_studio_drive of this V1UserFeatures.
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
:param public_studio_drive: The public_studio_drive of this V1UserFeatures. # noqa: E501
|
|
1258
|
-
:type: bool
|
|
1259
|
-
"""
|
|
1260
|
-
|
|
1261
|
-
self._public_studio_drive = public_studio_drive
|
|
1262
|
-
|
|
1263
|
-
@property
|
|
1264
|
-
def publish_ai_app(self) -> 'bool':
|
|
1265
|
-
"""Gets the publish_ai_app of this V1UserFeatures. # noqa: E501
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
:return: The publish_ai_app of this V1UserFeatures. # noqa: E501
|
|
1269
|
-
:rtype: bool
|
|
1270
|
-
"""
|
|
1271
|
-
return self._publish_ai_app
|
|
1272
|
-
|
|
1273
|
-
@publish_ai_app.setter
|
|
1274
|
-
def publish_ai_app(self, publish_ai_app: 'bool'):
|
|
1275
|
-
"""Sets the publish_ai_app of this V1UserFeatures.
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
:param publish_ai_app: The publish_ai_app of this V1UserFeatures. # noqa: E501
|
|
1279
|
-
:type: bool
|
|
1280
|
-
"""
|
|
1281
|
-
|
|
1282
|
-
self._publish_ai_app = publish_ai_app
|
|
1283
|
-
|
|
1284
|
-
@property
|
|
1285
|
-
def quests(self) -> 'bool':
|
|
1286
|
-
"""Gets the quests of this V1UserFeatures. # noqa: E501
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
:return: The quests of this V1UserFeatures. # noqa: E501
|
|
1290
|
-
:rtype: bool
|
|
1291
|
-
"""
|
|
1292
|
-
return self._quests
|
|
1293
|
-
|
|
1294
|
-
@quests.setter
|
|
1295
|
-
def quests(self, quests: 'bool'):
|
|
1296
|
-
"""Sets the quests of this V1UserFeatures.
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
:param quests: The quests of this V1UserFeatures. # noqa: E501
|
|
1300
|
-
:type: bool
|
|
1301
|
-
"""
|
|
1302
|
-
|
|
1303
|
-
self._quests = quests
|
|
1304
|
-
|
|
1305
1823
|
@property
|
|
1306
1824
|
def restart_ide_on_hang(self) -> 'bool':
|
|
1307
1825
|
"""Gets the restart_ide_on_hang of this V1UserFeatures. # noqa: E501
|
|
@@ -1344,6 +1862,27 @@ class V1UserFeatures(object):
|
|
|
1344
1862
|
|
|
1345
1863
|
self._restartable_jobs = restartable_jobs
|
|
1346
1864
|
|
|
1865
|
+
@property
|
|
1866
|
+
def runnable_public_studio_page(self) -> 'bool':
|
|
1867
|
+
"""Gets the runnable_public_studio_page of this V1UserFeatures. # noqa: E501
|
|
1868
|
+
|
|
1869
|
+
|
|
1870
|
+
:return: The runnable_public_studio_page of this V1UserFeatures. # noqa: E501
|
|
1871
|
+
:rtype: bool
|
|
1872
|
+
"""
|
|
1873
|
+
return self._runnable_public_studio_page
|
|
1874
|
+
|
|
1875
|
+
@runnable_public_studio_page.setter
|
|
1876
|
+
def runnable_public_studio_page(self, runnable_public_studio_page: 'bool'):
|
|
1877
|
+
"""Sets the runnable_public_studio_page of this V1UserFeatures.
|
|
1878
|
+
|
|
1879
|
+
|
|
1880
|
+
:param runnable_public_studio_page: The runnable_public_studio_page of this V1UserFeatures. # noqa: E501
|
|
1881
|
+
:type: bool
|
|
1882
|
+
"""
|
|
1883
|
+
|
|
1884
|
+
self._runnable_public_studio_page = runnable_public_studio_page
|
|
1885
|
+
|
|
1347
1886
|
@property
|
|
1348
1887
|
def show_dev_admin(self) -> 'bool':
|
|
1349
1888
|
"""Gets the show_dev_admin of this V1UserFeatures. # noqa: E501
|
|
@@ -1387,25 +1926,214 @@ class V1UserFeatures(object):
|
|
|
1387
1926
|
self._slurm = slurm
|
|
1388
1927
|
|
|
1389
1928
|
@property
|
|
1390
|
-
def
|
|
1391
|
-
"""Gets the
|
|
1929
|
+
def slurm_machine_selector(self) -> 'bool':
|
|
1930
|
+
"""Gets the slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
1931
|
+
|
|
1932
|
+
|
|
1933
|
+
:return: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
1934
|
+
:rtype: bool
|
|
1935
|
+
"""
|
|
1936
|
+
return self._slurm_machine_selector
|
|
1937
|
+
|
|
1938
|
+
@slurm_machine_selector.setter
|
|
1939
|
+
def slurm_machine_selector(self, slurm_machine_selector: 'bool'):
|
|
1940
|
+
"""Sets the slurm_machine_selector of this V1UserFeatures.
|
|
1941
|
+
|
|
1942
|
+
|
|
1943
|
+
:param slurm_machine_selector: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
1944
|
+
:type: bool
|
|
1945
|
+
"""
|
|
1946
|
+
|
|
1947
|
+
self._slurm_machine_selector = slurm_machine_selector
|
|
1948
|
+
|
|
1949
|
+
@property
|
|
1950
|
+
def snapshotter_service(self) -> 'bool':
|
|
1951
|
+
"""Gets the snapshotter_service of this V1UserFeatures. # noqa: E501
|
|
1952
|
+
|
|
1953
|
+
|
|
1954
|
+
:return: The snapshotter_service of this V1UserFeatures. # noqa: E501
|
|
1955
|
+
:rtype: bool
|
|
1956
|
+
"""
|
|
1957
|
+
return self._snapshotter_service
|
|
1958
|
+
|
|
1959
|
+
@snapshotter_service.setter
|
|
1960
|
+
def snapshotter_service(self, snapshotter_service: 'bool'):
|
|
1961
|
+
"""Sets the snapshotter_service of this V1UserFeatures.
|
|
1962
|
+
|
|
1963
|
+
|
|
1964
|
+
:param snapshotter_service: The snapshotter_service of this V1UserFeatures. # noqa: E501
|
|
1965
|
+
:type: bool
|
|
1966
|
+
"""
|
|
1967
|
+
|
|
1968
|
+
self._snapshotter_service = snapshotter_service
|
|
1969
|
+
|
|
1970
|
+
@property
|
|
1971
|
+
def snowflake_connection(self) -> 'bool':
|
|
1972
|
+
"""Gets the snowflake_connection of this V1UserFeatures. # noqa: E501
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
:return: The snowflake_connection of this V1UserFeatures. # noqa: E501
|
|
1976
|
+
:rtype: bool
|
|
1977
|
+
"""
|
|
1978
|
+
return self._snowflake_connection
|
|
1979
|
+
|
|
1980
|
+
@snowflake_connection.setter
|
|
1981
|
+
def snowflake_connection(self, snowflake_connection: 'bool'):
|
|
1982
|
+
"""Sets the snowflake_connection of this V1UserFeatures.
|
|
1983
|
+
|
|
1984
|
+
|
|
1985
|
+
:param snowflake_connection: The snowflake_connection of this V1UserFeatures. # noqa: E501
|
|
1986
|
+
:type: bool
|
|
1987
|
+
"""
|
|
1988
|
+
|
|
1989
|
+
self._snowflake_connection = snowflake_connection
|
|
1990
|
+
|
|
1991
|
+
@property
|
|
1992
|
+
def spot_v2(self) -> 'bool':
|
|
1993
|
+
"""Gets the spot_v2 of this V1UserFeatures. # noqa: E501
|
|
1994
|
+
|
|
1995
|
+
|
|
1996
|
+
:return: The spot_v2 of this V1UserFeatures. # noqa: E501
|
|
1997
|
+
:rtype: bool
|
|
1998
|
+
"""
|
|
1999
|
+
return self._spot_v2
|
|
2000
|
+
|
|
2001
|
+
@spot_v2.setter
|
|
2002
|
+
def spot_v2(self, spot_v2: 'bool'):
|
|
2003
|
+
"""Sets the spot_v2 of this V1UserFeatures.
|
|
2004
|
+
|
|
2005
|
+
|
|
2006
|
+
:param spot_v2: The spot_v2 of this V1UserFeatures. # noqa: E501
|
|
2007
|
+
:type: bool
|
|
2008
|
+
"""
|
|
2009
|
+
|
|
2010
|
+
self._spot_v2 = spot_v2
|
|
2011
|
+
|
|
2012
|
+
@property
|
|
2013
|
+
def studio_config(self) -> 'bool':
|
|
2014
|
+
"""Gets the studio_config of this V1UserFeatures. # noqa: E501
|
|
2015
|
+
|
|
2016
|
+
|
|
2017
|
+
:return: The studio_config of this V1UserFeatures. # noqa: E501
|
|
2018
|
+
:rtype: bool
|
|
2019
|
+
"""
|
|
2020
|
+
return self._studio_config
|
|
2021
|
+
|
|
2022
|
+
@studio_config.setter
|
|
2023
|
+
def studio_config(self, studio_config: 'bool'):
|
|
2024
|
+
"""Sets the studio_config of this V1UserFeatures.
|
|
2025
|
+
|
|
2026
|
+
|
|
2027
|
+
:param studio_config: The studio_config of this V1UserFeatures. # noqa: E501
|
|
2028
|
+
:type: bool
|
|
2029
|
+
"""
|
|
2030
|
+
|
|
2031
|
+
self._studio_config = studio_config
|
|
2032
|
+
|
|
2033
|
+
@property
|
|
2034
|
+
def studio_on_stop(self) -> 'bool':
|
|
2035
|
+
"""Gets the studio_on_stop of this V1UserFeatures. # noqa: E501
|
|
2036
|
+
|
|
2037
|
+
|
|
2038
|
+
:return: The studio_on_stop of this V1UserFeatures. # noqa: E501
|
|
2039
|
+
:rtype: bool
|
|
2040
|
+
"""
|
|
2041
|
+
return self._studio_on_stop
|
|
2042
|
+
|
|
2043
|
+
@studio_on_stop.setter
|
|
2044
|
+
def studio_on_stop(self, studio_on_stop: 'bool'):
|
|
2045
|
+
"""Sets the studio_on_stop of this V1UserFeatures.
|
|
2046
|
+
|
|
2047
|
+
|
|
2048
|
+
:param studio_on_stop: The studio_on_stop of this V1UserFeatures. # noqa: E501
|
|
2049
|
+
:type: bool
|
|
2050
|
+
"""
|
|
2051
|
+
|
|
2052
|
+
self._studio_on_stop = studio_on_stop
|
|
2053
|
+
|
|
2054
|
+
@property
|
|
2055
|
+
def studio_version_visibility(self) -> 'bool':
|
|
2056
|
+
"""Gets the studio_version_visibility of this V1UserFeatures. # noqa: E501
|
|
2057
|
+
|
|
2058
|
+
|
|
2059
|
+
:return: The studio_version_visibility of this V1UserFeatures. # noqa: E501
|
|
2060
|
+
:rtype: bool
|
|
2061
|
+
"""
|
|
2062
|
+
return self._studio_version_visibility
|
|
2063
|
+
|
|
2064
|
+
@studio_version_visibility.setter
|
|
2065
|
+
def studio_version_visibility(self, studio_version_visibility: 'bool'):
|
|
2066
|
+
"""Sets the studio_version_visibility of this V1UserFeatures.
|
|
2067
|
+
|
|
2068
|
+
|
|
2069
|
+
:param studio_version_visibility: The studio_version_visibility of this V1UserFeatures. # noqa: E501
|
|
2070
|
+
:type: bool
|
|
2071
|
+
"""
|
|
2072
|
+
|
|
2073
|
+
self._studio_version_visibility = studio_version_visibility
|
|
2074
|
+
|
|
2075
|
+
@property
|
|
2076
|
+
def teamspace_storage_tab(self) -> 'bool':
|
|
2077
|
+
"""Gets the teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2078
|
+
|
|
2079
|
+
|
|
2080
|
+
:return: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2081
|
+
:rtype: bool
|
|
2082
|
+
"""
|
|
2083
|
+
return self._teamspace_storage_tab
|
|
2084
|
+
|
|
2085
|
+
@teamspace_storage_tab.setter
|
|
2086
|
+
def teamspace_storage_tab(self, teamspace_storage_tab: 'bool'):
|
|
2087
|
+
"""Sets the teamspace_storage_tab of this V1UserFeatures.
|
|
2088
|
+
|
|
2089
|
+
|
|
2090
|
+
:param teamspace_storage_tab: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2091
|
+
:type: bool
|
|
2092
|
+
"""
|
|
2093
|
+
|
|
2094
|
+
self._teamspace_storage_tab = teamspace_storage_tab
|
|
2095
|
+
|
|
2096
|
+
@property
|
|
2097
|
+
def trainium2(self) -> 'bool':
|
|
2098
|
+
"""Gets the trainium2 of this V1UserFeatures. # noqa: E501
|
|
2099
|
+
|
|
2100
|
+
|
|
2101
|
+
:return: The trainium2 of this V1UserFeatures. # noqa: E501
|
|
2102
|
+
:rtype: bool
|
|
2103
|
+
"""
|
|
2104
|
+
return self._trainium2
|
|
2105
|
+
|
|
2106
|
+
@trainium2.setter
|
|
2107
|
+
def trainium2(self, trainium2: 'bool'):
|
|
2108
|
+
"""Sets the trainium2 of this V1UserFeatures.
|
|
2109
|
+
|
|
2110
|
+
|
|
2111
|
+
:param trainium2: The trainium2 of this V1UserFeatures. # noqa: E501
|
|
2112
|
+
:type: bool
|
|
2113
|
+
"""
|
|
2114
|
+
|
|
2115
|
+
self._trainium2 = trainium2
|
|
2116
|
+
|
|
2117
|
+
@property
|
|
2118
|
+
def use_rclone_mounts_only(self) -> 'bool':
|
|
2119
|
+
"""Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
1392
2120
|
|
|
1393
2121
|
|
|
1394
|
-
:return: The
|
|
2122
|
+
:return: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
1395
2123
|
:rtype: bool
|
|
1396
2124
|
"""
|
|
1397
|
-
return self.
|
|
2125
|
+
return self._use_rclone_mounts_only
|
|
1398
2126
|
|
|
1399
|
-
@
|
|
1400
|
-
def
|
|
1401
|
-
"""Sets the
|
|
2127
|
+
@use_rclone_mounts_only.setter
|
|
2128
|
+
def use_rclone_mounts_only(self, use_rclone_mounts_only: 'bool'):
|
|
2129
|
+
"""Sets the use_rclone_mounts_only of this V1UserFeatures.
|
|
1402
2130
|
|
|
1403
2131
|
|
|
1404
|
-
:param
|
|
2132
|
+
:param use_rclone_mounts_only: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
1405
2133
|
:type: bool
|
|
1406
2134
|
"""
|
|
1407
2135
|
|
|
1408
|
-
self.
|
|
2136
|
+
self._use_rclone_mounts_only = use_rclone_mounts_only
|
|
1409
2137
|
|
|
1410
2138
|
@property
|
|
1411
2139
|
def writable_data_connections(self) -> 'bool':
|