lightning-sdk 2025.8.6rc2__py3-none-any.whl → 2025.11.5__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 (330) hide show
  1. lightning_sdk/__init__.py +13 -7
  2. lightning_sdk/__version__.py +3 -0
  3. lightning_sdk/agents.py +2 -1
  4. lightning_sdk/ai_hub.py +2 -1
  5. lightning_sdk/api/__init__.py +2 -0
  6. lightning_sdk/api/base_studio_api.py +13 -9
  7. lightning_sdk/api/cloud_account_api.py +31 -10
  8. lightning_sdk/api/deployment_api.py +27 -1
  9. lightning_sdk/api/job_api.py +16 -12
  10. lightning_sdk/api/license_api.py +26 -59
  11. lightning_sdk/api/llm_api.py +25 -2
  12. lightning_sdk/api/mmt_api.py +5 -2
  13. lightning_sdk/api/studio_api.py +252 -55
  14. lightning_sdk/api/teamspace_api.py +106 -30
  15. lightning_sdk/api/user_api.py +56 -2
  16. lightning_sdk/api/utils.py +108 -18
  17. lightning_sdk/base_studio.py +51 -27
  18. lightning_sdk/cli/__init__.py +1 -0
  19. lightning_sdk/cli/base_studio/__init__.py +10 -0
  20. lightning_sdk/cli/base_studio/list.py +43 -0
  21. lightning_sdk/cli/config/__init__.py +14 -0
  22. lightning_sdk/cli/config/get.py +57 -0
  23. lightning_sdk/cli/config/set.py +92 -0
  24. lightning_sdk/cli/config/show.py +9 -0
  25. lightning_sdk/cli/entrypoint.py +71 -71
  26. lightning_sdk/cli/groups.py +56 -0
  27. lightning_sdk/cli/job/__init__.py +7 -0
  28. lightning_sdk/cli/{clusters_menu.py → legacy/clusters_menu.py} +9 -6
  29. lightning_sdk/cli/{configure.py → legacy/configure.py} +2 -2
  30. lightning_sdk/cli/{connect.py → legacy/connect.py} +2 -2
  31. lightning_sdk/cli/{create.py → legacy/create.py} +12 -14
  32. lightning_sdk/cli/{delete.py → legacy/delete.py} +5 -5
  33. lightning_sdk/cli/legacy/deploy/__init__.py +0 -0
  34. lightning_sdk/cli/{deploy → legacy/deploy}/_auth.py +5 -6
  35. lightning_sdk/cli/{deploy → legacy/deploy}/devbox.py +8 -2
  36. lightning_sdk/cli/{deploy → legacy/deploy}/serve.py +19 -8
  37. lightning_sdk/cli/{download.py → legacy/download.py} +14 -15
  38. lightning_sdk/cli/legacy/entrypoint.py +110 -0
  39. lightning_sdk/cli/{generate.py → legacy/generate.py} +1 -1
  40. lightning_sdk/cli/{inspection.py → legacy/inspection.py} +1 -1
  41. lightning_sdk/cli/{job_and_mmt_action.py → legacy/job_and_mmt_action.py} +6 -6
  42. lightning_sdk/cli/{jobs_menu.py → legacy/jobs_menu.py} +1 -1
  43. lightning_sdk/cli/{list.py → legacy/list.py} +12 -13
  44. lightning_sdk/cli/{mmts_menu.py → legacy/mmts_menu.py} +1 -1
  45. lightning_sdk/cli/{open.py → legacy/open.py} +4 -4
  46. lightning_sdk/cli/{start.py → legacy/start.py} +1 -0
  47. lightning_sdk/cli/{stop.py → legacy/stop.py} +1 -1
  48. lightning_sdk/cli/{switch.py → legacy/switch.py} +1 -0
  49. lightning_sdk/cli/{teamspace_menu.py → legacy/teamspace_menu.py} +1 -1
  50. lightning_sdk/cli/{upload.py → legacy/upload.py} +7 -8
  51. lightning_sdk/cli/license/__init__.py +14 -0
  52. lightning_sdk/cli/license/get.py +15 -0
  53. lightning_sdk/cli/license/list.py +45 -0
  54. lightning_sdk/cli/license/set.py +13 -0
  55. lightning_sdk/cli/mmt/__init__.py +7 -0
  56. lightning_sdk/cli/studio/__init__.py +24 -0
  57. lightning_sdk/cli/studio/connect.py +139 -0
  58. lightning_sdk/cli/studio/create.py +96 -0
  59. lightning_sdk/cli/studio/delete.py +49 -0
  60. lightning_sdk/cli/studio/list.py +85 -0
  61. lightning_sdk/cli/studio/ssh.py +64 -0
  62. lightning_sdk/cli/studio/start.py +115 -0
  63. lightning_sdk/cli/studio/stop.py +45 -0
  64. lightning_sdk/cli/studio/switch.py +66 -0
  65. lightning_sdk/cli/utils/__init__.py +7 -0
  66. lightning_sdk/cli/utils/cloud_account_map.py +10 -0
  67. lightning_sdk/cli/utils/get_base_studio.py +24 -0
  68. lightning_sdk/cli/utils/handle_machine_and_gpus_args.py +69 -0
  69. lightning_sdk/cli/utils/logging.py +122 -0
  70. lightning_sdk/cli/utils/owner_selection.py +110 -0
  71. lightning_sdk/cli/utils/resolve.py +28 -0
  72. lightning_sdk/cli/utils/richt_print.py +35 -0
  73. lightning_sdk/cli/utils/save_to_config.py +27 -0
  74. lightning_sdk/cli/utils/ssh_connection.py +59 -0
  75. lightning_sdk/cli/utils/studio_selection.py +113 -0
  76. lightning_sdk/cli/utils/teamspace_selection.py +125 -0
  77. lightning_sdk/cli/vm/__init__.py +20 -0
  78. lightning_sdk/cli/vm/create.py +33 -0
  79. lightning_sdk/cli/vm/delete.py +25 -0
  80. lightning_sdk/cli/vm/list.py +30 -0
  81. lightning_sdk/cli/vm/ssh.py +31 -0
  82. lightning_sdk/cli/vm/start.py +60 -0
  83. lightning_sdk/cli/vm/stop.py +25 -0
  84. lightning_sdk/cli/vm/switch.py +38 -0
  85. lightning_sdk/constants.py +1 -0
  86. lightning_sdk/deployment/__init__.py +2 -0
  87. lightning_sdk/deployment/deployment.py +17 -2
  88. lightning_sdk/helpers.py +56 -37
  89. lightning_sdk/job/base.py +21 -6
  90. lightning_sdk/job/job.py +13 -0
  91. lightning_sdk/job/v1.py +11 -0
  92. lightning_sdk/job/v2.py +12 -0
  93. lightning_sdk/lightning_cloud/login.py +320 -10
  94. lightning_sdk/lightning_cloud/openapi/__init__.py +113 -3
  95. lightning_sdk/lightning_cloud/openapi/api/__init__.py +3 -0
  96. lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +713 -75
  97. lightning_sdk/lightning_cloud/openapi/api/auth_service_api.py +376 -0
  98. lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +191 -1
  99. lightning_sdk/lightning_cloud/openapi/api/cloud_space_environment_template_service_api.py +5 -1
  100. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +420 -0
  101. lightning_sdk/lightning_cloud/openapi/api/cloudy_service_api.py +0 -97
  102. lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +420 -0
  103. lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +101 -0
  104. lightning_sdk/lightning_cloud/openapi/api/incidents_service_api.py +1058 -0
  105. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +121 -0
  106. lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +1742 -94
  107. lightning_sdk/lightning_cloud/openapi/api/markets_service_api.py +145 -0
  108. lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +4 -4
  109. lightning_sdk/lightning_cloud/openapi/api/product_license_service_api.py +108 -108
  110. lightning_sdk/lightning_cloud/openapi/api/projects_service_api.py +105 -0
  111. lightning_sdk/lightning_cloud/openapi/api/schedules_service_api.py +347 -0
  112. lightning_sdk/lightning_cloud/openapi/api/sdk_command_history_service_api.py +141 -0
  113. lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +761 -1
  114. lightning_sdk/lightning_cloud/openapi/configuration.py +3 -19
  115. lightning_sdk/lightning_cloud/openapi/models/__init__.py +110 -3
  116. lightning_sdk/lightning_cloud/openapi/models/assistant_id_conversations_body.py +15 -15
  117. lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_visibility_body.py +27 -1
  118. lightning_sdk/lightning_cloud/openapi/models/cluster_id_kubernetestemplates_body.py +201 -0
  119. lightning_sdk/lightning_cloud/openapi/models/cluster_id_metrics_body.py +131 -1
  120. lightning_sdk/lightning_cloud/openapi/models/create.py +27 -1
  121. lightning_sdk/lightning_cloud/openapi/models/create_machine_request_represents_the_request_to_create_a_machine.py +461 -0
  122. lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +27 -1
  123. lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +105 -1
  124. lightning_sdk/lightning_cloud/openapi/models/externalv1_user_status.py +27 -1
  125. lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +3 -81
  126. lightning_sdk/lightning_cloud/openapi/models/id_fork_body1.py +27 -1
  127. lightning_sdk/lightning_cloud/openapi/models/id_render_body.py +123 -0
  128. lightning_sdk/lightning_cloud/openapi/models/id_sleepconfig_body.py +175 -0
  129. lightning_sdk/lightning_cloud/openapi/models/id_transfer_body.py +53 -1
  130. lightning_sdk/lightning_cloud/openapi/models/incident_id_messages_body.py +123 -0
  131. lightning_sdk/lightning_cloud/openapi/models/incidents_id_body.py +279 -0
  132. lightning_sdk/lightning_cloud/openapi/models/job_id_reportroutingtelemetry_body.py +123 -0
  133. lightning_sdk/lightning_cloud/openapi/models/kubernetestemplates_id_body.py +201 -0
  134. lightning_sdk/lightning_cloud/openapi/models/license_key_validate_body.py +123 -0
  135. lightning_sdk/lightning_cloud/openapi/models/message_id_actions_body.py +201 -0
  136. lightning_sdk/lightning_cloud/openapi/models/messages_message_id_body.py +123 -0
  137. lightning_sdk/lightning_cloud/openapi/models/metricsstream_create_body.py +27 -1
  138. lightning_sdk/lightning_cloud/openapi/models/models_model_id_body.py +109 -31
  139. lightning_sdk/lightning_cloud/openapi/models/models_model_id_body1.py +149 -0
  140. lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +53 -1
  141. lightning_sdk/lightning_cloud/openapi/models/project_id_storage_body.py +27 -1
  142. lightning_sdk/lightning_cloud/openapi/models/project_id_storagetransfers_body.py +175 -0
  143. lightning_sdk/lightning_cloud/openapi/models/project_tab_management_messages.py +123 -0
  144. lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +79 -1
  145. lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py +41 -15
  146. lightning_sdk/lightning_cloud/openapi/models/storagetransfers_validate_body.py +149 -0
  147. lightning_sdk/lightning_cloud/openapi/models/update1.py +27 -1
  148. lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py +27 -1
  149. lightning_sdk/lightning_cloud/openapi/models/user_id_affiliatelinks_body.py +107 -3
  150. lightning_sdk/lightning_cloud/openapi/models/v1_abort_storage_transfer_response.py +97 -0
  151. lightning_sdk/lightning_cloud/openapi/models/v1_aggregated_pod_metrics.py +799 -0
  152. lightning_sdk/lightning_cloud/openapi/models/v1_ai_pod_v1.py +53 -1
  153. lightning_sdk/lightning_cloud/openapi/models/v1_assistant_session_daily_aggregated.py +27 -1
  154. lightning_sdk/lightning_cloud/openapi/models/v1_billing_tier.py +0 -1
  155. lightning_sdk/lightning_cloud/openapi/models/v1_cancel_running_cloud_space_instance_transfer_response.py +97 -0
  156. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_provider.py +2 -0
  157. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +27 -1
  158. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_specialized_view.py +1 -0
  159. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_transfer_metadata.py +147 -17
  160. lightning_sdk/lightning_cloud/openapi/models/v1_cloudflare_v1.py +3 -29
  161. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +53 -1
  162. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +27 -1
  163. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_metrics.py +1527 -0
  164. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +27 -1
  165. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +53 -1
  166. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_type.py +1 -0
  167. lightning_sdk/lightning_cloud/openapi/models/v1_container_metrics.py +21 -21
  168. lightning_sdk/lightning_cloud/openapi/models/v1_create_incident_request.py +305 -0
  169. lightning_sdk/lightning_cloud/openapi/models/v1_create_license_request.py +175 -0
  170. lightning_sdk/lightning_cloud/openapi/models/v1_create_machine_response.py +123 -0
  171. lightning_sdk/lightning_cloud/openapi/models/v1_create_model_metrics_response.py +97 -0
  172. lightning_sdk/lightning_cloud/openapi/models/v1_create_project_request.py +79 -1
  173. lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_request.py +253 -0
  174. lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_response.py +97 -0
  175. lightning_sdk/lightning_cloud/openapi/models/v1_daily_model_metrics.py +149 -0
  176. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +53 -1
  177. lightning_sdk/lightning_cloud/openapi/models/v1_delete_incident_message_response.py +97 -0
  178. lightning_sdk/lightning_cloud/openapi/models/v1_delete_incident_response.py +97 -0
  179. lightning_sdk/lightning_cloud/openapi/models/v1_delete_kubernetes_template_response.py +97 -0
  180. lightning_sdk/lightning_cloud/openapi/models/v1_delete_license_response.py +97 -0
  181. lightning_sdk/lightning_cloud/openapi/models/v1_delete_machine_response.py +97 -0
  182. lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +27 -1
  183. lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +53 -1
  184. lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +27 -1
  185. lightning_sdk/lightning_cloud/openapi/models/v1_filestore_data_connection.py +27 -1
  186. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_metric.py +201 -0
  187. lightning_sdk/lightning_cloud/openapi/models/v1_firewall_rule.py +175 -0
  188. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_required_balance_status_response.py +149 -0
  189. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_transfer_estimate_response.py +149 -0
  190. lightning_sdk/lightning_cloud/openapi/models/v1_get_latest_model_metrics_response.py +123 -0
  191. lightning_sdk/lightning_cloud/openapi/models/v1_get_machine_response.py +123 -0
  192. lightning_sdk/lightning_cloud/openapi/models/v1_get_market_pricing_response.py +201 -0
  193. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_metrics_response.py +123 -0
  194. lightning_sdk/lightning_cloud/openapi/models/v1_get_temp_bucket_credentials_response.py +201 -0
  195. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +41 -15
  196. lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +27 -1
  197. lightning_sdk/lightning_cloud/openapi/models/v1_group_node_metrics.py +1215 -0
  198. lightning_sdk/lightning_cloud/openapi/models/v1_group_pod_metrics.py +1241 -0
  199. lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_request.py +177 -0
  200. lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_response.py +149 -0
  201. lightning_sdk/lightning_cloud/openapi/models/v1_guest_user.py +201 -0
  202. lightning_sdk/lightning_cloud/openapi/models/v1_incident.py +565 -0
  203. lightning_sdk/lightning_cloud/openapi/models/v1_incident_detail.py +149 -0
  204. lightning_sdk/lightning_cloud/openapi/models/v1_incident_event.py +591 -0
  205. lightning_sdk/lightning_cloud/openapi/models/v1_incident_message.py +253 -0
  206. lightning_sdk/lightning_cloud/openapi/models/v1_incident_severity.py +105 -0
  207. lightning_sdk/lightning_cloud/openapi/models/v1_incident_type.py +108 -0
  208. lightning_sdk/lightning_cloud/openapi/models/v1_job.py +53 -1
  209. lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +27 -1
  210. lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_indexes.py +149 -0
  211. lightning_sdk/lightning_cloud/openapi/models/v1_kai_scheduler_queue_metrics.py +627 -0
  212. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_aws_config.py +279 -0
  213. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_settings_v1.py +253 -0
  214. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +107 -3
  215. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template.py +357 -0
  216. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template_property.py +227 -0
  217. lightning_sdk/lightning_cloud/openapi/models/v1_lambda_labs_direct_v1.py +29 -3
  218. lightning_sdk/lightning_cloud/openapi/models/v1_license.py +227 -0
  219. lightning_sdk/lightning_cloud/openapi/models/v1_lightning_elastic_cluster_v1.py +97 -0
  220. lightning_sdk/lightning_cloud/openapi/models/v1_list_aggregated_pod_metrics_response.py +123 -0
  221. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_metric_timestamps_response.py +123 -0
  222. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_metrics_response.py +123 -0
  223. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_namespace_metrics_response.py +123 -0
  224. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_namespace_user_metrics_response.py +123 -0
  225. lightning_sdk/lightning_cloud/openapi/models/v1_list_conversation_message_actions_response.py +123 -0
  226. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_metrics_response.py +123 -0
  227. lightning_sdk/lightning_cloud/openapi/models/v1_list_group_pod_metrics_response.py +123 -0
  228. lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_events_response.py +123 -0
  229. lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_messages_response.py +149 -0
  230. lightning_sdk/lightning_cloud/openapi/models/v1_list_incidents_response.py +149 -0
  231. lightning_sdk/lightning_cloud/openapi/models/v1_list_kai_scheduler_queues_metrics_response.py +123 -0
  232. lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_templates_response.py +123 -0
  233. lightning_sdk/lightning_cloud/openapi/models/{v1_list_product_licenses_response.py → v1_list_license_response.py} +16 -16
  234. lightning_sdk/lightning_cloud/openapi/models/v1_list_machines_response.py +149 -0
  235. lightning_sdk/lightning_cloud/openapi/models/v1_list_platform_notifications_response.py +123 -0
  236. lightning_sdk/lightning_cloud/openapi/models/v1_list_schedule_runs_response.py +123 -0
  237. lightning_sdk/lightning_cloud/openapi/models/v1_list_storage_transfers_response.py +123 -0
  238. lightning_sdk/lightning_cloud/openapi/models/v1_lustre_data_connection.py +149 -0
  239. lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +617 -0
  240. lightning_sdk/lightning_cloud/openapi/models/v1_machine_direct_v1.py +123 -0
  241. lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_request.py +1 -27
  242. lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_response.py +27 -1
  243. lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +29 -3
  244. lightning_sdk/lightning_cloud/openapi/models/v1_market_price.py +149 -0
  245. lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +53 -1
  246. lightning_sdk/lightning_cloud/openapi/models/v1_message_action.py +279 -0
  247. lightning_sdk/lightning_cloud/openapi/models/v1_metrics_stream.py +27 -1
  248. lightning_sdk/lightning_cloud/openapi/models/v1_model_metrics.py +175 -0
  249. lightning_sdk/lightning_cloud/openapi/models/v1_namespace_metrics.py +591 -0
  250. lightning_sdk/lightning_cloud/openapi/models/v1_namespace_user_metrics.py +435 -0
  251. lightning_sdk/lightning_cloud/openapi/models/v1_nebius_direct_v1.py +29 -3
  252. lightning_sdk/lightning_cloud/openapi/models/v1_node_metrics.py +361 -23
  253. lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +1 -0
  254. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +53 -1
  255. lightning_sdk/lightning_cloud/openapi/models/v1_pause_storage_transfer_response.py +97 -0
  256. lightning_sdk/lightning_cloud/openapi/models/v1_platform_notification.py +279 -0
  257. lightning_sdk/lightning_cloud/openapi/models/v1_pod_metrics.py +335 -23
  258. lightning_sdk/lightning_cloud/openapi/models/v1_project.py +27 -1
  259. lightning_sdk/lightning_cloud/openapi/models/v1_project_cluster_binding.py +27 -1
  260. lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +53 -1
  261. lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +53 -1
  262. lightning_sdk/lightning_cloud/openapi/models/v1_project_tab.py +149 -0
  263. lightning_sdk/lightning_cloud/openapi/models/{v1_product_license_check_response.py → v1_purchase_annual_upsell_request.py} +23 -23
  264. lightning_sdk/lightning_cloud/openapi/models/v1_purchase_annual_upsell_response.py +123 -0
  265. lightning_sdk/lightning_cloud/openapi/models/v1_quote_annual_upsell_response.py +227 -0
  266. lightning_sdk/lightning_cloud/openapi/models/v1_render_kubernetes_template_response.py +123 -0
  267. lightning_sdk/lightning_cloud/openapi/models/v1_report_deployment_routing_telemetry_response.py +97 -0
  268. lightning_sdk/lightning_cloud/openapi/models/v1_required_balance_reason.py +107 -0
  269. lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_request.py +97 -0
  270. lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_response.py +123 -0
  271. lightning_sdk/lightning_cloud/openapi/models/v1_resource_visibility.py +1 -27
  272. lightning_sdk/lightning_cloud/openapi/models/v1_resume_storage_transfer_response.py +97 -0
  273. lightning_sdk/lightning_cloud/openapi/models/v1_routing_telemetry.py +79 -1
  274. lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +1 -0
  275. lightning_sdk/lightning_cloud/openapi/models/v1_schedule_run.py +357 -0
  276. lightning_sdk/lightning_cloud/openapi/models/v1_sdk_command_history_severity.py +104 -0
  277. lightning_sdk/lightning_cloud/openapi/models/v1_sdk_command_history_type.py +104 -0
  278. lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +1 -0
  279. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_type.py +1 -0
  280. lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier.py +201 -0
  281. lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier_type.py +105 -0
  282. lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +133 -3
  283. lightning_sdk/lightning_cloud/openapi/models/v1_storage_transfer.py +435 -0
  284. lightning_sdk/lightning_cloud/openapi/models/v1_storage_transfer_status.py +108 -0
  285. lightning_sdk/lightning_cloud/openapi/models/v1_token_login_request.py +123 -0
  286. lightning_sdk/lightning_cloud/openapi/models/v1_token_login_response.py +123 -0
  287. lightning_sdk/lightning_cloud/openapi/models/v1_token_owner_type.py +104 -0
  288. lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_instance_config_request.py +3 -81
  289. lightning_sdk/lightning_cloud/openapi/models/v1_update_project_tab_order_response.py +123 -0
  290. lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +41 -15
  291. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +444 -600
  292. lightning_sdk/lightning_cloud/openapi/models/v1_validate_license_response.py +123 -0
  293. lightning_sdk/lightning_cloud/openapi/models/v1_validate_storage_transfer_response.py +123 -0
  294. lightning_sdk/lightning_cloud/openapi/models/v1_voltage_park_direct_v1.py +29 -3
  295. lightning_sdk/lightning_cloud/rest_client.py +48 -45
  296. lightning_sdk/lightning_cloud/utils/data_connection.py +51 -1
  297. lightning_sdk/llm/llm.py +175 -56
  298. lightning_sdk/llm/public_assistants.py +44 -7
  299. lightning_sdk/machine.py +21 -2
  300. lightning_sdk/mmt/base.py +7 -0
  301. lightning_sdk/mmt/mmt.py +11 -3
  302. lightning_sdk/mmt/v1.py +3 -1
  303. lightning_sdk/mmt/v2.py +4 -0
  304. lightning_sdk/owner.py +2 -1
  305. lightning_sdk/pipeline/steps.py +6 -0
  306. lightning_sdk/plugin.py +6 -1
  307. lightning_sdk/studio.py +294 -53
  308. lightning_sdk/teamspace.py +167 -7
  309. lightning_sdk/user.py +19 -1
  310. lightning_sdk/utils/config.py +179 -0
  311. lightning_sdk/utils/license.py +13 -0
  312. lightning_sdk/utils/logging.py +79 -0
  313. lightning_sdk/utils/names.py +1179 -0
  314. lightning_sdk/utils/progress.py +283 -0
  315. lightning_sdk/utils/resolve.py +82 -7
  316. {lightning_sdk-2025.8.6rc2.dist-info → lightning_sdk-2025.11.5.dist-info}/METADATA +2 -1
  317. {lightning_sdk-2025.8.6rc2.dist-info → lightning_sdk-2025.11.5.dist-info}/RECORD +328 -169
  318. {lightning_sdk-2025.8.6rc2.dist-info → lightning_sdk-2025.11.5.dist-info}/entry_points.txt +1 -0
  319. lightning_sdk/lightning_cloud/openapi/models/v1_product_license.py +0 -435
  320. lightning_sdk/services/license.py +0 -363
  321. /lightning_sdk/cli/{deploy → legacy}/__init__.py +0 -0
  322. /lightning_sdk/cli/{ai_hub.py → legacy/ai_hub.py} +0 -0
  323. /lightning_sdk/cli/{docker_cli.py → legacy/docker_cli.py} +0 -0
  324. /lightning_sdk/cli/{exceptions.py → legacy/exceptions.py} +0 -0
  325. /lightning_sdk/cli/{run.py → legacy/run.py} +0 -0
  326. /lightning_sdk/cli/{studios_menu.py → legacy/studios_menu.py} +0 -0
  327. /lightning_sdk/cli/{coloring.py → utils/coloring.py} +0 -0
  328. {lightning_sdk-2025.8.6rc2.dist-info → lightning_sdk-2025.11.5.dist-info}/LICENSE +0 -0
  329. {lightning_sdk-2025.8.6rc2.dist-info → lightning_sdk-2025.11.5.dist-info}/WHEEL +0 -0
  330. {lightning_sdk-2025.8.6rc2.dist-info → lightning_sdk-2025.11.5.dist-info}/top_level.txt +0 -0
