lightning-sdk 0.1.3__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 +172 -81
- lightning_sdk/api/teamspace_api.py +219 -20
- lightning_sdk/api/user_api.py +24 -9
- lightning_sdk/api/utils.py +429 -48
- 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 +288 -42
- 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 +992 -233
- lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +883 -120
- 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 +422 -1
- 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 -594
- 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 +278 -40
- 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/{assistants_id_body.py → agents_id_body.py} +201 -71
- 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_body1.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_runs_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/cloudspaces_id_body.py +58 -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/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 +79 -1
- lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +29 -55
- 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_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 +52 -26
- 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} +159 -55
- lightning_sdk/lightning_cloud/openapi/models/project_id_cloudspaces_body.py +71 -19
- lightning_sdk/lightning_cloud/openapi/models/project_id_fileendpoints_body.py +27 -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_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 +43 -43
- 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 +131 -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 +136 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_code_version.py +27 -1
- 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 +53 -1
- 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 +79 -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_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_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_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_file_endpoint.py +79 -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 +67 -15
- 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_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_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_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_service_artifact.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_service_execution.py +43 -43
- 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 +27 -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_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 +1006 -330
- 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/rest_client.py +47 -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 +2 -1
- lightning_sdk/services/file_endpoint.py +116 -213
- lightning_sdk/services/finetune/__init__.py +13 -15
- lightning_sdk/services/utilities.py +99 -26
- 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.3.dist-info → lightning_sdk-0.1.46.dist-info}/METADATA +30 -4
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.46.dist-info}/RECORD +482 -204
- {lightning_sdk-0.1.3.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/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/services/uploader.py +0 -123
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.46.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.46.dist-info}/top_level.txt +0 -0
|
@@ -41,33 +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
|
-
'
|
|
66
|
-
'
|
|
81
|
+
'lightning_registry': 'bool',
|
|
82
|
+
'lit_logger': 'bool',
|
|
83
|
+
'lit_logger_storage_v2': 'bool',
|
|
84
|
+
'mmt_fault_tolerance': 'bool',
|
|
67
85
|
'mmt_strategy_selector': 'bool',
|
|
68
|
-
'
|
|
69
|
-
'
|
|
70
|
-
'
|
|
86
|
+
'mmt_v2': 'bool',
|
|
87
|
+
'model_store': 'bool',
|
|
88
|
+
'multiple_deployment_versions': 'bool',
|
|
89
|
+
'multiple_studio_versions': 'bool',
|
|
90
|
+
'org_level_member_permissions': 'bool',
|
|
71
91
|
'plugin_biz_chat': 'bool',
|
|
72
92
|
'plugin_distributed': 'bool',
|
|
73
93
|
'plugin_fiftyone': 'bool',
|
|
@@ -86,46 +106,72 @@ class V1UserFeatures(object):
|
|
|
86
106
|
'pricing_updates': 'bool',
|
|
87
107
|
'product_generator': 'bool',
|
|
88
108
|
'project_selector': 'bool',
|
|
89
|
-
'public_studio_drive': 'bool',
|
|
90
|
-
'publish_ai_app': 'bool',
|
|
91
|
-
'quests': 'bool',
|
|
92
109
|
'restart_ide_on_hang': 'bool',
|
|
93
110
|
'restartable_jobs': 'bool',
|
|
94
|
-
'
|
|
111
|
+
'runnable_public_studio_page': 'bool',
|
|
95
112
|
'show_dev_admin': 'bool',
|
|
96
113
|
'slurm': 'bool',
|
|
97
|
-
'
|
|
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',
|
|
98
124
|
'writable_data_connections': 'bool'
|
|
99
125
|
}
|
|
100
126
|
|
|
101
127
|
attribute_map = {
|
|
102
|
-
'
|
|
103
|
-
'
|
|
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',
|
|
104
134
|
'b2c_experience': 'b2cExperience',
|
|
105
|
-
'byom': 'byom',
|
|
106
135
|
'cap_add': 'capAdd',
|
|
107
136
|
'cap_drop': 'capDrop',
|
|
108
|
-
'
|
|
137
|
+
'capacity_reservation_byoc': 'capacityReservationByoc',
|
|
138
|
+
'capacity_reservation_dry_run': 'capacityReservationDryRun',
|
|
139
|
+
'cluster_proxy': 'clusterProxy',
|
|
109
140
|
'code_tab': 'codeTab',
|
|
110
|
-
'collab_mouse_tracking': 'collabMouseTracking',
|
|
111
141
|
'collab_screen_sharing': 'collabScreenSharing',
|
|
112
|
-
'
|
|
113
|
-
'crypto_monitoring': 'cryptoMonitoring',
|
|
142
|
+
'cost_attribution_settings': 'costAttributionSettings',
|
|
114
143
|
'custom_app_domain': 'customAppDomain',
|
|
115
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',
|
|
116
154
|
'enable_crypto_crackdown': 'enableCryptoCrackdown',
|
|
155
|
+
'enable_efs': 'enableEfs',
|
|
156
|
+
'enable_storage_limits': 'enableStorageLimits',
|
|
117
157
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
118
158
|
'filesystem_optimisation': 'filesystemOptimisation',
|
|
119
|
-
'
|
|
159
|
+
'gcp': 'gcp',
|
|
160
|
+
'inference_job_deployment_plugin': 'inferenceJobDeploymentPlugin',
|
|
161
|
+
'instant_capacity_reservation': 'instantCapacityReservation',
|
|
120
162
|
'jobs_init': 'jobsInit',
|
|
121
|
-
'
|
|
163
|
+
'jobs_v2': 'jobsV2',
|
|
122
164
|
'landing_studios': 'landingStudios',
|
|
123
|
-
'
|
|
124
|
-
'
|
|
165
|
+
'lightning_registry': 'lightningRegistry',
|
|
166
|
+
'lit_logger': 'litLogger',
|
|
167
|
+
'lit_logger_storage_v2': 'litLoggerStorageV2',
|
|
168
|
+
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
125
169
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
126
|
-
'
|
|
127
|
-
'
|
|
128
|
-
'
|
|
170
|
+
'mmt_v2': 'mmtV2',
|
|
171
|
+
'model_store': 'modelStore',
|
|
172
|
+
'multiple_deployment_versions': 'multipleDeploymentVersions',
|
|
173
|
+
'multiple_studio_versions': 'multipleStudioVersions',
|
|
174
|
+
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
129
175
|
'plugin_biz_chat': 'pluginBizChat',
|
|
130
176
|
'plugin_distributed': 'pluginDistributed',
|
|
131
177
|
'plugin_fiftyone': 'pluginFiftyone',
|
|
@@ -144,47 +190,73 @@ class V1UserFeatures(object):
|
|
|
144
190
|
'pricing_updates': 'pricingUpdates',
|
|
145
191
|
'product_generator': 'productGenerator',
|
|
146
192
|
'project_selector': 'projectSelector',
|
|
147
|
-
'public_studio_drive': 'publicStudioDrive',
|
|
148
|
-
'publish_ai_app': 'publishAiApp',
|
|
149
|
-
'quests': 'quests',
|
|
150
193
|
'restart_ide_on_hang': 'restartIdeOnHang',
|
|
151
194
|
'restartable_jobs': 'restartableJobs',
|
|
152
|
-
'
|
|
195
|
+
'runnable_public_studio_page': 'runnablePublicStudioPage',
|
|
153
196
|
'show_dev_admin': 'showDevAdmin',
|
|
154
197
|
'slurm': 'slurm',
|
|
155
|
-
'
|
|
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',
|
|
156
208
|
'writable_data_connections': 'writableDataConnections'
|
|
157
209
|
}
|
|
158
210
|
|
|
159
|
-
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
|
|
160
212
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
161
|
-
self.
|
|
162
|
-
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
|
|
163
219
|
self._b2c_experience = None
|
|
164
|
-
self._byom = None
|
|
165
220
|
self._cap_add = None
|
|
166
221
|
self._cap_drop = None
|
|
167
|
-
self.
|
|
222
|
+
self._capacity_reservation_byoc = None
|
|
223
|
+
self._capacity_reservation_dry_run = None
|
|
224
|
+
self._cluster_proxy = None
|
|
168
225
|
self._code_tab = None
|
|
169
|
-
self._collab_mouse_tracking = None
|
|
170
226
|
self._collab_screen_sharing = None
|
|
171
|
-
self.
|
|
172
|
-
self._crypto_monitoring = None
|
|
227
|
+
self._cost_attribution_settings = None
|
|
173
228
|
self._custom_app_domain = None
|
|
174
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
|
|
175
239
|
self._enable_crypto_crackdown = None
|
|
240
|
+
self._enable_efs = None
|
|
241
|
+
self._enable_storage_limits = None
|
|
176
242
|
self._featured_studios_admin = None
|
|
177
243
|
self._filesystem_optimisation = None
|
|
178
|
-
self.
|
|
244
|
+
self._gcp = None
|
|
245
|
+
self._inference_job_deployment_plugin = None
|
|
246
|
+
self._instant_capacity_reservation = None
|
|
179
247
|
self._jobs_init = None
|
|
180
|
-
self.
|
|
248
|
+
self._jobs_v2 = None
|
|
181
249
|
self._landing_studios = None
|
|
182
|
-
self.
|
|
183
|
-
self.
|
|
250
|
+
self._lightning_registry = None
|
|
251
|
+
self._lit_logger = None
|
|
252
|
+
self._lit_logger_storage_v2 = None
|
|
253
|
+
self._mmt_fault_tolerance = None
|
|
184
254
|
self._mmt_strategy_selector = None
|
|
185
|
-
self.
|
|
186
|
-
self.
|
|
187
|
-
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
|
|
188
260
|
self._plugin_biz_chat = None
|
|
189
261
|
self._plugin_distributed = None
|
|
190
262
|
self._plugin_fiftyone = None
|
|
@@ -203,71 +275,117 @@ class V1UserFeatures(object):
|
|
|
203
275
|
self._pricing_updates = None
|
|
204
276
|
self._product_generator = None
|
|
205
277
|
self._project_selector = None
|
|
206
|
-
self._public_studio_drive = None
|
|
207
|
-
self._publish_ai_app = None
|
|
208
|
-
self._quests = None
|
|
209
278
|
self._restart_ide_on_hang = None
|
|
210
279
|
self._restartable_jobs = None
|
|
211
|
-
self.
|
|
280
|
+
self._runnable_public_studio_page = None
|
|
212
281
|
self._show_dev_admin = None
|
|
213
282
|
self._slurm = None
|
|
214
|
-
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
|
|
215
293
|
self._writable_data_connections = None
|
|
216
294
|
self.discriminator = None
|
|
217
|
-
if
|
|
218
|
-
self.
|
|
219
|
-
if
|
|
220
|
-
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
|
|
221
307
|
if b2c_experience is not None:
|
|
222
308
|
self.b2c_experience = b2c_experience
|
|
223
|
-
if byom is not None:
|
|
224
|
-
self.byom = byom
|
|
225
309
|
if cap_add is not None:
|
|
226
310
|
self.cap_add = cap_add
|
|
227
311
|
if cap_drop is not None:
|
|
228
312
|
self.cap_drop = cap_drop
|
|
229
|
-
if
|
|
230
|
-
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
|
|
231
319
|
if code_tab is not None:
|
|
232
320
|
self.code_tab = code_tab
|
|
233
|
-
if collab_mouse_tracking is not None:
|
|
234
|
-
self.collab_mouse_tracking = collab_mouse_tracking
|
|
235
321
|
if collab_screen_sharing is not None:
|
|
236
322
|
self.collab_screen_sharing = collab_screen_sharing
|
|
237
|
-
if
|
|
238
|
-
self.
|
|
239
|
-
if crypto_monitoring is not None:
|
|
240
|
-
self.crypto_monitoring = crypto_monitoring
|
|
323
|
+
if cost_attribution_settings is not None:
|
|
324
|
+
self.cost_attribution_settings = cost_attribution_settings
|
|
241
325
|
if custom_app_domain is not None:
|
|
242
326
|
self.custom_app_domain = custom_app_domain
|
|
243
327
|
if custom_instance_types is not None:
|
|
244
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
|
|
245
347
|
if enable_crypto_crackdown is not None:
|
|
246
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
|
|
247
353
|
if featured_studios_admin is not None:
|
|
248
354
|
self.featured_studios_admin = featured_studios_admin
|
|
249
355
|
if filesystem_optimisation is not None:
|
|
250
356
|
self.filesystem_optimisation = filesystem_optimisation
|
|
251
|
-
if
|
|
252
|
-
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
|
|
253
363
|
if jobs_init is not None:
|
|
254
364
|
self.jobs_init = jobs_init
|
|
255
|
-
if
|
|
256
|
-
self.
|
|
365
|
+
if jobs_v2 is not None:
|
|
366
|
+
self.jobs_v2 = jobs_v2
|
|
257
367
|
if landing_studios is not None:
|
|
258
368
|
self.landing_studios = landing_studios
|
|
259
|
-
if
|
|
260
|
-
self.
|
|
261
|
-
if
|
|
262
|
-
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
|
|
263
377
|
if mmt_strategy_selector is not None:
|
|
264
378
|
self.mmt_strategy_selector = mmt_strategy_selector
|
|
265
|
-
if
|
|
266
|
-
self.
|
|
267
|
-
if
|
|
268
|
-
self.
|
|
269
|
-
if
|
|
270
|
-
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
|
|
271
389
|
if plugin_biz_chat is not None:
|
|
272
390
|
self.plugin_biz_chat = plugin_biz_chat
|
|
273
391
|
if plugin_distributed is not None:
|
|
@@ -304,110 +422,185 @@ class V1UserFeatures(object):
|
|
|
304
422
|
self.product_generator = product_generator
|
|
305
423
|
if project_selector is not None:
|
|
306
424
|
self.project_selector = project_selector
|
|
307
|
-
if public_studio_drive is not None:
|
|
308
|
-
self.public_studio_drive = public_studio_drive
|
|
309
|
-
if publish_ai_app is not None:
|
|
310
|
-
self.publish_ai_app = publish_ai_app
|
|
311
|
-
if quests is not None:
|
|
312
|
-
self.quests = quests
|
|
313
425
|
if restart_ide_on_hang is not None:
|
|
314
426
|
self.restart_ide_on_hang = restart_ide_on_hang
|
|
315
427
|
if restartable_jobs is not None:
|
|
316
428
|
self.restartable_jobs = restartable_jobs
|
|
317
|
-
if
|
|
318
|
-
self.
|
|
429
|
+
if runnable_public_studio_page is not None:
|
|
430
|
+
self.runnable_public_studio_page = runnable_public_studio_page
|
|
319
431
|
if show_dev_admin is not None:
|
|
320
432
|
self.show_dev_admin = show_dev_admin
|
|
321
433
|
if slurm is not None:
|
|
322
434
|
self.slurm = slurm
|
|
323
|
-
if
|
|
324
|
-
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
|
|
325
455
|
if writable_data_connections is not None:
|
|
326
456
|
self.writable_data_connections = writable_data_connections
|
|
327
457
|
|
|
328
458
|
@property
|
|
329
|
-
def
|
|
330
|
-
"""Gets the
|
|
459
|
+
def advanced_deployment_autoscaling(self) -> 'bool':
|
|
460
|
+
"""Gets the advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
331
461
|
|
|
332
462
|
|
|
333
|
-
:return: The
|
|
463
|
+
:return: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
334
464
|
:rtype: bool
|
|
335
465
|
"""
|
|
336
|
-
return self.
|
|
466
|
+
return self._advanced_deployment_autoscaling
|
|
337
467
|
|
|
338
|
-
@
|
|
339
|
-
def
|
|
340
|
-
"""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.
|
|
341
471
|
|
|
342
472
|
|
|
343
|
-
:param
|
|
473
|
+
:param advanced_deployment_autoscaling: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
344
474
|
:type: bool
|
|
345
475
|
"""
|
|
346
476
|
|
|
347
|
-
self.
|
|
477
|
+
self._advanced_deployment_autoscaling = advanced_deployment_autoscaling
|
|
348
478
|
|
|
349
479
|
@property
|
|
350
|
-
def
|
|
351
|
-
"""Gets the
|
|
480
|
+
def affiliate_links(self) -> 'bool':
|
|
481
|
+
"""Gets the affiliate_links of this V1UserFeatures. # noqa: E501
|
|
352
482
|
|
|
353
483
|
|
|
354
|
-
:return: The
|
|
484
|
+
:return: The affiliate_links of this V1UserFeatures. # noqa: E501
|
|
355
485
|
:rtype: bool
|
|
356
486
|
"""
|
|
357
|
-
return self.
|
|
487
|
+
return self._affiliate_links
|
|
358
488
|
|
|
359
|
-
@
|
|
360
|
-
def
|
|
361
|
-
"""Sets the
|
|
489
|
+
@affiliate_links.setter
|
|
490
|
+
def affiliate_links(self, affiliate_links: 'bool'):
|
|
491
|
+
"""Sets the affiliate_links of this V1UserFeatures.
|
|
362
492
|
|
|
363
493
|
|
|
364
|
-
:param
|
|
494
|
+
:param affiliate_links: The affiliate_links of this V1UserFeatures. # noqa: E501
|
|
365
495
|
:type: bool
|
|
366
496
|
"""
|
|
367
497
|
|
|
368
|
-
self.
|
|
498
|
+
self._affiliate_links = affiliate_links
|
|
369
499
|
|
|
370
500
|
@property
|
|
371
|
-
def
|
|
372
|
-
"""Gets the
|
|
501
|
+
def agents_v2(self) -> 'bool':
|
|
502
|
+
"""Gets the agents_v2 of this V1UserFeatures. # noqa: E501
|
|
373
503
|
|
|
374
504
|
|
|
375
|
-
:return: The
|
|
505
|
+
:return: The agents_v2 of this V1UserFeatures. # noqa: E501
|
|
376
506
|
:rtype: bool
|
|
377
507
|
"""
|
|
378
|
-
return self.
|
|
508
|
+
return self._agents_v2
|
|
379
509
|
|
|
380
|
-
@
|
|
381
|
-
def
|
|
382
|
-
"""Sets the
|
|
510
|
+
@agents_v2.setter
|
|
511
|
+
def agents_v2(self, agents_v2: 'bool'):
|
|
512
|
+
"""Sets the agents_v2 of this V1UserFeatures.
|
|
383
513
|
|
|
384
514
|
|
|
385
|
-
:param
|
|
515
|
+
:param agents_v2: The agents_v2 of this V1UserFeatures. # noqa: E501
|
|
386
516
|
:type: bool
|
|
387
517
|
"""
|
|
388
518
|
|
|
389
|
-
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
|
|
390
541
|
|
|
391
542
|
@property
|
|
392
|
-
def
|
|
393
|
-
"""Gets the
|
|
543
|
+
def auto_fast_load(self) -> 'bool':
|
|
544
|
+
"""Gets the auto_fast_load of this V1UserFeatures. # noqa: E501
|
|
394
545
|
|
|
395
546
|
|
|
396
|
-
:return: The
|
|
547
|
+
:return: The auto_fast_load of this V1UserFeatures. # noqa: E501
|
|
397
548
|
:rtype: bool
|
|
398
549
|
"""
|
|
399
|
-
return self.
|
|
550
|
+
return self._auto_fast_load
|
|
400
551
|
|
|
401
|
-
@
|
|
402
|
-
def
|
|
403
|
-
"""Sets the
|
|
552
|
+
@auto_fast_load.setter
|
|
553
|
+
def auto_fast_load(self, auto_fast_load: 'bool'):
|
|
554
|
+
"""Sets the auto_fast_load of this V1UserFeatures.
|
|
404
555
|
|
|
405
556
|
|
|
406
|
-
:param
|
|
557
|
+
:param auto_fast_load: The auto_fast_load of this V1UserFeatures. # noqa: E501
|
|
407
558
|
:type: bool
|
|
408
559
|
"""
|
|
409
560
|
|
|
410
|
-
self.
|
|
561
|
+
self._auto_fast_load = auto_fast_load
|
|
562
|
+
|
|
563
|
+
@property
|
|
564
|
+
def auto_join_orgs(self) -> 'bool':
|
|
565
|
+
"""Gets the auto_join_orgs of this V1UserFeatures. # noqa: E501
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
:return: The auto_join_orgs of this V1UserFeatures. # noqa: E501
|
|
569
|
+
:rtype: bool
|
|
570
|
+
"""
|
|
571
|
+
return self._auto_join_orgs
|
|
572
|
+
|
|
573
|
+
@auto_join_orgs.setter
|
|
574
|
+
def auto_join_orgs(self, auto_join_orgs: 'bool'):
|
|
575
|
+
"""Sets the auto_join_orgs of this V1UserFeatures.
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
:param auto_join_orgs: The auto_join_orgs of this V1UserFeatures. # noqa: E501
|
|
579
|
+
:type: bool
|
|
580
|
+
"""
|
|
581
|
+
|
|
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
|
|
411
604
|
|
|
412
605
|
@property
|
|
413
606
|
def cap_add(self) -> 'list[str]':
|
|
@@ -452,130 +645,130 @@ class V1UserFeatures(object):
|
|
|
452
645
|
self._cap_drop = cap_drop
|
|
453
646
|
|
|
454
647
|
@property
|
|
455
|
-
def
|
|
456
|
-
"""Gets the
|
|
648
|
+
def capacity_reservation_byoc(self) -> 'bool':
|
|
649
|
+
"""Gets the capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
|
|
457
650
|
|
|
458
651
|
|
|
459
|
-
:return: The
|
|
652
|
+
:return: The capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
|
|
460
653
|
:rtype: bool
|
|
461
654
|
"""
|
|
462
|
-
return self.
|
|
655
|
+
return self._capacity_reservation_byoc
|
|
463
656
|
|
|
464
|
-
@
|
|
465
|
-
def
|
|
466
|
-
"""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.
|
|
467
660
|
|
|
468
661
|
|
|
469
|
-
:param
|
|
662
|
+
:param capacity_reservation_byoc: The capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
|
|
470
663
|
:type: bool
|
|
471
664
|
"""
|
|
472
665
|
|
|
473
|
-
self.
|
|
666
|
+
self._capacity_reservation_byoc = capacity_reservation_byoc
|
|
474
667
|
|
|
475
668
|
@property
|
|
476
|
-
def
|
|
477
|
-
"""Gets the
|
|
669
|
+
def capacity_reservation_dry_run(self) -> 'bool':
|
|
670
|
+
"""Gets the capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
|
|
478
671
|
|
|
479
672
|
|
|
480
|
-
:return: The
|
|
673
|
+
:return: The capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
|
|
481
674
|
:rtype: bool
|
|
482
675
|
"""
|
|
483
|
-
return self.
|
|
676
|
+
return self._capacity_reservation_dry_run
|
|
484
677
|
|
|
485
|
-
@
|
|
486
|
-
def
|
|
487
|
-
"""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.
|
|
488
681
|
|
|
489
682
|
|
|
490
|
-
:param
|
|
683
|
+
:param capacity_reservation_dry_run: The capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
|
|
491
684
|
:type: bool
|
|
492
685
|
"""
|
|
493
686
|
|
|
494
|
-
self.
|
|
687
|
+
self._capacity_reservation_dry_run = capacity_reservation_dry_run
|
|
495
688
|
|
|
496
689
|
@property
|
|
497
|
-
def
|
|
498
|
-
"""Gets the
|
|
690
|
+
def cluster_proxy(self) -> 'bool':
|
|
691
|
+
"""Gets the cluster_proxy of this V1UserFeatures. # noqa: E501
|
|
499
692
|
|
|
500
693
|
|
|
501
|
-
:return: The
|
|
694
|
+
:return: The cluster_proxy of this V1UserFeatures. # noqa: E501
|
|
502
695
|
:rtype: bool
|
|
503
696
|
"""
|
|
504
|
-
return self.
|
|
697
|
+
return self._cluster_proxy
|
|
505
698
|
|
|
506
|
-
@
|
|
507
|
-
def
|
|
508
|
-
"""Sets the
|
|
699
|
+
@cluster_proxy.setter
|
|
700
|
+
def cluster_proxy(self, cluster_proxy: 'bool'):
|
|
701
|
+
"""Sets the cluster_proxy of this V1UserFeatures.
|
|
509
702
|
|
|
510
703
|
|
|
511
|
-
:param
|
|
704
|
+
:param cluster_proxy: The cluster_proxy of this V1UserFeatures. # noqa: E501
|
|
512
705
|
:type: bool
|
|
513
706
|
"""
|
|
514
707
|
|
|
515
|
-
self.
|
|
708
|
+
self._cluster_proxy = cluster_proxy
|
|
516
709
|
|
|
517
710
|
@property
|
|
518
|
-
def
|
|
519
|
-
"""Gets the
|
|
711
|
+
def code_tab(self) -> 'bool':
|
|
712
|
+
"""Gets the code_tab of this V1UserFeatures. # noqa: E501
|
|
520
713
|
|
|
521
714
|
|
|
522
|
-
:return: The
|
|
715
|
+
:return: The code_tab of this V1UserFeatures. # noqa: E501
|
|
523
716
|
:rtype: bool
|
|
524
717
|
"""
|
|
525
|
-
return self.
|
|
718
|
+
return self._code_tab
|
|
526
719
|
|
|
527
|
-
@
|
|
528
|
-
def
|
|
529
|
-
"""Sets the
|
|
720
|
+
@code_tab.setter
|
|
721
|
+
def code_tab(self, code_tab: 'bool'):
|
|
722
|
+
"""Sets the code_tab of this V1UserFeatures.
|
|
530
723
|
|
|
531
724
|
|
|
532
|
-
:param
|
|
725
|
+
:param code_tab: The code_tab of this V1UserFeatures. # noqa: E501
|
|
533
726
|
:type: bool
|
|
534
727
|
"""
|
|
535
728
|
|
|
536
|
-
self.
|
|
729
|
+
self._code_tab = code_tab
|
|
537
730
|
|
|
538
731
|
@property
|
|
539
|
-
def
|
|
540
|
-
"""Gets the
|
|
732
|
+
def collab_screen_sharing(self) -> 'bool':
|
|
733
|
+
"""Gets the collab_screen_sharing of this V1UserFeatures. # noqa: E501
|
|
541
734
|
|
|
542
735
|
|
|
543
|
-
:return: The
|
|
736
|
+
:return: The collab_screen_sharing of this V1UserFeatures. # noqa: E501
|
|
544
737
|
:rtype: bool
|
|
545
738
|
"""
|
|
546
|
-
return self.
|
|
739
|
+
return self._collab_screen_sharing
|
|
547
740
|
|
|
548
|
-
@
|
|
549
|
-
def
|
|
550
|
-
"""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.
|
|
551
744
|
|
|
552
745
|
|
|
553
|
-
:param
|
|
746
|
+
:param collab_screen_sharing: The collab_screen_sharing of this V1UserFeatures. # noqa: E501
|
|
554
747
|
:type: bool
|
|
555
748
|
"""
|
|
556
749
|
|
|
557
|
-
self.
|
|
750
|
+
self._collab_screen_sharing = collab_screen_sharing
|
|
558
751
|
|
|
559
752
|
@property
|
|
560
|
-
def
|
|
561
|
-
"""Gets the
|
|
753
|
+
def cost_attribution_settings(self) -> 'bool':
|
|
754
|
+
"""Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
562
755
|
|
|
563
756
|
|
|
564
|
-
:return: The
|
|
757
|
+
:return: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
565
758
|
:rtype: bool
|
|
566
759
|
"""
|
|
567
|
-
return self.
|
|
760
|
+
return self._cost_attribution_settings
|
|
568
761
|
|
|
569
|
-
@
|
|
570
|
-
def
|
|
571
|
-
"""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.
|
|
572
765
|
|
|
573
766
|
|
|
574
|
-
:param
|
|
767
|
+
:param cost_attribution_settings: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
575
768
|
:type: bool
|
|
576
769
|
"""
|
|
577
770
|
|
|
578
|
-
self.
|
|
771
|
+
self._cost_attribution_settings = cost_attribution_settings
|
|
579
772
|
|
|
580
773
|
@property
|
|
581
774
|
def custom_app_domain(self) -> 'bool':
|
|
@@ -619,6 +812,195 @@ class V1UserFeatures(object):
|
|
|
619
812
|
|
|
620
813
|
self._custom_instance_types = custom_instance_types
|
|
621
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
|
+
|
|
622
1004
|
@property
|
|
623
1005
|
def enable_crypto_crackdown(self) -> 'bool':
|
|
624
1006
|
"""Gets the enable_crypto_crackdown of this V1UserFeatures. # noqa: E501
|
|
@@ -640,6 +1022,48 @@ class V1UserFeatures(object):
|
|
|
640
1022
|
|
|
641
1023
|
self._enable_crypto_crackdown = enable_crypto_crackdown
|
|
642
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
|
+
|
|
643
1067
|
@property
|
|
644
1068
|
def featured_studios_admin(self) -> 'bool':
|
|
645
1069
|
"""Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
|
|
@@ -683,25 +1107,67 @@ class V1UserFeatures(object):
|
|
|
683
1107
|
self._filesystem_optimisation = filesystem_optimisation
|
|
684
1108
|
|
|
685
1109
|
@property
|
|
686
|
-
def
|
|
687
|
-
"""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
|
|
688
1154
|
|
|
689
1155
|
|
|
690
|
-
:return: The
|
|
1156
|
+
:return: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
|
|
691
1157
|
:rtype: bool
|
|
692
1158
|
"""
|
|
693
|
-
return self.
|
|
1159
|
+
return self._instant_capacity_reservation
|
|
694
1160
|
|
|
695
|
-
@
|
|
696
|
-
def
|
|
697
|
-
"""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.
|
|
698
1164
|
|
|
699
1165
|
|
|
700
|
-
:param
|
|
1166
|
+
:param instant_capacity_reservation: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
|
|
701
1167
|
:type: bool
|
|
702
1168
|
"""
|
|
703
1169
|
|
|
704
|
-
self.
|
|
1170
|
+
self._instant_capacity_reservation = instant_capacity_reservation
|
|
705
1171
|
|
|
706
1172
|
@property
|
|
707
1173
|
def jobs_init(self) -> 'bool':
|
|
@@ -725,25 +1191,25 @@ class V1UserFeatures(object):
|
|
|
725
1191
|
self._jobs_init = jobs_init
|
|
726
1192
|
|
|
727
1193
|
@property
|
|
728
|
-
def
|
|
729
|
-
"""Gets the
|
|
1194
|
+
def jobs_v2(self) -> 'bool':
|
|
1195
|
+
"""Gets the jobs_v2 of this V1UserFeatures. # noqa: E501
|
|
730
1196
|
|
|
731
1197
|
|
|
732
|
-
:return: The
|
|
1198
|
+
:return: The jobs_v2 of this V1UserFeatures. # noqa: E501
|
|
733
1199
|
:rtype: bool
|
|
734
1200
|
"""
|
|
735
|
-
return self.
|
|
1201
|
+
return self._jobs_v2
|
|
736
1202
|
|
|
737
|
-
@
|
|
738
|
-
def
|
|
739
|
-
"""Sets the
|
|
1203
|
+
@jobs_v2.setter
|
|
1204
|
+
def jobs_v2(self, jobs_v2: 'bool'):
|
|
1205
|
+
"""Sets the jobs_v2 of this V1UserFeatures.
|
|
740
1206
|
|
|
741
1207
|
|
|
742
|
-
:param
|
|
1208
|
+
:param jobs_v2: The jobs_v2 of this V1UserFeatures. # noqa: E501
|
|
743
1209
|
:type: bool
|
|
744
1210
|
"""
|
|
745
1211
|
|
|
746
|
-
self.
|
|
1212
|
+
self._jobs_v2 = jobs_v2
|
|
747
1213
|
|
|
748
1214
|
@property
|
|
749
1215
|
def landing_studios(self) -> 'bool':
|
|
@@ -767,46 +1233,88 @@ class V1UserFeatures(object):
|
|
|
767
1233
|
self._landing_studios = landing_studios
|
|
768
1234
|
|
|
769
1235
|
@property
|
|
770
|
-
def
|
|
771
|
-
"""Gets the
|
|
1236
|
+
def lightning_registry(self) -> 'bool':
|
|
1237
|
+
"""Gets the lightning_registry of this V1UserFeatures. # noqa: E501
|
|
772
1238
|
|
|
773
1239
|
|
|
774
|
-
:return: The
|
|
1240
|
+
:return: The lightning_registry of this V1UserFeatures. # noqa: E501
|
|
775
1241
|
:rtype: bool
|
|
776
1242
|
"""
|
|
777
|
-
return self.
|
|
1243
|
+
return self._lightning_registry
|
|
778
1244
|
|
|
779
|
-
@
|
|
780
|
-
def
|
|
781
|
-
"""Sets the
|
|
1245
|
+
@lightning_registry.setter
|
|
1246
|
+
def lightning_registry(self, lightning_registry: 'bool'):
|
|
1247
|
+
"""Sets the lightning_registry of this V1UserFeatures.
|
|
782
1248
|
|
|
783
1249
|
|
|
784
|
-
:param
|
|
1250
|
+
:param lightning_registry: The lightning_registry of this V1UserFeatures. # noqa: E501
|
|
785
1251
|
:type: bool
|
|
786
1252
|
"""
|
|
787
1253
|
|
|
788
|
-
self.
|
|
1254
|
+
self._lightning_registry = lightning_registry
|
|
789
1255
|
|
|
790
1256
|
@property
|
|
791
|
-
def
|
|
792
|
-
"""Gets the
|
|
1257
|
+
def lit_logger(self) -> 'bool':
|
|
1258
|
+
"""Gets the lit_logger of this V1UserFeatures. # noqa: E501
|
|
793
1259
|
|
|
794
1260
|
|
|
795
|
-
:return: The
|
|
1261
|
+
:return: The lit_logger of this V1UserFeatures. # noqa: E501
|
|
796
1262
|
:rtype: bool
|
|
797
1263
|
"""
|
|
798
|
-
return self.
|
|
1264
|
+
return self._lit_logger
|
|
799
1265
|
|
|
800
|
-
@
|
|
801
|
-
def
|
|
802
|
-
"""Sets the
|
|
1266
|
+
@lit_logger.setter
|
|
1267
|
+
def lit_logger(self, lit_logger: 'bool'):
|
|
1268
|
+
"""Sets the lit_logger of this V1UserFeatures.
|
|
803
1269
|
|
|
804
1270
|
|
|
805
|
-
:param
|
|
1271
|
+
:param lit_logger: The lit_logger of this V1UserFeatures. # noqa: E501
|
|
806
1272
|
:type: bool
|
|
807
1273
|
"""
|
|
808
1274
|
|
|
809
|
-
self.
|
|
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
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
:return: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
|
|
1283
|
+
:rtype: bool
|
|
1284
|
+
"""
|
|
1285
|
+
return self._lit_logger_storage_v2
|
|
1286
|
+
|
|
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.
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
:param lit_logger_storage_v2: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
|
|
1293
|
+
:type: bool
|
|
1294
|
+
"""
|
|
1295
|
+
|
|
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
|
|
810
1318
|
|
|
811
1319
|
@property
|
|
812
1320
|
def mmt_strategy_selector(self) -> 'bool':
|
|
@@ -830,67 +1338,109 @@ class V1UserFeatures(object):
|
|
|
830
1338
|
self._mmt_strategy_selector = mmt_strategy_selector
|
|
831
1339
|
|
|
832
1340
|
@property
|
|
833
|
-
def
|
|
834
|
-
"""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
|
|
1364
|
+
|
|
1365
|
+
|
|
1366
|
+
:return: The model_store of this V1UserFeatures. # noqa: E501
|
|
1367
|
+
:rtype: bool
|
|
1368
|
+
"""
|
|
1369
|
+
return self._model_store
|
|
1370
|
+
|
|
1371
|
+
@model_store.setter
|
|
1372
|
+
def model_store(self, model_store: 'bool'):
|
|
1373
|
+
"""Sets the model_store of this V1UserFeatures.
|
|
1374
|
+
|
|
1375
|
+
|
|
1376
|
+
:param model_store: The model_store of this V1UserFeatures. # noqa: E501
|
|
1377
|
+
:type: bool
|
|
1378
|
+
"""
|
|
1379
|
+
|
|
1380
|
+
self._model_store = model_store
|
|
1381
|
+
|
|
1382
|
+
@property
|
|
1383
|
+
def multiple_deployment_versions(self) -> 'bool':
|
|
1384
|
+
"""Gets the multiple_deployment_versions of this V1UserFeatures. # noqa: E501
|
|
835
1385
|
|
|
836
1386
|
|
|
837
|
-
:return: The
|
|
1387
|
+
:return: The multiple_deployment_versions of this V1UserFeatures. # noqa: E501
|
|
838
1388
|
:rtype: bool
|
|
839
1389
|
"""
|
|
840
|
-
return self.
|
|
1390
|
+
return self._multiple_deployment_versions
|
|
841
1391
|
|
|
842
|
-
@
|
|
843
|
-
def
|
|
844
|
-
"""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.
|
|
845
1395
|
|
|
846
1396
|
|
|
847
|
-
:param
|
|
1397
|
+
:param multiple_deployment_versions: The multiple_deployment_versions of this V1UserFeatures. # noqa: E501
|
|
848
1398
|
:type: bool
|
|
849
1399
|
"""
|
|
850
1400
|
|
|
851
|
-
self.
|
|
1401
|
+
self._multiple_deployment_versions = multiple_deployment_versions
|
|
852
1402
|
|
|
853
1403
|
@property
|
|
854
|
-
def
|
|
855
|
-
"""Gets the
|
|
1404
|
+
def multiple_studio_versions(self) -> 'bool':
|
|
1405
|
+
"""Gets the multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
856
1406
|
|
|
857
1407
|
|
|
858
|
-
:return: The
|
|
1408
|
+
:return: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
859
1409
|
:rtype: bool
|
|
860
1410
|
"""
|
|
861
|
-
return self.
|
|
1411
|
+
return self._multiple_studio_versions
|
|
862
1412
|
|
|
863
|
-
@
|
|
864
|
-
def
|
|
865
|
-
"""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.
|
|
866
1416
|
|
|
867
1417
|
|
|
868
|
-
:param
|
|
1418
|
+
:param multiple_studio_versions: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
869
1419
|
:type: bool
|
|
870
1420
|
"""
|
|
871
1421
|
|
|
872
|
-
self.
|
|
1422
|
+
self._multiple_studio_versions = multiple_studio_versions
|
|
873
1423
|
|
|
874
1424
|
@property
|
|
875
|
-
def
|
|
876
|
-
"""Gets the
|
|
1425
|
+
def org_level_member_permissions(self) -> 'bool':
|
|
1426
|
+
"""Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
877
1427
|
|
|
878
1428
|
|
|
879
|
-
:return: The
|
|
1429
|
+
:return: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
880
1430
|
:rtype: bool
|
|
881
1431
|
"""
|
|
882
|
-
return self.
|
|
1432
|
+
return self._org_level_member_permissions
|
|
883
1433
|
|
|
884
|
-
@
|
|
885
|
-
def
|
|
886
|
-
"""Sets the
|
|
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.
|
|
887
1437
|
|
|
888
1438
|
|
|
889
|
-
:param
|
|
1439
|
+
:param org_level_member_permissions: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
890
1440
|
:type: bool
|
|
891
1441
|
"""
|
|
892
1442
|
|
|
893
|
-
self.
|
|
1443
|
+
self._org_level_member_permissions = org_level_member_permissions
|
|
894
1444
|
|
|
895
1445
|
@property
|
|
896
1446
|
def plugin_biz_chat(self) -> 'bool':
|
|
@@ -1270,69 +1820,6 @@ class V1UserFeatures(object):
|
|
|
1270
1820
|
|
|
1271
1821
|
self._project_selector = project_selector
|
|
1272
1822
|
|
|
1273
|
-
@property
|
|
1274
|
-
def public_studio_drive(self) -> 'bool':
|
|
1275
|
-
"""Gets the public_studio_drive of this V1UserFeatures. # noqa: E501
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
:return: The public_studio_drive of this V1UserFeatures. # noqa: E501
|
|
1279
|
-
:rtype: bool
|
|
1280
|
-
"""
|
|
1281
|
-
return self._public_studio_drive
|
|
1282
|
-
|
|
1283
|
-
@public_studio_drive.setter
|
|
1284
|
-
def public_studio_drive(self, public_studio_drive: 'bool'):
|
|
1285
|
-
"""Sets the public_studio_drive of this V1UserFeatures.
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
:param public_studio_drive: The public_studio_drive of this V1UserFeatures. # noqa: E501
|
|
1289
|
-
:type: bool
|
|
1290
|
-
"""
|
|
1291
|
-
|
|
1292
|
-
self._public_studio_drive = public_studio_drive
|
|
1293
|
-
|
|
1294
|
-
@property
|
|
1295
|
-
def publish_ai_app(self) -> 'bool':
|
|
1296
|
-
"""Gets the publish_ai_app of this V1UserFeatures. # noqa: E501
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
:return: The publish_ai_app of this V1UserFeatures. # noqa: E501
|
|
1300
|
-
:rtype: bool
|
|
1301
|
-
"""
|
|
1302
|
-
return self._publish_ai_app
|
|
1303
|
-
|
|
1304
|
-
@publish_ai_app.setter
|
|
1305
|
-
def publish_ai_app(self, publish_ai_app: 'bool'):
|
|
1306
|
-
"""Sets the publish_ai_app of this V1UserFeatures.
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
:param publish_ai_app: The publish_ai_app of this V1UserFeatures. # noqa: E501
|
|
1310
|
-
:type: bool
|
|
1311
|
-
"""
|
|
1312
|
-
|
|
1313
|
-
self._publish_ai_app = publish_ai_app
|
|
1314
|
-
|
|
1315
|
-
@property
|
|
1316
|
-
def quests(self) -> 'bool':
|
|
1317
|
-
"""Gets the quests of this V1UserFeatures. # noqa: E501
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
:return: The quests of this V1UserFeatures. # noqa: E501
|
|
1321
|
-
:rtype: bool
|
|
1322
|
-
"""
|
|
1323
|
-
return self._quests
|
|
1324
|
-
|
|
1325
|
-
@quests.setter
|
|
1326
|
-
def quests(self, quests: 'bool'):
|
|
1327
|
-
"""Sets the quests of this V1UserFeatures.
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
:param quests: The quests of this V1UserFeatures. # noqa: E501
|
|
1331
|
-
:type: bool
|
|
1332
|
-
"""
|
|
1333
|
-
|
|
1334
|
-
self._quests = quests
|
|
1335
|
-
|
|
1336
1823
|
@property
|
|
1337
1824
|
def restart_ide_on_hang(self) -> 'bool':
|
|
1338
1825
|
"""Gets the restart_ide_on_hang of this V1UserFeatures. # noqa: E501
|
|
@@ -1376,25 +1863,25 @@ class V1UserFeatures(object):
|
|
|
1376
1863
|
self._restartable_jobs = restartable_jobs
|
|
1377
1864
|
|
|
1378
1865
|
@property
|
|
1379
|
-
def
|
|
1380
|
-
"""Gets the
|
|
1866
|
+
def runnable_public_studio_page(self) -> 'bool':
|
|
1867
|
+
"""Gets the runnable_public_studio_page of this V1UserFeatures. # noqa: E501
|
|
1381
1868
|
|
|
1382
1869
|
|
|
1383
|
-
:return: The
|
|
1870
|
+
:return: The runnable_public_studio_page of this V1UserFeatures. # noqa: E501
|
|
1384
1871
|
:rtype: bool
|
|
1385
1872
|
"""
|
|
1386
|
-
return self.
|
|
1873
|
+
return self._runnable_public_studio_page
|
|
1387
1874
|
|
|
1388
|
-
@
|
|
1389
|
-
def
|
|
1390
|
-
"""Sets the
|
|
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.
|
|
1391
1878
|
|
|
1392
1879
|
|
|
1393
|
-
:param
|
|
1880
|
+
:param runnable_public_studio_page: The runnable_public_studio_page of this V1UserFeatures. # noqa: E501
|
|
1394
1881
|
:type: bool
|
|
1395
1882
|
"""
|
|
1396
1883
|
|
|
1397
|
-
self.
|
|
1884
|
+
self._runnable_public_studio_page = runnable_public_studio_page
|
|
1398
1885
|
|
|
1399
1886
|
@property
|
|
1400
1887
|
def show_dev_admin(self) -> 'bool':
|
|
@@ -1439,25 +1926,214 @@ class V1UserFeatures(object):
|
|
|
1439
1926
|
self._slurm = slurm
|
|
1440
1927
|
|
|
1441
1928
|
@property
|
|
1442
|
-
def
|
|
1443
|
-
"""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
|
|
1444
2120
|
|
|
1445
2121
|
|
|
1446
|
-
:return: The
|
|
2122
|
+
:return: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
1447
2123
|
:rtype: bool
|
|
1448
2124
|
"""
|
|
1449
|
-
return self.
|
|
2125
|
+
return self._use_rclone_mounts_only
|
|
1450
2126
|
|
|
1451
|
-
@
|
|
1452
|
-
def
|
|
1453
|
-
"""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.
|
|
1454
2130
|
|
|
1455
2131
|
|
|
1456
|
-
:param
|
|
2132
|
+
:param use_rclone_mounts_only: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
1457
2133
|
:type: bool
|
|
1458
2134
|
"""
|
|
1459
2135
|
|
|
1460
|
-
self.
|
|
2136
|
+
self._use_rclone_mounts_only = use_rclone_mounts_only
|
|
1461
2137
|
|
|
1462
2138
|
@property
|
|
1463
2139
|
def writable_data_connections(self) -> 'bool':
|