lightning-sdk 0.1.3__py3-none-any.whl → 0.1.47__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 +328 -0
- lightning_sdk/api/lit_registry_api.py +12 -0
- lightning_sdk/api/mmt_api.py +205 -0
- lightning_sdk/api/org_api.py +1 -3
- lightning_sdk/api/studio_api.py +172 -81
- lightning_sdk/api/teamspace_api.py +237 -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 +13 -3
- lightning_sdk/cli/list.py +54 -0
- 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/teamspace_menu.py +94 -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 +359 -0
- lightning_sdk/job/job.py +291 -0
- lightning_sdk/job/v1.py +269 -0
- lightning_sdk/job/v2.py +221 -0
- lightning_sdk/job/work.py +81 -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 +289 -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 +343 -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 +279 -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_container_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 +253 -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/{get_cluster_health_response_health_status.py → v1_deployment_state.py} +11 -9
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_status.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_strategy.py +149 -0
- 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 +137 -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 +723 -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/{v1_lightningapp_cluster_driver.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/{appsv2_id_body.py → v1_resource_visibility.py} +37 -37
- 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_secret_type.py +105 -0
- 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 +1032 -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 +144 -7
- lightning_sdk/lit_registry.py +39 -0
- lightning_sdk/machine.py +21 -4
- lightning_sdk/mmt/__init__.py +4 -0
- lightning_sdk/mmt/base.py +326 -0
- lightning_sdk/mmt/mmt.py +306 -0
- lightning_sdk/mmt/v1.py +209 -0
- lightning_sdk/mmt/v2.py +221 -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 +11 -6
- lightning_sdk/studio.py +90 -17
- lightning_sdk/teamspace.py +240 -12
- 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.47.dist-info/LICENSE +21 -0
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.47.dist-info}/METADATA +30 -4
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.47.dist-info}/RECORD +487 -204
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.47.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.47.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.47.dist-info}/top_level.txt +0 -0
|
@@ -41,33 +41,54 @@ 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',
|
|
91
|
+
'pipelines': 'bool',
|
|
71
92
|
'plugin_biz_chat': 'bool',
|
|
72
93
|
'plugin_distributed': 'bool',
|
|
73
94
|
'plugin_fiftyone': 'bool',
|
|
@@ -86,46 +107,73 @@ class V1UserFeatures(object):
|
|
|
86
107
|
'pricing_updates': 'bool',
|
|
87
108
|
'product_generator': 'bool',
|
|
88
109
|
'project_selector': 'bool',
|
|
89
|
-
'public_studio_drive': 'bool',
|
|
90
|
-
'publish_ai_app': 'bool',
|
|
91
|
-
'quests': 'bool',
|
|
92
110
|
'restart_ide_on_hang': 'bool',
|
|
93
111
|
'restartable_jobs': 'bool',
|
|
94
|
-
'
|
|
112
|
+
'runnable_public_studio_page': 'bool',
|
|
95
113
|
'show_dev_admin': 'bool',
|
|
96
114
|
'slurm': 'bool',
|
|
97
|
-
'
|
|
115
|
+
'slurm_machine_selector': 'bool',
|
|
116
|
+
'snapshotter_service': 'bool',
|
|
117
|
+
'snowflake_connection': 'bool',
|
|
118
|
+
'spot_v2': 'bool',
|
|
119
|
+
'studio_config': 'bool',
|
|
120
|
+
'studio_on_stop': 'bool',
|
|
121
|
+
'studio_version_visibility': 'bool',
|
|
122
|
+
'teamspace_storage_tab': 'bool',
|
|
123
|
+
'trainium2': 'bool',
|
|
124
|
+
'use_rclone_mounts_only': 'bool',
|
|
98
125
|
'writable_data_connections': 'bool'
|
|
99
126
|
}
|
|
100
127
|
|
|
101
128
|
attribute_map = {
|
|
102
|
-
'
|
|
103
|
-
'
|
|
129
|
+
'advanced_deployment_autoscaling': 'advancedDeploymentAutoscaling',
|
|
130
|
+
'affiliate_links': 'affiliateLinks',
|
|
131
|
+
'agents_v2': 'agentsV2',
|
|
132
|
+
'ai_hub_monetization': 'aiHubMonetization',
|
|
133
|
+
'auto_fast_load': 'autoFastLoad',
|
|
134
|
+
'auto_join_orgs': 'autoJoinOrgs',
|
|
104
135
|
'b2c_experience': 'b2cExperience',
|
|
105
|
-
'byom': 'byom',
|
|
106
136
|
'cap_add': 'capAdd',
|
|
107
137
|
'cap_drop': 'capDrop',
|
|
108
|
-
'
|
|
138
|
+
'capacity_reservation_byoc': 'capacityReservationByoc',
|
|
139
|
+
'capacity_reservation_dry_run': 'capacityReservationDryRun',
|
|
140
|
+
'cluster_proxy': 'clusterProxy',
|
|
109
141
|
'code_tab': 'codeTab',
|
|
110
|
-
'collab_mouse_tracking': 'collabMouseTracking',
|
|
111
142
|
'collab_screen_sharing': 'collabScreenSharing',
|
|
112
|
-
'
|
|
113
|
-
'crypto_monitoring': 'cryptoMonitoring',
|
|
143
|
+
'cost_attribution_settings': 'costAttributionSettings',
|
|
114
144
|
'custom_app_domain': 'customAppDomain',
|
|
115
145
|
'custom_instance_types': 'customInstanceTypes',
|
|
146
|
+
'default_one_cluster': 'defaultOneCluster',
|
|
147
|
+
'deployment_customize_api': 'deploymentCustomizeApi',
|
|
148
|
+
'deployment_data_path': 'deploymentDataPath',
|
|
149
|
+
'deployment_gallery': 'deploymentGallery',
|
|
150
|
+
'deployment_persistent_disk': 'deploymentPersistentDisk',
|
|
151
|
+
'deployment_version_visibility': 'deploymentVersionVisibility',
|
|
152
|
+
'docs_agent': 'docsAgent',
|
|
153
|
+
'drive_v2': 'driveV2',
|
|
154
|
+
'dynamic_workload_scheduling': 'dynamicWorkloadScheduling',
|
|
116
155
|
'enable_crypto_crackdown': 'enableCryptoCrackdown',
|
|
156
|
+
'enable_efs': 'enableEfs',
|
|
157
|
+
'enable_storage_limits': 'enableStorageLimits',
|
|
117
158
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
118
159
|
'filesystem_optimisation': 'filesystemOptimisation',
|
|
119
|
-
'
|
|
160
|
+
'gcp': 'gcp',
|
|
161
|
+
'inference_job_deployment_plugin': 'inferenceJobDeploymentPlugin',
|
|
162
|
+
'instant_capacity_reservation': 'instantCapacityReservation',
|
|
120
163
|
'jobs_init': 'jobsInit',
|
|
121
|
-
'
|
|
164
|
+
'jobs_v2': 'jobsV2',
|
|
122
165
|
'landing_studios': 'landingStudios',
|
|
123
|
-
'
|
|
124
|
-
'
|
|
166
|
+
'lightning_registry': 'lightningRegistry',
|
|
167
|
+
'lit_logger': 'litLogger',
|
|
168
|
+
'lit_logger_storage_v2': 'litLoggerStorageV2',
|
|
169
|
+
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
125
170
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
126
|
-
'
|
|
127
|
-
'
|
|
128
|
-
'
|
|
171
|
+
'mmt_v2': 'mmtV2',
|
|
172
|
+
'model_store': 'modelStore',
|
|
173
|
+
'multiple_deployment_versions': 'multipleDeploymentVersions',
|
|
174
|
+
'multiple_studio_versions': 'multipleStudioVersions',
|
|
175
|
+
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
176
|
+
'pipelines': 'pipelines',
|
|
129
177
|
'plugin_biz_chat': 'pluginBizChat',
|
|
130
178
|
'plugin_distributed': 'pluginDistributed',
|
|
131
179
|
'plugin_fiftyone': 'pluginFiftyone',
|
|
@@ -144,47 +192,74 @@ class V1UserFeatures(object):
|
|
|
144
192
|
'pricing_updates': 'pricingUpdates',
|
|
145
193
|
'product_generator': 'productGenerator',
|
|
146
194
|
'project_selector': 'projectSelector',
|
|
147
|
-
'public_studio_drive': 'publicStudioDrive',
|
|
148
|
-
'publish_ai_app': 'publishAiApp',
|
|
149
|
-
'quests': 'quests',
|
|
150
195
|
'restart_ide_on_hang': 'restartIdeOnHang',
|
|
151
196
|
'restartable_jobs': 'restartableJobs',
|
|
152
|
-
'
|
|
197
|
+
'runnable_public_studio_page': 'runnablePublicStudioPage',
|
|
153
198
|
'show_dev_admin': 'showDevAdmin',
|
|
154
199
|
'slurm': 'slurm',
|
|
155
|
-
'
|
|
200
|
+
'slurm_machine_selector': 'slurmMachineSelector',
|
|
201
|
+
'snapshotter_service': 'snapshotterService',
|
|
202
|
+
'snowflake_connection': 'snowflakeConnection',
|
|
203
|
+
'spot_v2': 'spotV2',
|
|
204
|
+
'studio_config': 'studioConfig',
|
|
205
|
+
'studio_on_stop': 'studioOnStop',
|
|
206
|
+
'studio_version_visibility': 'studioVersionVisibility',
|
|
207
|
+
'teamspace_storage_tab': 'teamspaceStorageTab',
|
|
208
|
+
'trainium2': 'trainium2',
|
|
209
|
+
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
156
210
|
'writable_data_connections': 'writableDataConnections'
|
|
157
211
|
}
|
|
158
212
|
|
|
159
|
-
def __init__(self,
|
|
213
|
+
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, pipelines: '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
214
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
161
|
-
self.
|
|
162
|
-
self.
|
|
215
|
+
self._advanced_deployment_autoscaling = None
|
|
216
|
+
self._affiliate_links = None
|
|
217
|
+
self._agents_v2 = None
|
|
218
|
+
self._ai_hub_monetization = None
|
|
219
|
+
self._auto_fast_load = None
|
|
220
|
+
self._auto_join_orgs = None
|
|
163
221
|
self._b2c_experience = None
|
|
164
|
-
self._byom = None
|
|
165
222
|
self._cap_add = None
|
|
166
223
|
self._cap_drop = None
|
|
167
|
-
self.
|
|
224
|
+
self._capacity_reservation_byoc = None
|
|
225
|
+
self._capacity_reservation_dry_run = None
|
|
226
|
+
self._cluster_proxy = None
|
|
168
227
|
self._code_tab = None
|
|
169
|
-
self._collab_mouse_tracking = None
|
|
170
228
|
self._collab_screen_sharing = None
|
|
171
|
-
self.
|
|
172
|
-
self._crypto_monitoring = None
|
|
229
|
+
self._cost_attribution_settings = None
|
|
173
230
|
self._custom_app_domain = None
|
|
174
231
|
self._custom_instance_types = None
|
|
232
|
+
self._default_one_cluster = None
|
|
233
|
+
self._deployment_customize_api = None
|
|
234
|
+
self._deployment_data_path = None
|
|
235
|
+
self._deployment_gallery = None
|
|
236
|
+
self._deployment_persistent_disk = None
|
|
237
|
+
self._deployment_version_visibility = None
|
|
238
|
+
self._docs_agent = None
|
|
239
|
+
self._drive_v2 = None
|
|
240
|
+
self._dynamic_workload_scheduling = None
|
|
175
241
|
self._enable_crypto_crackdown = None
|
|
242
|
+
self._enable_efs = None
|
|
243
|
+
self._enable_storage_limits = None
|
|
176
244
|
self._featured_studios_admin = None
|
|
177
245
|
self._filesystem_optimisation = None
|
|
178
|
-
self.
|
|
246
|
+
self._gcp = None
|
|
247
|
+
self._inference_job_deployment_plugin = None
|
|
248
|
+
self._instant_capacity_reservation = None
|
|
179
249
|
self._jobs_init = None
|
|
180
|
-
self.
|
|
250
|
+
self._jobs_v2 = None
|
|
181
251
|
self._landing_studios = None
|
|
182
|
-
self.
|
|
183
|
-
self.
|
|
252
|
+
self._lightning_registry = None
|
|
253
|
+
self._lit_logger = None
|
|
254
|
+
self._lit_logger_storage_v2 = None
|
|
255
|
+
self._mmt_fault_tolerance = None
|
|
184
256
|
self._mmt_strategy_selector = None
|
|
185
|
-
self.
|
|
186
|
-
self.
|
|
187
|
-
self.
|
|
257
|
+
self._mmt_v2 = None
|
|
258
|
+
self._model_store = None
|
|
259
|
+
self._multiple_deployment_versions = None
|
|
260
|
+
self._multiple_studio_versions = None
|
|
261
|
+
self._org_level_member_permissions = None
|
|
262
|
+
self._pipelines = None
|
|
188
263
|
self._plugin_biz_chat = None
|
|
189
264
|
self._plugin_distributed = None
|
|
190
265
|
self._plugin_fiftyone = None
|
|
@@ -203,71 +278,119 @@ class V1UserFeatures(object):
|
|
|
203
278
|
self._pricing_updates = None
|
|
204
279
|
self._product_generator = None
|
|
205
280
|
self._project_selector = None
|
|
206
|
-
self._public_studio_drive = None
|
|
207
|
-
self._publish_ai_app = None
|
|
208
|
-
self._quests = None
|
|
209
281
|
self._restart_ide_on_hang = None
|
|
210
282
|
self._restartable_jobs = None
|
|
211
|
-
self.
|
|
283
|
+
self._runnable_public_studio_page = None
|
|
212
284
|
self._show_dev_admin = None
|
|
213
285
|
self._slurm = None
|
|
214
|
-
self.
|
|
286
|
+
self._slurm_machine_selector = None
|
|
287
|
+
self._snapshotter_service = None
|
|
288
|
+
self._snowflake_connection = None
|
|
289
|
+
self._spot_v2 = None
|
|
290
|
+
self._studio_config = None
|
|
291
|
+
self._studio_on_stop = None
|
|
292
|
+
self._studio_version_visibility = None
|
|
293
|
+
self._teamspace_storage_tab = None
|
|
294
|
+
self._trainium2 = None
|
|
295
|
+
self._use_rclone_mounts_only = None
|
|
215
296
|
self._writable_data_connections = None
|
|
216
297
|
self.discriminator = None
|
|
217
|
-
if
|
|
218
|
-
self.
|
|
219
|
-
if
|
|
220
|
-
self.
|
|
298
|
+
if advanced_deployment_autoscaling is not None:
|
|
299
|
+
self.advanced_deployment_autoscaling = advanced_deployment_autoscaling
|
|
300
|
+
if affiliate_links is not None:
|
|
301
|
+
self.affiliate_links = affiliate_links
|
|
302
|
+
if agents_v2 is not None:
|
|
303
|
+
self.agents_v2 = agents_v2
|
|
304
|
+
if ai_hub_monetization is not None:
|
|
305
|
+
self.ai_hub_monetization = ai_hub_monetization
|
|
306
|
+
if auto_fast_load is not None:
|
|
307
|
+
self.auto_fast_load = auto_fast_load
|
|
308
|
+
if auto_join_orgs is not None:
|
|
309
|
+
self.auto_join_orgs = auto_join_orgs
|
|
221
310
|
if b2c_experience is not None:
|
|
222
311
|
self.b2c_experience = b2c_experience
|
|
223
|
-
if byom is not None:
|
|
224
|
-
self.byom = byom
|
|
225
312
|
if cap_add is not None:
|
|
226
313
|
self.cap_add = cap_add
|
|
227
314
|
if cap_drop is not None:
|
|
228
315
|
self.cap_drop = cap_drop
|
|
229
|
-
if
|
|
230
|
-
self.
|
|
316
|
+
if capacity_reservation_byoc is not None:
|
|
317
|
+
self.capacity_reservation_byoc = capacity_reservation_byoc
|
|
318
|
+
if capacity_reservation_dry_run is not None:
|
|
319
|
+
self.capacity_reservation_dry_run = capacity_reservation_dry_run
|
|
320
|
+
if cluster_proxy is not None:
|
|
321
|
+
self.cluster_proxy = cluster_proxy
|
|
231
322
|
if code_tab is not None:
|
|
232
323
|
self.code_tab = code_tab
|
|
233
|
-
if collab_mouse_tracking is not None:
|
|
234
|
-
self.collab_mouse_tracking = collab_mouse_tracking
|
|
235
324
|
if collab_screen_sharing is not None:
|
|
236
325
|
self.collab_screen_sharing = collab_screen_sharing
|
|
237
|
-
if
|
|
238
|
-
self.
|
|
239
|
-
if crypto_monitoring is not None:
|
|
240
|
-
self.crypto_monitoring = crypto_monitoring
|
|
326
|
+
if cost_attribution_settings is not None:
|
|
327
|
+
self.cost_attribution_settings = cost_attribution_settings
|
|
241
328
|
if custom_app_domain is not None:
|
|
242
329
|
self.custom_app_domain = custom_app_domain
|
|
243
330
|
if custom_instance_types is not None:
|
|
244
331
|
self.custom_instance_types = custom_instance_types
|
|
332
|
+
if default_one_cluster is not None:
|
|
333
|
+
self.default_one_cluster = default_one_cluster
|
|
334
|
+
if deployment_customize_api is not None:
|
|
335
|
+
self.deployment_customize_api = deployment_customize_api
|
|
336
|
+
if deployment_data_path is not None:
|
|
337
|
+
self.deployment_data_path = deployment_data_path
|
|
338
|
+
if deployment_gallery is not None:
|
|
339
|
+
self.deployment_gallery = deployment_gallery
|
|
340
|
+
if deployment_persistent_disk is not None:
|
|
341
|
+
self.deployment_persistent_disk = deployment_persistent_disk
|
|
342
|
+
if deployment_version_visibility is not None:
|
|
343
|
+
self.deployment_version_visibility = deployment_version_visibility
|
|
344
|
+
if docs_agent is not None:
|
|
345
|
+
self.docs_agent = docs_agent
|
|
346
|
+
if drive_v2 is not None:
|
|
347
|
+
self.drive_v2 = drive_v2
|
|
348
|
+
if dynamic_workload_scheduling is not None:
|
|
349
|
+
self.dynamic_workload_scheduling = dynamic_workload_scheduling
|
|
245
350
|
if enable_crypto_crackdown is not None:
|
|
246
351
|
self.enable_crypto_crackdown = enable_crypto_crackdown
|
|
352
|
+
if enable_efs is not None:
|
|
353
|
+
self.enable_efs = enable_efs
|
|
354
|
+
if enable_storage_limits is not None:
|
|
355
|
+
self.enable_storage_limits = enable_storage_limits
|
|
247
356
|
if featured_studios_admin is not None:
|
|
248
357
|
self.featured_studios_admin = featured_studios_admin
|
|
249
358
|
if filesystem_optimisation is not None:
|
|
250
359
|
self.filesystem_optimisation = filesystem_optimisation
|
|
251
|
-
if
|
|
252
|
-
self.
|
|
360
|
+
if gcp is not None:
|
|
361
|
+
self.gcp = gcp
|
|
362
|
+
if inference_job_deployment_plugin is not None:
|
|
363
|
+
self.inference_job_deployment_plugin = inference_job_deployment_plugin
|
|
364
|
+
if instant_capacity_reservation is not None:
|
|
365
|
+
self.instant_capacity_reservation = instant_capacity_reservation
|
|
253
366
|
if jobs_init is not None:
|
|
254
367
|
self.jobs_init = jobs_init
|
|
255
|
-
if
|
|
256
|
-
self.
|
|
368
|
+
if jobs_v2 is not None:
|
|
369
|
+
self.jobs_v2 = jobs_v2
|
|
257
370
|
if landing_studios is not None:
|
|
258
371
|
self.landing_studios = landing_studios
|
|
259
|
-
if
|
|
260
|
-
self.
|
|
261
|
-
if
|
|
262
|
-
self.
|
|
372
|
+
if lightning_registry is not None:
|
|
373
|
+
self.lightning_registry = lightning_registry
|
|
374
|
+
if lit_logger is not None:
|
|
375
|
+
self.lit_logger = lit_logger
|
|
376
|
+
if lit_logger_storage_v2 is not None:
|
|
377
|
+
self.lit_logger_storage_v2 = lit_logger_storage_v2
|
|
378
|
+
if mmt_fault_tolerance is not None:
|
|
379
|
+
self.mmt_fault_tolerance = mmt_fault_tolerance
|
|
263
380
|
if mmt_strategy_selector is not None:
|
|
264
381
|
self.mmt_strategy_selector = mmt_strategy_selector
|
|
265
|
-
if
|
|
266
|
-
self.
|
|
267
|
-
if
|
|
268
|
-
self.
|
|
269
|
-
if
|
|
270
|
-
self.
|
|
382
|
+
if mmt_v2 is not None:
|
|
383
|
+
self.mmt_v2 = mmt_v2
|
|
384
|
+
if model_store is not None:
|
|
385
|
+
self.model_store = model_store
|
|
386
|
+
if multiple_deployment_versions is not None:
|
|
387
|
+
self.multiple_deployment_versions = multiple_deployment_versions
|
|
388
|
+
if multiple_studio_versions is not None:
|
|
389
|
+
self.multiple_studio_versions = multiple_studio_versions
|
|
390
|
+
if org_level_member_permissions is not None:
|
|
391
|
+
self.org_level_member_permissions = org_level_member_permissions
|
|
392
|
+
if pipelines is not None:
|
|
393
|
+
self.pipelines = pipelines
|
|
271
394
|
if plugin_biz_chat is not None:
|
|
272
395
|
self.plugin_biz_chat = plugin_biz_chat
|
|
273
396
|
if plugin_distributed is not None:
|
|
@@ -304,110 +427,185 @@ class V1UserFeatures(object):
|
|
|
304
427
|
self.product_generator = product_generator
|
|
305
428
|
if project_selector is not None:
|
|
306
429
|
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
430
|
if restart_ide_on_hang is not None:
|
|
314
431
|
self.restart_ide_on_hang = restart_ide_on_hang
|
|
315
432
|
if restartable_jobs is not None:
|
|
316
433
|
self.restartable_jobs = restartable_jobs
|
|
317
|
-
if
|
|
318
|
-
self.
|
|
434
|
+
if runnable_public_studio_page is not None:
|
|
435
|
+
self.runnable_public_studio_page = runnable_public_studio_page
|
|
319
436
|
if show_dev_admin is not None:
|
|
320
437
|
self.show_dev_admin = show_dev_admin
|
|
321
438
|
if slurm is not None:
|
|
322
439
|
self.slurm = slurm
|
|
323
|
-
if
|
|
324
|
-
self.
|
|
440
|
+
if slurm_machine_selector is not None:
|
|
441
|
+
self.slurm_machine_selector = slurm_machine_selector
|
|
442
|
+
if snapshotter_service is not None:
|
|
443
|
+
self.snapshotter_service = snapshotter_service
|
|
444
|
+
if snowflake_connection is not None:
|
|
445
|
+
self.snowflake_connection = snowflake_connection
|
|
446
|
+
if spot_v2 is not None:
|
|
447
|
+
self.spot_v2 = spot_v2
|
|
448
|
+
if studio_config is not None:
|
|
449
|
+
self.studio_config = studio_config
|
|
450
|
+
if studio_on_stop is not None:
|
|
451
|
+
self.studio_on_stop = studio_on_stop
|
|
452
|
+
if studio_version_visibility is not None:
|
|
453
|
+
self.studio_version_visibility = studio_version_visibility
|
|
454
|
+
if teamspace_storage_tab is not None:
|
|
455
|
+
self.teamspace_storage_tab = teamspace_storage_tab
|
|
456
|
+
if trainium2 is not None:
|
|
457
|
+
self.trainium2 = trainium2
|
|
458
|
+
if use_rclone_mounts_only is not None:
|
|
459
|
+
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
325
460
|
if writable_data_connections is not None:
|
|
326
461
|
self.writable_data_connections = writable_data_connections
|
|
327
462
|
|
|
328
463
|
@property
|
|
329
|
-
def
|
|
330
|
-
"""Gets the
|
|
464
|
+
def advanced_deployment_autoscaling(self) -> 'bool':
|
|
465
|
+
"""Gets the advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
331
466
|
|
|
332
467
|
|
|
333
|
-
:return: The
|
|
468
|
+
:return: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
334
469
|
:rtype: bool
|
|
335
470
|
"""
|
|
336
|
-
return self.
|
|
471
|
+
return self._advanced_deployment_autoscaling
|
|
337
472
|
|
|
338
|
-
@
|
|
339
|
-
def
|
|
340
|
-
"""Sets the
|
|
473
|
+
@advanced_deployment_autoscaling.setter
|
|
474
|
+
def advanced_deployment_autoscaling(self, advanced_deployment_autoscaling: 'bool'):
|
|
475
|
+
"""Sets the advanced_deployment_autoscaling of this V1UserFeatures.
|
|
341
476
|
|
|
342
477
|
|
|
343
|
-
:param
|
|
478
|
+
:param advanced_deployment_autoscaling: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
344
479
|
:type: bool
|
|
345
480
|
"""
|
|
346
481
|
|
|
347
|
-
self.
|
|
482
|
+
self._advanced_deployment_autoscaling = advanced_deployment_autoscaling
|
|
348
483
|
|
|
349
484
|
@property
|
|
350
|
-
def
|
|
351
|
-
"""Gets the
|
|
485
|
+
def affiliate_links(self) -> 'bool':
|
|
486
|
+
"""Gets the affiliate_links of this V1UserFeatures. # noqa: E501
|
|
352
487
|
|
|
353
488
|
|
|
354
|
-
:return: The
|
|
489
|
+
:return: The affiliate_links of this V1UserFeatures. # noqa: E501
|
|
355
490
|
:rtype: bool
|
|
356
491
|
"""
|
|
357
|
-
return self.
|
|
492
|
+
return self._affiliate_links
|
|
358
493
|
|
|
359
|
-
@
|
|
360
|
-
def
|
|
361
|
-
"""Sets the
|
|
494
|
+
@affiliate_links.setter
|
|
495
|
+
def affiliate_links(self, affiliate_links: 'bool'):
|
|
496
|
+
"""Sets the affiliate_links of this V1UserFeatures.
|
|
362
497
|
|
|
363
498
|
|
|
364
|
-
:param
|
|
499
|
+
:param affiliate_links: The affiliate_links of this V1UserFeatures. # noqa: E501
|
|
365
500
|
:type: bool
|
|
366
501
|
"""
|
|
367
502
|
|
|
368
|
-
self.
|
|
503
|
+
self._affiliate_links = affiliate_links
|
|
369
504
|
|
|
370
505
|
@property
|
|
371
|
-
def
|
|
372
|
-
"""Gets the
|
|
506
|
+
def agents_v2(self) -> 'bool':
|
|
507
|
+
"""Gets the agents_v2 of this V1UserFeatures. # noqa: E501
|
|
373
508
|
|
|
374
509
|
|
|
375
|
-
:return: The
|
|
510
|
+
:return: The agents_v2 of this V1UserFeatures. # noqa: E501
|
|
376
511
|
:rtype: bool
|
|
377
512
|
"""
|
|
378
|
-
return self.
|
|
513
|
+
return self._agents_v2
|
|
379
514
|
|
|
380
|
-
@
|
|
381
|
-
def
|
|
382
|
-
"""Sets the
|
|
515
|
+
@agents_v2.setter
|
|
516
|
+
def agents_v2(self, agents_v2: 'bool'):
|
|
517
|
+
"""Sets the agents_v2 of this V1UserFeatures.
|
|
383
518
|
|
|
384
519
|
|
|
385
|
-
:param
|
|
520
|
+
:param agents_v2: The agents_v2 of this V1UserFeatures. # noqa: E501
|
|
386
521
|
:type: bool
|
|
387
522
|
"""
|
|
388
523
|
|
|
389
|
-
self.
|
|
524
|
+
self._agents_v2 = agents_v2
|
|
390
525
|
|
|
391
526
|
@property
|
|
392
|
-
def
|
|
393
|
-
"""Gets the
|
|
527
|
+
def ai_hub_monetization(self) -> 'bool':
|
|
528
|
+
"""Gets the ai_hub_monetization of this V1UserFeatures. # noqa: E501
|
|
394
529
|
|
|
395
530
|
|
|
396
|
-
:return: The
|
|
531
|
+
:return: The ai_hub_monetization of this V1UserFeatures. # noqa: E501
|
|
397
532
|
:rtype: bool
|
|
398
533
|
"""
|
|
399
|
-
return self.
|
|
534
|
+
return self._ai_hub_monetization
|
|
400
535
|
|
|
401
|
-
@
|
|
402
|
-
def
|
|
403
|
-
"""Sets the
|
|
536
|
+
@ai_hub_monetization.setter
|
|
537
|
+
def ai_hub_monetization(self, ai_hub_monetization: 'bool'):
|
|
538
|
+
"""Sets the ai_hub_monetization of this V1UserFeatures.
|
|
404
539
|
|
|
405
540
|
|
|
406
|
-
:param
|
|
541
|
+
:param ai_hub_monetization: The ai_hub_monetization of this V1UserFeatures. # noqa: E501
|
|
407
542
|
:type: bool
|
|
408
543
|
"""
|
|
409
544
|
|
|
410
|
-
self.
|
|
545
|
+
self._ai_hub_monetization = ai_hub_monetization
|
|
546
|
+
|
|
547
|
+
@property
|
|
548
|
+
def auto_fast_load(self) -> 'bool':
|
|
549
|
+
"""Gets the auto_fast_load of this V1UserFeatures. # noqa: E501
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
:return: The auto_fast_load of this V1UserFeatures. # noqa: E501
|
|
553
|
+
:rtype: bool
|
|
554
|
+
"""
|
|
555
|
+
return self._auto_fast_load
|
|
556
|
+
|
|
557
|
+
@auto_fast_load.setter
|
|
558
|
+
def auto_fast_load(self, auto_fast_load: 'bool'):
|
|
559
|
+
"""Sets the auto_fast_load of this V1UserFeatures.
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
:param auto_fast_load: The auto_fast_load of this V1UserFeatures. # noqa: E501
|
|
563
|
+
:type: bool
|
|
564
|
+
"""
|
|
565
|
+
|
|
566
|
+
self._auto_fast_load = auto_fast_load
|
|
567
|
+
|
|
568
|
+
@property
|
|
569
|
+
def auto_join_orgs(self) -> 'bool':
|
|
570
|
+
"""Gets the auto_join_orgs of this V1UserFeatures. # noqa: E501
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
:return: The auto_join_orgs of this V1UserFeatures. # noqa: E501
|
|
574
|
+
:rtype: bool
|
|
575
|
+
"""
|
|
576
|
+
return self._auto_join_orgs
|
|
577
|
+
|
|
578
|
+
@auto_join_orgs.setter
|
|
579
|
+
def auto_join_orgs(self, auto_join_orgs: 'bool'):
|
|
580
|
+
"""Sets the auto_join_orgs of this V1UserFeatures.
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
:param auto_join_orgs: The auto_join_orgs of this V1UserFeatures. # noqa: E501
|
|
584
|
+
:type: bool
|
|
585
|
+
"""
|
|
586
|
+
|
|
587
|
+
self._auto_join_orgs = auto_join_orgs
|
|
588
|
+
|
|
589
|
+
@property
|
|
590
|
+
def b2c_experience(self) -> 'bool':
|
|
591
|
+
"""Gets the b2c_experience of this V1UserFeatures. # noqa: E501
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
:return: The b2c_experience of this V1UserFeatures. # noqa: E501
|
|
595
|
+
:rtype: bool
|
|
596
|
+
"""
|
|
597
|
+
return self._b2c_experience
|
|
598
|
+
|
|
599
|
+
@b2c_experience.setter
|
|
600
|
+
def b2c_experience(self, b2c_experience: 'bool'):
|
|
601
|
+
"""Sets the b2c_experience of this V1UserFeatures.
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
:param b2c_experience: The b2c_experience of this V1UserFeatures. # noqa: E501
|
|
605
|
+
:type: bool
|
|
606
|
+
"""
|
|
607
|
+
|
|
608
|
+
self._b2c_experience = b2c_experience
|
|
411
609
|
|
|
412
610
|
@property
|
|
413
611
|
def cap_add(self) -> 'list[str]':
|
|
@@ -452,130 +650,130 @@ class V1UserFeatures(object):
|
|
|
452
650
|
self._cap_drop = cap_drop
|
|
453
651
|
|
|
454
652
|
@property
|
|
455
|
-
def
|
|
456
|
-
"""Gets the
|
|
653
|
+
def capacity_reservation_byoc(self) -> 'bool':
|
|
654
|
+
"""Gets the capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
|
|
457
655
|
|
|
458
656
|
|
|
459
|
-
:return: The
|
|
657
|
+
:return: The capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
|
|
460
658
|
:rtype: bool
|
|
461
659
|
"""
|
|
462
|
-
return self.
|
|
660
|
+
return self._capacity_reservation_byoc
|
|
463
661
|
|
|
464
|
-
@
|
|
465
|
-
def
|
|
466
|
-
"""Sets the
|
|
662
|
+
@capacity_reservation_byoc.setter
|
|
663
|
+
def capacity_reservation_byoc(self, capacity_reservation_byoc: 'bool'):
|
|
664
|
+
"""Sets the capacity_reservation_byoc of this V1UserFeatures.
|
|
467
665
|
|
|
468
666
|
|
|
469
|
-
:param
|
|
667
|
+
:param capacity_reservation_byoc: The capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
|
|
470
668
|
:type: bool
|
|
471
669
|
"""
|
|
472
670
|
|
|
473
|
-
self.
|
|
671
|
+
self._capacity_reservation_byoc = capacity_reservation_byoc
|
|
474
672
|
|
|
475
673
|
@property
|
|
476
|
-
def
|
|
477
|
-
"""Gets the
|
|
674
|
+
def capacity_reservation_dry_run(self) -> 'bool':
|
|
675
|
+
"""Gets the capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
|
|
478
676
|
|
|
479
677
|
|
|
480
|
-
:return: The
|
|
678
|
+
:return: The capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
|
|
481
679
|
:rtype: bool
|
|
482
680
|
"""
|
|
483
|
-
return self.
|
|
681
|
+
return self._capacity_reservation_dry_run
|
|
484
682
|
|
|
485
|
-
@
|
|
486
|
-
def
|
|
487
|
-
"""Sets the
|
|
683
|
+
@capacity_reservation_dry_run.setter
|
|
684
|
+
def capacity_reservation_dry_run(self, capacity_reservation_dry_run: 'bool'):
|
|
685
|
+
"""Sets the capacity_reservation_dry_run of this V1UserFeatures.
|
|
488
686
|
|
|
489
687
|
|
|
490
|
-
:param
|
|
688
|
+
:param capacity_reservation_dry_run: The capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
|
|
491
689
|
:type: bool
|
|
492
690
|
"""
|
|
493
691
|
|
|
494
|
-
self.
|
|
692
|
+
self._capacity_reservation_dry_run = capacity_reservation_dry_run
|
|
495
693
|
|
|
496
694
|
@property
|
|
497
|
-
def
|
|
498
|
-
"""Gets the
|
|
695
|
+
def cluster_proxy(self) -> 'bool':
|
|
696
|
+
"""Gets the cluster_proxy of this V1UserFeatures. # noqa: E501
|
|
499
697
|
|
|
500
698
|
|
|
501
|
-
:return: The
|
|
699
|
+
:return: The cluster_proxy of this V1UserFeatures. # noqa: E501
|
|
502
700
|
:rtype: bool
|
|
503
701
|
"""
|
|
504
|
-
return self.
|
|
702
|
+
return self._cluster_proxy
|
|
505
703
|
|
|
506
|
-
@
|
|
507
|
-
def
|
|
508
|
-
"""Sets the
|
|
704
|
+
@cluster_proxy.setter
|
|
705
|
+
def cluster_proxy(self, cluster_proxy: 'bool'):
|
|
706
|
+
"""Sets the cluster_proxy of this V1UserFeatures.
|
|
509
707
|
|
|
510
708
|
|
|
511
|
-
:param
|
|
709
|
+
:param cluster_proxy: The cluster_proxy of this V1UserFeatures. # noqa: E501
|
|
512
710
|
:type: bool
|
|
513
711
|
"""
|
|
514
712
|
|
|
515
|
-
self.
|
|
713
|
+
self._cluster_proxy = cluster_proxy
|
|
516
714
|
|
|
517
715
|
@property
|
|
518
|
-
def
|
|
519
|
-
"""Gets the
|
|
716
|
+
def code_tab(self) -> 'bool':
|
|
717
|
+
"""Gets the code_tab of this V1UserFeatures. # noqa: E501
|
|
520
718
|
|
|
521
719
|
|
|
522
|
-
:return: The
|
|
720
|
+
:return: The code_tab of this V1UserFeatures. # noqa: E501
|
|
523
721
|
:rtype: bool
|
|
524
722
|
"""
|
|
525
|
-
return self.
|
|
723
|
+
return self._code_tab
|
|
526
724
|
|
|
527
|
-
@
|
|
528
|
-
def
|
|
529
|
-
"""Sets the
|
|
725
|
+
@code_tab.setter
|
|
726
|
+
def code_tab(self, code_tab: 'bool'):
|
|
727
|
+
"""Sets the code_tab of this V1UserFeatures.
|
|
530
728
|
|
|
531
729
|
|
|
532
|
-
:param
|
|
730
|
+
:param code_tab: The code_tab of this V1UserFeatures. # noqa: E501
|
|
533
731
|
:type: bool
|
|
534
732
|
"""
|
|
535
733
|
|
|
536
|
-
self.
|
|
734
|
+
self._code_tab = code_tab
|
|
537
735
|
|
|
538
736
|
@property
|
|
539
|
-
def
|
|
540
|
-
"""Gets the
|
|
737
|
+
def collab_screen_sharing(self) -> 'bool':
|
|
738
|
+
"""Gets the collab_screen_sharing of this V1UserFeatures. # noqa: E501
|
|
541
739
|
|
|
542
740
|
|
|
543
|
-
:return: The
|
|
741
|
+
:return: The collab_screen_sharing of this V1UserFeatures. # noqa: E501
|
|
544
742
|
:rtype: bool
|
|
545
743
|
"""
|
|
546
|
-
return self.
|
|
744
|
+
return self._collab_screen_sharing
|
|
547
745
|
|
|
548
|
-
@
|
|
549
|
-
def
|
|
550
|
-
"""Sets the
|
|
746
|
+
@collab_screen_sharing.setter
|
|
747
|
+
def collab_screen_sharing(self, collab_screen_sharing: 'bool'):
|
|
748
|
+
"""Sets the collab_screen_sharing of this V1UserFeatures.
|
|
551
749
|
|
|
552
750
|
|
|
553
|
-
:param
|
|
751
|
+
:param collab_screen_sharing: The collab_screen_sharing of this V1UserFeatures. # noqa: E501
|
|
554
752
|
:type: bool
|
|
555
753
|
"""
|
|
556
754
|
|
|
557
|
-
self.
|
|
755
|
+
self._collab_screen_sharing = collab_screen_sharing
|
|
558
756
|
|
|
559
757
|
@property
|
|
560
|
-
def
|
|
561
|
-
"""Gets the
|
|
758
|
+
def cost_attribution_settings(self) -> 'bool':
|
|
759
|
+
"""Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
562
760
|
|
|
563
761
|
|
|
564
|
-
:return: The
|
|
762
|
+
:return: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
565
763
|
:rtype: bool
|
|
566
764
|
"""
|
|
567
|
-
return self.
|
|
765
|
+
return self._cost_attribution_settings
|
|
568
766
|
|
|
569
|
-
@
|
|
570
|
-
def
|
|
571
|
-
"""Sets the
|
|
767
|
+
@cost_attribution_settings.setter
|
|
768
|
+
def cost_attribution_settings(self, cost_attribution_settings: 'bool'):
|
|
769
|
+
"""Sets the cost_attribution_settings of this V1UserFeatures.
|
|
572
770
|
|
|
573
771
|
|
|
574
|
-
:param
|
|
772
|
+
:param cost_attribution_settings: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
575
773
|
:type: bool
|
|
576
774
|
"""
|
|
577
775
|
|
|
578
|
-
self.
|
|
776
|
+
self._cost_attribution_settings = cost_attribution_settings
|
|
579
777
|
|
|
580
778
|
@property
|
|
581
779
|
def custom_app_domain(self) -> 'bool':
|
|
@@ -619,6 +817,195 @@ class V1UserFeatures(object):
|
|
|
619
817
|
|
|
620
818
|
self._custom_instance_types = custom_instance_types
|
|
621
819
|
|
|
820
|
+
@property
|
|
821
|
+
def default_one_cluster(self) -> 'bool':
|
|
822
|
+
"""Gets the default_one_cluster of this V1UserFeatures. # noqa: E501
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
:return: The default_one_cluster of this V1UserFeatures. # noqa: E501
|
|
826
|
+
:rtype: bool
|
|
827
|
+
"""
|
|
828
|
+
return self._default_one_cluster
|
|
829
|
+
|
|
830
|
+
@default_one_cluster.setter
|
|
831
|
+
def default_one_cluster(self, default_one_cluster: 'bool'):
|
|
832
|
+
"""Sets the default_one_cluster of this V1UserFeatures.
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
:param default_one_cluster: The default_one_cluster of this V1UserFeatures. # noqa: E501
|
|
836
|
+
:type: bool
|
|
837
|
+
"""
|
|
838
|
+
|
|
839
|
+
self._default_one_cluster = default_one_cluster
|
|
840
|
+
|
|
841
|
+
@property
|
|
842
|
+
def deployment_customize_api(self) -> 'bool':
|
|
843
|
+
"""Gets the deployment_customize_api of this V1UserFeatures. # noqa: E501
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
:return: The deployment_customize_api of this V1UserFeatures. # noqa: E501
|
|
847
|
+
:rtype: bool
|
|
848
|
+
"""
|
|
849
|
+
return self._deployment_customize_api
|
|
850
|
+
|
|
851
|
+
@deployment_customize_api.setter
|
|
852
|
+
def deployment_customize_api(self, deployment_customize_api: 'bool'):
|
|
853
|
+
"""Sets the deployment_customize_api of this V1UserFeatures.
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
:param deployment_customize_api: The deployment_customize_api of this V1UserFeatures. # noqa: E501
|
|
857
|
+
:type: bool
|
|
858
|
+
"""
|
|
859
|
+
|
|
860
|
+
self._deployment_customize_api = deployment_customize_api
|
|
861
|
+
|
|
862
|
+
@property
|
|
863
|
+
def deployment_data_path(self) -> 'bool':
|
|
864
|
+
"""Gets the deployment_data_path of this V1UserFeatures. # noqa: E501
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
:return: The deployment_data_path of this V1UserFeatures. # noqa: E501
|
|
868
|
+
:rtype: bool
|
|
869
|
+
"""
|
|
870
|
+
return self._deployment_data_path
|
|
871
|
+
|
|
872
|
+
@deployment_data_path.setter
|
|
873
|
+
def deployment_data_path(self, deployment_data_path: 'bool'):
|
|
874
|
+
"""Sets the deployment_data_path of this V1UserFeatures.
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
:param deployment_data_path: The deployment_data_path of this V1UserFeatures. # noqa: E501
|
|
878
|
+
:type: bool
|
|
879
|
+
"""
|
|
880
|
+
|
|
881
|
+
self._deployment_data_path = deployment_data_path
|
|
882
|
+
|
|
883
|
+
@property
|
|
884
|
+
def deployment_gallery(self) -> 'bool':
|
|
885
|
+
"""Gets the deployment_gallery of this V1UserFeatures. # noqa: E501
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
:return: The deployment_gallery of this V1UserFeatures. # noqa: E501
|
|
889
|
+
:rtype: bool
|
|
890
|
+
"""
|
|
891
|
+
return self._deployment_gallery
|
|
892
|
+
|
|
893
|
+
@deployment_gallery.setter
|
|
894
|
+
def deployment_gallery(self, deployment_gallery: 'bool'):
|
|
895
|
+
"""Sets the deployment_gallery of this V1UserFeatures.
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
:param deployment_gallery: The deployment_gallery of this V1UserFeatures. # noqa: E501
|
|
899
|
+
:type: bool
|
|
900
|
+
"""
|
|
901
|
+
|
|
902
|
+
self._deployment_gallery = deployment_gallery
|
|
903
|
+
|
|
904
|
+
@property
|
|
905
|
+
def deployment_persistent_disk(self) -> 'bool':
|
|
906
|
+
"""Gets the deployment_persistent_disk of this V1UserFeatures. # noqa: E501
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
:return: The deployment_persistent_disk of this V1UserFeatures. # noqa: E501
|
|
910
|
+
:rtype: bool
|
|
911
|
+
"""
|
|
912
|
+
return self._deployment_persistent_disk
|
|
913
|
+
|
|
914
|
+
@deployment_persistent_disk.setter
|
|
915
|
+
def deployment_persistent_disk(self, deployment_persistent_disk: 'bool'):
|
|
916
|
+
"""Sets the deployment_persistent_disk of this V1UserFeatures.
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
:param deployment_persistent_disk: The deployment_persistent_disk of this V1UserFeatures. # noqa: E501
|
|
920
|
+
:type: bool
|
|
921
|
+
"""
|
|
922
|
+
|
|
923
|
+
self._deployment_persistent_disk = deployment_persistent_disk
|
|
924
|
+
|
|
925
|
+
@property
|
|
926
|
+
def deployment_version_visibility(self) -> 'bool':
|
|
927
|
+
"""Gets the deployment_version_visibility of this V1UserFeatures. # noqa: E501
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
:return: The deployment_version_visibility of this V1UserFeatures. # noqa: E501
|
|
931
|
+
:rtype: bool
|
|
932
|
+
"""
|
|
933
|
+
return self._deployment_version_visibility
|
|
934
|
+
|
|
935
|
+
@deployment_version_visibility.setter
|
|
936
|
+
def deployment_version_visibility(self, deployment_version_visibility: 'bool'):
|
|
937
|
+
"""Sets the deployment_version_visibility of this V1UserFeatures.
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
:param deployment_version_visibility: The deployment_version_visibility of this V1UserFeatures. # noqa: E501
|
|
941
|
+
:type: bool
|
|
942
|
+
"""
|
|
943
|
+
|
|
944
|
+
self._deployment_version_visibility = deployment_version_visibility
|
|
945
|
+
|
|
946
|
+
@property
|
|
947
|
+
def docs_agent(self) -> 'bool':
|
|
948
|
+
"""Gets the docs_agent of this V1UserFeatures. # noqa: E501
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
:return: The docs_agent of this V1UserFeatures. # noqa: E501
|
|
952
|
+
:rtype: bool
|
|
953
|
+
"""
|
|
954
|
+
return self._docs_agent
|
|
955
|
+
|
|
956
|
+
@docs_agent.setter
|
|
957
|
+
def docs_agent(self, docs_agent: 'bool'):
|
|
958
|
+
"""Sets the docs_agent of this V1UserFeatures.
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
:param docs_agent: The docs_agent of this V1UserFeatures. # noqa: E501
|
|
962
|
+
:type: bool
|
|
963
|
+
"""
|
|
964
|
+
|
|
965
|
+
self._docs_agent = docs_agent
|
|
966
|
+
|
|
967
|
+
@property
|
|
968
|
+
def drive_v2(self) -> 'bool':
|
|
969
|
+
"""Gets the drive_v2 of this V1UserFeatures. # noqa: E501
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
:return: The drive_v2 of this V1UserFeatures. # noqa: E501
|
|
973
|
+
:rtype: bool
|
|
974
|
+
"""
|
|
975
|
+
return self._drive_v2
|
|
976
|
+
|
|
977
|
+
@drive_v2.setter
|
|
978
|
+
def drive_v2(self, drive_v2: 'bool'):
|
|
979
|
+
"""Sets the drive_v2 of this V1UserFeatures.
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
:param drive_v2: The drive_v2 of this V1UserFeatures. # noqa: E501
|
|
983
|
+
:type: bool
|
|
984
|
+
"""
|
|
985
|
+
|
|
986
|
+
self._drive_v2 = drive_v2
|
|
987
|
+
|
|
988
|
+
@property
|
|
989
|
+
def dynamic_workload_scheduling(self) -> 'bool':
|
|
990
|
+
"""Gets the dynamic_workload_scheduling of this V1UserFeatures. # noqa: E501
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
:return: The dynamic_workload_scheduling of this V1UserFeatures. # noqa: E501
|
|
994
|
+
:rtype: bool
|
|
995
|
+
"""
|
|
996
|
+
return self._dynamic_workload_scheduling
|
|
997
|
+
|
|
998
|
+
@dynamic_workload_scheduling.setter
|
|
999
|
+
def dynamic_workload_scheduling(self, dynamic_workload_scheduling: 'bool'):
|
|
1000
|
+
"""Sets the dynamic_workload_scheduling of this V1UserFeatures.
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
:param dynamic_workload_scheduling: The dynamic_workload_scheduling of this V1UserFeatures. # noqa: E501
|
|
1004
|
+
:type: bool
|
|
1005
|
+
"""
|
|
1006
|
+
|
|
1007
|
+
self._dynamic_workload_scheduling = dynamic_workload_scheduling
|
|
1008
|
+
|
|
622
1009
|
@property
|
|
623
1010
|
def enable_crypto_crackdown(self) -> 'bool':
|
|
624
1011
|
"""Gets the enable_crypto_crackdown of this V1UserFeatures. # noqa: E501
|
|
@@ -640,6 +1027,48 @@ class V1UserFeatures(object):
|
|
|
640
1027
|
|
|
641
1028
|
self._enable_crypto_crackdown = enable_crypto_crackdown
|
|
642
1029
|
|
|
1030
|
+
@property
|
|
1031
|
+
def enable_efs(self) -> 'bool':
|
|
1032
|
+
"""Gets the enable_efs of this V1UserFeatures. # noqa: E501
|
|
1033
|
+
|
|
1034
|
+
|
|
1035
|
+
:return: The enable_efs of this V1UserFeatures. # noqa: E501
|
|
1036
|
+
:rtype: bool
|
|
1037
|
+
"""
|
|
1038
|
+
return self._enable_efs
|
|
1039
|
+
|
|
1040
|
+
@enable_efs.setter
|
|
1041
|
+
def enable_efs(self, enable_efs: 'bool'):
|
|
1042
|
+
"""Sets the enable_efs of this V1UserFeatures.
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
:param enable_efs: The enable_efs of this V1UserFeatures. # noqa: E501
|
|
1046
|
+
:type: bool
|
|
1047
|
+
"""
|
|
1048
|
+
|
|
1049
|
+
self._enable_efs = enable_efs
|
|
1050
|
+
|
|
1051
|
+
@property
|
|
1052
|
+
def enable_storage_limits(self) -> 'bool':
|
|
1053
|
+
"""Gets the enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
:return: The enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1057
|
+
:rtype: bool
|
|
1058
|
+
"""
|
|
1059
|
+
return self._enable_storage_limits
|
|
1060
|
+
|
|
1061
|
+
@enable_storage_limits.setter
|
|
1062
|
+
def enable_storage_limits(self, enable_storage_limits: 'bool'):
|
|
1063
|
+
"""Sets the enable_storage_limits of this V1UserFeatures.
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
:param enable_storage_limits: The enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1067
|
+
:type: bool
|
|
1068
|
+
"""
|
|
1069
|
+
|
|
1070
|
+
self._enable_storage_limits = enable_storage_limits
|
|
1071
|
+
|
|
643
1072
|
@property
|
|
644
1073
|
def featured_studios_admin(self) -> 'bool':
|
|
645
1074
|
"""Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
|
|
@@ -683,25 +1112,67 @@ class V1UserFeatures(object):
|
|
|
683
1112
|
self._filesystem_optimisation = filesystem_optimisation
|
|
684
1113
|
|
|
685
1114
|
@property
|
|
686
|
-
def
|
|
687
|
-
"""Gets the
|
|
1115
|
+
def gcp(self) -> 'bool':
|
|
1116
|
+
"""Gets the gcp of this V1UserFeatures. # noqa: E501
|
|
1117
|
+
|
|
1118
|
+
|
|
1119
|
+
:return: The gcp of this V1UserFeatures. # noqa: E501
|
|
1120
|
+
:rtype: bool
|
|
1121
|
+
"""
|
|
1122
|
+
return self._gcp
|
|
1123
|
+
|
|
1124
|
+
@gcp.setter
|
|
1125
|
+
def gcp(self, gcp: 'bool'):
|
|
1126
|
+
"""Sets the gcp of this V1UserFeatures.
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
:param gcp: The gcp of this V1UserFeatures. # noqa: E501
|
|
1130
|
+
:type: bool
|
|
1131
|
+
"""
|
|
1132
|
+
|
|
1133
|
+
self._gcp = gcp
|
|
1134
|
+
|
|
1135
|
+
@property
|
|
1136
|
+
def inference_job_deployment_plugin(self) -> 'bool':
|
|
1137
|
+
"""Gets the inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
|
|
688
1138
|
|
|
689
1139
|
|
|
690
|
-
:return: The
|
|
1140
|
+
:return: The inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
|
|
691
1141
|
:rtype: bool
|
|
692
1142
|
"""
|
|
693
|
-
return self.
|
|
1143
|
+
return self._inference_job_deployment_plugin
|
|
694
1144
|
|
|
695
|
-
@
|
|
696
|
-
def
|
|
697
|
-
"""Sets the
|
|
1145
|
+
@inference_job_deployment_plugin.setter
|
|
1146
|
+
def inference_job_deployment_plugin(self, inference_job_deployment_plugin: 'bool'):
|
|
1147
|
+
"""Sets the inference_job_deployment_plugin of this V1UserFeatures.
|
|
698
1148
|
|
|
699
1149
|
|
|
700
|
-
:param
|
|
1150
|
+
:param inference_job_deployment_plugin: The inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
|
|
701
1151
|
:type: bool
|
|
702
1152
|
"""
|
|
703
1153
|
|
|
704
|
-
self.
|
|
1154
|
+
self._inference_job_deployment_plugin = inference_job_deployment_plugin
|
|
1155
|
+
|
|
1156
|
+
@property
|
|
1157
|
+
def instant_capacity_reservation(self) -> 'bool':
|
|
1158
|
+
"""Gets the instant_capacity_reservation of this V1UserFeatures. # noqa: E501
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
:return: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
|
|
1162
|
+
:rtype: bool
|
|
1163
|
+
"""
|
|
1164
|
+
return self._instant_capacity_reservation
|
|
1165
|
+
|
|
1166
|
+
@instant_capacity_reservation.setter
|
|
1167
|
+
def instant_capacity_reservation(self, instant_capacity_reservation: 'bool'):
|
|
1168
|
+
"""Sets the instant_capacity_reservation of this V1UserFeatures.
|
|
1169
|
+
|
|
1170
|
+
|
|
1171
|
+
:param instant_capacity_reservation: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
|
|
1172
|
+
:type: bool
|
|
1173
|
+
"""
|
|
1174
|
+
|
|
1175
|
+
self._instant_capacity_reservation = instant_capacity_reservation
|
|
705
1176
|
|
|
706
1177
|
@property
|
|
707
1178
|
def jobs_init(self) -> 'bool':
|
|
@@ -725,25 +1196,25 @@ class V1UserFeatures(object):
|
|
|
725
1196
|
self._jobs_init = jobs_init
|
|
726
1197
|
|
|
727
1198
|
@property
|
|
728
|
-
def
|
|
729
|
-
"""Gets the
|
|
1199
|
+
def jobs_v2(self) -> 'bool':
|
|
1200
|
+
"""Gets the jobs_v2 of this V1UserFeatures. # noqa: E501
|
|
730
1201
|
|
|
731
1202
|
|
|
732
|
-
:return: The
|
|
1203
|
+
:return: The jobs_v2 of this V1UserFeatures. # noqa: E501
|
|
733
1204
|
:rtype: bool
|
|
734
1205
|
"""
|
|
735
|
-
return self.
|
|
1206
|
+
return self._jobs_v2
|
|
736
1207
|
|
|
737
|
-
@
|
|
738
|
-
def
|
|
739
|
-
"""Sets the
|
|
1208
|
+
@jobs_v2.setter
|
|
1209
|
+
def jobs_v2(self, jobs_v2: 'bool'):
|
|
1210
|
+
"""Sets the jobs_v2 of this V1UserFeatures.
|
|
740
1211
|
|
|
741
1212
|
|
|
742
|
-
:param
|
|
1213
|
+
:param jobs_v2: The jobs_v2 of this V1UserFeatures. # noqa: E501
|
|
743
1214
|
:type: bool
|
|
744
1215
|
"""
|
|
745
1216
|
|
|
746
|
-
self.
|
|
1217
|
+
self._jobs_v2 = jobs_v2
|
|
747
1218
|
|
|
748
1219
|
@property
|
|
749
1220
|
def landing_studios(self) -> 'bool':
|
|
@@ -767,46 +1238,88 @@ class V1UserFeatures(object):
|
|
|
767
1238
|
self._landing_studios = landing_studios
|
|
768
1239
|
|
|
769
1240
|
@property
|
|
770
|
-
def
|
|
771
|
-
"""Gets the
|
|
1241
|
+
def lightning_registry(self) -> 'bool':
|
|
1242
|
+
"""Gets the lightning_registry of this V1UserFeatures. # noqa: E501
|
|
772
1243
|
|
|
773
1244
|
|
|
774
|
-
:return: The
|
|
1245
|
+
:return: The lightning_registry of this V1UserFeatures. # noqa: E501
|
|
775
1246
|
:rtype: bool
|
|
776
1247
|
"""
|
|
777
|
-
return self.
|
|
1248
|
+
return self._lightning_registry
|
|
778
1249
|
|
|
779
|
-
@
|
|
780
|
-
def
|
|
781
|
-
"""Sets the
|
|
1250
|
+
@lightning_registry.setter
|
|
1251
|
+
def lightning_registry(self, lightning_registry: 'bool'):
|
|
1252
|
+
"""Sets the lightning_registry of this V1UserFeatures.
|
|
782
1253
|
|
|
783
1254
|
|
|
784
|
-
:param
|
|
1255
|
+
:param lightning_registry: The lightning_registry of this V1UserFeatures. # noqa: E501
|
|
785
1256
|
:type: bool
|
|
786
1257
|
"""
|
|
787
1258
|
|
|
788
|
-
self.
|
|
1259
|
+
self._lightning_registry = lightning_registry
|
|
789
1260
|
|
|
790
1261
|
@property
|
|
791
|
-
def
|
|
792
|
-
"""Gets the
|
|
1262
|
+
def lit_logger(self) -> 'bool':
|
|
1263
|
+
"""Gets the lit_logger of this V1UserFeatures. # noqa: E501
|
|
793
1264
|
|
|
794
1265
|
|
|
795
|
-
:return: The
|
|
1266
|
+
:return: The lit_logger of this V1UserFeatures. # noqa: E501
|
|
796
1267
|
:rtype: bool
|
|
797
1268
|
"""
|
|
798
|
-
return self.
|
|
1269
|
+
return self._lit_logger
|
|
799
1270
|
|
|
800
|
-
@
|
|
801
|
-
def
|
|
802
|
-
"""Sets the
|
|
1271
|
+
@lit_logger.setter
|
|
1272
|
+
def lit_logger(self, lit_logger: 'bool'):
|
|
1273
|
+
"""Sets the lit_logger of this V1UserFeatures.
|
|
803
1274
|
|
|
804
1275
|
|
|
805
|
-
:param
|
|
1276
|
+
:param lit_logger: The lit_logger of this V1UserFeatures. # noqa: E501
|
|
806
1277
|
:type: bool
|
|
807
1278
|
"""
|
|
808
1279
|
|
|
809
|
-
self.
|
|
1280
|
+
self._lit_logger = lit_logger
|
|
1281
|
+
|
|
1282
|
+
@property
|
|
1283
|
+
def lit_logger_storage_v2(self) -> 'bool':
|
|
1284
|
+
"""Gets the lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
:return: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
|
|
1288
|
+
:rtype: bool
|
|
1289
|
+
"""
|
|
1290
|
+
return self._lit_logger_storage_v2
|
|
1291
|
+
|
|
1292
|
+
@lit_logger_storage_v2.setter
|
|
1293
|
+
def lit_logger_storage_v2(self, lit_logger_storage_v2: 'bool'):
|
|
1294
|
+
"""Sets the lit_logger_storage_v2 of this V1UserFeatures.
|
|
1295
|
+
|
|
1296
|
+
|
|
1297
|
+
:param lit_logger_storage_v2: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
|
|
1298
|
+
:type: bool
|
|
1299
|
+
"""
|
|
1300
|
+
|
|
1301
|
+
self._lit_logger_storage_v2 = lit_logger_storage_v2
|
|
1302
|
+
|
|
1303
|
+
@property
|
|
1304
|
+
def mmt_fault_tolerance(self) -> 'bool':
|
|
1305
|
+
"""Gets the mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
|
|
1306
|
+
|
|
1307
|
+
|
|
1308
|
+
:return: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
|
|
1309
|
+
:rtype: bool
|
|
1310
|
+
"""
|
|
1311
|
+
return self._mmt_fault_tolerance
|
|
1312
|
+
|
|
1313
|
+
@mmt_fault_tolerance.setter
|
|
1314
|
+
def mmt_fault_tolerance(self, mmt_fault_tolerance: 'bool'):
|
|
1315
|
+
"""Sets the mmt_fault_tolerance of this V1UserFeatures.
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
:param mmt_fault_tolerance: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
|
|
1319
|
+
:type: bool
|
|
1320
|
+
"""
|
|
1321
|
+
|
|
1322
|
+
self._mmt_fault_tolerance = mmt_fault_tolerance
|
|
810
1323
|
|
|
811
1324
|
@property
|
|
812
1325
|
def mmt_strategy_selector(self) -> 'bool':
|
|
@@ -830,67 +1343,130 @@ class V1UserFeatures(object):
|
|
|
830
1343
|
self._mmt_strategy_selector = mmt_strategy_selector
|
|
831
1344
|
|
|
832
1345
|
@property
|
|
833
|
-
def
|
|
834
|
-
"""Gets the
|
|
1346
|
+
def mmt_v2(self) -> 'bool':
|
|
1347
|
+
"""Gets the mmt_v2 of this V1UserFeatures. # noqa: E501
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
:return: The mmt_v2 of this V1UserFeatures. # noqa: E501
|
|
1351
|
+
:rtype: bool
|
|
1352
|
+
"""
|
|
1353
|
+
return self._mmt_v2
|
|
1354
|
+
|
|
1355
|
+
@mmt_v2.setter
|
|
1356
|
+
def mmt_v2(self, mmt_v2: 'bool'):
|
|
1357
|
+
"""Sets the mmt_v2 of this V1UserFeatures.
|
|
1358
|
+
|
|
1359
|
+
|
|
1360
|
+
:param mmt_v2: The mmt_v2 of this V1UserFeatures. # noqa: E501
|
|
1361
|
+
:type: bool
|
|
1362
|
+
"""
|
|
1363
|
+
|
|
1364
|
+
self._mmt_v2 = mmt_v2
|
|
1365
|
+
|
|
1366
|
+
@property
|
|
1367
|
+
def model_store(self) -> 'bool':
|
|
1368
|
+
"""Gets the model_store of this V1UserFeatures. # noqa: E501
|
|
835
1369
|
|
|
836
1370
|
|
|
837
|
-
:return: The
|
|
1371
|
+
:return: The model_store of this V1UserFeatures. # noqa: E501
|
|
838
1372
|
:rtype: bool
|
|
839
1373
|
"""
|
|
840
|
-
return self.
|
|
1374
|
+
return self._model_store
|
|
841
1375
|
|
|
842
|
-
@
|
|
843
|
-
def
|
|
844
|
-
"""Sets the
|
|
1376
|
+
@model_store.setter
|
|
1377
|
+
def model_store(self, model_store: 'bool'):
|
|
1378
|
+
"""Sets the model_store of this V1UserFeatures.
|
|
845
1379
|
|
|
846
1380
|
|
|
847
|
-
:param
|
|
1381
|
+
:param model_store: The model_store of this V1UserFeatures. # noqa: E501
|
|
848
1382
|
:type: bool
|
|
849
1383
|
"""
|
|
850
1384
|
|
|
851
|
-
self.
|
|
1385
|
+
self._model_store = model_store
|
|
852
1386
|
|
|
853
1387
|
@property
|
|
854
|
-
def
|
|
855
|
-
"""Gets the
|
|
1388
|
+
def multiple_deployment_versions(self) -> 'bool':
|
|
1389
|
+
"""Gets the multiple_deployment_versions of this V1UserFeatures. # noqa: E501
|
|
856
1390
|
|
|
857
1391
|
|
|
858
|
-
:return: The
|
|
1392
|
+
:return: The multiple_deployment_versions of this V1UserFeatures. # noqa: E501
|
|
859
1393
|
:rtype: bool
|
|
860
1394
|
"""
|
|
861
|
-
return self.
|
|
1395
|
+
return self._multiple_deployment_versions
|
|
862
1396
|
|
|
863
|
-
@
|
|
864
|
-
def
|
|
865
|
-
"""Sets the
|
|
1397
|
+
@multiple_deployment_versions.setter
|
|
1398
|
+
def multiple_deployment_versions(self, multiple_deployment_versions: 'bool'):
|
|
1399
|
+
"""Sets the multiple_deployment_versions of this V1UserFeatures.
|
|
866
1400
|
|
|
867
1401
|
|
|
868
|
-
:param
|
|
1402
|
+
:param multiple_deployment_versions: The multiple_deployment_versions of this V1UserFeatures. # noqa: E501
|
|
869
1403
|
:type: bool
|
|
870
1404
|
"""
|
|
871
1405
|
|
|
872
|
-
self.
|
|
1406
|
+
self._multiple_deployment_versions = multiple_deployment_versions
|
|
873
1407
|
|
|
874
1408
|
@property
|
|
875
|
-
def
|
|
876
|
-
"""Gets the
|
|
1409
|
+
def multiple_studio_versions(self) -> 'bool':
|
|
1410
|
+
"""Gets the multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
877
1411
|
|
|
878
1412
|
|
|
879
|
-
:return: The
|
|
1413
|
+
:return: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
880
1414
|
:rtype: bool
|
|
881
1415
|
"""
|
|
882
|
-
return self.
|
|
1416
|
+
return self._multiple_studio_versions
|
|
883
1417
|
|
|
884
|
-
@
|
|
885
|
-
def
|
|
886
|
-
"""Sets the
|
|
1418
|
+
@multiple_studio_versions.setter
|
|
1419
|
+
def multiple_studio_versions(self, multiple_studio_versions: 'bool'):
|
|
1420
|
+
"""Sets the multiple_studio_versions of this V1UserFeatures.
|
|
887
1421
|
|
|
888
1422
|
|
|
889
|
-
:param
|
|
1423
|
+
:param multiple_studio_versions: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
890
1424
|
:type: bool
|
|
891
1425
|
"""
|
|
892
1426
|
|
|
893
|
-
self.
|
|
1427
|
+
self._multiple_studio_versions = multiple_studio_versions
|
|
1428
|
+
|
|
1429
|
+
@property
|
|
1430
|
+
def org_level_member_permissions(self) -> 'bool':
|
|
1431
|
+
"""Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
:return: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
1435
|
+
:rtype: bool
|
|
1436
|
+
"""
|
|
1437
|
+
return self._org_level_member_permissions
|
|
1438
|
+
|
|
1439
|
+
@org_level_member_permissions.setter
|
|
1440
|
+
def org_level_member_permissions(self, org_level_member_permissions: 'bool'):
|
|
1441
|
+
"""Sets the org_level_member_permissions of this V1UserFeatures.
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
:param org_level_member_permissions: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
1445
|
+
:type: bool
|
|
1446
|
+
"""
|
|
1447
|
+
|
|
1448
|
+
self._org_level_member_permissions = org_level_member_permissions
|
|
1449
|
+
|
|
1450
|
+
@property
|
|
1451
|
+
def pipelines(self) -> 'bool':
|
|
1452
|
+
"""Gets the pipelines of this V1UserFeatures. # noqa: E501
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
|
+
:return: The pipelines of this V1UserFeatures. # noqa: E501
|
|
1456
|
+
:rtype: bool
|
|
1457
|
+
"""
|
|
1458
|
+
return self._pipelines
|
|
1459
|
+
|
|
1460
|
+
@pipelines.setter
|
|
1461
|
+
def pipelines(self, pipelines: 'bool'):
|
|
1462
|
+
"""Sets the pipelines of this V1UserFeatures.
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
:param pipelines: The pipelines of this V1UserFeatures. # noqa: E501
|
|
1466
|
+
:type: bool
|
|
1467
|
+
"""
|
|
1468
|
+
|
|
1469
|
+
self._pipelines = pipelines
|
|
894
1470
|
|
|
895
1471
|
@property
|
|
896
1472
|
def plugin_biz_chat(self) -> 'bool':
|
|
@@ -1270,69 +1846,6 @@ class V1UserFeatures(object):
|
|
|
1270
1846
|
|
|
1271
1847
|
self._project_selector = project_selector
|
|
1272
1848
|
|
|
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
1849
|
@property
|
|
1337
1850
|
def restart_ide_on_hang(self) -> 'bool':
|
|
1338
1851
|
"""Gets the restart_ide_on_hang of this V1UserFeatures. # noqa: E501
|
|
@@ -1376,25 +1889,25 @@ class V1UserFeatures(object):
|
|
|
1376
1889
|
self._restartable_jobs = restartable_jobs
|
|
1377
1890
|
|
|
1378
1891
|
@property
|
|
1379
|
-
def
|
|
1380
|
-
"""Gets the
|
|
1892
|
+
def runnable_public_studio_page(self) -> 'bool':
|
|
1893
|
+
"""Gets the runnable_public_studio_page of this V1UserFeatures. # noqa: E501
|
|
1381
1894
|
|
|
1382
1895
|
|
|
1383
|
-
:return: The
|
|
1896
|
+
:return: The runnable_public_studio_page of this V1UserFeatures. # noqa: E501
|
|
1384
1897
|
:rtype: bool
|
|
1385
1898
|
"""
|
|
1386
|
-
return self.
|
|
1899
|
+
return self._runnable_public_studio_page
|
|
1387
1900
|
|
|
1388
|
-
@
|
|
1389
|
-
def
|
|
1390
|
-
"""Sets the
|
|
1901
|
+
@runnable_public_studio_page.setter
|
|
1902
|
+
def runnable_public_studio_page(self, runnable_public_studio_page: 'bool'):
|
|
1903
|
+
"""Sets the runnable_public_studio_page of this V1UserFeatures.
|
|
1391
1904
|
|
|
1392
1905
|
|
|
1393
|
-
:param
|
|
1906
|
+
:param runnable_public_studio_page: The runnable_public_studio_page of this V1UserFeatures. # noqa: E501
|
|
1394
1907
|
:type: bool
|
|
1395
1908
|
"""
|
|
1396
1909
|
|
|
1397
|
-
self.
|
|
1910
|
+
self._runnable_public_studio_page = runnable_public_studio_page
|
|
1398
1911
|
|
|
1399
1912
|
@property
|
|
1400
1913
|
def show_dev_admin(self) -> 'bool':
|
|
@@ -1439,25 +1952,214 @@ class V1UserFeatures(object):
|
|
|
1439
1952
|
self._slurm = slurm
|
|
1440
1953
|
|
|
1441
1954
|
@property
|
|
1442
|
-
def
|
|
1443
|
-
"""Gets the
|
|
1955
|
+
def slurm_machine_selector(self) -> 'bool':
|
|
1956
|
+
"""Gets the slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
1957
|
+
|
|
1958
|
+
|
|
1959
|
+
:return: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
1960
|
+
:rtype: bool
|
|
1961
|
+
"""
|
|
1962
|
+
return self._slurm_machine_selector
|
|
1963
|
+
|
|
1964
|
+
@slurm_machine_selector.setter
|
|
1965
|
+
def slurm_machine_selector(self, slurm_machine_selector: 'bool'):
|
|
1966
|
+
"""Sets the slurm_machine_selector of this V1UserFeatures.
|
|
1967
|
+
|
|
1968
|
+
|
|
1969
|
+
:param slurm_machine_selector: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
1970
|
+
:type: bool
|
|
1971
|
+
"""
|
|
1972
|
+
|
|
1973
|
+
self._slurm_machine_selector = slurm_machine_selector
|
|
1974
|
+
|
|
1975
|
+
@property
|
|
1976
|
+
def snapshotter_service(self) -> 'bool':
|
|
1977
|
+
"""Gets the snapshotter_service of this V1UserFeatures. # noqa: E501
|
|
1978
|
+
|
|
1979
|
+
|
|
1980
|
+
:return: The snapshotter_service of this V1UserFeatures. # noqa: E501
|
|
1981
|
+
:rtype: bool
|
|
1982
|
+
"""
|
|
1983
|
+
return self._snapshotter_service
|
|
1984
|
+
|
|
1985
|
+
@snapshotter_service.setter
|
|
1986
|
+
def snapshotter_service(self, snapshotter_service: 'bool'):
|
|
1987
|
+
"""Sets the snapshotter_service of this V1UserFeatures.
|
|
1988
|
+
|
|
1989
|
+
|
|
1990
|
+
:param snapshotter_service: The snapshotter_service of this V1UserFeatures. # noqa: E501
|
|
1991
|
+
:type: bool
|
|
1992
|
+
"""
|
|
1993
|
+
|
|
1994
|
+
self._snapshotter_service = snapshotter_service
|
|
1995
|
+
|
|
1996
|
+
@property
|
|
1997
|
+
def snowflake_connection(self) -> 'bool':
|
|
1998
|
+
"""Gets the snowflake_connection of this V1UserFeatures. # noqa: E501
|
|
1999
|
+
|
|
2000
|
+
|
|
2001
|
+
:return: The snowflake_connection of this V1UserFeatures. # noqa: E501
|
|
2002
|
+
:rtype: bool
|
|
2003
|
+
"""
|
|
2004
|
+
return self._snowflake_connection
|
|
2005
|
+
|
|
2006
|
+
@snowflake_connection.setter
|
|
2007
|
+
def snowflake_connection(self, snowflake_connection: 'bool'):
|
|
2008
|
+
"""Sets the snowflake_connection of this V1UserFeatures.
|
|
2009
|
+
|
|
2010
|
+
|
|
2011
|
+
:param snowflake_connection: The snowflake_connection of this V1UserFeatures. # noqa: E501
|
|
2012
|
+
:type: bool
|
|
2013
|
+
"""
|
|
2014
|
+
|
|
2015
|
+
self._snowflake_connection = snowflake_connection
|
|
2016
|
+
|
|
2017
|
+
@property
|
|
2018
|
+
def spot_v2(self) -> 'bool':
|
|
2019
|
+
"""Gets the spot_v2 of this V1UserFeatures. # noqa: E501
|
|
2020
|
+
|
|
2021
|
+
|
|
2022
|
+
:return: The spot_v2 of this V1UserFeatures. # noqa: E501
|
|
2023
|
+
:rtype: bool
|
|
2024
|
+
"""
|
|
2025
|
+
return self._spot_v2
|
|
2026
|
+
|
|
2027
|
+
@spot_v2.setter
|
|
2028
|
+
def spot_v2(self, spot_v2: 'bool'):
|
|
2029
|
+
"""Sets the spot_v2 of this V1UserFeatures.
|
|
2030
|
+
|
|
2031
|
+
|
|
2032
|
+
:param spot_v2: The spot_v2 of this V1UserFeatures. # noqa: E501
|
|
2033
|
+
:type: bool
|
|
2034
|
+
"""
|
|
2035
|
+
|
|
2036
|
+
self._spot_v2 = spot_v2
|
|
2037
|
+
|
|
2038
|
+
@property
|
|
2039
|
+
def studio_config(self) -> 'bool':
|
|
2040
|
+
"""Gets the studio_config of this V1UserFeatures. # noqa: E501
|
|
2041
|
+
|
|
2042
|
+
|
|
2043
|
+
:return: The studio_config of this V1UserFeatures. # noqa: E501
|
|
2044
|
+
:rtype: bool
|
|
2045
|
+
"""
|
|
2046
|
+
return self._studio_config
|
|
2047
|
+
|
|
2048
|
+
@studio_config.setter
|
|
2049
|
+
def studio_config(self, studio_config: 'bool'):
|
|
2050
|
+
"""Sets the studio_config of this V1UserFeatures.
|
|
2051
|
+
|
|
2052
|
+
|
|
2053
|
+
:param studio_config: The studio_config of this V1UserFeatures. # noqa: E501
|
|
2054
|
+
:type: bool
|
|
2055
|
+
"""
|
|
2056
|
+
|
|
2057
|
+
self._studio_config = studio_config
|
|
2058
|
+
|
|
2059
|
+
@property
|
|
2060
|
+
def studio_on_stop(self) -> 'bool':
|
|
2061
|
+
"""Gets the studio_on_stop of this V1UserFeatures. # noqa: E501
|
|
2062
|
+
|
|
2063
|
+
|
|
2064
|
+
:return: The studio_on_stop of this V1UserFeatures. # noqa: E501
|
|
2065
|
+
:rtype: bool
|
|
2066
|
+
"""
|
|
2067
|
+
return self._studio_on_stop
|
|
2068
|
+
|
|
2069
|
+
@studio_on_stop.setter
|
|
2070
|
+
def studio_on_stop(self, studio_on_stop: 'bool'):
|
|
2071
|
+
"""Sets the studio_on_stop of this V1UserFeatures.
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
:param studio_on_stop: The studio_on_stop of this V1UserFeatures. # noqa: E501
|
|
2075
|
+
:type: bool
|
|
2076
|
+
"""
|
|
2077
|
+
|
|
2078
|
+
self._studio_on_stop = studio_on_stop
|
|
2079
|
+
|
|
2080
|
+
@property
|
|
2081
|
+
def studio_version_visibility(self) -> 'bool':
|
|
2082
|
+
"""Gets the studio_version_visibility of this V1UserFeatures. # noqa: E501
|
|
2083
|
+
|
|
2084
|
+
|
|
2085
|
+
:return: The studio_version_visibility of this V1UserFeatures. # noqa: E501
|
|
2086
|
+
:rtype: bool
|
|
2087
|
+
"""
|
|
2088
|
+
return self._studio_version_visibility
|
|
2089
|
+
|
|
2090
|
+
@studio_version_visibility.setter
|
|
2091
|
+
def studio_version_visibility(self, studio_version_visibility: 'bool'):
|
|
2092
|
+
"""Sets the studio_version_visibility of this V1UserFeatures.
|
|
2093
|
+
|
|
2094
|
+
|
|
2095
|
+
:param studio_version_visibility: The studio_version_visibility of this V1UserFeatures. # noqa: E501
|
|
2096
|
+
:type: bool
|
|
2097
|
+
"""
|
|
2098
|
+
|
|
2099
|
+
self._studio_version_visibility = studio_version_visibility
|
|
2100
|
+
|
|
2101
|
+
@property
|
|
2102
|
+
def teamspace_storage_tab(self) -> 'bool':
|
|
2103
|
+
"""Gets the teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2104
|
+
|
|
2105
|
+
|
|
2106
|
+
:return: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2107
|
+
:rtype: bool
|
|
2108
|
+
"""
|
|
2109
|
+
return self._teamspace_storage_tab
|
|
2110
|
+
|
|
2111
|
+
@teamspace_storage_tab.setter
|
|
2112
|
+
def teamspace_storage_tab(self, teamspace_storage_tab: 'bool'):
|
|
2113
|
+
"""Sets the teamspace_storage_tab of this V1UserFeatures.
|
|
2114
|
+
|
|
2115
|
+
|
|
2116
|
+
:param teamspace_storage_tab: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2117
|
+
:type: bool
|
|
2118
|
+
"""
|
|
2119
|
+
|
|
2120
|
+
self._teamspace_storage_tab = teamspace_storage_tab
|
|
2121
|
+
|
|
2122
|
+
@property
|
|
2123
|
+
def trainium2(self) -> 'bool':
|
|
2124
|
+
"""Gets the trainium2 of this V1UserFeatures. # noqa: E501
|
|
2125
|
+
|
|
2126
|
+
|
|
2127
|
+
:return: The trainium2 of this V1UserFeatures. # noqa: E501
|
|
2128
|
+
:rtype: bool
|
|
2129
|
+
"""
|
|
2130
|
+
return self._trainium2
|
|
2131
|
+
|
|
2132
|
+
@trainium2.setter
|
|
2133
|
+
def trainium2(self, trainium2: 'bool'):
|
|
2134
|
+
"""Sets the trainium2 of this V1UserFeatures.
|
|
2135
|
+
|
|
2136
|
+
|
|
2137
|
+
:param trainium2: The trainium2 of this V1UserFeatures. # noqa: E501
|
|
2138
|
+
:type: bool
|
|
2139
|
+
"""
|
|
2140
|
+
|
|
2141
|
+
self._trainium2 = trainium2
|
|
2142
|
+
|
|
2143
|
+
@property
|
|
2144
|
+
def use_rclone_mounts_only(self) -> 'bool':
|
|
2145
|
+
"""Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
1444
2146
|
|
|
1445
2147
|
|
|
1446
|
-
:return: The
|
|
2148
|
+
:return: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
1447
2149
|
:rtype: bool
|
|
1448
2150
|
"""
|
|
1449
|
-
return self.
|
|
2151
|
+
return self._use_rclone_mounts_only
|
|
1450
2152
|
|
|
1451
|
-
@
|
|
1452
|
-
def
|
|
1453
|
-
"""Sets the
|
|
2153
|
+
@use_rclone_mounts_only.setter
|
|
2154
|
+
def use_rclone_mounts_only(self, use_rclone_mounts_only: 'bool'):
|
|
2155
|
+
"""Sets the use_rclone_mounts_only of this V1UserFeatures.
|
|
1454
2156
|
|
|
1455
2157
|
|
|
1456
|
-
:param
|
|
2158
|
+
:param use_rclone_mounts_only: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
1457
2159
|
:type: bool
|
|
1458
2160
|
"""
|
|
1459
2161
|
|
|
1460
|
-
self.
|
|
2162
|
+
self._use_rclone_mounts_only = use_rclone_mounts_only
|
|
1461
2163
|
|
|
1462
2164
|
@property
|
|
1463
2165
|
def writable_data_connections(self) -> 'bool':
|