@@ -41,13 +41,10 @@ class V1UserFeatures(object):
41
41
  and the value is json key in definition.
42
42
  """
43
43
  swagger_types = {
44
- 'academic_tier': 'bool',
45
- 'add_data_v2': 'bool',
46
44
  'affiliate_links': 'bool',
47
45
  'agents_v2': 'bool',
48
46
  'ai_hub_monetization': 'bool',
49
47
  'auto_fast_load': 'bool',
50
- 'auto_join_orgs': 'bool',
51
48
  'b2c_experience': 'bool',
52
49
  'byo_machine_type': 'bool',
53
50
  'cap_add': 'list[str]',
@@ -60,28 +57,36 @@ class V1UserFeatures(object):
60
57
  'collab_screen_sharing': 'bool',
61
58
  'control_center_monitoring': 'bool',
62
59
  'cost_attribution_settings': 'bool',
63
- 'custom_app_domain': 'bool',
64
60
  'datasets': 'bool',
65
61
  'default_one_cluster': 'bool',
66
- 'deployment_persistent_disk': 'bool',
67
62
  'drive_v2': 'bool',
68
63
  'enterprise_compute_admin': 'bool',
69
- 'f227': 'bool',
70
64
  'f234': 'bool',
71
65
  'f236': 'bool',
72
- 'f237': 'bool',
73
- 'f238': 'bool',
74
- 'f239': 'bool',
75
66
  'f240': 'bool',
76
67
  'f241': 'bool',
77
- 'f242': 'bool',
78
68
  'f243': 'bool',
69
+ 'f245': 'bool',
70
+ 'f247': 'bool',
71
+ 'f250': 'bool',
72
+ 'f252': 'bool',
73
+ 'f253': 'bool',
74
+ 'f254': 'bool',
75
+ 'f258': 'bool',
76
+ 'f259': 'bool',
77
+ 'f261': 'bool',
78
+ 'f262': 'bool',
79
+ 'f265': 'bool',
80
+ 'f266': 'bool',
81
+ 'f268': 'bool',
82
+ 'f269': 'bool',
83
+ 'f270': 'bool',
84
+ 'f271': 'bool',
85
+ 'f272': 'bool',
86
+ 'f273': 'bool',
87
+ 'f274': 'bool',
79
88
  'fair_share': 'bool',
80
89
  'featured_studios_admin': 'bool',
81
- 'gcp_overprovisioning': 'bool',
82
- 'gcs_connections_optimized': 'bool',
83
- 'gcs_folders': 'bool',
84
- 'instant_capacity_reservation': 'bool',
85
90
  'job_artifacts_v2': 'bool',
86
91
  'kubernetes_cluster_ui': 'bool',
87
92
  'kubernetes_clusters': 'bool',
@@ -90,12 +95,8 @@ class V1UserFeatures(object):
90
95
  'marketplace': 'bool',
91
96
  'mmt_fault_tolerance': 'bool',
92
97
  'mmt_strategy_selector': 'bool',
93
- 'model_api_dashboard': 'bool',
94
- 'model_api_dashboard_clickhouse': 'bool',
95
- 'multicloud_folders': 'bool',
96
98
  'multiple_studio_versions': 'bool',
97
99
  'nerf_fs_nonpaying': 'bool',
98
- 'onboarding_v2': 'bool',
99
100
  'org_level_member_permissions': 'bool',
100
101
  'org_usage_limits': 'bool',
101
102
  'persistent_disk': 'bool',
@@ -104,42 +105,32 @@ class V1UserFeatures(object):
104
105
  'plugin_label_studio': 'bool',
105
106
  'plugin_langflow': 'bool',
106
107
  'plugin_python_profiler': 'bool',
107
- 'plugin_service': 'bool',
108
108
  'plugin_sweeps': 'bool',
109
109
  'pricing_updates': 'bool',
110
110
  'product_generator': 'bool',
111
111
  'product_license': 'bool',
112
112
  'project_selector': 'bool',
113
113
  'publish_pipelines': 'bool',
114
- 'r2_data_connections': 'bool',
115
114
  'reserved_machines_tab': 'bool',
116
115
  'restartable_jobs': 'bool',
117
116
  'runnable_public_studio_page': 'bool',
118
117
  'security_docs': 'bool',
119
118
  'show_dev_admin': 'bool',
120
- 'single_wallet': 'bool',
121
119
  'slurm': 'bool',
122
120
  'specialised_studios': 'bool',
123
121
  'storage_overuse_deletion': 'bool',
124
122
  'studio_config': 'bool',
125
- 'studio_sharing_v2': 'bool',
126
123
  'studio_version_visibility': 'bool',
127
- 'trainium2': 'bool',
128
- 'use_internal_data_connection_mounts': 'bool',
129
- 'use_rclone_mounts_only': 'bool',
130
124
  'vultr': 'bool',
131
125
  'weka': 'bool',
132
126
  'writable_s3_connections': 'bool'
133
127
  }
134
128
 
135
129
  attribute_map = {
136
- 'academic_tier': 'academicTier',
137
- 'add_data_v2': 'addDataV2',
138
130
  'affiliate_links': 'affiliateLinks',
139
131
  'agents_v2': 'agentsV2',
140
132
  'ai_hub_monetization': 'aiHubMonetization',
141
133
  'auto_fast_load': 'autoFastLoad',
142
- 'auto_join_orgs': 'autoJoinOrgs',
143
134
  'b2c_experience': 'b2cExperience',
144
135
  'byo_machine_type': 'byoMachineType',
145
136
  'cap_add': 'capAdd',
@@ -152,28 +143,36 @@ class V1UserFeatures(object):
152
143
  'collab_screen_sharing': 'collabScreenSharing',
153
144
  'control_center_monitoring': 'controlCenterMonitoring',
154
145
  'cost_attribution_settings': 'costAttributionSettings',
155
- 'custom_app_domain': 'customAppDomain',
156
146
  'datasets': 'datasets',
157
147
  'default_one_cluster': 'defaultOneCluster',
158
- 'deployment_persistent_disk': 'deploymentPersistentDisk',
159
148
  'drive_v2': 'driveV2',
160
149
  'enterprise_compute_admin': 'enterpriseComputeAdmin',
161
- 'f227': 'f227',
162
150
  'f234': 'f234',
163
151
  'f236': 'f236',
164
- 'f237': 'f237',
165
- 'f238': 'f238',
166
- 'f239': 'f239',
167
152
  'f240': 'f240',
168
153
  'f241': 'f241',
169
- 'f242': 'f242',
170
154
  'f243': 'f243',
155
+ 'f245': 'f245',
156
+ 'f247': 'f247',
157
+ 'f250': 'f250',
158
+ 'f252': 'f252',
159
+ 'f253': 'f253',
160
+ 'f254': 'f254',
161
+ 'f258': 'f258',
162
+ 'f259': 'f259',
163
+ 'f261': 'f261',
164
+ 'f262': 'f262',
165
+ 'f265': 'f265',
166
+ 'f266': 'f266',
167
+ 'f268': 'f268',
168
+ 'f269': 'f269',
169
+ 'f270': 'f270',
170
+ 'f271': 'f271',
171
+ 'f272': 'f272',
172
+ 'f273': 'f273',
173
+ 'f274': 'f274',
171
174
  'fair_share': 'fairShare',
172
175
  'featured_studios_admin': 'featuredStudiosAdmin',
173
- 'gcp_overprovisioning': 'gcpOverprovisioning',
174
- 'gcs_connections_optimized': 'gcsConnectionsOptimized',
175
- 'gcs_folders': 'gcsFolders',
176
- 'instant_capacity_reservation': 'instantCapacityReservation',
177
176
  'job_artifacts_v2': 'jobArtifactsV2',
178
177
  'kubernetes_cluster_ui': 'kubernetesClusterUi',
179
178
  'kubernetes_clusters': 'kubernetesClusters',
@@ -182,12 +181,8 @@ class V1UserFeatures(object):
182
181
  'marketplace': 'marketplace',
183
182
  'mmt_fault_tolerance': 'mmtFaultTolerance',
184
183
  'mmt_strategy_selector': 'mmtStrategySelector',
185
- 'model_api_dashboard': 'modelApiDashboard',
186
- 'model_api_dashboard_clickhouse': 'modelApiDashboardClickhouse',
187
- 'multicloud_folders': 'multicloudFolders',
188
184
  'multiple_studio_versions': 'multipleStudioVersions',
189
185
  'nerf_fs_nonpaying': 'nerfFsNonpaying',
190
- 'onboarding_v2': 'onboardingV2',
191
186
  'org_level_member_permissions': 'orgLevelMemberPermissions',
192
187
  'org_usage_limits': 'orgUsageLimits',
193
188
  'persistent_disk': 'persistentDisk',
@@ -196,43 +191,33 @@ class V1UserFeatures(object):
196
191
  'plugin_label_studio': 'pluginLabelStudio',
197
192
  'plugin_langflow': 'pluginLangflow',
198
193
  'plugin_python_profiler': 'pluginPythonProfiler',
199
- 'plugin_service': 'pluginService',
200
194
  'plugin_sweeps': 'pluginSweeps',
201
195
  'pricing_updates': 'pricingUpdates',
202
196
  'product_generator': 'productGenerator',
203
197
  'product_license': 'productLicense',
204
198
  'project_selector': 'projectSelector',
205
199
  'publish_pipelines': 'publishPipelines',
206
- 'r2_data_connections': 'r2DataConnections',
207
200
  'reserved_machines_tab': 'reservedMachinesTab',
208
201
  'restartable_jobs': 'restartableJobs',
209
202
  'runnable_public_studio_page': 'runnablePublicStudioPage',
210
203
  'security_docs': 'securityDocs',
211
204
  'show_dev_admin': 'showDevAdmin',
212
- 'single_wallet': 'singleWallet',
213
205
  'slurm': 'slurm',
214
206
  'specialised_studios': 'specialisedStudios',
215
207
  'storage_overuse_deletion': 'storageOveruseDeletion',
216
208
  'studio_config': 'studioConfig',
217
- 'studio_sharing_v2': 'studioSharingV2',
218
209
  'studio_version_visibility': 'studioVersionVisibility',
219
- 'trainium2': 'trainium2',
220
- 'use_internal_data_connection_mounts': 'useInternalDataConnectionMounts',
221
- 'use_rclone_mounts_only': 'useRcloneMountsOnly',
222
210
  'vultr': 'vultr',
223
211
  'weka': 'weka',
224
212
  'writable_s3_connections': 'writableS3Connections'
225
213
  }
226
214
 
227
- def __init__(self, academic_tier: 'bool' =None, add_data_v2: '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, byo_machine_type: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloudspace_schedules: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, control_center_monitoring: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_persistent_disk: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f227: 'bool' =None, f234: 'bool' =None, f236: 'bool' =None, f237: 'bool' =None, f238: 'bool' =None, f239: 'bool' =None, f240: 'bool' =None, f241: 'bool' =None, f242: 'bool' =None, f243: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, gcp_overprovisioning: 'bool' =None, gcs_connections_optimized: 'bool' =None, gcs_folders: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, kubernetes_cluster_ui: 'bool' =None, kubernetes_clusters: 'bool' =None, landing_studios: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, model_api_dashboard: 'bool' =None, model_api_dashboard_clickhouse: 'bool' =None, multicloud_folders: 'bool' =None, multiple_studio_versions: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, onboarding_v2: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, persistent_disk: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_service: 'bool' =None, plugin_sweeps: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, product_license: 'bool' =None, project_selector: 'bool' =None, publish_pipelines: 'bool' =None, r2_data_connections: 'bool' =None, reserved_machines_tab: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, single_wallet: 'bool' =None, slurm: 'bool' =None, specialised_studios: 'bool' =None, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_sharing_v2: 'bool' =None, studio_version_visibility: 'bool' =None, trainium2: 'bool' =None, use_internal_data_connection_mounts: 'bool' =None, use_rclone_mounts_only: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None, writable_s3_connections: 'bool' =None): # noqa: E501
215
+ def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, b2c_experience: 'bool' =None, byo_machine_type: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloudspace_schedules: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, control_center_monitoring: 'bool' =None, cost_attribution_settings: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f234: 'bool' =None, f236: 'bool' =None, f240: 'bool' =None, f241: 'bool' =None, f243: 'bool' =None, f245: 'bool' =None, f247: 'bool' =None, f250: 'bool' =None, f252: 'bool' =None, f253: 'bool' =None, f254: 'bool' =None, f258: 'bool' =None, f259: 'bool' =None, f261: 'bool' =None, f262: 'bool' =None, f265: 'bool' =None, f266: 'bool' =None, f268: 'bool' =None, f269: 'bool' =None, f270: 'bool' =None, f271: 'bool' =None, f272: 'bool' =None, f273: 'bool' =None, f274: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, job_artifacts_v2: 'bool' =None, kubernetes_cluster_ui: 'bool' =None, kubernetes_clusters: 'bool' =None, landing_studios: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multiple_studio_versions: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, persistent_disk: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_sweeps: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, product_license: 'bool' =None, project_selector: 'bool' =None, publish_pipelines: 'bool' =None, reserved_machines_tab: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, slurm: 'bool' =None, specialised_studios: 'bool' =None, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_version_visibility: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None, writable_s3_connections: 'bool' =None): # noqa: E501
228
216
  """V1UserFeatures - a model defined in Swagger""" # noqa: E501
229
- self._academic_tier = None
230
- self._add_data_v2 = None
231
217
  self._affiliate_links = None
232
218
  self._agents_v2 = None
233
219
  self._ai_hub_monetization = None
234
220
  self._auto_fast_load = None
235
- self._auto_join_orgs = None
236
221
  self._b2c_experience = None
237
222
  self._byo_machine_type = None
238
223
  self._cap_add = None
@@ -245,28 +230,36 @@ class V1UserFeatures(object):
245
230
  self._collab_screen_sharing = None
246
231
  self._control_center_monitoring = None
247
232
  self._cost_attribution_settings = None
248
- self._custom_app_domain = None
249
233
  self._datasets = None
250
234
  self._default_one_cluster = None
251
- self._deployment_persistent_disk = None
252
235
  self._drive_v2 = None
253
236
  self._enterprise_compute_admin = None
254
- self._f227 = None
255
237
  self._f234 = None
256
238
  self._f236 = None
257
- self._f237 = None
258
- self._f238 = None
259
- self._f239 = None
260
239
  self._f240 = None
261
240
  self._f241 = None
262
- self._f242 = None
263
241
  self._f243 = None
242
+ self._f245 = None
243
+ self._f247 = None
244
+ self._f250 = None
245
+ self._f252 = None
246
+ self._f253 = None
247
+ self._f254 = None
248
+ self._f258 = None
249
+ self._f259 = None
250
+ self._f261 = None
251
+ self._f262 = None
252
+ self._f265 = None
253
+ self._f266 = None
254
+ self._f268 = None
255
+ self._f269 = None
256
+ self._f270 = None
257
+ self._f271 = None
258
+ self._f272 = None
259
+ self._f273 = None
260
+ self._f274 = None
264
261
  self._fair_share = None
265
262
  self._featured_studios_admin = None
266
- self._gcp_overprovisioning = None
267
- self._gcs_connections_optimized = None
268
- self._gcs_folders = None
269
- self._instant_capacity_reservation = None
270
263
  self._job_artifacts_v2 = None
271
264
  self._kubernetes_cluster_ui = None
272
265
  self._kubernetes_clusters = None
@@ -275,12 +268,8 @@ class V1UserFeatures(object):
275
268
  self._marketplace = None
276
269
  self._mmt_fault_tolerance = None
277
270
  self._mmt_strategy_selector = None
278
- self._model_api_dashboard = None
279
- self._model_api_dashboard_clickhouse = None
280
- self._multicloud_folders = None
281
271
  self._multiple_studio_versions = None
282
272
  self._nerf_fs_nonpaying = None
283
- self._onboarding_v2 = None
284
273
  self._org_level_member_permissions = None
285
274
  self._org_usage_limits = None
286
275
  self._persistent_disk = None
@@ -289,37 +278,26 @@ class V1UserFeatures(object):
289
278
  self._plugin_label_studio = None
290
279
  self._plugin_langflow = None
291
280
  self._plugin_python_profiler = None
292
- self._plugin_service = None
293
281
  self._plugin_sweeps = None
294
282
  self._pricing_updates = None
295
283
  self._product_generator = None
296
284
  self._product_license = None
297
285
  self._project_selector = None
298
286
  self._publish_pipelines = None
299
- self._r2_data_connections = None
300
287
  self._reserved_machines_tab = None
301
288
  self._restartable_jobs = None
302
289
  self._runnable_public_studio_page = None
303
290
  self._security_docs = None
304
291
  self._show_dev_admin = None
305
- self._single_wallet = None
306
292
  self._slurm = None
307
293
  self._specialised_studios = None
308
294
  self._storage_overuse_deletion = None
309
295
  self._studio_config = None
310
- self._studio_sharing_v2 = None
311
296
  self._studio_version_visibility = None
312
- self._trainium2 = None
313
- self._use_internal_data_connection_mounts = None
314
- self._use_rclone_mounts_only = None
315
297
  self._vultr = None
316
298
  self._weka = None
317
299
  self._writable_s3_connections = None
318
300
  self.discriminator = None
319
- if academic_tier is not None:
320
- self.academic_tier = academic_tier
321
- if add_data_v2 is not None:
322
- self.add_data_v2 = add_data_v2
323
301
  if affiliate_links is not None:
324
302
  self.affiliate_links = affiliate_links
325
303
  if agents_v2 is not None:
@@ -328,8 +306,6 @@ class V1UserFeatures(object):
328
306
  self.ai_hub_monetization = ai_hub_monetization
329
307
  if auto_fast_load is not None:
330
308
  self.auto_fast_load = auto_fast_load
331
- if auto_join_orgs is not None:
332
- self.auto_join_orgs = auto_join_orgs
333
309
  if b2c_experience is not None:
334
310
  self.b2c_experience = b2c_experience
335
311
  if byo_machine_type is not None:
@@ -354,50 +330,66 @@ class V1UserFeatures(object):
354
330
  self.control_center_monitoring = control_center_monitoring
355
331
  if cost_attribution_settings is not None:
356
332
  self.cost_attribution_settings = cost_attribution_settings
357
- if custom_app_domain is not None:
358
- self.custom_app_domain = custom_app_domain
359
333
  if datasets is not None:
360
334
  self.datasets = datasets
361
335
  if default_one_cluster is not None:
362
336
  self.default_one_cluster = default_one_cluster
363
- if deployment_persistent_disk is not None:
364
- self.deployment_persistent_disk = deployment_persistent_disk
365
337
  if drive_v2 is not None:
366
338
  self.drive_v2 = drive_v2
367
339
  if enterprise_compute_admin is not None:
368
340
  self.enterprise_compute_admin = enterprise_compute_admin
369
- if f227 is not None:
370
- self.f227 = f227
371
341
  if f234 is not None:
372
342
  self.f234 = f234
373
343
  if f236 is not None:
374
344
  self.f236 = f236
375
- if f237 is not None:
376
- self.f237 = f237
377
- if f238 is not None:
378
- self.f238 = f238
379
- if f239 is not None:
380
- self.f239 = f239
381
345
  if f240 is not None:
382
346
  self.f240 = f240
383
347
  if f241 is not None:
384
348
  self.f241 = f241
385
- if f242 is not None:
386
- self.f242 = f242
387
349
  if f243 is not None:
388
350
  self.f243 = f243
351
+ if f245 is not None:
352
+ self.f245 = f245
353
+ if f247 is not None:
354
+ self.f247 = f247
355
+ if f250 is not None:
356
+ self.f250 = f250
357
+ if f252 is not None:
358
+ self.f252 = f252
359
+ if f253 is not None:
360
+ self.f253 = f253
361
+ if f254 is not None:
362
+ self.f254 = f254
363
+ if f258 is not None:
364
+ self.f258 = f258
365
+ if f259 is not None:
366
+ self.f259 = f259
367
+ if f261 is not None:
368
+ self.f261 = f261
369
+ if f262 is not None:
370
+ self.f262 = f262
371
+ if f265 is not None:
372
+ self.f265 = f265
373
+ if f266 is not None:
374
+ self.f266 = f266
375
+ if f268 is not None:
376
+ self.f268 = f268
377
+ if f269 is not None:
378
+ self.f269 = f269
379
+ if f270 is not None:
380
+ self.f270 = f270
381
+ if f271 is not None:
382
+ self.f271 = f271
383
+ if f272 is not None:
384
+ self.f272 = f272
385
+ if f273 is not None:
386
+ self.f273 = f273
387
+ if f274 is not None:
388
+ self.f274 = f274
389
389
  if fair_share is not None:
390
390
  self.fair_share = fair_share
391
391
  if featured_studios_admin is not None:
392
392
  self.featured_studios_admin = featured_studios_admin
393
- if gcp_overprovisioning is not None:
394
- self.gcp_overprovisioning = gcp_overprovisioning
395
- if gcs_connections_optimized is not None:
396
- self.gcs_connections_optimized = gcs_connections_optimized
397
- if gcs_folders is not None:
398
- self.gcs_folders = gcs_folders
399
- if instant_capacity_reservation is not None:
400
- self.instant_capacity_reservation = instant_capacity_reservation
401
393
  if job_artifacts_v2 is not None:
402
394
  self.job_artifacts_v2 = job_artifacts_v2
403
395
  if kubernetes_cluster_ui is not None:
@@ -414,18 +406,10 @@ class V1UserFeatures(object):
414
406
  self.mmt_fault_tolerance = mmt_fault_tolerance
415
407
  if mmt_strategy_selector is not None:
416
408
  self.mmt_strategy_selector = mmt_strategy_selector
417
- if model_api_dashboard is not None:
418
- self.model_api_dashboard = model_api_dashboard
419
- if model_api_dashboard_clickhouse is not None:
420
- self.model_api_dashboard_clickhouse = model_api_dashboard_clickhouse
421
- if multicloud_folders is not None:
422
- self.multicloud_folders = multicloud_folders
423
409
  if multiple_studio_versions is not None:
424
410
  self.multiple_studio_versions = multiple_studio_versions
425
411
  if nerf_fs_nonpaying is not None:
426
412
  self.nerf_fs_nonpaying = nerf_fs_nonpaying
427
- if onboarding_v2 is not None:
428
- self.onboarding_v2 = onboarding_v2
429
413
  if org_level_member_permissions is not None:
430
414
  self.org_level_member_permissions = org_level_member_permissions
431
415
  if org_usage_limits is not None:
@@ -442,8 +426,6 @@ class V1UserFeatures(object):
442
426
  self.plugin_langflow = plugin_langflow
443
427
  if plugin_python_profiler is not None:
444
428
  self.plugin_python_profiler = plugin_python_profiler
445
- if plugin_service is not None:
446
- self.plugin_service = plugin_service
447
429
  if plugin_sweeps is not None:
448
430
  self.plugin_sweeps = plugin_sweeps
449
431
  if pricing_updates is not None:
@@ -456,8 +438,6 @@ class V1UserFeatures(object):
456
438
  self.project_selector = project_selector
457
439
  if publish_pipelines is not None:
458
440
  self.publish_pipelines = publish_pipelines
459
- if r2_data_connections is not None:
460
- self.r2_data_connections = r2_data_connections
461
441
  if reserved_machines_tab is not None:
462
442
  self.reserved_machines_tab = reserved_machines_tab
463
443
  if restartable_jobs is not None:
@@ -468,8 +448,6 @@ class V1UserFeatures(object):
468
448
  self.security_docs = security_docs
469
449
  if show_dev_admin is not None:
470
450
  self.show_dev_admin = show_dev_admin
471
- if single_wallet is not None:
472
- self.single_wallet = single_wallet
473
451
  if slurm is not None:
474
452
  self.slurm = slurm
475
453
  if specialised_studios is not None:
@@ -478,16 +456,8 @@ class V1UserFeatures(object):
478
456
  self.storage_overuse_deletion = storage_overuse_deletion
479
457
  if studio_config is not None:
480
458
  self.studio_config = studio_config
481
- if studio_sharing_v2 is not None:
482
- self.studio_sharing_v2 = studio_sharing_v2
483
459
  if studio_version_visibility is not None:
484
460
  self.studio_version_visibility = studio_version_visibility
485
- if trainium2 is not None:
486
- self.trainium2 = trainium2
487
- if use_internal_data_connection_mounts is not None:
488
- self.use_internal_data_connection_mounts = use_internal_data_connection_mounts
489
- if use_rclone_mounts_only is not None:
490
- self.use_rclone_mounts_only = use_rclone_mounts_only
491
461
  if vultr is not None:
492
462
  self.vultr = vultr
493
463
  if weka is not None:
@@ -495,48 +465,6 @@ class V1UserFeatures(object):
495
465
  if writable_s3_connections is not None:
496
466
  self.writable_s3_connections = writable_s3_connections
497
467
 
498
- @property
499
- def academic_tier(self) -> 'bool':
500
- """Gets the academic_tier of this V1UserFeatures. # noqa: E501
501
-
502
-
503
- :return: The academic_tier of this V1UserFeatures. # noqa: E501
504
- :rtype: bool
505
- """
506
- return self._academic_tier
507
-
508
- @academic_tier.setter
509
- def academic_tier(self, academic_tier: 'bool'):
510
- """Sets the academic_tier of this V1UserFeatures.
511
-
512
-
513
- :param academic_tier: The academic_tier of this V1UserFeatures. # noqa: E501
514
- :type: bool
515
- """
516
-
517
- self._academic_tier = academic_tier
518
-
519
- @property
520
- def add_data_v2(self) -> 'bool':
521
- """Gets the add_data_v2 of this V1UserFeatures. # noqa: E501
522
-
523
-
524
- :return: The add_data_v2 of this V1UserFeatures. # noqa: E501
525
- :rtype: bool
526
- """
527
- return self._add_data_v2
528
-
529
- @add_data_v2.setter
530
- def add_data_v2(self, add_data_v2: 'bool'):
531
- """Sets the add_data_v2 of this V1UserFeatures.
532
-
533
-
534
- :param add_data_v2: The add_data_v2 of this V1UserFeatures. # noqa: E501
535
- :type: bool
536
- """
537
-
538
- self._add_data_v2 = add_data_v2
539
-
540
468
  @property
541
469
  def affiliate_links(self) -> 'bool':
542
470
  """Gets the affiliate_links of this V1UserFeatures. # noqa: E501
