lightning-sdk 0.1.3__py3-none-any.whl → 0.1.46__py3-none-any.whl

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