@@ -621,27 +549,6 @@ class V1UserFeatures(object):
621
549
 
622
550
  self._auto_fast_load = auto_fast_load
623
551
 
624
- @property
625
- def auto_join_orgs(self) -> 'bool':
626
- """Gets the auto_join_orgs of this V1UserFeatures. # noqa: E501
627
-
628
-
629
- :return: The auto_join_orgs of this V1UserFeatures. # noqa: E501
630
- :rtype: bool
631
- """
632
- return self._auto_join_orgs
633
-
634
- @auto_join_orgs.setter
635
- def auto_join_orgs(self, auto_join_orgs: 'bool'):
636
- """Sets the auto_join_orgs of this V1UserFeatures.
637
-
638
-
639
- :param auto_join_orgs: The auto_join_orgs of this V1UserFeatures. # noqa: E501
640
- :type: bool
641
- """
642
-
643
- self._auto_join_orgs = auto_join_orgs
644
-
645
552
  @property
646
553
  def b2c_experience(self) -> 'bool':
647
554
  """Gets the b2c_experience of this V1UserFeatures. # noqa: E501
@@ -894,27 +801,6 @@ class V1UserFeatures(object):
894
801
 
895
802
  self._cost_attribution_settings = cost_attribution_settings
896
803
 
897
- @property
898
- def custom_app_domain(self) -> 'bool':
899
- """Gets the custom_app_domain of this V1UserFeatures. # noqa: E501
900
-
901
-
902
- :return: The custom_app_domain of this V1UserFeatures. # noqa: E501
903
- :rtype: bool
904
- """
905
- return self._custom_app_domain
906
-
907
- @custom_app_domain.setter
908
- def custom_app_domain(self, custom_app_domain: 'bool'):
909
- """Sets the custom_app_domain of this V1UserFeatures.
910
-
911
-
912
- :param custom_app_domain: The custom_app_domain of this V1UserFeatures. # noqa: E501
913
- :type: bool
914
- """
915
-
916
- self._custom_app_domain = custom_app_domain
917
-
918
804
  @property
919
805
  def datasets(self) -> 'bool':
920
806
  """Gets the datasets of this V1UserFeatures. # noqa: E501
@@ -957,27 +843,6 @@ class V1UserFeatures(object):
957
843
 
958
844
  self._default_one_cluster = default_one_cluster
959
845
 
960
- @property
961
- def deployment_persistent_disk(self) -> 'bool':
962
- """Gets the deployment_persistent_disk of this V1UserFeatures. # noqa: E501
963
-
964
-
965
- :return: The deployment_persistent_disk of this V1UserFeatures. # noqa: E501
966
- :rtype: bool
967
- """
968
- return self._deployment_persistent_disk
969
-
970
- @deployment_persistent_disk.setter
971
- def deployment_persistent_disk(self, deployment_persistent_disk: 'bool'):
972
- """Sets the deployment_persistent_disk of this V1UserFeatures.
973
-
974
-
975
- :param deployment_persistent_disk: The deployment_persistent_disk of this V1UserFeatures. # noqa: E501
976
- :type: bool
977
- """
978
-
979
- self._deployment_persistent_disk = deployment_persistent_disk
980
-
981
846
  @property
982
847
  def drive_v2(self) -> 'bool':
983
848
  """Gets the drive_v2 of this V1UserFeatures. # noqa: E501
@@ -1020,27 +885,6 @@ class V1UserFeatures(object):
1020
885
 
1021
886
  self._enterprise_compute_admin = enterprise_compute_admin
1022
887
 
1023
- @property
1024
- def f227(self) -> 'bool':
1025
- """Gets the f227 of this V1UserFeatures. # noqa: E501
1026
-
1027
-
1028
- :return: The f227 of this V1UserFeatures. # noqa: E501
1029
- :rtype: bool
1030
- """
1031
- return self._f227
1032
-
1033
- @f227.setter
1034
- def f227(self, f227: 'bool'):
1035
- """Sets the f227 of this V1UserFeatures.
1036
-
1037
-
1038
- :param f227: The f227 of this V1UserFeatures. # noqa: E501
1039
- :type: bool
1040
- """
1041
-
1042
- self._f227 = f227
1043
-
1044
888
  @property
1045
889
  def f234(self) -> 'bool':
1046
890
  """Gets the f234 of this V1UserFeatures. # noqa: E501
@@ -1084,277 +928,508 @@ class V1UserFeatures(object):
1084
928
  self._f236 = f236
1085
929
 
1086
930
  @property
1087
- def f237(self) -> 'bool':
1088
- """Gets the f237 of this V1UserFeatures. # noqa: E501
931
+ def f240(self) -> 'bool':
932
+ """Gets the f240 of this V1UserFeatures. # noqa: E501
1089
933
 
1090
934
 
1091
- :return: The f237 of this V1UserFeatures. # noqa: E501
935
+ :return: The f240 of this V1UserFeatures. # noqa: E501
1092
936
  :rtype: bool
1093
937
  """
1094
- return self._f237
938
+ return self._f240
1095
939
 
1096
- @f237.setter
1097
- def f237(self, f237: 'bool'):
1098
- """Sets the f237 of this V1UserFeatures.
940
+ @f240.setter
941
+ def f240(self, f240: 'bool'):
942
+ """Sets the f240 of this V1UserFeatures.
1099
943
 
1100
944
 
1101
- :param f237: The f237 of this V1UserFeatures. # noqa: E501
945
+ :param f240: The f240 of this V1UserFeatures. # noqa: E501
1102
946
  :type: bool
1103
947
  """
1104
948
 
1105
- self._f237 = f237
949
+ self._f240 = f240
1106
950
 
1107
951
  @property
1108
- def f238(self) -> 'bool':
1109
- """Gets the f238 of this V1UserFeatures. # noqa: E501
952
+ def f241(self) -> 'bool':
953
+ """Gets the f241 of this V1UserFeatures. # noqa: E501
1110
954
 
1111
955
 
1112
- :return: The f238 of this V1UserFeatures. # noqa: E501
956
+ :return: The f241 of this V1UserFeatures. # noqa: E501
1113
957
  :rtype: bool
1114
958
  """
1115
- return self._f238
959
+ return self._f241
1116
960
 
1117
- @f238.setter
1118
- def f238(self, f238: 'bool'):
1119
- """Sets the f238 of this V1UserFeatures.
961
+ @f241.setter
962
+ def f241(self, f241: 'bool'):
963
+ """Sets the f241 of this V1UserFeatures.
1120
964
 
1121
965
 
1122
- :param f238: The f238 of this V1UserFeatures. # noqa: E501
966
+ :param f241: The f241 of this V1UserFeatures. # noqa: E501
1123
967
  :type: bool
1124
968
  """
1125
969
 
1126
- self._f238 = f238
970
+ self._f241 = f241
1127
971
 
1128
972
  @property
1129
- def f239(self) -> 'bool':
1130
- """Gets the f239 of this V1UserFeatures. # noqa: E501
973
+ def f243(self) -> 'bool':
974
+ """Gets the f243 of this V1UserFeatures. # noqa: E501
1131
975
 
1132
976
 
1133
- :return: The f239 of this V1UserFeatures. # noqa: E501
977
+ :return: The f243 of this V1UserFeatures. # noqa: E501
1134
978
  :rtype: bool
1135
979
  """
1136
- return self._f239
980
+ return self._f243
1137
981
 
1138
- @f239.setter
1139
- def f239(self, f239: 'bool'):
1140
- """Sets the f239 of this V1UserFeatures.
982
+ @f243.setter
983
+ def f243(self, f243: 'bool'):
984
+ """Sets the f243 of this V1UserFeatures.
1141
985
 
1142
986
 
1143
- :param f239: The f239 of this V1UserFeatures. # noqa: E501
987
+ :param f243: The f243 of this V1UserFeatures. # noqa: E501
1144
988
  :type: bool
1145
989
  """
1146
990
 
1147
- self._f239 = f239
991
+ self._f243 = f243
1148
992
 
1149
993
  @property
1150
- def f240(self) -> 'bool':
1151
- """Gets the f240 of this V1UserFeatures. # noqa: E501
994
+ def f245(self) -> 'bool':
995
+ """Gets the f245 of this V1UserFeatures. # noqa: E501
1152
996
 
1153
997
 
1154
- :return: The f240 of this V1UserFeatures. # noqa: E501
998
+ :return: The f245 of this V1UserFeatures. # noqa: E501
1155
999
  :rtype: bool
1156
1000
  """
1157
- return self._f240
1001
+ return self._f245
1158
1002
 
1159
- @f240.setter
1160
- def f240(self, f240: 'bool'):
1161
- """Sets the f240 of this V1UserFeatures.
1003
+ @f245.setter
1004
+ def f245(self, f245: 'bool'):
1005
+ """Sets the f245 of this V1UserFeatures.
1162
1006
 
1163
1007
 
1164
- :param f240: The f240 of this V1UserFeatures. # noqa: E501
1008
+ :param f245: The f245 of this V1UserFeatures. # noqa: E501
1165
1009
  :type: bool
1166
1010
  """
1167
1011
 
1168
- self._f240 = f240
1012
+ self._f245 = f245
1169
1013
 
1170
1014
  @property
1171
- def f241(self) -> 'bool':
1172
- """Gets the f241 of this V1UserFeatures. # noqa: E501
1015
+ def f247(self) -> 'bool':
1016
+ """Gets the f247 of this V1UserFeatures. # noqa: E501
1173
1017
 
1174
1018
 
1175
- :return: The f241 of this V1UserFeatures. # noqa: E501
1019
+ :return: The f247 of this V1UserFeatures. # noqa: E501
1176
1020
  :rtype: bool
1177
1021
  """
1178
- return self._f241
1022
+ return self._f247
1179
1023
 
1180
- @f241.setter
1181
- def f241(self, f241: 'bool'):
1182
- """Sets the f241 of this V1UserFeatures.
1024
+ @f247.setter
1025
+ def f247(self, f247: 'bool'):
1026
+ """Sets the f247 of this V1UserFeatures.
1183
1027
 
1184
1028
 
1185
- :param f241: The f241 of this V1UserFeatures. # noqa: E501
1029
+ :param f247: The f247 of this V1UserFeatures. # noqa: E501
1186
1030
  :type: bool
1187
1031
  """
1188
1032
 
1189
- self._f241 = f241
1033
+ self._f247 = f247
1190
1034
 
1191
1035
  @property
1192
- def f242(self) -> 'bool':
1193
- """Gets the f242 of this V1UserFeatures. # noqa: E501
1036
+ def f250(self) -> 'bool':
1037
+ """Gets the f250 of this V1UserFeatures. # noqa: E501
1194
1038
 
1195
1039
 
1196
- :return: The f242 of this V1UserFeatures. # noqa: E501
1040
+ :return: The f250 of this V1UserFeatures. # noqa: E501
1197
1041
  :rtype: bool
1198
1042
  """
1199
- return self._f242
1043
+ return self._f250
1200
1044
 
1201
- @f242.setter
1202
- def f242(self, f242: 'bool'):
1203
- """Sets the f242 of this V1UserFeatures.
1045
+ @f250.setter
1046
+ def f250(self, f250: 'bool'):
1047
+ """Sets the f250 of this V1UserFeatures.
1204
1048
 
1205
1049
 
1206
- :param f242: The f242 of this V1UserFeatures. # noqa: E501
1050
+ :param f250: The f250 of this V1UserFeatures. # noqa: E501
1207
1051
  :type: bool
1208
1052
  """
1209
1053
 
1210
- self._f242 = f242
1054
+ self._f250 = f250
1211
1055
 
1212
1056
  @property
1213
- def f243(self) -> 'bool':
1214
- """Gets the f243 of this V1UserFeatures. # noqa: E501
1057
+ def f252(self) -> 'bool':
1058
+ """Gets the f252 of this V1UserFeatures. # noqa: E501
1215
1059
 
1216
1060
 
1217
- :return: The f243 of this V1UserFeatures. # noqa: E501
1061
+ :return: The f252 of this V1UserFeatures. # noqa: E501
1218
1062
  :rtype: bool
1219
1063
  """
1220
- return self._f243
1064
+ return self._f252
1221
1065
 
1222
- @f243.setter
1223
- def f243(self, f243: 'bool'):
1224
- """Sets the f243 of this V1UserFeatures.
1066
+ @f252.setter
1067
+ def f252(self, f252: 'bool'):
1068
+ """Sets the f252 of this V1UserFeatures.
1225
1069
 
1226
1070
 
1227
- :param f243: The f243 of this V1UserFeatures. # noqa: E501
1071
+ :param f252: The f252 of this V1UserFeatures. # noqa: E501
1228
1072
  :type: bool
1229
1073
  """
1230
1074
 
1231
- self._f243 = f243
1075
+ self._f252 = f252
1232
1076
 
1233
1077
  @property
1234
- def fair_share(self) -> 'bool':
1235
- """Gets the fair_share of this V1UserFeatures. # noqa: E501
1078
+ def f253(self) -> 'bool':
1079
+ """Gets the f253 of this V1UserFeatures. # noqa: E501
1236
1080
 
1237
1081
 
1238
- :return: The fair_share of this V1UserFeatures. # noqa: E501
1082
+ :return: The f253 of this V1UserFeatures. # noqa: E501
1239
1083
  :rtype: bool
1240
1084
  """
1241
- return self._fair_share
1085
+ return self._f253
1242
1086
 
1243
- @fair_share.setter
1244
- def fair_share(self, fair_share: 'bool'):
1245
- """Sets the fair_share of this V1UserFeatures.
1087
+ @f253.setter
1088
+ def f253(self, f253: 'bool'):
1089
+ """Sets the f253 of this V1UserFeatures.
1246
1090
 
1247
1091
 
1248
- :param fair_share: The fair_share of this V1UserFeatures. # noqa: E501
1092
+ :param f253: The f253 of this V1UserFeatures. # noqa: E501
1249
1093
  :type: bool
1250
1094
  """
1251
1095
 
1252
- self._fair_share = fair_share
1096
+ self._f253 = f253
1253
1097
 
1254
1098
  @property
1255
- def featured_studios_admin(self) -> 'bool':
1256
- """Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
1099
+ def f254(self) -> 'bool':
1100
+ """Gets the f254 of this V1UserFeatures. # noqa: E501
1257
1101
 
1258
1102
 
1259
- :return: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1103
+ :return: The f254 of this V1UserFeatures. # noqa: E501
1260
1104
  :rtype: bool
1261
1105
  """
1262
- return self._featured_studios_admin
1106
+ return self._f254
1263
1107
 
1264
- @featured_studios_admin.setter
1265
- def featured_studios_admin(self, featured_studios_admin: 'bool'):
1266
- """Sets the featured_studios_admin of this V1UserFeatures.
1108
+ @f254.setter
1109
+ def f254(self, f254: 'bool'):
1110
+ """Sets the f254 of this V1UserFeatures.
1267
1111
 
1268
1112
 
1269
- :param featured_studios_admin: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1113
+ :param f254: The f254 of this V1UserFeatures. # noqa: E501
1270
1114
  :type: bool
1271
1115
  """
1272
1116
 
1273
- self._featured_studios_admin = featured_studios_admin
1117
+ self._f254 = f254
1118
+
1119
+ @property
1120
+ def f258(self) -> 'bool':
1121
+ """Gets the f258 of this V1UserFeatures. # noqa: E501
1122
+
1123
+
1124
+ :return: The f258 of this V1UserFeatures. # noqa: E501
1125
+ :rtype: bool
1126
+ """
1127
+ return self._f258
1128
+
1129
+ @f258.setter
1130
+ def f258(self, f258: 'bool'):
1131
+ """Sets the f258 of this V1UserFeatures.
1132
+
1133
+
1134
+ :param f258: The f258 of this V1UserFeatures. # noqa: E501
1135
+ :type: bool
1136
+ """
1137
+
1138
+ self._f258 = f258
1139
+
1140
+ @property
1141
+ def f259(self) -> 'bool':
1142
+ """Gets the f259 of this V1UserFeatures. # noqa: E501
1143
+
1144
+
1145
+ :return: The f259 of this V1UserFeatures. # noqa: E501
1146
+ :rtype: bool
1147
+ """
1148
+ return self._f259
1149
+
1150
+ @f259.setter
1151
+ def f259(self, f259: 'bool'):
1152
+ """Sets the f259 of this V1UserFeatures.
1153
+
1154
+
1155
+ :param f259: The f259 of this V1UserFeatures. # noqa: E501
1156
+ :type: bool
1157
+ """
1158
+
1159
+ self._f259 = f259
1160
+
1161
+ @property
1162
+ def f261(self) -> 'bool':
1163
+ """Gets the f261 of this V1UserFeatures. # noqa: E501
1164
+
1165
+
1166
+ :return: The f261 of this V1UserFeatures. # noqa: E501
1167
+ :rtype: bool
1168
+ """
1169
+ return self._f261
1170
+
1171
+ @f261.setter
1172
+ def f261(self, f261: 'bool'):
1173
+ """Sets the f261 of this V1UserFeatures.
1174
+
1175
+
1176
+ :param f261: The f261 of this V1UserFeatures. # noqa: E501
1177
+ :type: bool
1178
+ """
1179
+
1180
+ self._f261 = f261
1181
+
1182
+ @property
1183
+ def f262(self) -> 'bool':
1184
+ """Gets the f262 of this V1UserFeatures. # noqa: E501
1185
+
1186
+
1187
+ :return: The f262 of this V1UserFeatures. # noqa: E501
1188
+ :rtype: bool
1189
+ """
1190
+ return self._f262
1191
+
1192
+ @f262.setter
1193
+ def f262(self, f262: 'bool'):
1194
+ """Sets the f262 of this V1UserFeatures.
1195
+
1196
+
1197
+ :param f262: The f262 of this V1UserFeatures. # noqa: E501
1198
+ :type: bool
1199
+ """
1200
+
1201
+ self._f262 = f262
1202
+
1203
+ @property
1204
+ def f265(self) -> 'bool':
1205
+ """Gets the f265 of this V1UserFeatures. # noqa: E501
1206
+
1207
+
1208
+ :return: The f265 of this V1UserFeatures. # noqa: E501
1209
+ :rtype: bool
1210
+ """
1211
+ return self._f265
1212
+
1213
+ @f265.setter
1214
+ def f265(self, f265: 'bool'):
1215
+ """Sets the f265 of this V1UserFeatures.
1216
+
1217
+
1218
+ :param f265: The f265 of this V1UserFeatures. # noqa: E501
1219
+ :type: bool
1220
+ """
1221
+
1222
+ self._f265 = f265
1223
+
1224
+ @property
1225
+ def f266(self) -> 'bool':
1226
+ """Gets the f266 of this V1UserFeatures. # noqa: E501
1227
+
1228
+
1229
+ :return: The f266 of this V1UserFeatures. # noqa: E501
1230
+ :rtype: bool
1231
+ """
1232
+ return self._f266
1233
+
1234
+ @f266.setter
1235
+ def f266(self, f266: 'bool'):
1236
+ """Sets the f266 of this V1UserFeatures.
1237
+
1238
+
1239
+ :param f266: The f266 of this V1UserFeatures. # noqa: E501
1240
+ :type: bool
1241
+ """
1242
+
1243
+ self._f266 = f266
1244
+
1245
+ @property
1246
+ def f268(self) -> 'bool':
1247
+ """Gets the f268 of this V1UserFeatures. # noqa: E501
1248
+
1249
+
1250
+ :return: The f268 of this V1UserFeatures. # noqa: E501
1251
+ :rtype: bool
1252
+ """
1253
+ return self._f268
1254
+
1255
+ @f268.setter
1256
+ def f268(self, f268: 'bool'):
1257
+ """Sets the f268 of this V1UserFeatures.
1258
+
1259
+
1260
+ :param f268: The f268 of this V1UserFeatures. # noqa: E501
1261
+ :type: bool
1262
+ """
1263
+
1264
+ self._f268 = f268
1265
+
1266
+ @property
1267
+ def f269(self) -> 'bool':
1268
+ """Gets the f269 of this V1UserFeatures. # noqa: E501
1269
+
1270
+
1271
+ :return: The f269 of this V1UserFeatures. # noqa: E501
1272
+ :rtype: bool
1273
+ """
1274
+ return self._f269
1275
+
1276
+ @f269.setter
1277
+ def f269(self, f269: 'bool'):
1278
+ """Sets the f269 of this V1UserFeatures.
1279
+
1280
+
1281
+ :param f269: The f269 of this V1UserFeatures. # noqa: E501
1282
+ :type: bool
1283
+ """
1284
+
1285
+ self._f269 = f269
1274
1286
 
1275
1287
  @property
1276
- def gcp_overprovisioning(self) -> 'bool':
1277
- """Gets the gcp_overprovisioning of this V1UserFeatures. # noqa: E501
1288
+ def f270(self) -> 'bool':
1289
+ """Gets the f270 of this V1UserFeatures. # noqa: E501
1278
1290
 
1279
1291
 
1280
- :return: The gcp_overprovisioning of this V1UserFeatures. # noqa: E501
1292
+ :return: The f270 of this V1UserFeatures. # noqa: E501
1281
1293
  :rtype: bool
1282
1294
  """
1283
- return self._gcp_overprovisioning
1295
+ return self._f270
1284
1296
 
1285
- @gcp_overprovisioning.setter
1286
- def gcp_overprovisioning(self, gcp_overprovisioning: 'bool'):
1287
- """Sets the gcp_overprovisioning of this V1UserFeatures.
1297
+ @f270.setter
1298
+ def f270(self, f270: 'bool'):
1299
+ """Sets the f270 of this V1UserFeatures.
1288
1300
 
1289
1301
 
1290
- :param gcp_overprovisioning: The gcp_overprovisioning of this V1UserFeatures. # noqa: E501
1302
+ :param f270: The f270 of this V1UserFeatures. # noqa: E501
1291
1303
  :type: bool
1292
1304
  """
1293
1305
 
1294
- self._gcp_overprovisioning = gcp_overprovisioning
1306
+ self._f270 = f270
1295
1307
 
1296
1308
  @property
1297
- def gcs_connections_optimized(self) -> 'bool':
1298
- """Gets the gcs_connections_optimized of this V1UserFeatures. # noqa: E501
1309
+ def f271(self) -> 'bool':
1310
+ """Gets the f271 of this V1UserFeatures. # noqa: E501
1299
1311
 
1300
1312
 
1301
- :return: The gcs_connections_optimized of this V1UserFeatures. # noqa: E501
1313
+ :return: The f271 of this V1UserFeatures. # noqa: E501
1302
1314
  :rtype: bool
1303
1315
  """
1304
- return self._gcs_connections_optimized
1316
+ return self._f271
1305
1317
 
1306
- @gcs_connections_optimized.setter
1307
- def gcs_connections_optimized(self, gcs_connections_optimized: 'bool'):
1308
- """Sets the gcs_connections_optimized of this V1UserFeatures.
1318
+ @f271.setter
1319
+ def f271(self, f271: 'bool'):
1320
+ """Sets the f271 of this V1UserFeatures.
1309
1321
 
1310
1322
 
1311
- :param gcs_connections_optimized: The gcs_connections_optimized of this V1UserFeatures. # noqa: E501
1323
+ :param f271: The f271 of this V1UserFeatures. # noqa: E501
1312
1324
  :type: bool
1313
1325
  """
1314
1326
 
1315
- self._gcs_connections_optimized = gcs_connections_optimized
1327
+ self._f271 = f271
1316
1328
 
1317
1329
  @property
1318
- def gcs_folders(self) -> 'bool':
1319
- """Gets the gcs_folders of this V1UserFeatures. # noqa: E501
1330
+ def f272(self) -> 'bool':
1331
+ """Gets the f272 of this V1UserFeatures. # noqa: E501
1320
1332
 
1321
1333
 
1322
- :return: The gcs_folders of this V1UserFeatures. # noqa: E501
1334
+ :return: The f272 of this V1UserFeatures. # noqa: E501
1323
1335
  :rtype: bool
1324
1336
  """
1325
- return self._gcs_folders
1337
+ return self._f272
1326
1338
 
1327
- @gcs_folders.setter
1328
- def gcs_folders(self, gcs_folders: 'bool'):
1329
- """Sets the gcs_folders of this V1UserFeatures.
1339
+ @f272.setter
1340
+ def f272(self, f272: 'bool'):
1341
+ """Sets the f272 of this V1UserFeatures.
1330
1342
 
1331
1343
 
1332
- :param gcs_folders: The gcs_folders of this V1UserFeatures. # noqa: E501
1344
+ :param f272: The f272 of this V1UserFeatures. # noqa: E501
1333
1345
  :type: bool
1334
1346
  """
1335
1347
 
1336
- self._gcs_folders = gcs_folders
1348
+ self._f272 = f272
1337
1349
 
1338
1350
  @property
1339
- def instant_capacity_reservation(self) -> 'bool':
1340
- """Gets the instant_capacity_reservation of this V1UserFeatures. # noqa: E501
1351
+ def f273(self) -> 'bool':
1352
+ """Gets the f273 of this V1UserFeatures. # noqa: E501
1341
1353
 
1342
1354
 
1343
- :return: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
1355
+ :return: The f273 of this V1UserFeatures. # noqa: E501
1344
1356
  :rtype: bool
1345
1357
  """
1346
- return self._instant_capacity_reservation
1358
+ return self._f273
1347
1359
 
1348
- @instant_capacity_reservation.setter
1349
- def instant_capacity_reservation(self, instant_capacity_reservation: 'bool'):
1350
- """Sets the instant_capacity_reservation of this V1UserFeatures.
1360
+ @f273.setter
1361
+ def f273(self, f273: 'bool'):
1362
+ """Sets the f273 of this V1UserFeatures.
1351
1363
 
1352
1364
 
1353
- :param instant_capacity_reservation: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
1365
+ :param f273: The f273 of this V1UserFeatures. # noqa: E501
1354
1366
  :type: bool
1355
1367
  """
1356
1368
 
1357
- self._instant_capacity_reservation = instant_capacity_reservation
1369
+ self._f273 = f273
1370
+
1371
+ @property
1372
+ def f274(self) -> 'bool':
1373
+ """Gets the f274 of this V1UserFeatures. # noqa: E501
1374
+
1375
+
1376
+ :return: The f274 of this V1UserFeatures. # noqa: E501
1377
+ :rtype: bool
1378
+ """
1379
+ return self._f274
1380
+
1381
+ @f274.setter
1382
+ def f274(self, f274: 'bool'):
1383
+ """Sets the f274 of this V1UserFeatures.
1384
+
1385
+
1386
+ :param f274: The f274 of this V1UserFeatures. # noqa: E501
1387
+ :type: bool
1388
+ """
1389
+
1390
+ self._f274 = f274
1391
+
1392
+ @property
1393
+ def fair_share(self) -> 'bool':
1394
+ """Gets the fair_share of this V1UserFeatures. # noqa: E501
1395
+
1396
+
1397
+ :return: The fair_share of this V1UserFeatures. # noqa: E501
1398
+ :rtype: bool
1399
+ """
1400
+ return self._fair_share
1401
+
1402
+ @fair_share.setter
1403
+ def fair_share(self, fair_share: 'bool'):
1404
+ """Sets the fair_share of this V1UserFeatures.
1405
+
1406
+
1407
+ :param fair_share: The fair_share of this V1UserFeatures. # noqa: E501
1408
+ :type: bool
1409
+ """
1410
+
1411
+ self._fair_share = fair_share
1412
+
1413
+ @property
1414
+ def featured_studios_admin(self) -> 'bool':
1415
+ """Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
1416
+
1417
+
1418
+ :return: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1419
+ :rtype: bool
1420
+ """
1421
+ return self._featured_studios_admin
1422
+
1423
+ @featured_studios_admin.setter
1424
+ def featured_studios_admin(self, featured_studios_admin: 'bool'):
1425
+ """Sets the featured_studios_admin of this V1UserFeatures.
1426
+
1427
+
1428
+ :param featured_studios_admin: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1429
+ :type: bool
1430
+ """
1431
+
1432
+ self._featured_studios_admin = featured_studios_admin
1358
1433
 
1359
1434
  @property
1360
1435
  def job_artifacts_v2(self) -> 'bool':
@@ -1524,69 +1599,6 @@ class V1UserFeatures(object):
1524
1599
 
1525
1600
  self._mmt_strategy_selector = mmt_strategy_selector
1526
1601
 
1527
- @property
1528
- def model_api_dashboard(self) -> 'bool':
1529
- """Gets the model_api_dashboard of this V1UserFeatures. # noqa: E501
1530
-
1531
-
1532
- :return: The model_api_dashboard of this V1UserFeatures. # noqa: E501
1533
- :rtype: bool
1534
- """
1535
- return self._model_api_dashboard
1536
-
1537
- @model_api_dashboard.setter
1538
- def model_api_dashboard(self, model_api_dashboard: 'bool'):
1539
- """Sets the model_api_dashboard of this V1UserFeatures.
1540
-
1541
-
1542
- :param model_api_dashboard: The model_api_dashboard of this V1UserFeatures. # noqa: E501
1543
- :type: bool
1544
- """
1545
-
1546
- self._model_api_dashboard = model_api_dashboard
1547
-
1548
- @property
1549
- def model_api_dashboard_clickhouse(self) -> 'bool':
1550
- """Gets the model_api_dashboard_clickhouse of this V1UserFeatures. # noqa: E501
1551
-
1552
-
1553
- :return: The model_api_dashboard_clickhouse of this V1UserFeatures. # noqa: E501
1554
- :rtype: bool
1555
- """
1556
- return self._model_api_dashboard_clickhouse
1557
-
1558
- @model_api_dashboard_clickhouse.setter
1559
- def model_api_dashboard_clickhouse(self, model_api_dashboard_clickhouse: 'bool'):
1560
- """Sets the model_api_dashboard_clickhouse of this V1UserFeatures.
1561
-
1562
-
1563
- :param model_api_dashboard_clickhouse: The model_api_dashboard_clickhouse of this V1UserFeatures. # noqa: E501
1564
- :type: bool
1565
- """
1566
-
1567
- self._model_api_dashboard_clickhouse = model_api_dashboard_clickhouse
1568
-
1569
- @property
1570
- def multicloud_folders(self) -> 'bool':
1571
- """Gets the multicloud_folders of this V1UserFeatures. # noqa: E501
1572
-
1573
-
1574
- :return: The multicloud_folders of this V1UserFeatures. # noqa: E501
1575
- :rtype: bool
1576
- """
1577
- return self._multicloud_folders
1578
-
1579
- @multicloud_folders.setter
1580
- def multicloud_folders(self, multicloud_folders: 'bool'):
1581
- """Sets the multicloud_folders of this V1UserFeatures.
1582
-
1583
-
1584
- :param multicloud_folders: The multicloud_folders of this V1UserFeatures. # noqa: E501
1585
- :type: bool
1586
- """
1587
-
1588
- self._multicloud_folders = multicloud_folders
1589
-
1590
1602
  @property
1591
1603
  def multiple_studio_versions(self) -> 'bool':
1592
1604
  """Gets the multiple_studio_versions of this V1UserFeatures. # noqa: E501
@@ -1629,27 +1641,6 @@ class V1UserFeatures(object):
1629
1641
 
1630
1642
  self._nerf_fs_nonpaying = nerf_fs_nonpaying
1631
1643
 
1632
- @property
1633
- def onboarding_v2(self) -> 'bool':
1634
- """Gets the onboarding_v2 of this V1UserFeatures. # noqa: E501
1635
-
1636
-
1637
- :return: The onboarding_v2 of this V1UserFeatures. # noqa: E501
1638
- :rtype: bool
1639
- """
1640
- return self._onboarding_v2
1641
-
1642
- @onboarding_v2.setter
1643
- def onboarding_v2(self, onboarding_v2: 'bool'):
1644
- """Sets the onboarding_v2 of this V1UserFeatures.
1645
-
1646
-
1647
- :param onboarding_v2: The onboarding_v2 of this V1UserFeatures. # noqa: E501
1648
- :type: bool
1649
- """
1650
-
1651
- self._onboarding_v2 = onboarding_v2
1652
-
1653
1644
  @property
1654
1645
  def org_level_member_permissions(self) -> 'bool':
1655
1646
  """Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
@@ -1818,27 +1809,6 @@ class V1UserFeatures(object):
1818
1809
 
1819
1810
  self._plugin_python_profiler = plugin_python_profiler
1820
1811
 
1821
- @property
1822
- def plugin_service(self) -> 'bool':
1823
- """Gets the plugin_service of this V1UserFeatures. # noqa: E501
1824
-
1825
-
1826
- :return: The plugin_service of this V1UserFeatures. # noqa: E501
1827
- :rtype: bool
1828
- """
1829
- return self._plugin_service
1830
-
1831
- @plugin_service.setter
1832
- def plugin_service(self, plugin_service: 'bool'):
1833
- """Sets the plugin_service of this V1UserFeatures.
1834
-
1835
-
1836
- :param plugin_service: The plugin_service of this V1UserFeatures. # noqa: E501
1837
- :type: bool
1838
- """
1839
-
1840
- self._plugin_service = plugin_service
1841
-
1842
1812
  @property
1843
1813
  def plugin_sweeps(self) -> 'bool':
1844
1814
  """Gets the plugin_sweeps of this V1UserFeatures. # noqa: E501
@@ -1965,27 +1935,6 @@ class V1UserFeatures(object):
1965
1935
 
1966
1936
  self._publish_pipelines = publish_pipelines
1967
1937
 
1968
- @property
1969
- def r2_data_connections(self) -> 'bool':
1970
- """Gets the r2_data_connections of this V1UserFeatures. # noqa: E501
1971
-
1972
-
1973
- :return: The r2_data_connections of this V1UserFeatures. # noqa: E501
1974
- :rtype: bool
1975
- """
1976
- return self._r2_data_connections
1977
-
1978
- @r2_data_connections.setter
1979
- def r2_data_connections(self, r2_data_connections: 'bool'):
1980
- """Sets the r2_data_connections of this V1UserFeatures.
1981
-
1982
-
1983
- :param r2_data_connections: The r2_data_connections of this V1UserFeatures. # noqa: E501
1984
- :type: bool
1985
- """
1986
-
1987
- self._r2_data_connections = r2_data_connections
1988
-
1989
1938
  @property
1990
1939
  def reserved_machines_tab(self) -> 'bool':
1991
1940
  """Gets the reserved_machines_tab of this V1UserFeatures. # noqa: E501
@@ -2091,27 +2040,6 @@ class V1UserFeatures(object):
2091
2040
 
2092
2041
  self._show_dev_admin = show_dev_admin
2093
2042
 
2094
- @property
2095
- def single_wallet(self) -> 'bool':
2096
- """Gets the single_wallet of this V1UserFeatures. # noqa: E501
2097
-
2098
-
2099
- :return: The single_wallet of this V1UserFeatures. # noqa: E501
2100
- :rtype: bool
2101
- """
2102
- return self._single_wallet
2103
-
2104
- @single_wallet.setter
2105
- def single_wallet(self, single_wallet: 'bool'):
2106
- """Sets the single_wallet of this V1UserFeatures.
2107
-
2108
-
2109
- :param single_wallet: The single_wallet of this V1UserFeatures. # noqa: E501
2110
- :type: bool
2111
- """
2112
-
2113
- self._single_wallet = single_wallet
2114
-
2115
2043
  @property
2116
2044
  def slurm(self) -> 'bool':
2117
2045
  """Gets the slurm of this V1UserFeatures. # noqa: E501
@@ -2196,27 +2124,6 @@ class V1UserFeatures(object):
2196
2124
 
2197
2125
  self._studio_config = studio_config
2198
2126
 
2199
- @property
2200
- def studio_sharing_v2(self) -> 'bool':
2201
- """Gets the studio_sharing_v2 of this V1UserFeatures. # noqa: E501
2202
-
2203
-
2204
- :return: The studio_sharing_v2 of this V1UserFeatures. # noqa: E501
2205
- :rtype: bool
2206
- """
2207
- return self._studio_sharing_v2
2208
-
2209
- @studio_sharing_v2.setter
2210
- def studio_sharing_v2(self, studio_sharing_v2: 'bool'):
2211
- """Sets the studio_sharing_v2 of this V1UserFeatures.
2212
-
2213
-
2214
- :param studio_sharing_v2: The studio_sharing_v2 of this V1UserFeatures. # noqa: E501
2215
- :type: bool
2216
- """
2217
-
2218
- self._studio_sharing_v2 = studio_sharing_v2
2219
-
2220
2127
  @property
2221
2128
  def studio_version_visibility(self) -> 'bool':
2222
2129
  """Gets the studio_version_visibility of this V1UserFeatures. # noqa: E501
@@ -2238,69 +2145,6 @@ class V1UserFeatures(object):
2238
2145
 
2239
2146
  self._studio_version_visibility = studio_version_visibility
2240
2147
 
2241
- @property
2242
- def trainium2(self) -> 'bool':
2243
- """Gets the trainium2 of this V1UserFeatures. # noqa: E501
2244
-
2245
-
2246
- :return: The trainium2 of this V1UserFeatures. # noqa: E501
2247
- :rtype: bool
2248
- """
2249
- return self._trainium2
2250
-
2251
- @trainium2.setter
2252
- def trainium2(self, trainium2: 'bool'):
2253
- """Sets the trainium2 of this V1UserFeatures.
2254
-
2255
-
2256
- :param trainium2: The trainium2 of this V1UserFeatures. # noqa: E501
2257
- :type: bool
2258
- """
2259
-
2260
- self._trainium2 = trainium2
2261
-
2262
- @property
2263
- def use_internal_data_connection_mounts(self) -> 'bool':
2264
- """Gets the use_internal_data_connection_mounts of this V1UserFeatures. # noqa: E501
2265
-
2266
-
2267
- :return: The use_internal_data_connection_mounts of this V1UserFeatures. # noqa: E501
2268
- :rtype: bool
2269
- """
2270
- return self._use_internal_data_connection_mounts
2271
-
2272
- @use_internal_data_connection_mounts.setter
2273
- def use_internal_data_connection_mounts(self, use_internal_data_connection_mounts: 'bool'):
2274
- """Sets the use_internal_data_connection_mounts of this V1UserFeatures.
2275
-
2276
-
2277
- :param use_internal_data_connection_mounts: The use_internal_data_connection_mounts of this V1UserFeatures. # noqa: E501
2278
- :type: bool
2279
- """
2280
-
2281
- self._use_internal_data_connection_mounts = use_internal_data_connection_mounts
2282
-
2283
- @property
2284
- def use_rclone_mounts_only(self) -> 'bool':
2285
- """Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
2286
-
2287
-
2288
- :return: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
2289
- :rtype: bool
2290
- """
2291
- return self._use_rclone_mounts_only
2292
-
2293
- @use_rclone_mounts_only.setter
2294
- def use_rclone_mounts_only(self, use_rclone_mounts_only: 'bool'):
2295
- """Sets the use_rclone_mounts_only of this V1UserFeatures.
2296
-
2297
-
2298
- :param use_rclone_mounts_only: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
2299
- :type: bool
2300
- """
2301
-
2302
- self._use_rclone_mounts_only = use_rclone_mounts_only
2303
-
2304
2148
  @property
2305
2149
  def vultr(self) -> 'bool':
2306
2150
  """Gets the vultr of this V1UserFeatures. # noqa: E501