lightning-sdk 0.1.49__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 (669) hide show
  1. lightning_sdk/__init__.py +19 -9
  2. lightning_sdk/__version__.py +3 -0
  3. lightning_sdk/agents.py +2 -1
  4. lightning_sdk/ai_hub.py +43 -38
  5. lightning_sdk/api/__init__.py +2 -0
  6. lightning_sdk/api/ai_hub_api.py +49 -6
  7. lightning_sdk/api/base_studio_api.py +90 -0
  8. lightning_sdk/api/cloud_account_api.py +225 -0
  9. lightning_sdk/api/deployment_api.py +133 -27
  10. lightning_sdk/api/job_api.py +147 -34
  11. lightning_sdk/api/license_api.py +37 -0
  12. lightning_sdk/api/lit_container_api.py +231 -19
  13. lightning_sdk/api/llm_api.py +306 -0
  14. lightning_sdk/api/mmt_api.py +112 -28
  15. lightning_sdk/api/pipeline_api.py +120 -0
  16. lightning_sdk/api/studio_api.py +440 -89
  17. lightning_sdk/api/teamspace_api.py +269 -31
  18. lightning_sdk/api/user_api.py +56 -2
  19. lightning_sdk/api/utils.py +185 -52
  20. lightning_sdk/base_studio.py +123 -0
  21. lightning_sdk/cli/__init__.py +1 -0
  22. lightning_sdk/cli/base_studio/__init__.py +10 -0
  23. lightning_sdk/cli/base_studio/list.py +43 -0
  24. lightning_sdk/cli/config/__init__.py +14 -0
  25. lightning_sdk/cli/config/get.py +57 -0
  26. lightning_sdk/cli/config/set.py +92 -0
  27. lightning_sdk/cli/config/show.py +9 -0
  28. lightning_sdk/cli/entrypoint.py +98 -56
  29. lightning_sdk/cli/groups.py +56 -0
  30. lightning_sdk/cli/job/__init__.py +7 -0
  31. lightning_sdk/cli/legacy/__init__.py +0 -0
  32. lightning_sdk/cli/legacy/ai_hub.py +65 -0
  33. lightning_sdk/cli/legacy/clusters_menu.py +49 -0
  34. lightning_sdk/cli/legacy/configure.py +129 -0
  35. lightning_sdk/cli/legacy/connect.py +34 -0
  36. lightning_sdk/cli/legacy/create.py +115 -0
  37. lightning_sdk/cli/legacy/delete.py +131 -0
  38. lightning_sdk/cli/legacy/deploy/__init__.py +0 -0
  39. lightning_sdk/cli/legacy/deploy/_auth.py +196 -0
  40. lightning_sdk/cli/legacy/deploy/devbox.py +163 -0
  41. lightning_sdk/cli/legacy/deploy/serve.py +452 -0
  42. lightning_sdk/cli/legacy/docker_cli.py +22 -0
  43. lightning_sdk/cli/legacy/download.py +322 -0
  44. lightning_sdk/cli/legacy/entrypoint.py +110 -0
  45. lightning_sdk/cli/legacy/generate.py +52 -0
  46. lightning_sdk/cli/legacy/inspection.py +45 -0
  47. lightning_sdk/cli/{job_and_mmt_action.py → legacy/job_and_mmt_action.py} +6 -6
  48. lightning_sdk/cli/{jobs_menu.py → legacy/jobs_menu.py} +3 -2
  49. lightning_sdk/cli/legacy/list.py +326 -0
  50. lightning_sdk/cli/{mmts_menu.py → legacy/mmts_menu.py} +3 -2
  51. lightning_sdk/cli/legacy/open.py +81 -0
  52. lightning_sdk/cli/legacy/run.py +443 -0
  53. lightning_sdk/cli/legacy/start.py +107 -0
  54. lightning_sdk/cli/legacy/stop.py +107 -0
  55. lightning_sdk/cli/{studios_menu.py → legacy/studios_menu.py} +24 -1
  56. lightning_sdk/cli/legacy/switch.py +63 -0
  57. lightning_sdk/cli/{teamspace_menu.py → legacy/teamspace_menu.py} +12 -3
  58. lightning_sdk/cli/legacy/upload.py +382 -0
  59. lightning_sdk/cli/license/__init__.py +14 -0
  60. lightning_sdk/cli/license/get.py +15 -0
  61. lightning_sdk/cli/license/list.py +45 -0
  62. lightning_sdk/cli/license/set.py +13 -0
  63. lightning_sdk/cli/mmt/__init__.py +7 -0
  64. lightning_sdk/cli/studio/__init__.py +24 -0
  65. lightning_sdk/cli/studio/connect.py +139 -0
  66. lightning_sdk/cli/studio/create.py +96 -0
  67. lightning_sdk/cli/studio/delete.py +49 -0
  68. lightning_sdk/cli/studio/list.py +85 -0
  69. lightning_sdk/cli/studio/ssh.py +64 -0
  70. lightning_sdk/cli/studio/start.py +115 -0
  71. lightning_sdk/cli/studio/stop.py +45 -0
  72. lightning_sdk/cli/studio/switch.py +66 -0
  73. lightning_sdk/cli/utils/__init__.py +7 -0
  74. lightning_sdk/cli/utils/cloud_account_map.py +10 -0
  75. lightning_sdk/cli/utils/coloring.py +60 -0
  76. lightning_sdk/cli/utils/get_base_studio.py +24 -0
  77. lightning_sdk/cli/utils/handle_machine_and_gpus_args.py +69 -0
  78. lightning_sdk/cli/utils/logging.py +122 -0
  79. lightning_sdk/cli/utils/owner_selection.py +110 -0
  80. lightning_sdk/cli/utils/resolve.py +28 -0
  81. lightning_sdk/cli/utils/richt_print.py +35 -0
  82. lightning_sdk/cli/utils/save_to_config.py +27 -0
  83. lightning_sdk/cli/utils/ssh_connection.py +59 -0
  84. lightning_sdk/cli/utils/studio_selection.py +113 -0
  85. lightning_sdk/cli/utils/teamspace_selection.py +125 -0
  86. lightning_sdk/cli/vm/__init__.py +20 -0
  87. lightning_sdk/cli/vm/create.py +33 -0
  88. lightning_sdk/cli/vm/delete.py +25 -0
  89. lightning_sdk/cli/vm/list.py +30 -0
  90. lightning_sdk/cli/vm/ssh.py +31 -0
  91. lightning_sdk/cli/vm/start.py +60 -0
  92. lightning_sdk/cli/vm/stop.py +25 -0
  93. lightning_sdk/cli/vm/switch.py +38 -0
  94. lightning_sdk/constants.py +1 -0
  95. lightning_sdk/deployment/__init__.py +4 -0
  96. lightning_sdk/deployment/deployment.py +208 -28
  97. lightning_sdk/helpers.py +73 -34
  98. lightning_sdk/job/base.py +112 -12
  99. lightning_sdk/job/job.py +73 -44
  100. lightning_sdk/job/v1.py +28 -35
  101. lightning_sdk/job/v2.py +54 -17
  102. lightning_sdk/job/work.py +7 -3
  103. lightning_sdk/lightning_cloud/login.py +325 -18
  104. lightning_sdk/lightning_cloud/openapi/__init__.py +346 -26
  105. lightning_sdk/lightning_cloud/openapi/api/__init__.py +14 -0
  106. lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +1801 -384
  107. lightning_sdk/lightning_cloud/openapi/api/auth_service_api.py +376 -0
  108. lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +414 -2
  109. lightning_sdk/lightning_cloud/openapi/api/blog_posts_service_api.py +533 -0
  110. lightning_sdk/lightning_cloud/openapi/api/cloud_space_environment_template_service_api.py +638 -0
  111. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +2563 -866
  112. lightning_sdk/lightning_cloud/openapi/api/cloudy_service_api.py +327 -0
  113. lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +1720 -347
  114. lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +210 -4
  115. lightning_sdk/lightning_cloud/openapi/api/endpoint_service_api.py +126 -2119
  116. lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +283 -0
  117. lightning_sdk/lightning_cloud/openapi/api/git_credentials_service_api.py +497 -0
  118. lightning_sdk/lightning_cloud/openapi/api/incidents_service_api.py +1058 -0
  119. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +2326 -492
  120. lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +2273 -0
  121. lightning_sdk/lightning_cloud/openapi/api/lit_dataset_service_api.py +1973 -0
  122. lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +17 -5
  123. lightning_sdk/lightning_cloud/openapi/api/lit_registry_service_api.py +473 -5
  124. lightning_sdk/lightning_cloud/openapi/api/markets_service_api.py +145 -0
  125. lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +24 -24
  126. lightning_sdk/lightning_cloud/openapi/api/organizations_service_api.py +105 -0
  127. lightning_sdk/lightning_cloud/openapi/api/pipeline_templates_service_api.py +339 -0
  128. lightning_sdk/lightning_cloud/openapi/api/pipelines_service_api.py +795 -0
  129. lightning_sdk/lightning_cloud/openapi/api/product_license_service_api.py +525 -0
  130. lightning_sdk/lightning_cloud/openapi/api/projects_service_api.py +106 -5
  131. lightning_sdk/lightning_cloud/openapi/api/schedules_service_api.py +924 -0
  132. lightning_sdk/lightning_cloud/openapi/api/sdk_command_history_service_api.py +141 -0
  133. lightning_sdk/lightning_cloud/openapi/api/slurm_jobs_user_service_api.py +202 -0
  134. lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +1508 -251
  135. lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +121 -97
  136. lightning_sdk/lightning_cloud/openapi/api/volume_service_api.py +258 -0
  137. lightning_sdk/lightning_cloud/openapi/configuration.py +4 -20
  138. lightning_sdk/lightning_cloud/openapi/models/__init__.py +332 -26
  139. lightning_sdk/lightning_cloud/openapi/models/agentmanagedendpoints_id_body.py +27 -1
  140. lightning_sdk/lightning_cloud/openapi/models/agents_id_body.py +79 -1
  141. lightning_sdk/lightning_cloud/openapi/models/alertingevents_id_body.py +409 -0
  142. lightning_sdk/lightning_cloud/openapi/models/alerts_config_billing.py +175 -0
  143. lightning_sdk/lightning_cloud/openapi/models/alerts_config_studios.py +149 -0
  144. lightning_sdk/lightning_cloud/openapi/models/assistant_id_conversations_body.py +303 -17
  145. lightning_sdk/lightning_cloud/openapi/models/blogposts_id_body.py +305 -0
  146. lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_systemmetrics_body.py +149 -0
  147. lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_visibility_body.py +149 -0
  148. lightning_sdk/lightning_cloud/openapi/models/cloudspaces_id_body.py +53 -1
  149. lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityblock_body.py +15 -15
  150. lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityreservations_body.py +81 -3
  151. lightning_sdk/lightning_cloud/openapi/models/cluster_id_kubernetestemplates_body.py +201 -0
  152. lightning_sdk/lightning_cloud/openapi/models/cluster_id_metrics_body.py +305 -0
  153. lightning_sdk/lightning_cloud/openapi/models/cluster_id_slurmusers_body.py +201 -0
  154. lightning_sdk/lightning_cloud/openapi/models/cluster_id_usagerestrictions_body.py +201 -0
  155. lightning_sdk/lightning_cloud/openapi/models/conversations_id_body1.py +123 -0
  156. lightning_sdk/lightning_cloud/openapi/models/create.py +105 -1
  157. lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py +131 -1
  158. lightning_sdk/lightning_cloud/openapi/models/create_machine_request_represents_the_request_to_create_a_machine.py +461 -0
  159. lightning_sdk/lightning_cloud/openapi/models/credits_autoreplenish_body.py +175 -0
  160. lightning_sdk/lightning_cloud/openapi/models/credits_autoreplenish_body1.py +175 -0
  161. lightning_sdk/lightning_cloud/openapi/models/dataset_id_versions_body.py +149 -0
  162. lightning_sdk/lightning_cloud/openapi/models/dataset_id_visibility_body.py +149 -0
  163. lightning_sdk/lightning_cloud/openapi/models/deployment_id_alertingpolicies_body.py +357 -0
  164. lightning_sdk/lightning_cloud/openapi/models/deployment_id_alertingpolicies_body1.py +331 -0
  165. lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +315 -3
  166. lightning_sdk/lightning_cloud/openapi/models/endpoints_id_body.py +27 -1
  167. lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +199 -69
  168. lightning_sdk/lightning_cloud/openapi/models/externalv1_cluster.py +27 -1
  169. lightning_sdk/lightning_cloud/openapi/models/externalv1_user_status.py +79 -1
  170. lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +1 -53
  171. lightning_sdk/lightning_cloud/openapi/models/id_contactowner_body.py +149 -0
  172. lightning_sdk/lightning_cloud/openapi/models/id_fork_body1.py +27 -1
  173. lightning_sdk/lightning_cloud/openapi/models/id_render_body.py +123 -0
  174. lightning_sdk/lightning_cloud/openapi/models/id_reportrestarttimings_body.py +123 -0
  175. lightning_sdk/lightning_cloud/openapi/models/id_sleepconfig_body.py +175 -0
  176. lightning_sdk/lightning_cloud/openapi/models/id_transfer_body.py +175 -0
  177. lightning_sdk/lightning_cloud/openapi/models/id_visibility_body1.py +123 -0
  178. lightning_sdk/lightning_cloud/openapi/models/id_visibility_body2.py +149 -0
  179. lightning_sdk/lightning_cloud/openapi/models/incident_id_messages_body.py +123 -0
  180. lightning_sdk/lightning_cloud/openapi/models/incidents_id_body.py +279 -0
  181. lightning_sdk/lightning_cloud/openapi/models/{v1_list_service_executions_response.py → job_id_reportroutingtelemetry_body.py} +23 -23
  182. lightning_sdk/lightning_cloud/openapi/models/kubernetestemplates_id_body.py +201 -0
  183. lightning_sdk/lightning_cloud/openapi/models/license_key_validate_body.py +123 -0
  184. lightning_sdk/lightning_cloud/openapi/models/litdatasets_dataset_id_body.py +149 -0
  185. lightning_sdk/lightning_cloud/openapi/models/litregistry_lit_repo_name_body.py +123 -0
  186. lightning_sdk/lightning_cloud/openapi/models/message_id_actions_body.py +201 -0
  187. lightning_sdk/lightning_cloud/openapi/models/messages_id_body.py +123 -0
  188. lightning_sdk/lightning_cloud/openapi/models/messages_message_id_body.py +123 -0
  189. lightning_sdk/lightning_cloud/openapi/models/metricsstream_create_body.py +79 -1
  190. lightning_sdk/lightning_cloud/openapi/models/metricsstream_id_body.py +27 -1
  191. lightning_sdk/lightning_cloud/openapi/models/model_id_versions_body.py +27 -1
  192. lightning_sdk/lightning_cloud/openapi/models/model_id_visibility_body.py +27 -1
  193. lightning_sdk/lightning_cloud/openapi/models/models_id_body.py +123 -0
  194. lightning_sdk/lightning_cloud/openapi/models/models_model_id_body.py +109 -31
  195. lightning_sdk/lightning_cloud/openapi/models/models_model_id_body1.py +149 -0
  196. lightning_sdk/lightning_cloud/openapi/models/org_id_memberships_body.py +27 -1
  197. lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +627 -3
  198. lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body.py +539 -0
  199. lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body1.py +123 -0
  200. lightning_sdk/lightning_cloud/openapi/models/pipelinetemplates_id_body.py +331 -0
  201. lightning_sdk/lightning_cloud/openapi/models/project_id_agents_body.py +27 -1
  202. lightning_sdk/lightning_cloud/openapi/models/project_id_cloudspaces_body.py +131 -1
  203. lightning_sdk/lightning_cloud/openapi/models/project_id_litdatasets_body.py +227 -0
  204. lightning_sdk/lightning_cloud/openapi/models/project_id_litregistry_body.py +2 -0
  205. lightning_sdk/lightning_cloud/openapi/models/project_id_pipelines_body.py +253 -0
  206. lightning_sdk/lightning_cloud/openapi/models/project_id_schedules_body.py +331 -0
  207. lightning_sdk/lightning_cloud/openapi/models/project_id_storage_body.py +27 -1
  208. lightning_sdk/lightning_cloud/openapi/models/project_id_storagetransfers_body.py +175 -0
  209. lightning_sdk/lightning_cloud/openapi/models/project_tab_management_messages.py +123 -0
  210. lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +523 -3
  211. lightning_sdk/lightning_cloud/openapi/models/{service_artifact_artifact_kind.py → protobuf_null_value.py} +7 -9
  212. lightning_sdk/lightning_cloud/openapi/models/schedules_id_body.py +513 -0
  213. lightning_sdk/lightning_cloud/openapi/models/server_id_alerts_body.py +201 -0
  214. lightning_sdk/lightning_cloud/openapi/models/setup.py +149 -0
  215. lightning_sdk/lightning_cloud/openapi/models/slurm_jobs_body.py +93 -15
  216. lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py +41 -15
  217. lightning_sdk/lightning_cloud/openapi/models/storagetransfers_validate_body.py +149 -0
  218. lightning_sdk/lightning_cloud/openapi/models/update.py +233 -129
  219. lightning_sdk/lightning_cloud/openapi/models/update1.py +383 -0
  220. lightning_sdk/lightning_cloud/openapi/models/upload_id_complete_body1.py +149 -0
  221. lightning_sdk/lightning_cloud/openapi/models/upload_id_parts_body1.py +149 -0
  222. lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body.py +1 -27
  223. lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py +201 -0
  224. lightning_sdk/lightning_cloud/openapi/models/usagerestrictions_id_body.py +201 -0
  225. lightning_sdk/lightning_cloud/openapi/models/user_id_affiliatelinks_body.py +107 -3
  226. lightning_sdk/lightning_cloud/openapi/models/user_id_upgradetrigger_body.py +201 -0
  227. lightning_sdk/lightning_cloud/openapi/models/user_user_id_body.py +201 -0
  228. lightning_sdk/lightning_cloud/openapi/models/v1_abort_storage_transfer_response.py +97 -0
  229. lightning_sdk/lightning_cloud/openapi/models/v1_agent_job.py +188 -6
  230. lightning_sdk/lightning_cloud/openapi/models/v1_aggregated_pod_metrics.py +799 -0
  231. lightning_sdk/lightning_cloud/openapi/models/v1_ai_pod_v1.py +175 -0
  232. lightning_sdk/lightning_cloud/openapi/models/v1_alert_method.py +102 -0
  233. lightning_sdk/lightning_cloud/openapi/models/v1_alerts_config.py +149 -0
  234. lightning_sdk/lightning_cloud/openapi/models/v1_artifact.py +27 -1
  235. lightning_sdk/lightning_cloud/openapi/models/v1_assistant.py +79 -1
  236. lightning_sdk/lightning_cloud/openapi/models/v1_assistant_model_status.py +6 -0
  237. lightning_sdk/lightning_cloud/openapi/models/v1_assistant_session_daily_aggregated.py +383 -0
  238. lightning_sdk/lightning_cloud/openapi/models/v1_author.py +201 -0
  239. lightning_sdk/lightning_cloud/openapi/models/v1_aws_direct_v1.py +53 -1
  240. lightning_sdk/lightning_cloud/openapi/models/v1_billing_subscription.py +27 -1
  241. lightning_sdk/lightning_cloud/openapi/models/v1_billing_tier.py +1 -0
  242. lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +435 -0
  243. lightning_sdk/lightning_cloud/openapi/models/v1_cancel_running_cloud_space_instance_transfer_response.py +97 -0
  244. lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py +27 -1
  245. lightning_sdk/lightning_cloud/openapi/models/v1_check_cluster_name_availability_request.py +123 -0
  246. lightning_sdk/lightning_cloud/openapi/models/v1_check_cluster_name_availability_response.py +123 -0
  247. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_provider.py +117 -0
  248. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +313 -1
  249. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_artifact_event.py +149 -0
  250. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_artifact_event_type.py +103 -0
  251. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_cold_start_metrics.py +669 -0
  252. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_cold_start_metrics_stats.py +357 -0
  253. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_config.py +149 -0
  254. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template.py +409 -0
  255. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +331 -0
  256. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_type.py +105 -0
  257. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_session.py +29 -3
  258. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_source_type.py +103 -0
  259. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_specialized_view.py +105 -0
  260. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_state.py +1 -0
  261. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_transfer_metadata.py +331 -0
  262. lightning_sdk/lightning_cloud/openapi/models/v1_cloudflare_v1.py +227 -0
  263. lightning_sdk/lightning_cloud/openapi/models/v1_cloudy_expert.py +279 -0
  264. lightning_sdk/lightning_cloud/openapi/models/v1_cloudy_settings.py +227 -0
  265. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +445 -3
  266. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +211 -3
  267. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_deletion_options.py +27 -1
  268. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_metrics.py +1527 -0
  269. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +209 -1
  270. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +521 -1
  271. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_status.py +27 -1
  272. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_tagging_options.py +55 -3
  273. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_type.py +2 -0
  274. lightning_sdk/lightning_cloud/openapi/models/{v1_upload_service_execution_artifact_response.py → v1_cluster_upload.py} +34 -34
  275. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_usage_restriction.py +227 -0
  276. lightning_sdk/lightning_cloud/openapi/models/v1_complete_lit_dataset_multi_part_upload_response.py +97 -0
  277. lightning_sdk/lightning_cloud/openapi/models/v1_complete_lit_dataset_upload_response.py +97 -0
  278. lightning_sdk/lightning_cloud/openapi/models/v1_complete_running_cloud_space_instance_transfer_response.py +97 -0
  279. lightning_sdk/lightning_cloud/openapi/models/{id_complete_body.py → v1_complete_upload_temporary_artifact_request.py} +29 -29
  280. lightning_sdk/lightning_cloud/openapi/models/v1_contact_assistant_owner_reason.py +102 -0
  281. lightning_sdk/lightning_cloud/openapi/models/v1_contact_assistant_owner_response.py +97 -0
  282. lightning_sdk/lightning_cloud/openapi/models/v1_container_metrics.py +461 -0
  283. lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +53 -1
  284. lightning_sdk/lightning_cloud/openapi/models/v1_conversation_response_chunk.py +107 -3
  285. lightning_sdk/lightning_cloud/openapi/models/v1_create_billing_upgrade_trigger_record_response.py +97 -0
  286. lightning_sdk/lightning_cloud/openapi/models/v1_create_blog_post_request.py +305 -0
  287. lightning_sdk/lightning_cloud/openapi/models/v1_create_checkout_session_request.py +27 -1
  288. lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +409 -0
  289. lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_capacity_reservation_response.py +27 -1
  290. lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_request.py +539 -0
  291. lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_template_request.py +27 -1
  292. lightning_sdk/lightning_cloud/openapi/models/v1_create_git_credentials_request.py +175 -0
  293. lightning_sdk/lightning_cloud/openapi/models/v1_create_incident_request.py +305 -0
  294. lightning_sdk/lightning_cloud/openapi/models/v1_create_job_request.py +201 -0
  295. lightning_sdk/lightning_cloud/openapi/models/v1_create_license_request.py +175 -0
  296. lightning_sdk/lightning_cloud/openapi/models/v1_create_lit_dataset_multi_part_upload_response.py +123 -0
  297. lightning_sdk/lightning_cloud/openapi/models/v1_create_machine_response.py +123 -0
  298. lightning_sdk/lightning_cloud/openapi/models/v1_create_managed_endpoint_response.py +149 -0
  299. lightning_sdk/lightning_cloud/openapi/models/v1_create_model_metrics_response.py +97 -0
  300. lightning_sdk/lightning_cloud/openapi/models/v1_create_multi_machine_job_request.py +253 -0
  301. lightning_sdk/lightning_cloud/openapi/models/v1_create_organization_request.py +105 -1
  302. lightning_sdk/lightning_cloud/openapi/models/v1_create_pipeline_template_request.py +383 -0
  303. lightning_sdk/lightning_cloud/openapi/models/v1_create_project_request.py +209 -1
  304. lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_request.py +253 -0
  305. lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_response.py +97 -0
  306. lightning_sdk/lightning_cloud/openapi/models/v1_create_server_alert_response.py +97 -0
  307. lightning_sdk/lightning_cloud/openapi/models/v1_create_subscription_checkout_session_request.py +55 -3
  308. lightning_sdk/lightning_cloud/openapi/models/v1_daily_model_metrics.py +149 -0
  309. lightning_sdk/lightning_cloud/openapi/models/v1_daily_usage.py +81 -3
  310. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +261 -1
  311. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection_tier.py +103 -0
  312. lightning_sdk/lightning_cloud/openapi/models/v1_delete_blog_post_response.py +123 -0
  313. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_environment_template_response.py +97 -0
  314. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cluster_usage_restriction_response.py +97 -0
  315. lightning_sdk/lightning_cloud/openapi/models/v1_delete_deployment_alerting_policy_response.py +175 -0
  316. lightning_sdk/lightning_cloud/openapi/models/v1_delete_git_credentials_response.py +97 -0
  317. lightning_sdk/lightning_cloud/openapi/models/v1_delete_incident_message_response.py +97 -0
  318. lightning_sdk/lightning_cloud/openapi/models/v1_delete_incident_response.py +97 -0
  319. lightning_sdk/lightning_cloud/openapi/models/v1_delete_kubernetes_template_response.py +97 -0
  320. lightning_sdk/lightning_cloud/openapi/models/v1_delete_license_response.py +97 -0
  321. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_dataset_response.py +97 -0
  322. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_dataset_version_response.py +97 -0
  323. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_registry_repository_image_artifact_version_by_digest_response.py +97 -0
  324. lightning_sdk/lightning_cloud/openapi/models/v1_delete_machine_response.py +97 -0
  325. lightning_sdk/lightning_cloud/openapi/models/{v1_delete_file_endpoint_response.py → v1_delete_pipeline_response.py} +25 -25
  326. lightning_sdk/lightning_cloud/openapi/models/v1_delete_schedule_response.py +175 -0
  327. lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +315 -3
  328. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_event.py +487 -0
  329. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy.py +409 -0
  330. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_frequency.py +105 -0
  331. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_operation.py +105 -0
  332. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_severity.py +106 -0
  333. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +112 -0
  334. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_recipients.py +175 -0
  335. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_api.py +79 -1
  336. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_details.py +175 -0
  337. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_state.py +4 -2
  338. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_status.py +47 -21
  339. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template.py +53 -1
  340. lightning_sdk/lightning_cloud/openapi/models/v1_endpoint.py +27 -1
  341. lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster.py +253 -0
  342. lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +931 -0
  343. lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +53 -1
  344. lightning_sdk/lightning_cloud/openapi/models/v1_filestore_data_connection.py +253 -0
  345. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_job.py +53 -1
  346. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_metric.py +201 -0
  347. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_metrics.py +227 -0
  348. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_mmt.py +227 -0
  349. lightning_sdk/lightning_cloud/openapi/models/v1_find_capacity_block_offering_response.py +29 -3
  350. lightning_sdk/lightning_cloud/openapi/models/{id_uploads_body1.py → v1_firewall_rule.py} +53 -53
  351. lightning_sdk/lightning_cloud/openapi/models/v1_function_call.py +149 -0
  352. lightning_sdk/lightning_cloud/openapi/models/v1_function_tool.py +175 -0
  353. lightning_sdk/lightning_cloud/openapi/models/{v1_list_file_endpoints_response.py → v1_gcp_data_connection_setup.py} +23 -23
  354. lightning_sdk/lightning_cloud/openapi/models/v1_gcp_direct_vpc.py +149 -0
  355. lightning_sdk/lightning_cloud/openapi/models/v1_ge_list_deployment_routing_telemetry_response.py +123 -0
  356. lightning_sdk/lightning_cloud/openapi/models/v1_get_artifacts_page_response.py +29 -3
  357. lightning_sdk/lightning_cloud/openapi/models/v1_get_assistant_session_daily_aggregated_response.py +201 -0
  358. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_cold_start_metrics_stats_response.py +123 -0
  359. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_instance_open_ports_response.py +123 -0
  360. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_instance_system_metrics_aggregate_response.py +123 -0
  361. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_required_balance_status_response.py +149 -0
  362. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_size_response.py +79 -1
  363. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_transfer_estimate_response.py +149 -0
  364. lightning_sdk/lightning_cloud/openapi/models/v1_get_cluster_accelerator_demand_response.py +123 -0
  365. lightning_sdk/lightning_cloud/openapi/models/v1_get_cluster_health_response.py +149 -0
  366. lightning_sdk/lightning_cloud/openapi/models/v1_get_deployment_routing_telemetry_content_response.py +123 -0
  367. lightning_sdk/lightning_cloud/openapi/models/v1_get_job_stats_response.py +105 -1
  368. lightning_sdk/lightning_cloud/openapi/models/v1_get_latest_model_metrics_response.py +123 -0
  369. lightning_sdk/lightning_cloud/openapi/models/{v1_upload_service_execution_artifact_parts_response.py → v1_get_lit_dataset_file_upload_urls_response.py} +16 -16
  370. lightning_sdk/lightning_cloud/openapi/models/v1_get_lit_dataset_files_url_response.py +149 -0
  371. lightning_sdk/lightning_cloud/openapi/models/v1_get_machine_response.py +123 -0
  372. lightning_sdk/lightning_cloud/openapi/models/v1_get_market_pricing_response.py +201 -0
  373. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_metrics_response.py +123 -0
  374. lightning_sdk/lightning_cloud/openapi/models/v1_get_organization_storage_metadata_response.py +487 -0
  375. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_balance_response.py +1 -27
  376. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +263 -3
  377. lightning_sdk/lightning_cloud/openapi/models/v1_get_temp_bucket_credentials_response.py +201 -0
  378. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +235 -1
  379. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +105 -1
  380. lightning_sdk/lightning_cloud/openapi/models/v1_get_volume_response.py +123 -0
  381. lightning_sdk/lightning_cloud/openapi/models/v1_git_credentials.py +227 -0
  382. lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +185 -3
  383. lightning_sdk/lightning_cloud/openapi/models/v1_group_node_metrics.py +1215 -0
  384. lightning_sdk/lightning_cloud/openapi/models/v1_group_pod_metrics.py +1241 -0
  385. lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_request.py +177 -0
  386. lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_response.py +149 -0
  387. lightning_sdk/lightning_cloud/openapi/models/{v1_service_artifact.py → v1_guest_user.py} +60 -60
  388. lightning_sdk/lightning_cloud/openapi/models/v1_incident.py +565 -0
  389. lightning_sdk/lightning_cloud/openapi/models/v1_incident_detail.py +149 -0
  390. lightning_sdk/lightning_cloud/openapi/models/v1_incident_event.py +591 -0
  391. lightning_sdk/lightning_cloud/openapi/models/v1_incident_message.py +253 -0
  392. lightning_sdk/lightning_cloud/openapi/models/v1_incident_severity.py +105 -0
  393. lightning_sdk/lightning_cloud/openapi/models/v1_incident_type.py +108 -0
  394. lightning_sdk/lightning_cloud/openapi/models/v1_instance_overprovisioning_spec.py +95 -41
  395. lightning_sdk/lightning_cloud/openapi/models/v1_job.py +237 -3
  396. lightning_sdk/lightning_cloud/openapi/models/v1_job_artifacts_type.py +103 -0
  397. lightning_sdk/lightning_cloud/openapi/models/v1_job_resource.py +279 -0
  398. lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +209 -1
  399. lightning_sdk/lightning_cloud/openapi/models/v1_job_timing.py +27 -1
  400. lightning_sdk/lightning_cloud/openapi/models/v1_job_type.py +109 -0
  401. lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_indexes.py +149 -0
  402. lightning_sdk/lightning_cloud/openapi/models/v1_kai_scheduler_queue_metrics.py +627 -0
  403. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_aws_config.py +279 -0
  404. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_settings_v1.py +253 -0
  405. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +357 -0
  406. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1_status.py +149 -0
  407. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template.py +357 -0
  408. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template_property.py +227 -0
  409. lightning_sdk/lightning_cloud/openapi/models/v1_lambda_labs_direct_v1.py +67 -17
  410. lightning_sdk/lightning_cloud/openapi/models/v1_license.py +227 -0
  411. lightning_sdk/lightning_cloud/openapi/models/v1_lightning_elastic_cluster_v1.py +97 -0
  412. lightning_sdk/lightning_cloud/openapi/models/v1_lightning_run.py +53 -1
  413. lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_artifact.py +27 -1
  414. lightning_sdk/lightning_cloud/openapi/models/v1_like_status.py +104 -0
  415. lightning_sdk/lightning_cloud/openapi/models/v1_list_aggregated_pod_metrics_response.py +123 -0
  416. lightning_sdk/lightning_cloud/openapi/models/{v1_download_service_execution_artifact_response.py → v1_list_blog_posts_response.py} +41 -41
  417. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_cold_start_metrics_response.py +123 -0
  418. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_environment_templates_response.py +123 -0
  419. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloudy_experts_response.py +123 -0
  420. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_metric_timestamps_response.py +123 -0
  421. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_metrics_response.py +123 -0
  422. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_namespace_metrics_response.py +123 -0
  423. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_namespace_user_metrics_response.py +123 -0
  424. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_usage_restrictions_response.py +123 -0
  425. lightning_sdk/lightning_cloud/openapi/models/v1_list_clusters_response.py +6 -6
  426. lightning_sdk/lightning_cloud/openapi/models/v1_list_container_metrics_response.py +123 -0
  427. lightning_sdk/lightning_cloud/openapi/models/v1_list_conversation_message_actions_response.py +123 -0
  428. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_alerting_events_response.py +123 -0
  429. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_alerting_policies_response.py +175 -0
  430. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_metrics_response.py +123 -0
  431. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_mm_ts_response.py +123 -0
  432. lightning_sdk/lightning_cloud/openapi/models/v1_list_git_credentials_response.py +123 -0
  433. lightning_sdk/lightning_cloud/openapi/models/v1_list_group_pod_metrics_response.py +123 -0
  434. lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_events_response.py +123 -0
  435. lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_messages_response.py +149 -0
  436. lightning_sdk/lightning_cloud/openapi/models/v1_list_incidents_response.py +149 -0
  437. lightning_sdk/lightning_cloud/openapi/models/v1_list_job_resources_response.py +123 -0
  438. lightning_sdk/lightning_cloud/openapi/models/v1_list_kai_scheduler_queues_metrics_response.py +123 -0
  439. lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_templates_response.py +123 -0
  440. lightning_sdk/lightning_cloud/openapi/models/v1_list_license_response.py +123 -0
  441. lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_dataset_versions_response.py +123 -0
  442. lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_datasets_response.py +123 -0
  443. lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_registry_repository_image_artifact_versions_response.py +257 -0
  444. lightning_sdk/lightning_cloud/openapi/models/v1_list_machines_response.py +149 -0
  445. lightning_sdk/lightning_cloud/openapi/models/v1_list_node_file_system_metrics_response.py +97 -0
  446. lightning_sdk/lightning_cloud/openapi/models/v1_list_node_metrics_response.py +123 -0
  447. lightning_sdk/lightning_cloud/openapi/models/v1_list_notification_dialogs_response.py +149 -0
  448. lightning_sdk/lightning_cloud/openapi/models/v1_list_pipelines_response.py +123 -0
  449. lightning_sdk/lightning_cloud/openapi/models/v1_list_platform_notifications_response.py +123 -0
  450. lightning_sdk/lightning_cloud/openapi/models/v1_list_pod_metrics_response.py +123 -0
  451. lightning_sdk/lightning_cloud/openapi/models/v1_list_project_clusters_response.py +6 -6
  452. lightning_sdk/lightning_cloud/openapi/models/v1_list_published_managed_endpoints_response.py +123 -0
  453. lightning_sdk/lightning_cloud/openapi/models/v1_list_schedule_runs_response.py +123 -0
  454. lightning_sdk/lightning_cloud/openapi/models/v1_list_schedules_response.py +123 -0
  455. lightning_sdk/lightning_cloud/openapi/models/v1_list_slurm_cluster_users_response.py +123 -0
  456. lightning_sdk/lightning_cloud/openapi/models/v1_list_storage_transfers_response.py +123 -0
  457. lightning_sdk/lightning_cloud/openapi/models/v1_lit_dataset.py +539 -0
  458. lightning_sdk/lightning_cloud/openapi/models/{id_storage_body.py → v1_lit_dataset_file.py} +49 -49
  459. lightning_sdk/lightning_cloud/openapi/models/v1_lit_dataset_version_archive.py +435 -0
  460. lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_artifact.py +305 -0
  461. lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_project.py +35 -1
  462. lightning_sdk/lightning_cloud/openapi/models/v1_lit_repository.py +81 -1
  463. lightning_sdk/lightning_cloud/openapi/models/v1_lite_published_cloud_space_response.py +513 -0
  464. lightning_sdk/lightning_cloud/openapi/models/v1_lustre_data_connection.py +149 -0
  465. lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +617 -0
  466. lightning_sdk/lightning_cloud/openapi/models/v1_machine_direct_v1.py +123 -0
  467. lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_response.py +53 -1
  468. lightning_sdk/lightning_cloud/openapi/models/v1_managed_endpoint.py +27 -1
  469. lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +341 -3
  470. lightning_sdk/lightning_cloud/openapi/models/v1_market_price.py +149 -0
  471. lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +121 -17
  472. lightning_sdk/lightning_cloud/openapi/models/v1_message.py +159 -3
  473. lightning_sdk/lightning_cloud/openapi/models/v1_message_action.py +279 -0
  474. lightning_sdk/lightning_cloud/openapi/models/v1_metadata.py +27 -1
  475. lightning_sdk/lightning_cloud/openapi/models/v1_metrics_stream.py +79 -1
  476. lightning_sdk/lightning_cloud/openapi/models/v1_model.py +27 -1
  477. lightning_sdk/lightning_cloud/openapi/models/v1_model_metrics.py +175 -0
  478. lightning_sdk/lightning_cloud/openapi/models/{v1_delete_service_execution_response.py → v1_modify_filesystem_volume_response.py} +6 -6
  479. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job.py +27 -1
  480. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_state.py +2 -0
  481. lightning_sdk/lightning_cloud/openapi/models/v1_namespace_metrics.py +591 -0
  482. lightning_sdk/lightning_cloud/openapi/models/v1_namespace_user_metrics.py +435 -0
  483. lightning_sdk/lightning_cloud/openapi/models/v1_nebius_direct_v1.py +175 -0
  484. lightning_sdk/lightning_cloud/openapi/models/v1_node_metrics.py +695 -0
  485. lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +2 -0
  486. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +837 -3
  487. lightning_sdk/lightning_cloud/openapi/models/v1_path_mapping.py +175 -0
  488. lightning_sdk/lightning_cloud/openapi/models/v1_pause_storage_transfer_response.py +97 -0
  489. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline.py +591 -0
  490. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter.py +435 -0
  491. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter_placement.py +149 -0
  492. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter_placement_type.py +106 -0
  493. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter_type.py +106 -0
  494. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_state.py +111 -0
  495. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step.py +253 -0
  496. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_status.py +331 -0
  497. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_type.py +104 -0
  498. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_template.py +513 -0
  499. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_template_visibility_type.py +105 -0
  500. lightning_sdk/lightning_cloud/openapi/models/v1_platform_notification.py +279 -0
  501. lightning_sdk/lightning_cloud/openapi/models/v1_pod_metrics.py +747 -0
  502. lightning_sdk/lightning_cloud/openapi/models/v1_post_cloud_space_artifact_events_response.py +97 -0
  503. lightning_sdk/lightning_cloud/openapi/models/v1_project.py +105 -1
  504. lightning_sdk/lightning_cloud/openapi/models/v1_project_cluster_binding.py +53 -1
  505. lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +121 -17
  506. lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +525 -3
  507. lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +235 -1
  508. lightning_sdk/lightning_cloud/openapi/models/v1_project_tab.py +149 -0
  509. lightning_sdk/lightning_cloud/openapi/models/v1_purchase_annual_upsell_request.py +123 -0
  510. lightning_sdk/lightning_cloud/openapi/models/v1_purchase_annual_upsell_response.py +123 -0
  511. lightning_sdk/lightning_cloud/openapi/models/v1_quote_annual_upsell_response.py +227 -0
  512. lightning_sdk/lightning_cloud/openapi/models/v1_quote_subscription_response.py +27 -1
  513. lightning_sdk/lightning_cloud/openapi/models/v1_r2_data_connection.py +305 -0
  514. lightning_sdk/lightning_cloud/openapi/models/v1_render_kubernetes_template_response.py +123 -0
  515. lightning_sdk/lightning_cloud/openapi/models/v1_report_cloud_space_instance_stop_at_response.py +97 -0
  516. lightning_sdk/lightning_cloud/openapi/models/v1_report_cloud_space_instance_system_metrics_response.py +97 -0
  517. lightning_sdk/lightning_cloud/openapi/models/v1_report_deployment_routing_telemetry_response.py +97 -0
  518. lightning_sdk/lightning_cloud/openapi/models/v1_report_k8s_cluster_metrics_response.py +97 -0
  519. lightning_sdk/lightning_cloud/openapi/models/v1_report_restart_timings_response.py +97 -0
  520. lightning_sdk/lightning_cloud/openapi/models/v1_request_cloud_space_access_response.py +97 -0
  521. lightning_sdk/lightning_cloud/openapi/models/v1_required_balance_reason.py +107 -0
  522. lightning_sdk/lightning_cloud/openapi/models/v1_reservation_details.py +201 -0
  523. lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_request.py +97 -0
  524. lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_response.py +123 -0
  525. lightning_sdk/lightning_cloud/openapi/models/v1_resource_visibility.py +27 -1
  526. lightning_sdk/lightning_cloud/openapi/models/v1_resources.py +55 -3
  527. lightning_sdk/lightning_cloud/openapi/models/v1_response_choice.py +29 -3
  528. lightning_sdk/lightning_cloud/openapi/models/v1_restart_timing.py +201 -0
  529. lightning_sdk/lightning_cloud/openapi/models/v1_resume_storage_transfer_response.py +97 -0
  530. lightning_sdk/lightning_cloud/openapi/models/v1_routing_telemetry.py +357 -0
  531. lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +5 -0
  532. lightning_sdk/lightning_cloud/openapi/models/v1_schedule.py +565 -0
  533. lightning_sdk/lightning_cloud/openapi/models/{command_argument_command_argument_type.py → v1_schedule_action_type.py} +9 -8
  534. lightning_sdk/lightning_cloud/openapi/models/v1_schedule_resource_type.py +104 -0
  535. lightning_sdk/lightning_cloud/openapi/models/v1_schedule_run.py +357 -0
  536. lightning_sdk/lightning_cloud/openapi/models/v1_sdk_command_history_severity.py +104 -0
  537. lightning_sdk/lightning_cloud/openapi/models/v1_sdk_command_history_type.py +104 -0
  538. lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +2 -0
  539. lightning_sdk/lightning_cloud/openapi/models/{v1_get_service_execution_status_response.py → v1_server_alert.py} +74 -48
  540. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_phase.py +105 -0
  541. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_severity.py +103 -0
  542. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_type.py +108 -0
  543. lightning_sdk/lightning_cloud/openapi/models/v1_service_health.py +27 -1
  544. lightning_sdk/lightning_cloud/openapi/models/v1_setup_data_connection_response.py +123 -0
  545. lightning_sdk/lightning_cloud/openapi/models/v1_shared_filesystem.py +331 -0
  546. lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier.py +201 -0
  547. lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier_type.py +105 -0
  548. lightning_sdk/lightning_cloud/openapi/models/v1_sleep_server_response.py +97 -0
  549. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_cluster_user.py +227 -0
  550. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_job.py +84 -6
  551. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_node.py +31 -291
  552. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1.py +79 -1
  553. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1_status.py +79 -1
  554. lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +159 -3
  555. lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +4 -0
  556. lightning_sdk/lightning_cloud/openapi/models/v1_storage_transfer.py +435 -0
  557. lightning_sdk/lightning_cloud/openapi/models/v1_storage_transfer_status.py +108 -0
  558. lightning_sdk/lightning_cloud/openapi/models/v1_subnet_spec.py +149 -0
  559. lightning_sdk/lightning_cloud/openapi/models/v1_system_metrics_aggregated.py +227 -0
  560. lightning_sdk/lightning_cloud/openapi/models/v1_token_login_request.py +123 -0
  561. lightning_sdk/lightning_cloud/openapi/models/v1_token_login_response.py +123 -0
  562. lightning_sdk/lightning_cloud/openapi/models/v1_token_owner_type.py +104 -0
  563. lightning_sdk/lightning_cloud/openapi/models/v1_token_usage.py +175 -0
  564. lightning_sdk/lightning_cloud/openapi/models/v1_tool.py +149 -0
  565. lightning_sdk/lightning_cloud/openapi/models/v1_tool_call.py +175 -0
  566. lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
  567. lightning_sdk/lightning_cloud/openapi/models/v1_transfer_cloud_space_response.py +97 -0
  568. lightning_sdk/lightning_cloud/openapi/models/v1_trigger_filesystem_upgrade_response.py +123 -0
  569. lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_instance_config_request.py +253 -0
  570. lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_visibility_response.py +97 -0
  571. lightning_sdk/lightning_cloud/openapi/models/v1_update_conversation_like_response.py +149 -0
  572. lightning_sdk/lightning_cloud/openapi/models/v1_update_conversation_message_like_response.py +149 -0
  573. lightning_sdk/lightning_cloud/openapi/models/v1_update_deployment_visibility_response.py +97 -0
  574. lightning_sdk/lightning_cloud/openapi/models/v1_update_job_visibility_response.py +97 -0
  575. lightning_sdk/lightning_cloud/openapi/models/v1_update_lit_dataset_visibility_response.py +123 -0
  576. lightning_sdk/lightning_cloud/openapi/models/v1_update_lit_repository_response.py +97 -0
  577. lightning_sdk/lightning_cloud/openapi/models/v1_update_metrics_stream_visibility_response.py +27 -1
  578. lightning_sdk/lightning_cloud/openapi/models/v1_update_model_visibility_response.py +27 -1
  579. lightning_sdk/lightning_cloud/openapi/models/{v1_complete_upload_service_execution_artifact_response.py → v1_update_organization_credits_auto_replenish_response.py} +6 -6
  580. lightning_sdk/lightning_cloud/openapi/models/v1_update_project_tab_order_response.py +123 -0
  581. lightning_sdk/lightning_cloud/openapi/models/v1_update_user_credits_auto_replenish_response.py +97 -0
  582. lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +131 -1
  583. lightning_sdk/lightning_cloud/openapi/models/v1_update_volume_response.py +123 -0
  584. lightning_sdk/lightning_cloud/openapi/models/v1_upload_project_artifact_response.py +27 -1
  585. lightning_sdk/lightning_cloud/openapi/models/{v1_list_new_features_for_user_response.py → v1_upload_temporary_artifact_request.py} +23 -23
  586. lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +105 -1
  587. lightning_sdk/lightning_cloud/openapi/models/v1_usage_report.py +79 -1
  588. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +894 -842
  589. lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py +27 -1
  590. lightning_sdk/lightning_cloud/openapi/models/v1_validate_data_connection_response.py +27 -1
  591. lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_request.py +27 -1
  592. lightning_sdk/lightning_cloud/openapi/models/v1_validate_license_response.py +123 -0
  593. lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_endpoint_response.py +27 -1
  594. lightning_sdk/lightning_cloud/openapi/models/v1_validate_storage_transfer_response.py +123 -0
  595. lightning_sdk/lightning_cloud/openapi/models/v1_voltage_park_direct_v1.py +229 -0
  596. lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +513 -45
  597. lightning_sdk/lightning_cloud/openapi/models/v1_volume_state.py +105 -0
  598. lightning_sdk/lightning_cloud/openapi/models/v1_vultr_direct_v1.py +1 -27
  599. lightning_sdk/lightning_cloud/openapi/models/v1_weka_data_connection.py +201 -0
  600. lightning_sdk/lightning_cloud/openapi/models/validate.py +53 -1
  601. lightning_sdk/lightning_cloud/openapi/models/version_default_body.py +29 -29
  602. lightning_sdk/lightning_cloud/openapi/models/version_default_body1.py +149 -0
  603. lightning_sdk/lightning_cloud/openapi/models/version_uploads_body1.py +123 -0
  604. lightning_sdk/lightning_cloud/openapi/models/versions_version_body1.py +123 -0
  605. lightning_sdk/lightning_cloud/openapi/models/volumes_id_body.py +123 -0
  606. lightning_sdk/lightning_cloud/rest_client.py +61 -48
  607. lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +8 -3
  608. lightning_sdk/lightning_cloud/utils/data_connection.py +234 -7
  609. lightning_sdk/lit_container.py +68 -9
  610. lightning_sdk/llm/__init__.py +3 -0
  611. lightning_sdk/llm/llm.py +497 -0
  612. lightning_sdk/llm/public_assistants.py +54 -0
  613. lightning_sdk/machine.py +221 -30
  614. lightning_sdk/mmt/base.py +67 -32
  615. lightning_sdk/mmt/mmt.py +68 -50
  616. lightning_sdk/mmt/v1.py +16 -32
  617. lightning_sdk/mmt/v2.py +47 -18
  618. lightning_sdk/models.py +74 -24
  619. lightning_sdk/organization.py +4 -0
  620. lightning_sdk/owner.py +2 -1
  621. lightning_sdk/pipeline/__init__.py +14 -0
  622. lightning_sdk/pipeline/pipeline.py +163 -0
  623. lightning_sdk/pipeline/printer.py +124 -0
  624. lightning_sdk/pipeline/schedule.py +859 -0
  625. lightning_sdk/pipeline/steps.py +365 -0
  626. lightning_sdk/pipeline/utils.py +116 -0
  627. lightning_sdk/plugin.py +39 -20
  628. lightning_sdk/sandbox.py +160 -0
  629. lightning_sdk/serve.py +309 -0
  630. lightning_sdk/services/__init__.py +1 -1
  631. lightning_sdk/services/file_endpoint.py +3 -4
  632. lightning_sdk/services/utilities.py +16 -2
  633. lightning_sdk/studio.py +515 -41
  634. lightning_sdk/teamspace.py +335 -30
  635. lightning_sdk/user.py +19 -1
  636. lightning_sdk/utils/config.py +179 -0
  637. lightning_sdk/utils/license.py +13 -0
  638. lightning_sdk/utils/logging.py +79 -0
  639. lightning_sdk/utils/names.py +1179 -0
  640. lightning_sdk/utils/progress.py +283 -0
  641. lightning_sdk/utils/resolve.py +149 -13
  642. {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/METADATA +14 -11
  643. {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/RECORD +649 -250
  644. {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/WHEEL +1 -1
  645. {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/entry_points.txt +1 -0
  646. lightning_sdk/cli/ai_hub.py +0 -49
  647. lightning_sdk/cli/delete.py +0 -58
  648. lightning_sdk/cli/download.py +0 -132
  649. lightning_sdk/cli/inspect.py +0 -31
  650. lightning_sdk/cli/legacy.py +0 -135
  651. lightning_sdk/cli/list.py +0 -112
  652. lightning_sdk/cli/run.py +0 -225
  653. lightning_sdk/cli/serve.py +0 -218
  654. lightning_sdk/cli/stop.py +0 -37
  655. lightning_sdk/cli/upload.py +0 -255
  656. lightning_sdk/lightning_cloud/openapi/models/fileendpoints_id_body.py +0 -409
  657. lightning_sdk/lightning_cloud/openapi/models/project_id_fileendpoints_body.py +0 -357
  658. lightning_sdk/lightning_cloud/openapi/models/project_id_serviceexecution_body.py +0 -175
  659. lightning_sdk/lightning_cloud/openapi/models/serviceexecution_id_body.py +0 -331
  660. lightning_sdk/lightning_cloud/openapi/models/v1_command_argument.py +0 -305
  661. lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +0 -279
  662. lightning_sdk/lightning_cloud/openapi/models/v1_file_endpoint.py +0 -461
  663. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_response.py +0 -201
  664. lightning_sdk/lightning_cloud/openapi/models/v1_list_service_execution_lightningapp_instances_response.py +0 -175
  665. lightning_sdk/lightning_cloud/openapi/models/v1_service_execution.py +0 -383
  666. /lightning_sdk/cli/{exceptions.py → legacy/exceptions.py} +0 -0
  667. /lightning_sdk/services/{finetune/__init__.py → finetune_llm.py} +0 -0
  668. {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/LICENSE +0 -0
  669. {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/top_level.txt +0 -0
@@ -41,259 +41,263 @@ class V1UserFeatures(object):
41
41
  and the value is json key in definition.
42
42
  """
43
43
  swagger_types = {
44
- 'advanced_deployment_autoscaling': 'bool',
45
44
  'affiliate_links': 'bool',
46
45
  'agents_v2': 'bool',
47
46
  'ai_hub_monetization': 'bool',
48
47
  'auto_fast_load': 'bool',
49
- 'auto_join_orgs': 'bool',
50
48
  'b2c_experience': 'bool',
49
+ 'byo_machine_type': 'bool',
51
50
  'cap_add': 'list[str]',
52
51
  'cap_drop': 'list[str]',
53
52
  'capacity_reservation_byoc': 'bool',
54
53
  'capacity_reservation_dry_run': 'bool',
54
+ 'chat_models': 'bool',
55
+ 'cloudspace_schedules': 'bool',
55
56
  'code_tab': 'bool',
56
57
  'collab_screen_sharing': 'bool',
58
+ 'control_center_monitoring': 'bool',
57
59
  'cost_attribution_settings': 'bool',
58
- 'custom_app_domain': 'bool',
59
- 'custom_instance_types': 'bool',
60
+ 'datasets': 'bool',
60
61
  'default_one_cluster': 'bool',
61
- 'deployment_customize_api': 'bool',
62
- 'deployment_data_path': 'bool',
63
- 'deployment_gallery': 'bool',
64
- 'deployment_persistent_disk': 'bool',
65
- 'deployment_version_visibility': 'bool',
66
- 'docs_agent': 'bool',
67
62
  'drive_v2': 'bool',
68
- 'enable_crypto_crackdown': 'bool',
69
- 'enable_efs': 'bool',
70
- 'enable_storage_limits': 'bool',
63
+ 'enterprise_compute_admin': 'bool',
64
+ 'f234': 'bool',
65
+ 'f236': 'bool',
66
+ 'f240': 'bool',
67
+ 'f241': 'bool',
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',
88
+ 'fair_share': 'bool',
71
89
  'featured_studios_admin': 'bool',
72
- 'filesystem_optimisation': 'bool',
73
- 'gcp': 'bool',
74
- 'inference_job_deployment_plugin': 'bool',
75
- 'instant_capacity_reservation': 'bool',
76
- 'jobs_init': 'bool',
77
- 'jobs_v2': 'bool',
90
+ 'job_artifacts_v2': 'bool',
91
+ 'kubernetes_cluster_ui': 'bool',
92
+ 'kubernetes_clusters': 'bool',
78
93
  'landing_studios': 'bool',
79
- 'lightning_registry': 'bool',
80
94
  'lit_logger': 'bool',
81
- 'lit_logger_storage_v2': 'bool',
95
+ 'marketplace': 'bool',
82
96
  'mmt_fault_tolerance': 'bool',
83
97
  'mmt_strategy_selector': 'bool',
84
- 'mmt_v2': 'bool',
85
- 'model_store': 'bool',
86
- 'multiple_deployment_versions': 'bool',
87
98
  'multiple_studio_versions': 'bool',
99
+ 'nerf_fs_nonpaying': 'bool',
88
100
  'org_level_member_permissions': 'bool',
89
- 'pipelines': 'bool',
90
- 'plugin_biz_chat': 'bool',
101
+ 'org_usage_limits': 'bool',
102
+ 'persistent_disk': 'bool',
91
103
  'plugin_distributed': 'bool',
92
- 'plugin_fiftyone': 'bool',
93
104
  'plugin_inference': 'bool',
94
105
  'plugin_label_studio': 'bool',
95
106
  'plugin_langflow': 'bool',
96
- 'plugin_lightning_apps': 'bool',
97
- 'plugin_lightning_apps_distributed': 'bool',
98
- 'plugin_mage_ai': 'bool',
99
- 'plugin_milvus': 'bool',
100
107
  'plugin_python_profiler': 'bool',
101
- 'plugin_react': 'bool',
102
- 'plugin_service': 'bool',
103
108
  'plugin_sweeps': 'bool',
104
- 'plugin_weviate': 'bool',
105
109
  'pricing_updates': 'bool',
106
110
  'product_generator': 'bool',
111
+ 'product_license': 'bool',
107
112
  'project_selector': 'bool',
108
- 'restart_ide_on_hang': 'bool',
113
+ 'publish_pipelines': 'bool',
114
+ 'reserved_machines_tab': 'bool',
109
115
  'restartable_jobs': 'bool',
110
116
  'runnable_public_studio_page': 'bool',
117
+ 'security_docs': 'bool',
111
118
  'show_dev_admin': 'bool',
112
119
  'slurm': 'bool',
113
- 'slurm_machine_selector': 'bool',
114
- 'snapshotter_service': 'bool',
115
- 'snowflake_connection': 'bool',
116
- 'spot_v2': 'bool',
120
+ 'specialised_studios': 'bool',
121
+ 'storage_overuse_deletion': 'bool',
117
122
  'studio_config': 'bool',
118
- 'studio_on_stop': 'bool',
119
123
  'studio_version_visibility': 'bool',
120
- 'teamspace_storage_tab': 'bool',
121
- 'trainium2': 'bool',
122
- 'use_rclone_mounts_only': 'bool',
123
124
  'vultr': 'bool',
124
- 'writable_data_connections': 'bool'
125
+ 'weka': 'bool',
126
+ 'writable_s3_connections': 'bool'
125
127
  }
126
128
 
127
129
  attribute_map = {
128
- 'advanced_deployment_autoscaling': 'advancedDeploymentAutoscaling',
129
130
  'affiliate_links': 'affiliateLinks',
130
131
  'agents_v2': 'agentsV2',
131
132
  'ai_hub_monetization': 'aiHubMonetization',
132
133
  'auto_fast_load': 'autoFastLoad',
133
- 'auto_join_orgs': 'autoJoinOrgs',
134
134
  'b2c_experience': 'b2cExperience',
135
+ 'byo_machine_type': 'byoMachineType',
135
136
  'cap_add': 'capAdd',
136
137
  'cap_drop': 'capDrop',
137
138
  'capacity_reservation_byoc': 'capacityReservationByoc',
138
139
  'capacity_reservation_dry_run': 'capacityReservationDryRun',
140
+ 'chat_models': 'chatModels',
141
+ 'cloudspace_schedules': 'cloudspaceSchedules',
139
142
  'code_tab': 'codeTab',
140
143
  'collab_screen_sharing': 'collabScreenSharing',
144
+ 'control_center_monitoring': 'controlCenterMonitoring',
141
145
  'cost_attribution_settings': 'costAttributionSettings',
142
- 'custom_app_domain': 'customAppDomain',
143
- 'custom_instance_types': 'customInstanceTypes',
146
+ 'datasets': 'datasets',
144
147
  'default_one_cluster': 'defaultOneCluster',
145
- 'deployment_customize_api': 'deploymentCustomizeApi',
146
- 'deployment_data_path': 'deploymentDataPath',
147
- 'deployment_gallery': 'deploymentGallery',
148
- 'deployment_persistent_disk': 'deploymentPersistentDisk',
149
- 'deployment_version_visibility': 'deploymentVersionVisibility',
150
- 'docs_agent': 'docsAgent',
151
148
  'drive_v2': 'driveV2',
152
- 'enable_crypto_crackdown': 'enableCryptoCrackdown',
153
- 'enable_efs': 'enableEfs',
154
- 'enable_storage_limits': 'enableStorageLimits',
149
+ 'enterprise_compute_admin': 'enterpriseComputeAdmin',
150
+ 'f234': 'f234',
151
+ 'f236': 'f236',
152
+ 'f240': 'f240',
153
+ 'f241': 'f241',
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',
174
+ 'fair_share': 'fairShare',
155
175
  'featured_studios_admin': 'featuredStudiosAdmin',
156
- 'filesystem_optimisation': 'filesystemOptimisation',
157
- 'gcp': 'gcp',
158
- 'inference_job_deployment_plugin': 'inferenceJobDeploymentPlugin',
159
- 'instant_capacity_reservation': 'instantCapacityReservation',
160
- 'jobs_init': 'jobsInit',
161
- 'jobs_v2': 'jobsV2',
176
+ 'job_artifacts_v2': 'jobArtifactsV2',
177
+ 'kubernetes_cluster_ui': 'kubernetesClusterUi',
178
+ 'kubernetes_clusters': 'kubernetesClusters',
162
179
  'landing_studios': 'landingStudios',
163
- 'lightning_registry': 'lightningRegistry',
164
180
  'lit_logger': 'litLogger',
165
- 'lit_logger_storage_v2': 'litLoggerStorageV2',
181
+ 'marketplace': 'marketplace',
166
182
  'mmt_fault_tolerance': 'mmtFaultTolerance',
167
183
  'mmt_strategy_selector': 'mmtStrategySelector',
168
- 'mmt_v2': 'mmtV2',
169
- 'model_store': 'modelStore',
170
- 'multiple_deployment_versions': 'multipleDeploymentVersions',
171
184
  'multiple_studio_versions': 'multipleStudioVersions',
185
+ 'nerf_fs_nonpaying': 'nerfFsNonpaying',
172
186
  'org_level_member_permissions': 'orgLevelMemberPermissions',
173
- 'pipelines': 'pipelines',
174
- 'plugin_biz_chat': 'pluginBizChat',
187
+ 'org_usage_limits': 'orgUsageLimits',
188
+ 'persistent_disk': 'persistentDisk',
175
189
  'plugin_distributed': 'pluginDistributed',
176
- 'plugin_fiftyone': 'pluginFiftyone',
177
190
  'plugin_inference': 'pluginInference',
178
191
  'plugin_label_studio': 'pluginLabelStudio',
179
192
  'plugin_langflow': 'pluginLangflow',
180
- 'plugin_lightning_apps': 'pluginLightningApps',
181
- 'plugin_lightning_apps_distributed': 'pluginLightningAppsDistributed',
182
- 'plugin_mage_ai': 'pluginMageAi',
183
- 'plugin_milvus': 'pluginMilvus',
184
193
  'plugin_python_profiler': 'pluginPythonProfiler',
185
- 'plugin_react': 'pluginReact',
186
- 'plugin_service': 'pluginService',
187
194
  'plugin_sweeps': 'pluginSweeps',
188
- 'plugin_weviate': 'pluginWeviate',
189
195
  'pricing_updates': 'pricingUpdates',
190
196
  'product_generator': 'productGenerator',
197
+ 'product_license': 'productLicense',
191
198
  'project_selector': 'projectSelector',
192
- 'restart_ide_on_hang': 'restartIdeOnHang',
199
+ 'publish_pipelines': 'publishPipelines',
200
+ 'reserved_machines_tab': 'reservedMachinesTab',
193
201
  'restartable_jobs': 'restartableJobs',
194
202
  'runnable_public_studio_page': 'runnablePublicStudioPage',
203
+ 'security_docs': 'securityDocs',
195
204
  'show_dev_admin': 'showDevAdmin',
196
205
  'slurm': 'slurm',
197
- 'slurm_machine_selector': 'slurmMachineSelector',
198
- 'snapshotter_service': 'snapshotterService',
199
- 'snowflake_connection': 'snowflakeConnection',
200
- 'spot_v2': 'spotV2',
206
+ 'specialised_studios': 'specialisedStudios',
207
+ 'storage_overuse_deletion': 'storageOveruseDeletion',
201
208
  'studio_config': 'studioConfig',
202
- 'studio_on_stop': 'studioOnStop',
203
209
  'studio_version_visibility': 'studioVersionVisibility',
204
- 'teamspace_storage_tab': 'teamspaceStorageTab',
205
- 'trainium2': 'trainium2',
206
- 'use_rclone_mounts_only': 'useRcloneMountsOnly',
207
210
  'vultr': 'vultr',
208
- 'writable_data_connections': 'writableDataConnections'
211
+ 'weka': 'weka',
212
+ 'writable_s3_connections': 'writableS3Connections'
209
213
  }
210
214
 
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, 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, enable_crypto_crackdown: 'bool' =None, enable_efs: 'bool' =None, enable_storage_limits: 'bool' =None, featured_studios_admin: 'bool' =None, filesystem_optimisation: 'bool' =None, gcp: 'bool' =None, inference_job_deployment_plugin: 'bool' =None, instant_capacity_reservation: 'bool' =None, jobs_init: 'bool' =None, jobs_v2: 'bool' =None, landing_studios: 'bool' =None, lightning_registry: 'bool' =None, lit_logger: 'bool' =None, lit_logger_storage_v2: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, mmt_v2: 'bool' =None, model_store: 'bool' =None, multiple_deployment_versions: 'bool' =None, multiple_studio_versions: 'bool' =None, org_level_member_permissions: 'bool' =None, pipelines: 'bool' =None, plugin_biz_chat: 'bool' =None, plugin_distributed: 'bool' =None, plugin_fiftyone: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_lightning_apps: 'bool' =None, plugin_lightning_apps_distributed: 'bool' =None, plugin_mage_ai: 'bool' =None, plugin_milvus: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_react: 'bool' =None, plugin_service: 'bool' =None, plugin_sweeps: 'bool' =None, plugin_weviate: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, project_selector: 'bool' =None, restart_ide_on_hang: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, show_dev_admin: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, snapshotter_service: 'bool' =None, snowflake_connection: 'bool' =None, spot_v2: 'bool' =None, studio_config: 'bool' =None, studio_on_stop: 'bool' =None, studio_version_visibility: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, vultr: 'bool' =None, writable_data_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
212
216
  """V1UserFeatures - a model defined in Swagger""" # noqa: E501
213
- self._advanced_deployment_autoscaling = None
214
217
  self._affiliate_links = None
215
218
  self._agents_v2 = None
216
219
  self._ai_hub_monetization = None
217
220
  self._auto_fast_load = None
218
- self._auto_join_orgs = None
219
221
  self._b2c_experience = None
222
+ self._byo_machine_type = None
220
223
  self._cap_add = None
221
224
  self._cap_drop = None
222
225
  self._capacity_reservation_byoc = None
223
226
  self._capacity_reservation_dry_run = None
227
+ self._chat_models = None
228
+ self._cloudspace_schedules = None
224
229
  self._code_tab = None
225
230
  self._collab_screen_sharing = None
231
+ self._control_center_monitoring = None
226
232
  self._cost_attribution_settings = None
227
- self._custom_app_domain = None
228
- self._custom_instance_types = None
233
+ self._datasets = None
229
234
  self._default_one_cluster = None
230
- self._deployment_customize_api = None
231
- self._deployment_data_path = None
232
- self._deployment_gallery = None
233
- self._deployment_persistent_disk = None
234
- self._deployment_version_visibility = None
235
- self._docs_agent = None
236
235
  self._drive_v2 = None
237
- self._enable_crypto_crackdown = None
238
- self._enable_efs = None
239
- self._enable_storage_limits = None
236
+ self._enterprise_compute_admin = None
237
+ self._f234 = None
238
+ self._f236 = None
239
+ self._f240 = None
240
+ self._f241 = None
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
261
+ self._fair_share = None
240
262
  self._featured_studios_admin = None
241
- self._filesystem_optimisation = None
242
- self._gcp = None
243
- self._inference_job_deployment_plugin = None
244
- self._instant_capacity_reservation = None
245
- self._jobs_init = None
246
- self._jobs_v2 = None
263
+ self._job_artifacts_v2 = None
264
+ self._kubernetes_cluster_ui = None
265
+ self._kubernetes_clusters = None
247
266
  self._landing_studios = None
248
- self._lightning_registry = None
249
267
  self._lit_logger = None
250
- self._lit_logger_storage_v2 = None
268
+ self._marketplace = None
251
269
  self._mmt_fault_tolerance = None
252
270
  self._mmt_strategy_selector = None
253
- self._mmt_v2 = None
254
- self._model_store = None
255
- self._multiple_deployment_versions = None
256
271
  self._multiple_studio_versions = None
272
+ self._nerf_fs_nonpaying = None
257
273
  self._org_level_member_permissions = None
258
- self._pipelines = None
259
- self._plugin_biz_chat = None
274
+ self._org_usage_limits = None
275
+ self._persistent_disk = None
260
276
  self._plugin_distributed = None
261
- self._plugin_fiftyone = None
262
277
  self._plugin_inference = None
263
278
  self._plugin_label_studio = None
264
279
  self._plugin_langflow = None
265
- self._plugin_lightning_apps = None
266
- self._plugin_lightning_apps_distributed = None
267
- self._plugin_mage_ai = None
268
- self._plugin_milvus = None
269
280
  self._plugin_python_profiler = None
270
- self._plugin_react = None
271
- self._plugin_service = None
272
281
  self._plugin_sweeps = None
273
- self._plugin_weviate = None
274
282
  self._pricing_updates = None
275
283
  self._product_generator = None
284
+ self._product_license = None
276
285
  self._project_selector = None
277
- self._restart_ide_on_hang = None
286
+ self._publish_pipelines = None
287
+ self._reserved_machines_tab = None
278
288
  self._restartable_jobs = None
279
289
  self._runnable_public_studio_page = None
290
+ self._security_docs = None
280
291
  self._show_dev_admin = None
281
292
  self._slurm = None
282
- self._slurm_machine_selector = None
283
- self._snapshotter_service = None
284
- self._snowflake_connection = None
285
- self._spot_v2 = None
293
+ self._specialised_studios = None
294
+ self._storage_overuse_deletion = None
286
295
  self._studio_config = None
287
- self._studio_on_stop = None
288
296
  self._studio_version_visibility = None
289
- self._teamspace_storage_tab = None
290
- self._trainium2 = None
291
- self._use_rclone_mounts_only = None
292
297
  self._vultr = None
293
- self._writable_data_connections = None
298
+ self._weka = None
299
+ self._writable_s3_connections = None
294
300
  self.discriminator = None
295
- if advanced_deployment_autoscaling is not None:
296
- self.advanced_deployment_autoscaling = advanced_deployment_autoscaling
297
301
  if affiliate_links is not None:
298
302
  self.affiliate_links = affiliate_links
299
303
  if agents_v2 is not None:
@@ -302,10 +306,10 @@ class V1UserFeatures(object):
302
306
  self.ai_hub_monetization = ai_hub_monetization
303
307
  if auto_fast_load is not None:
304
308
  self.auto_fast_load = auto_fast_load
305
- if auto_join_orgs is not None:
306
- self.auto_join_orgs = auto_join_orgs
307
309
  if b2c_experience is not None:
308
310
  self.b2c_experience = b2c_experience
311
+ if byo_machine_type is not None:
312
+ self.byo_machine_type = byo_machine_type
309
313
  if cap_add is not None:
310
314
  self.cap_add = cap_add
311
315
  if cap_drop is not None:
@@ -314,167 +318,152 @@ class V1UserFeatures(object):
314
318
  self.capacity_reservation_byoc = capacity_reservation_byoc
315
319
  if capacity_reservation_dry_run is not None:
316
320
  self.capacity_reservation_dry_run = capacity_reservation_dry_run
321
+ if chat_models is not None:
322
+ self.chat_models = chat_models
323
+ if cloudspace_schedules is not None:
324
+ self.cloudspace_schedules = cloudspace_schedules
317
325
  if code_tab is not None:
318
326
  self.code_tab = code_tab
319
327
  if collab_screen_sharing is not None:
320
328
  self.collab_screen_sharing = collab_screen_sharing
329
+ if control_center_monitoring is not None:
330
+ self.control_center_monitoring = control_center_monitoring
321
331
  if cost_attribution_settings is not None:
322
332
  self.cost_attribution_settings = cost_attribution_settings
323
- if custom_app_domain is not None:
324
- self.custom_app_domain = custom_app_domain
325
- if custom_instance_types is not None:
326
- self.custom_instance_types = custom_instance_types
333
+ if datasets is not None:
334
+ self.datasets = datasets
327
335
  if default_one_cluster is not None:
328
336
  self.default_one_cluster = default_one_cluster
329
- if deployment_customize_api is not None:
330
- self.deployment_customize_api = deployment_customize_api
331
- if deployment_data_path is not None:
332
- self.deployment_data_path = deployment_data_path
333
- if deployment_gallery is not None:
334
- self.deployment_gallery = deployment_gallery
335
- if deployment_persistent_disk is not None:
336
- self.deployment_persistent_disk = deployment_persistent_disk
337
- if deployment_version_visibility is not None:
338
- self.deployment_version_visibility = deployment_version_visibility
339
- if docs_agent is not None:
340
- self.docs_agent = docs_agent
341
337
  if drive_v2 is not None:
342
338
  self.drive_v2 = drive_v2
343
- if enable_crypto_crackdown is not None:
344
- self.enable_crypto_crackdown = enable_crypto_crackdown
345
- if enable_efs is not None:
346
- self.enable_efs = enable_efs
347
- if enable_storage_limits is not None:
348
- self.enable_storage_limits = enable_storage_limits
339
+ if enterprise_compute_admin is not None:
340
+ self.enterprise_compute_admin = enterprise_compute_admin
341
+ if f234 is not None:
342
+ self.f234 = f234
343
+ if f236 is not None:
344
+ self.f236 = f236
345
+ if f240 is not None:
346
+ self.f240 = f240
347
+ if f241 is not None:
348
+ self.f241 = f241
349
+ if f243 is not None:
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
+ if fair_share is not None:
390
+ self.fair_share = fair_share
349
391
  if featured_studios_admin is not None:
350
392
  self.featured_studios_admin = featured_studios_admin
351
- if filesystem_optimisation is not None:
352
- self.filesystem_optimisation = filesystem_optimisation
353
- if gcp is not None:
354
- self.gcp = gcp
355
- if inference_job_deployment_plugin is not None:
356
- self.inference_job_deployment_plugin = inference_job_deployment_plugin
357
- if instant_capacity_reservation is not None:
358
- self.instant_capacity_reservation = instant_capacity_reservation
359
- if jobs_init is not None:
360
- self.jobs_init = jobs_init
361
- if jobs_v2 is not None:
362
- self.jobs_v2 = jobs_v2
393
+ if job_artifacts_v2 is not None:
394
+ self.job_artifacts_v2 = job_artifacts_v2
395
+ if kubernetes_cluster_ui is not None:
396
+ self.kubernetes_cluster_ui = kubernetes_cluster_ui
397
+ if kubernetes_clusters is not None:
398
+ self.kubernetes_clusters = kubernetes_clusters
363
399
  if landing_studios is not None:
364
400
  self.landing_studios = landing_studios
365
- if lightning_registry is not None:
366
- self.lightning_registry = lightning_registry
367
401
  if lit_logger is not None:
368
402
  self.lit_logger = lit_logger
369
- if lit_logger_storage_v2 is not None:
370
- self.lit_logger_storage_v2 = lit_logger_storage_v2
403
+ if marketplace is not None:
404
+ self.marketplace = marketplace
371
405
  if mmt_fault_tolerance is not None:
372
406
  self.mmt_fault_tolerance = mmt_fault_tolerance
373
407
  if mmt_strategy_selector is not None:
374
408
  self.mmt_strategy_selector = mmt_strategy_selector
375
- if mmt_v2 is not None:
376
- self.mmt_v2 = mmt_v2
377
- if model_store is not None:
378
- self.model_store = model_store
379
- if multiple_deployment_versions is not None:
380
- self.multiple_deployment_versions = multiple_deployment_versions
381
409
  if multiple_studio_versions is not None:
382
410
  self.multiple_studio_versions = multiple_studio_versions
411
+ if nerf_fs_nonpaying is not None:
412
+ self.nerf_fs_nonpaying = nerf_fs_nonpaying
383
413
  if org_level_member_permissions is not None:
384
414
  self.org_level_member_permissions = org_level_member_permissions
385
- if pipelines is not None:
386
- self.pipelines = pipelines
387
- if plugin_biz_chat is not None:
388
- self.plugin_biz_chat = plugin_biz_chat
415
+ if org_usage_limits is not None:
416
+ self.org_usage_limits = org_usage_limits
417
+ if persistent_disk is not None:
418
+ self.persistent_disk = persistent_disk
389
419
  if plugin_distributed is not None:
390
420
  self.plugin_distributed = plugin_distributed
391
- if plugin_fiftyone is not None:
392
- self.plugin_fiftyone = plugin_fiftyone
393
421
  if plugin_inference is not None:
394
422
  self.plugin_inference = plugin_inference
395
423
  if plugin_label_studio is not None:
396
424
  self.plugin_label_studio = plugin_label_studio
397
425
  if plugin_langflow is not None:
398
426
  self.plugin_langflow = plugin_langflow
399
- if plugin_lightning_apps is not None:
400
- self.plugin_lightning_apps = plugin_lightning_apps
401
- if plugin_lightning_apps_distributed is not None:
402
- self.plugin_lightning_apps_distributed = plugin_lightning_apps_distributed
403
- if plugin_mage_ai is not None:
404
- self.plugin_mage_ai = plugin_mage_ai
405
- if plugin_milvus is not None:
406
- self.plugin_milvus = plugin_milvus
407
427
  if plugin_python_profiler is not None:
408
428
  self.plugin_python_profiler = plugin_python_profiler
409
- if plugin_react is not None:
410
- self.plugin_react = plugin_react
411
- if plugin_service is not None:
412
- self.plugin_service = plugin_service
413
429
  if plugin_sweeps is not None:
414
430
  self.plugin_sweeps = plugin_sweeps
415
- if plugin_weviate is not None:
416
- self.plugin_weviate = plugin_weviate
417
431
  if pricing_updates is not None:
418
432
  self.pricing_updates = pricing_updates
419
433
  if product_generator is not None:
420
434
  self.product_generator = product_generator
435
+ if product_license is not None:
436
+ self.product_license = product_license
421
437
  if project_selector is not None:
422
438
  self.project_selector = project_selector
423
- if restart_ide_on_hang is not None:
424
- self.restart_ide_on_hang = restart_ide_on_hang
439
+ if publish_pipelines is not None:
440
+ self.publish_pipelines = publish_pipelines
441
+ if reserved_machines_tab is not None:
442
+ self.reserved_machines_tab = reserved_machines_tab
425
443
  if restartable_jobs is not None:
426
444
  self.restartable_jobs = restartable_jobs
427
445
  if runnable_public_studio_page is not None:
428
446
  self.runnable_public_studio_page = runnable_public_studio_page
447
+ if security_docs is not None:
448
+ self.security_docs = security_docs
429
449
  if show_dev_admin is not None:
430
450
  self.show_dev_admin = show_dev_admin
431
451
  if slurm is not None:
432
452
  self.slurm = slurm
433
- if slurm_machine_selector is not None:
434
- self.slurm_machine_selector = slurm_machine_selector
435
- if snapshotter_service is not None:
436
- self.snapshotter_service = snapshotter_service
437
- if snowflake_connection is not None:
438
- self.snowflake_connection = snowflake_connection
439
- if spot_v2 is not None:
440
- self.spot_v2 = spot_v2
453
+ if specialised_studios is not None:
454
+ self.specialised_studios = specialised_studios
455
+ if storage_overuse_deletion is not None:
456
+ self.storage_overuse_deletion = storage_overuse_deletion
441
457
  if studio_config is not None:
442
458
  self.studio_config = studio_config
443
- if studio_on_stop is not None:
444
- self.studio_on_stop = studio_on_stop
445
459
  if studio_version_visibility is not None:
446
460
  self.studio_version_visibility = studio_version_visibility
447
- if teamspace_storage_tab is not None:
448
- self.teamspace_storage_tab = teamspace_storage_tab
449
- if trainium2 is not None:
450
- self.trainium2 = trainium2
451
- if use_rclone_mounts_only is not None:
452
- self.use_rclone_mounts_only = use_rclone_mounts_only
453
461
  if vultr is not None:
454
462
  self.vultr = vultr
455
- if writable_data_connections is not None:
456
- self.writable_data_connections = writable_data_connections
457
-
458
- @property
459
- def advanced_deployment_autoscaling(self) -> 'bool':
460
- """Gets the advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
461
-
462
-
463
- :return: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
464
- :rtype: bool
465
- """
466
- return self._advanced_deployment_autoscaling
467
-
468
- @advanced_deployment_autoscaling.setter
469
- def advanced_deployment_autoscaling(self, advanced_deployment_autoscaling: 'bool'):
470
- """Sets the advanced_deployment_autoscaling of this V1UserFeatures.
471
-
472
-
473
- :param advanced_deployment_autoscaling: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
474
- :type: bool
475
- """
476
-
477
- self._advanced_deployment_autoscaling = advanced_deployment_autoscaling
463
+ if weka is not None:
464
+ self.weka = weka
465
+ if writable_s3_connections is not None:
466
+ self.writable_s3_connections = writable_s3_connections
478
467
 
479
468
  @property
480
469
  def affiliate_links(self) -> 'bool':
@@ -561,46 +550,46 @@ class V1UserFeatures(object):
561
550
  self._auto_fast_load = auto_fast_load
562
551
 
563
552
  @property
564
- def auto_join_orgs(self) -> 'bool':
565
- """Gets the auto_join_orgs of this V1UserFeatures. # noqa: E501
553
+ def b2c_experience(self) -> 'bool':
554
+ """Gets the b2c_experience of this V1UserFeatures. # noqa: E501
566
555
 
567
556
 
568
- :return: The auto_join_orgs of this V1UserFeatures. # noqa: E501
557
+ :return: The b2c_experience of this V1UserFeatures. # noqa: E501
569
558
  :rtype: bool
570
559
  """
571
- return self._auto_join_orgs
560
+ return self._b2c_experience
572
561
 
573
- @auto_join_orgs.setter
574
- def auto_join_orgs(self, auto_join_orgs: 'bool'):
575
- """Sets the auto_join_orgs of this V1UserFeatures.
562
+ @b2c_experience.setter
563
+ def b2c_experience(self, b2c_experience: 'bool'):
564
+ """Sets the b2c_experience of this V1UserFeatures.
576
565
 
577
566
 
578
- :param auto_join_orgs: The auto_join_orgs of this V1UserFeatures. # noqa: E501
567
+ :param b2c_experience: The b2c_experience of this V1UserFeatures. # noqa: E501
579
568
  :type: bool
580
569
  """
581
570
 
582
- self._auto_join_orgs = auto_join_orgs
571
+ self._b2c_experience = b2c_experience
583
572
 
584
573
  @property
585
- def b2c_experience(self) -> 'bool':
586
- """Gets the b2c_experience of this V1UserFeatures. # noqa: E501
574
+ def byo_machine_type(self) -> 'bool':
575
+ """Gets the byo_machine_type of this V1UserFeatures. # noqa: E501
587
576
 
588
577
 
589
- :return: The b2c_experience of this V1UserFeatures. # noqa: E501
578
+ :return: The byo_machine_type of this V1UserFeatures. # noqa: E501
590
579
  :rtype: bool
591
580
  """
592
- return self._b2c_experience
581
+ return self._byo_machine_type
593
582
 
594
- @b2c_experience.setter
595
- def b2c_experience(self, b2c_experience: 'bool'):
596
- """Sets the b2c_experience of this V1UserFeatures.
583
+ @byo_machine_type.setter
584
+ def byo_machine_type(self, byo_machine_type: 'bool'):
585
+ """Sets the byo_machine_type of this V1UserFeatures.
597
586
 
598
587
 
599
- :param b2c_experience: The b2c_experience of this V1UserFeatures. # noqa: E501
588
+ :param byo_machine_type: The byo_machine_type of this V1UserFeatures. # noqa: E501
600
589
  :type: bool
601
590
  """
602
591
 
603
- self._b2c_experience = b2c_experience
592
+ self._byo_machine_type = byo_machine_type
604
593
 
605
594
  @property
606
595
  def cap_add(self) -> 'list[str]':
@@ -686,6 +675,48 @@ class V1UserFeatures(object):
686
675
 
687
676
  self._capacity_reservation_dry_run = capacity_reservation_dry_run
688
677
 
678
+ @property
679
+ def chat_models(self) -> 'bool':
680
+ """Gets the chat_models of this V1UserFeatures. # noqa: E501
681
+
682
+
683
+ :return: The chat_models of this V1UserFeatures. # noqa: E501
684
+ :rtype: bool
685
+ """
686
+ return self._chat_models
687
+
688
+ @chat_models.setter
689
+ def chat_models(self, chat_models: 'bool'):
690
+ """Sets the chat_models of this V1UserFeatures.
691
+
692
+
693
+ :param chat_models: The chat_models of this V1UserFeatures. # noqa: E501
694
+ :type: bool
695
+ """
696
+
697
+ self._chat_models = chat_models
698
+
699
+ @property
700
+ def cloudspace_schedules(self) -> 'bool':
701
+ """Gets the cloudspace_schedules of this V1UserFeatures. # noqa: E501
702
+
703
+
704
+ :return: The cloudspace_schedules of this V1UserFeatures. # noqa: E501
705
+ :rtype: bool
706
+ """
707
+ return self._cloudspace_schedules
708
+
709
+ @cloudspace_schedules.setter
710
+ def cloudspace_schedules(self, cloudspace_schedules: 'bool'):
711
+ """Sets the cloudspace_schedules of this V1UserFeatures.
712
+
713
+
714
+ :param cloudspace_schedules: The cloudspace_schedules of this V1UserFeatures. # noqa: E501
715
+ :type: bool
716
+ """
717
+
718
+ self._cloudspace_schedules = cloudspace_schedules
719
+
689
720
  @property
690
721
  def code_tab(self) -> 'bool':
691
722
  """Gets the code_tab of this V1UserFeatures. # noqa: E501
@@ -729,67 +760,67 @@ class V1UserFeatures(object):
729
760
  self._collab_screen_sharing = collab_screen_sharing
730
761
 
731
762
  @property
732
- def cost_attribution_settings(self) -> 'bool':
733
- """Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
763
+ def control_center_monitoring(self) -> 'bool':
764
+ """Gets the control_center_monitoring of this V1UserFeatures. # noqa: E501
734
765
 
735
766
 
736
- :return: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
767
+ :return: The control_center_monitoring of this V1UserFeatures. # noqa: E501
737
768
  :rtype: bool
738
769
  """
739
- return self._cost_attribution_settings
770
+ return self._control_center_monitoring
740
771
 
741
- @cost_attribution_settings.setter
742
- def cost_attribution_settings(self, cost_attribution_settings: 'bool'):
743
- """Sets the cost_attribution_settings of this V1UserFeatures.
772
+ @control_center_monitoring.setter
773
+ def control_center_monitoring(self, control_center_monitoring: 'bool'):
774
+ """Sets the control_center_monitoring of this V1UserFeatures.
744
775
 
745
776
 
746
- :param cost_attribution_settings: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
777
+ :param control_center_monitoring: The control_center_monitoring of this V1UserFeatures. # noqa: E501
747
778
  :type: bool
748
779
  """
749
780
 
750
- self._cost_attribution_settings = cost_attribution_settings
781
+ self._control_center_monitoring = control_center_monitoring
751
782
 
752
783
  @property
753
- def custom_app_domain(self) -> 'bool':
754
- """Gets the custom_app_domain of this V1UserFeatures. # noqa: E501
784
+ def cost_attribution_settings(self) -> 'bool':
785
+ """Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
755
786
 
756
787
 
757
- :return: The custom_app_domain of this V1UserFeatures. # noqa: E501
788
+ :return: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
758
789
  :rtype: bool
759
790
  """
760
- return self._custom_app_domain
791
+ return self._cost_attribution_settings
761
792
 
762
- @custom_app_domain.setter
763
- def custom_app_domain(self, custom_app_domain: 'bool'):
764
- """Sets the custom_app_domain of this V1UserFeatures.
793
+ @cost_attribution_settings.setter
794
+ def cost_attribution_settings(self, cost_attribution_settings: 'bool'):
795
+ """Sets the cost_attribution_settings of this V1UserFeatures.
765
796
 
766
797
 
767
- :param custom_app_domain: The custom_app_domain of this V1UserFeatures. # noqa: E501
798
+ :param cost_attribution_settings: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
768
799
  :type: bool
769
800
  """
770
801
 
771
- self._custom_app_domain = custom_app_domain
802
+ self._cost_attribution_settings = cost_attribution_settings
772
803
 
773
804
  @property
774
- def custom_instance_types(self) -> 'bool':
775
- """Gets the custom_instance_types of this V1UserFeatures. # noqa: E501
805
+ def datasets(self) -> 'bool':
806
+ """Gets the datasets of this V1UserFeatures. # noqa: E501
776
807
 
777
808
 
778
- :return: The custom_instance_types of this V1UserFeatures. # noqa: E501
809
+ :return: The datasets of this V1UserFeatures. # noqa: E501
779
810
  :rtype: bool
780
811
  """
781
- return self._custom_instance_types
812
+ return self._datasets
782
813
 
783
- @custom_instance_types.setter
784
- def custom_instance_types(self, custom_instance_types: 'bool'):
785
- """Sets the custom_instance_types of this V1UserFeatures.
814
+ @datasets.setter
815
+ def datasets(self, datasets: 'bool'):
816
+ """Sets the datasets of this V1UserFeatures.
786
817
 
787
818
 
788
- :param custom_instance_types: The custom_instance_types of this V1UserFeatures. # noqa: E501
819
+ :param datasets: The datasets of this V1UserFeatures. # noqa: E501
789
820
  :type: bool
790
821
  """
791
822
 
792
- self._custom_instance_types = custom_instance_types
823
+ self._datasets = datasets
793
824
 
794
825
  @property
795
826
  def default_one_cluster(self) -> 'bool':
@@ -813,928 +844,991 @@ class V1UserFeatures(object):
813
844
  self._default_one_cluster = default_one_cluster
814
845
 
815
846
  @property
816
- def deployment_customize_api(self) -> 'bool':
817
- """Gets the deployment_customize_api of this V1UserFeatures. # noqa: E501
847
+ def drive_v2(self) -> 'bool':
848
+ """Gets the drive_v2 of this V1UserFeatures. # noqa: E501
818
849
 
819
850
 
820
- :return: The deployment_customize_api of this V1UserFeatures. # noqa: E501
851
+ :return: The drive_v2 of this V1UserFeatures. # noqa: E501
821
852
  :rtype: bool
822
853
  """
823
- return self._deployment_customize_api
854
+ return self._drive_v2
824
855
 
825
- @deployment_customize_api.setter
826
- def deployment_customize_api(self, deployment_customize_api: 'bool'):
827
- """Sets the deployment_customize_api of this V1UserFeatures.
856
+ @drive_v2.setter
857
+ def drive_v2(self, drive_v2: 'bool'):
858
+ """Sets the drive_v2 of this V1UserFeatures.
828
859
 
829
860
 
830
- :param deployment_customize_api: The deployment_customize_api of this V1UserFeatures. # noqa: E501
861
+ :param drive_v2: The drive_v2 of this V1UserFeatures. # noqa: E501
831
862
  :type: bool
832
863
  """
833
864
 
834
- self._deployment_customize_api = deployment_customize_api
865
+ self._drive_v2 = drive_v2
835
866
 
836
867
  @property
837
- def deployment_data_path(self) -> 'bool':
838
- """Gets the deployment_data_path of this V1UserFeatures. # noqa: E501
868
+ def enterprise_compute_admin(self) -> 'bool':
869
+ """Gets the enterprise_compute_admin of this V1UserFeatures. # noqa: E501
839
870
 
840
871
 
841
- :return: The deployment_data_path of this V1UserFeatures. # noqa: E501
872
+ :return: The enterprise_compute_admin of this V1UserFeatures. # noqa: E501
842
873
  :rtype: bool
843
874
  """
844
- return self._deployment_data_path
875
+ return self._enterprise_compute_admin
845
876
 
846
- @deployment_data_path.setter
847
- def deployment_data_path(self, deployment_data_path: 'bool'):
848
- """Sets the deployment_data_path of this V1UserFeatures.
877
+ @enterprise_compute_admin.setter
878
+ def enterprise_compute_admin(self, enterprise_compute_admin: 'bool'):
879
+ """Sets the enterprise_compute_admin of this V1UserFeatures.
849
880
 
850
881
 
851
- :param deployment_data_path: The deployment_data_path of this V1UserFeatures. # noqa: E501
882
+ :param enterprise_compute_admin: The enterprise_compute_admin of this V1UserFeatures. # noqa: E501
852
883
  :type: bool
853
884
  """
854
885
 
855
- self._deployment_data_path = deployment_data_path
886
+ self._enterprise_compute_admin = enterprise_compute_admin
856
887
 
857
888
  @property
858
- def deployment_gallery(self) -> 'bool':
859
- """Gets the deployment_gallery of this V1UserFeatures. # noqa: E501
889
+ def f234(self) -> 'bool':
890
+ """Gets the f234 of this V1UserFeatures. # noqa: E501
860
891
 
861
892
 
862
- :return: The deployment_gallery of this V1UserFeatures. # noqa: E501
893
+ :return: The f234 of this V1UserFeatures. # noqa: E501
863
894
  :rtype: bool
864
895
  """
865
- return self._deployment_gallery
896
+ return self._f234
866
897
 
867
- @deployment_gallery.setter
868
- def deployment_gallery(self, deployment_gallery: 'bool'):
869
- """Sets the deployment_gallery of this V1UserFeatures.
898
+ @f234.setter
899
+ def f234(self, f234: 'bool'):
900
+ """Sets the f234 of this V1UserFeatures.
870
901
 
871
902
 
872
- :param deployment_gallery: The deployment_gallery of this V1UserFeatures. # noqa: E501
903
+ :param f234: The f234 of this V1UserFeatures. # noqa: E501
873
904
  :type: bool
874
905
  """
875
906
 
876
- self._deployment_gallery = deployment_gallery
907
+ self._f234 = f234
877
908
 
878
909
  @property
879
- def deployment_persistent_disk(self) -> 'bool':
880
- """Gets the deployment_persistent_disk of this V1UserFeatures. # noqa: E501
910
+ def f236(self) -> 'bool':
911
+ """Gets the f236 of this V1UserFeatures. # noqa: E501
881
912
 
882
913
 
883
- :return: The deployment_persistent_disk of this V1UserFeatures. # noqa: E501
914
+ :return: The f236 of this V1UserFeatures. # noqa: E501
884
915
  :rtype: bool
885
916
  """
886
- return self._deployment_persistent_disk
917
+ return self._f236
887
918
 
888
- @deployment_persistent_disk.setter
889
- def deployment_persistent_disk(self, deployment_persistent_disk: 'bool'):
890
- """Sets the deployment_persistent_disk of this V1UserFeatures.
919
+ @f236.setter
920
+ def f236(self, f236: 'bool'):
921
+ """Sets the f236 of this V1UserFeatures.
891
922
 
892
923
 
893
- :param deployment_persistent_disk: The deployment_persistent_disk of this V1UserFeatures. # noqa: E501
924
+ :param f236: The f236 of this V1UserFeatures. # noqa: E501
894
925
  :type: bool
895
926
  """
896
927
 
897
- self._deployment_persistent_disk = deployment_persistent_disk
928
+ self._f236 = f236
898
929
 
899
930
  @property
900
- def deployment_version_visibility(self) -> 'bool':
901
- """Gets the deployment_version_visibility of this V1UserFeatures. # noqa: E501
931
+ def f240(self) -> 'bool':
932
+ """Gets the f240 of this V1UserFeatures. # noqa: E501
902
933
 
903
934
 
904
- :return: The deployment_version_visibility of this V1UserFeatures. # noqa: E501
935
+ :return: The f240 of this V1UserFeatures. # noqa: E501
905
936
  :rtype: bool
906
937
  """
907
- return self._deployment_version_visibility
938
+ return self._f240
908
939
 
909
- @deployment_version_visibility.setter
910
- def deployment_version_visibility(self, deployment_version_visibility: 'bool'):
911
- """Sets the deployment_version_visibility of this V1UserFeatures.
940
+ @f240.setter
941
+ def f240(self, f240: 'bool'):
942
+ """Sets the f240 of this V1UserFeatures.
912
943
 
913
944
 
914
- :param deployment_version_visibility: The deployment_version_visibility of this V1UserFeatures. # noqa: E501
945
+ :param f240: The f240 of this V1UserFeatures. # noqa: E501
915
946
  :type: bool
916
947
  """
917
948
 
918
- self._deployment_version_visibility = deployment_version_visibility
949
+ self._f240 = f240
919
950
 
920
951
  @property
921
- def docs_agent(self) -> 'bool':
922
- """Gets the docs_agent of this V1UserFeatures. # noqa: E501
952
+ def f241(self) -> 'bool':
953
+ """Gets the f241 of this V1UserFeatures. # noqa: E501
923
954
 
924
955
 
925
- :return: The docs_agent of this V1UserFeatures. # noqa: E501
956
+ :return: The f241 of this V1UserFeatures. # noqa: E501
926
957
  :rtype: bool
927
958
  """
928
- return self._docs_agent
959
+ return self._f241
929
960
 
930
- @docs_agent.setter
931
- def docs_agent(self, docs_agent: 'bool'):
932
- """Sets the docs_agent of this V1UserFeatures.
961
+ @f241.setter
962
+ def f241(self, f241: 'bool'):
963
+ """Sets the f241 of this V1UserFeatures.
933
964
 
934
965
 
935
- :param docs_agent: The docs_agent of this V1UserFeatures. # noqa: E501
966
+ :param f241: The f241 of this V1UserFeatures. # noqa: E501
936
967
  :type: bool
937
968
  """
938
969
 
939
- self._docs_agent = docs_agent
970
+ self._f241 = f241
940
971
 
941
972
  @property
942
- def drive_v2(self) -> 'bool':
943
- """Gets the drive_v2 of this V1UserFeatures. # noqa: E501
973
+ def f243(self) -> 'bool':
974
+ """Gets the f243 of this V1UserFeatures. # noqa: E501
944
975
 
945
976
 
946
- :return: The drive_v2 of this V1UserFeatures. # noqa: E501
977
+ :return: The f243 of this V1UserFeatures. # noqa: E501
947
978
  :rtype: bool
948
979
  """
949
- return self._drive_v2
980
+ return self._f243
950
981
 
951
- @drive_v2.setter
952
- def drive_v2(self, drive_v2: 'bool'):
953
- """Sets the drive_v2 of this V1UserFeatures.
982
+ @f243.setter
983
+ def f243(self, f243: 'bool'):
984
+ """Sets the f243 of this V1UserFeatures.
954
985
 
955
986
 
956
- :param drive_v2: The drive_v2 of this V1UserFeatures. # noqa: E501
987
+ :param f243: The f243 of this V1UserFeatures. # noqa: E501
957
988
  :type: bool
958
989
  """
959
990
 
960
- self._drive_v2 = drive_v2
991
+ self._f243 = f243
961
992
 
962
993
  @property
963
- def enable_crypto_crackdown(self) -> 'bool':
964
- """Gets the enable_crypto_crackdown of this V1UserFeatures. # noqa: E501
994
+ def f245(self) -> 'bool':
995
+ """Gets the f245 of this V1UserFeatures. # noqa: E501
965
996
 
966
997
 
967
- :return: The enable_crypto_crackdown of this V1UserFeatures. # noqa: E501
998
+ :return: The f245 of this V1UserFeatures. # noqa: E501
968
999
  :rtype: bool
969
1000
  """
970
- return self._enable_crypto_crackdown
1001
+ return self._f245
971
1002
 
972
- @enable_crypto_crackdown.setter
973
- def enable_crypto_crackdown(self, enable_crypto_crackdown: 'bool'):
974
- """Sets the enable_crypto_crackdown of this V1UserFeatures.
1003
+ @f245.setter
1004
+ def f245(self, f245: 'bool'):
1005
+ """Sets the f245 of this V1UserFeatures.
975
1006
 
976
1007
 
977
- :param enable_crypto_crackdown: The enable_crypto_crackdown of this V1UserFeatures. # noqa: E501
1008
+ :param f245: The f245 of this V1UserFeatures. # noqa: E501
978
1009
  :type: bool
979
1010
  """
980
1011
 
981
- self._enable_crypto_crackdown = enable_crypto_crackdown
1012
+ self._f245 = f245
982
1013
 
983
1014
  @property
984
- def enable_efs(self) -> 'bool':
985
- """Gets the enable_efs of this V1UserFeatures. # noqa: E501
1015
+ def f247(self) -> 'bool':
1016
+ """Gets the f247 of this V1UserFeatures. # noqa: E501
986
1017
 
987
1018
 
988
- :return: The enable_efs of this V1UserFeatures. # noqa: E501
1019
+ :return: The f247 of this V1UserFeatures. # noqa: E501
989
1020
  :rtype: bool
990
1021
  """
991
- return self._enable_efs
1022
+ return self._f247
992
1023
 
993
- @enable_efs.setter
994
- def enable_efs(self, enable_efs: 'bool'):
995
- """Sets the enable_efs of this V1UserFeatures.
1024
+ @f247.setter
1025
+ def f247(self, f247: 'bool'):
1026
+ """Sets the f247 of this V1UserFeatures.
996
1027
 
997
1028
 
998
- :param enable_efs: The enable_efs of this V1UserFeatures. # noqa: E501
1029
+ :param f247: The f247 of this V1UserFeatures. # noqa: E501
999
1030
  :type: bool
1000
1031
  """
1001
1032
 
1002
- self._enable_efs = enable_efs
1033
+ self._f247 = f247
1003
1034
 
1004
1035
  @property
1005
- def enable_storage_limits(self) -> 'bool':
1006
- """Gets the enable_storage_limits of this V1UserFeatures. # noqa: E501
1036
+ def f250(self) -> 'bool':
1037
+ """Gets the f250 of this V1UserFeatures. # noqa: E501
1007
1038
 
1008
1039
 
1009
- :return: The enable_storage_limits of this V1UserFeatures. # noqa: E501
1040
+ :return: The f250 of this V1UserFeatures. # noqa: E501
1010
1041
  :rtype: bool
1011
1042
  """
1012
- return self._enable_storage_limits
1043
+ return self._f250
1013
1044
 
1014
- @enable_storage_limits.setter
1015
- def enable_storage_limits(self, enable_storage_limits: 'bool'):
1016
- """Sets the enable_storage_limits of this V1UserFeatures.
1045
+ @f250.setter
1046
+ def f250(self, f250: 'bool'):
1047
+ """Sets the f250 of this V1UserFeatures.
1017
1048
 
1018
1049
 
1019
- :param enable_storage_limits: The enable_storage_limits of this V1UserFeatures. # noqa: E501
1050
+ :param f250: The f250 of this V1UserFeatures. # noqa: E501
1020
1051
  :type: bool
1021
1052
  """
1022
1053
 
1023
- self._enable_storage_limits = enable_storage_limits
1054
+ self._f250 = f250
1024
1055
 
1025
1056
  @property
1026
- def featured_studios_admin(self) -> 'bool':
1027
- """Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
1057
+ def f252(self) -> 'bool':
1058
+ """Gets the f252 of this V1UserFeatures. # noqa: E501
1028
1059
 
1029
1060
 
1030
- :return: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1061
+ :return: The f252 of this V1UserFeatures. # noqa: E501
1031
1062
  :rtype: bool
1032
1063
  """
1033
- return self._featured_studios_admin
1064
+ return self._f252
1034
1065
 
1035
- @featured_studios_admin.setter
1036
- def featured_studios_admin(self, featured_studios_admin: 'bool'):
1037
- """Sets the featured_studios_admin of this V1UserFeatures.
1066
+ @f252.setter
1067
+ def f252(self, f252: 'bool'):
1068
+ """Sets the f252 of this V1UserFeatures.
1038
1069
 
1039
1070
 
1040
- :param featured_studios_admin: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1071
+ :param f252: The f252 of this V1UserFeatures. # noqa: E501
1041
1072
  :type: bool
1042
1073
  """
1043
1074
 
1044
- self._featured_studios_admin = featured_studios_admin
1075
+ self._f252 = f252
1045
1076
 
1046
1077
  @property
1047
- def filesystem_optimisation(self) -> 'bool':
1048
- """Gets the filesystem_optimisation of this V1UserFeatures. # noqa: E501
1078
+ def f253(self) -> 'bool':
1079
+ """Gets the f253 of this V1UserFeatures. # noqa: E501
1049
1080
 
1050
1081
 
1051
- :return: The filesystem_optimisation of this V1UserFeatures. # noqa: E501
1082
+ :return: The f253 of this V1UserFeatures. # noqa: E501
1052
1083
  :rtype: bool
1053
1084
  """
1054
- return self._filesystem_optimisation
1085
+ return self._f253
1055
1086
 
1056
- @filesystem_optimisation.setter
1057
- def filesystem_optimisation(self, filesystem_optimisation: 'bool'):
1058
- """Sets the filesystem_optimisation of this V1UserFeatures.
1087
+ @f253.setter
1088
+ def f253(self, f253: 'bool'):
1089
+ """Sets the f253 of this V1UserFeatures.
1059
1090
 
1060
1091
 
1061
- :param filesystem_optimisation: The filesystem_optimisation of this V1UserFeatures. # noqa: E501
1092
+ :param f253: The f253 of this V1UserFeatures. # noqa: E501
1062
1093
  :type: bool
1063
1094
  """
1064
1095
 
1065
- self._filesystem_optimisation = filesystem_optimisation
1096
+ self._f253 = f253
1066
1097
 
1067
1098
  @property
1068
- def gcp(self) -> 'bool':
1069
- """Gets the gcp of this V1UserFeatures. # noqa: E501
1099
+ def f254(self) -> 'bool':
1100
+ """Gets the f254 of this V1UserFeatures. # noqa: E501
1070
1101
 
1071
1102
 
1072
- :return: The gcp of this V1UserFeatures. # noqa: E501
1103
+ :return: The f254 of this V1UserFeatures. # noqa: E501
1073
1104
  :rtype: bool
1074
1105
  """
1075
- return self._gcp
1106
+ return self._f254
1076
1107
 
1077
- @gcp.setter
1078
- def gcp(self, gcp: 'bool'):
1079
- """Sets the gcp of this V1UserFeatures.
1108
+ @f254.setter
1109
+ def f254(self, f254: 'bool'):
1110
+ """Sets the f254 of this V1UserFeatures.
1080
1111
 
1081
1112
 
1082
- :param gcp: The gcp of this V1UserFeatures. # noqa: E501
1113
+ :param f254: The f254 of this V1UserFeatures. # noqa: E501
1083
1114
  :type: bool
1084
1115
  """
1085
1116
 
1086
- self._gcp = gcp
1117
+ self._f254 = f254
1087
1118
 
1088
1119
  @property
1089
- def inference_job_deployment_plugin(self) -> 'bool':
1090
- """Gets the inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
1120
+ def f258(self) -> 'bool':
1121
+ """Gets the f258 of this V1UserFeatures. # noqa: E501
1091
1122
 
1092
1123
 
1093
- :return: The inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
1124
+ :return: The f258 of this V1UserFeatures. # noqa: E501
1094
1125
  :rtype: bool
1095
1126
  """
1096
- return self._inference_job_deployment_plugin
1127
+ return self._f258
1097
1128
 
1098
- @inference_job_deployment_plugin.setter
1099
- def inference_job_deployment_plugin(self, inference_job_deployment_plugin: 'bool'):
1100
- """Sets the inference_job_deployment_plugin of this V1UserFeatures.
1129
+ @f258.setter
1130
+ def f258(self, f258: 'bool'):
1131
+ """Sets the f258 of this V1UserFeatures.
1101
1132
 
1102
1133
 
1103
- :param inference_job_deployment_plugin: The inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
1134
+ :param f258: The f258 of this V1UserFeatures. # noqa: E501
1104
1135
  :type: bool
1105
1136
  """
1106
1137
 
1107
- self._inference_job_deployment_plugin = inference_job_deployment_plugin
1138
+ self._f258 = f258
1108
1139
 
1109
1140
  @property
1110
- def instant_capacity_reservation(self) -> 'bool':
1111
- """Gets the instant_capacity_reservation of this V1UserFeatures. # noqa: E501
1141
+ def f259(self) -> 'bool':
1142
+ """Gets the f259 of this V1UserFeatures. # noqa: E501
1112
1143
 
1113
1144
 
1114
- :return: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
1145
+ :return: The f259 of this V1UserFeatures. # noqa: E501
1115
1146
  :rtype: bool
1116
1147
  """
1117
- return self._instant_capacity_reservation
1148
+ return self._f259
1118
1149
 
1119
- @instant_capacity_reservation.setter
1120
- def instant_capacity_reservation(self, instant_capacity_reservation: 'bool'):
1121
- """Sets the instant_capacity_reservation of this V1UserFeatures.
1150
+ @f259.setter
1151
+ def f259(self, f259: 'bool'):
1152
+ """Sets the f259 of this V1UserFeatures.
1122
1153
 
1123
1154
 
1124
- :param instant_capacity_reservation: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
1155
+ :param f259: The f259 of this V1UserFeatures. # noqa: E501
1125
1156
  :type: bool
1126
1157
  """
1127
1158
 
1128
- self._instant_capacity_reservation = instant_capacity_reservation
1159
+ self._f259 = f259
1129
1160
 
1130
1161
  @property
1131
- def jobs_init(self) -> 'bool':
1132
- """Gets the jobs_init of this V1UserFeatures. # noqa: E501
1162
+ def f261(self) -> 'bool':
1163
+ """Gets the f261 of this V1UserFeatures. # noqa: E501
1133
1164
 
1134
1165
 
1135
- :return: The jobs_init of this V1UserFeatures. # noqa: E501
1166
+ :return: The f261 of this V1UserFeatures. # noqa: E501
1136
1167
  :rtype: bool
1137
1168
  """
1138
- return self._jobs_init
1169
+ return self._f261
1139
1170
 
1140
- @jobs_init.setter
1141
- def jobs_init(self, jobs_init: 'bool'):
1142
- """Sets the jobs_init of this V1UserFeatures.
1171
+ @f261.setter
1172
+ def f261(self, f261: 'bool'):
1173
+ """Sets the f261 of this V1UserFeatures.
1143
1174
 
1144
1175
 
1145
- :param jobs_init: The jobs_init of this V1UserFeatures. # noqa: E501
1176
+ :param f261: The f261 of this V1UserFeatures. # noqa: E501
1146
1177
  :type: bool
1147
1178
  """
1148
1179
 
1149
- self._jobs_init = jobs_init
1180
+ self._f261 = f261
1150
1181
 
1151
1182
  @property
1152
- def jobs_v2(self) -> 'bool':
1153
- """Gets the jobs_v2 of this V1UserFeatures. # noqa: E501
1183
+ def f262(self) -> 'bool':
1184
+ """Gets the f262 of this V1UserFeatures. # noqa: E501
1154
1185
 
1155
1186
 
1156
- :return: The jobs_v2 of this V1UserFeatures. # noqa: E501
1187
+ :return: The f262 of this V1UserFeatures. # noqa: E501
1157
1188
  :rtype: bool
1158
1189
  """
1159
- return self._jobs_v2
1190
+ return self._f262
1160
1191
 
1161
- @jobs_v2.setter
1162
- def jobs_v2(self, jobs_v2: 'bool'):
1163
- """Sets the jobs_v2 of this V1UserFeatures.
1192
+ @f262.setter
1193
+ def f262(self, f262: 'bool'):
1194
+ """Sets the f262 of this V1UserFeatures.
1164
1195
 
1165
1196
 
1166
- :param jobs_v2: The jobs_v2 of this V1UserFeatures. # noqa: E501
1197
+ :param f262: The f262 of this V1UserFeatures. # noqa: E501
1167
1198
  :type: bool
1168
1199
  """
1169
1200
 
1170
- self._jobs_v2 = jobs_v2
1201
+ self._f262 = f262
1171
1202
 
1172
1203
  @property
1173
- def landing_studios(self) -> 'bool':
1174
- """Gets the landing_studios of this V1UserFeatures. # noqa: E501
1204
+ def f265(self) -> 'bool':
1205
+ """Gets the f265 of this V1UserFeatures. # noqa: E501
1175
1206
 
1176
1207
 
1177
- :return: The landing_studios of this V1UserFeatures. # noqa: E501
1208
+ :return: The f265 of this V1UserFeatures. # noqa: E501
1178
1209
  :rtype: bool
1179
1210
  """
1180
- return self._landing_studios
1211
+ return self._f265
1181
1212
 
1182
- @landing_studios.setter
1183
- def landing_studios(self, landing_studios: 'bool'):
1184
- """Sets the landing_studios of this V1UserFeatures.
1213
+ @f265.setter
1214
+ def f265(self, f265: 'bool'):
1215
+ """Sets the f265 of this V1UserFeatures.
1185
1216
 
1186
1217
 
1187
- :param landing_studios: The landing_studios of this V1UserFeatures. # noqa: E501
1218
+ :param f265: The f265 of this V1UserFeatures. # noqa: E501
1188
1219
  :type: bool
1189
1220
  """
1190
1221
 
1191
- self._landing_studios = landing_studios
1222
+ self._f265 = f265
1192
1223
 
1193
1224
  @property
1194
- def lightning_registry(self) -> 'bool':
1195
- """Gets the lightning_registry of this V1UserFeatures. # noqa: E501
1225
+ def f266(self) -> 'bool':
1226
+ """Gets the f266 of this V1UserFeatures. # noqa: E501
1196
1227
 
1197
1228
 
1198
- :return: The lightning_registry of this V1UserFeatures. # noqa: E501
1229
+ :return: The f266 of this V1UserFeatures. # noqa: E501
1199
1230
  :rtype: bool
1200
1231
  """
1201
- return self._lightning_registry
1232
+ return self._f266
1202
1233
 
1203
- @lightning_registry.setter
1204
- def lightning_registry(self, lightning_registry: 'bool'):
1205
- """Sets the lightning_registry of this V1UserFeatures.
1234
+ @f266.setter
1235
+ def f266(self, f266: 'bool'):
1236
+ """Sets the f266 of this V1UserFeatures.
1206
1237
 
1207
1238
 
1208
- :param lightning_registry: The lightning_registry of this V1UserFeatures. # noqa: E501
1239
+ :param f266: The f266 of this V1UserFeatures. # noqa: E501
1209
1240
  :type: bool
1210
1241
  """
1211
1242
 
1212
- self._lightning_registry = lightning_registry
1243
+ self._f266 = f266
1213
1244
 
1214
1245
  @property
1215
- def lit_logger(self) -> 'bool':
1216
- """Gets the lit_logger of this V1UserFeatures. # noqa: E501
1246
+ def f268(self) -> 'bool':
1247
+ """Gets the f268 of this V1UserFeatures. # noqa: E501
1217
1248
 
1218
1249
 
1219
- :return: The lit_logger of this V1UserFeatures. # noqa: E501
1250
+ :return: The f268 of this V1UserFeatures. # noqa: E501
1220
1251
  :rtype: bool
1221
1252
  """
1222
- return self._lit_logger
1253
+ return self._f268
1223
1254
 
1224
- @lit_logger.setter
1225
- def lit_logger(self, lit_logger: 'bool'):
1226
- """Sets the lit_logger of this V1UserFeatures.
1255
+ @f268.setter
1256
+ def f268(self, f268: 'bool'):
1257
+ """Sets the f268 of this V1UserFeatures.
1227
1258
 
1228
1259
 
1229
- :param lit_logger: The lit_logger of this V1UserFeatures. # noqa: E501
1260
+ :param f268: The f268 of this V1UserFeatures. # noqa: E501
1230
1261
  :type: bool
1231
1262
  """
1232
1263
 
1233
- self._lit_logger = lit_logger
1264
+ self._f268 = f268
1234
1265
 
1235
1266
  @property
1236
- def lit_logger_storage_v2(self) -> 'bool':
1237
- """Gets the lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
1267
+ def f269(self) -> 'bool':
1268
+ """Gets the f269 of this V1UserFeatures. # noqa: E501
1238
1269
 
1239
1270
 
1240
- :return: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
1271
+ :return: The f269 of this V1UserFeatures. # noqa: E501
1241
1272
  :rtype: bool
1242
1273
  """
1243
- return self._lit_logger_storage_v2
1274
+ return self._f269
1244
1275
 
1245
- @lit_logger_storage_v2.setter
1246
- def lit_logger_storage_v2(self, lit_logger_storage_v2: 'bool'):
1247
- """Sets the lit_logger_storage_v2 of this V1UserFeatures.
1276
+ @f269.setter
1277
+ def f269(self, f269: 'bool'):
1278
+ """Sets the f269 of this V1UserFeatures.
1248
1279
 
1249
1280
 
1250
- :param lit_logger_storage_v2: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
1281
+ :param f269: The f269 of this V1UserFeatures. # noqa: E501
1251
1282
  :type: bool
1252
1283
  """
1253
1284
 
1254
- self._lit_logger_storage_v2 = lit_logger_storage_v2
1285
+ self._f269 = f269
1255
1286
 
1256
1287
  @property
1257
- def mmt_fault_tolerance(self) -> 'bool':
1258
- """Gets the mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
1288
+ def f270(self) -> 'bool':
1289
+ """Gets the f270 of this V1UserFeatures. # noqa: E501
1259
1290
 
1260
1291
 
1261
- :return: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
1292
+ :return: The f270 of this V1UserFeatures. # noqa: E501
1262
1293
  :rtype: bool
1263
1294
  """
1264
- return self._mmt_fault_tolerance
1295
+ return self._f270
1265
1296
 
1266
- @mmt_fault_tolerance.setter
1267
- def mmt_fault_tolerance(self, mmt_fault_tolerance: 'bool'):
1268
- """Sets the mmt_fault_tolerance of this V1UserFeatures.
1297
+ @f270.setter
1298
+ def f270(self, f270: 'bool'):
1299
+ """Sets the f270 of this V1UserFeatures.
1269
1300
 
1270
1301
 
1271
- :param mmt_fault_tolerance: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
1302
+ :param f270: The f270 of this V1UserFeatures. # noqa: E501
1272
1303
  :type: bool
1273
1304
  """
1274
1305
 
1275
- self._mmt_fault_tolerance = mmt_fault_tolerance
1306
+ self._f270 = f270
1276
1307
 
1277
1308
  @property
1278
- def mmt_strategy_selector(self) -> 'bool':
1279
- """Gets the mmt_strategy_selector of this V1UserFeatures. # noqa: E501
1309
+ def f271(self) -> 'bool':
1310
+ """Gets the f271 of this V1UserFeatures. # noqa: E501
1280
1311
 
1281
1312
 
1282
- :return: The mmt_strategy_selector of this V1UserFeatures. # noqa: E501
1313
+ :return: The f271 of this V1UserFeatures. # noqa: E501
1283
1314
  :rtype: bool
1284
1315
  """
1285
- return self._mmt_strategy_selector
1316
+ return self._f271
1286
1317
 
1287
- @mmt_strategy_selector.setter
1288
- def mmt_strategy_selector(self, mmt_strategy_selector: 'bool'):
1289
- """Sets the mmt_strategy_selector of this V1UserFeatures.
1318
+ @f271.setter
1319
+ def f271(self, f271: 'bool'):
1320
+ """Sets the f271 of this V1UserFeatures.
1290
1321
 
1291
1322
 
1292
- :param mmt_strategy_selector: The mmt_strategy_selector of this V1UserFeatures. # noqa: E501
1323
+ :param f271: The f271 of this V1UserFeatures. # noqa: E501
1293
1324
  :type: bool
1294
1325
  """
1295
1326
 
1296
- self._mmt_strategy_selector = mmt_strategy_selector
1327
+ self._f271 = f271
1297
1328
 
1298
1329
  @property
1299
- def mmt_v2(self) -> 'bool':
1300
- """Gets the mmt_v2 of this V1UserFeatures. # noqa: E501
1330
+ def f272(self) -> 'bool':
1331
+ """Gets the f272 of this V1UserFeatures. # noqa: E501
1301
1332
 
1302
1333
 
1303
- :return: The mmt_v2 of this V1UserFeatures. # noqa: E501
1334
+ :return: The f272 of this V1UserFeatures. # noqa: E501
1304
1335
  :rtype: bool
1305
1336
  """
1306
- return self._mmt_v2
1337
+ return self._f272
1307
1338
 
1308
- @mmt_v2.setter
1309
- def mmt_v2(self, mmt_v2: 'bool'):
1310
- """Sets the mmt_v2 of this V1UserFeatures.
1339
+ @f272.setter
1340
+ def f272(self, f272: 'bool'):
1341
+ """Sets the f272 of this V1UserFeatures.
1311
1342
 
1312
1343
 
1313
- :param mmt_v2: The mmt_v2 of this V1UserFeatures. # noqa: E501
1344
+ :param f272: The f272 of this V1UserFeatures. # noqa: E501
1314
1345
  :type: bool
1315
1346
  """
1316
1347
 
1317
- self._mmt_v2 = mmt_v2
1348
+ self._f272 = f272
1318
1349
 
1319
1350
  @property
1320
- def model_store(self) -> 'bool':
1321
- """Gets the model_store of this V1UserFeatures. # noqa: E501
1351
+ def f273(self) -> 'bool':
1352
+ """Gets the f273 of this V1UserFeatures. # noqa: E501
1322
1353
 
1323
1354
 
1324
- :return: The model_store of this V1UserFeatures. # noqa: E501
1355
+ :return: The f273 of this V1UserFeatures. # noqa: E501
1325
1356
  :rtype: bool
1326
1357
  """
1327
- return self._model_store
1358
+ return self._f273
1328
1359
 
1329
- @model_store.setter
1330
- def model_store(self, model_store: 'bool'):
1331
- """Sets the model_store of this V1UserFeatures.
1360
+ @f273.setter
1361
+ def f273(self, f273: 'bool'):
1362
+ """Sets the f273 of this V1UserFeatures.
1332
1363
 
1333
1364
 
1334
- :param model_store: The model_store of this V1UserFeatures. # noqa: E501
1365
+ :param f273: The f273 of this V1UserFeatures. # noqa: E501
1335
1366
  :type: bool
1336
1367
  """
1337
1368
 
1338
- self._model_store = model_store
1369
+ self._f273 = f273
1339
1370
 
1340
1371
  @property
1341
- def multiple_deployment_versions(self) -> 'bool':
1342
- """Gets the multiple_deployment_versions of this V1UserFeatures. # noqa: E501
1372
+ def f274(self) -> 'bool':
1373
+ """Gets the f274 of this V1UserFeatures. # noqa: E501
1343
1374
 
1344
1375
 
1345
- :return: The multiple_deployment_versions of this V1UserFeatures. # noqa: E501
1376
+ :return: The f274 of this V1UserFeatures. # noqa: E501
1346
1377
  :rtype: bool
1347
1378
  """
1348
- return self._multiple_deployment_versions
1379
+ return self._f274
1349
1380
 
1350
- @multiple_deployment_versions.setter
1351
- def multiple_deployment_versions(self, multiple_deployment_versions: 'bool'):
1352
- """Sets the multiple_deployment_versions of this V1UserFeatures.
1381
+ @f274.setter
1382
+ def f274(self, f274: 'bool'):
1383
+ """Sets the f274 of this V1UserFeatures.
1353
1384
 
1354
1385
 
1355
- :param multiple_deployment_versions: The multiple_deployment_versions of this V1UserFeatures. # noqa: E501
1386
+ :param f274: The f274 of this V1UserFeatures. # noqa: E501
1356
1387
  :type: bool
1357
1388
  """
1358
1389
 
1359
- self._multiple_deployment_versions = multiple_deployment_versions
1390
+ self._f274 = f274
1360
1391
 
1361
1392
  @property
1362
- def multiple_studio_versions(self) -> 'bool':
1363
- """Gets the multiple_studio_versions of this V1UserFeatures. # noqa: E501
1393
+ def fair_share(self) -> 'bool':
1394
+ """Gets the fair_share of this V1UserFeatures. # noqa: E501
1364
1395
 
1365
1396
 
1366
- :return: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
1397
+ :return: The fair_share of this V1UserFeatures. # noqa: E501
1367
1398
  :rtype: bool
1368
1399
  """
1369
- return self._multiple_studio_versions
1400
+ return self._fair_share
1370
1401
 
1371
- @multiple_studio_versions.setter
1372
- def multiple_studio_versions(self, multiple_studio_versions: 'bool'):
1373
- """Sets the multiple_studio_versions of this V1UserFeatures.
1402
+ @fair_share.setter
1403
+ def fair_share(self, fair_share: 'bool'):
1404
+ """Sets the fair_share of this V1UserFeatures.
1374
1405
 
1375
1406
 
1376
- :param multiple_studio_versions: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
1407
+ :param fair_share: The fair_share of this V1UserFeatures. # noqa: E501
1377
1408
  :type: bool
1378
1409
  """
1379
1410
 
1380
- self._multiple_studio_versions = multiple_studio_versions
1411
+ self._fair_share = fair_share
1381
1412
 
1382
1413
  @property
1383
- def org_level_member_permissions(self) -> 'bool':
1384
- """Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
1414
+ def featured_studios_admin(self) -> 'bool':
1415
+ """Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
1385
1416
 
1386
1417
 
1387
- :return: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
1418
+ :return: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1388
1419
  :rtype: bool
1389
1420
  """
1390
- return self._org_level_member_permissions
1421
+ return self._featured_studios_admin
1391
1422
 
1392
- @org_level_member_permissions.setter
1393
- def org_level_member_permissions(self, org_level_member_permissions: 'bool'):
1394
- """Sets the org_level_member_permissions of this V1UserFeatures.
1423
+ @featured_studios_admin.setter
1424
+ def featured_studios_admin(self, featured_studios_admin: 'bool'):
1425
+ """Sets the featured_studios_admin of this V1UserFeatures.
1395
1426
 
1396
1427
 
1397
- :param org_level_member_permissions: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
1428
+ :param featured_studios_admin: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1398
1429
  :type: bool
1399
1430
  """
1400
1431
 
1401
- self._org_level_member_permissions = org_level_member_permissions
1432
+ self._featured_studios_admin = featured_studios_admin
1402
1433
 
1403
1434
  @property
1404
- def pipelines(self) -> 'bool':
1405
- """Gets the pipelines of this V1UserFeatures. # noqa: E501
1435
+ def job_artifacts_v2(self) -> 'bool':
1436
+ """Gets the job_artifacts_v2 of this V1UserFeatures. # noqa: E501
1406
1437
 
1407
1438
 
1408
- :return: The pipelines of this V1UserFeatures. # noqa: E501
1439
+ :return: The job_artifacts_v2 of this V1UserFeatures. # noqa: E501
1409
1440
  :rtype: bool
1410
1441
  """
1411
- return self._pipelines
1442
+ return self._job_artifacts_v2
1412
1443
 
1413
- @pipelines.setter
1414
- def pipelines(self, pipelines: 'bool'):
1415
- """Sets the pipelines of this V1UserFeatures.
1444
+ @job_artifacts_v2.setter
1445
+ def job_artifacts_v2(self, job_artifacts_v2: 'bool'):
1446
+ """Sets the job_artifacts_v2 of this V1UserFeatures.
1416
1447
 
1417
1448
 
1418
- :param pipelines: The pipelines of this V1UserFeatures. # noqa: E501
1449
+ :param job_artifacts_v2: The job_artifacts_v2 of this V1UserFeatures. # noqa: E501
1419
1450
  :type: bool
1420
1451
  """
1421
1452
 
1422
- self._pipelines = pipelines
1453
+ self._job_artifacts_v2 = job_artifacts_v2
1423
1454
 
1424
1455
  @property
1425
- def plugin_biz_chat(self) -> 'bool':
1426
- """Gets the plugin_biz_chat of this V1UserFeatures. # noqa: E501
1456
+ def kubernetes_cluster_ui(self) -> 'bool':
1457
+ """Gets the kubernetes_cluster_ui of this V1UserFeatures. # noqa: E501
1427
1458
 
1428
1459
 
1429
- :return: The plugin_biz_chat of this V1UserFeatures. # noqa: E501
1460
+ :return: The kubernetes_cluster_ui of this V1UserFeatures. # noqa: E501
1430
1461
  :rtype: bool
1431
1462
  """
1432
- return self._plugin_biz_chat
1463
+ return self._kubernetes_cluster_ui
1433
1464
 
1434
- @plugin_biz_chat.setter
1435
- def plugin_biz_chat(self, plugin_biz_chat: 'bool'):
1436
- """Sets the plugin_biz_chat of this V1UserFeatures.
1465
+ @kubernetes_cluster_ui.setter
1466
+ def kubernetes_cluster_ui(self, kubernetes_cluster_ui: 'bool'):
1467
+ """Sets the kubernetes_cluster_ui of this V1UserFeatures.
1437
1468
 
1438
1469
 
1439
- :param plugin_biz_chat: The plugin_biz_chat of this V1UserFeatures. # noqa: E501
1470
+ :param kubernetes_cluster_ui: The kubernetes_cluster_ui of this V1UserFeatures. # noqa: E501
1440
1471
  :type: bool
1441
1472
  """
1442
1473
 
1443
- self._plugin_biz_chat = plugin_biz_chat
1474
+ self._kubernetes_cluster_ui = kubernetes_cluster_ui
1444
1475
 
1445
1476
  @property
1446
- def plugin_distributed(self) -> 'bool':
1447
- """Gets the plugin_distributed of this V1UserFeatures. # noqa: E501
1477
+ def kubernetes_clusters(self) -> 'bool':
1478
+ """Gets the kubernetes_clusters of this V1UserFeatures. # noqa: E501
1448
1479
 
1449
1480
 
1450
- :return: The plugin_distributed of this V1UserFeatures. # noqa: E501
1481
+ :return: The kubernetes_clusters of this V1UserFeatures. # noqa: E501
1451
1482
  :rtype: bool
1452
1483
  """
1453
- return self._plugin_distributed
1484
+ return self._kubernetes_clusters
1454
1485
 
1455
- @plugin_distributed.setter
1456
- def plugin_distributed(self, plugin_distributed: 'bool'):
1457
- """Sets the plugin_distributed of this V1UserFeatures.
1486
+ @kubernetes_clusters.setter
1487
+ def kubernetes_clusters(self, kubernetes_clusters: 'bool'):
1488
+ """Sets the kubernetes_clusters of this V1UserFeatures.
1458
1489
 
1459
1490
 
1460
- :param plugin_distributed: The plugin_distributed of this V1UserFeatures. # noqa: E501
1491
+ :param kubernetes_clusters: The kubernetes_clusters of this V1UserFeatures. # noqa: E501
1461
1492
  :type: bool
1462
1493
  """
1463
1494
 
1464
- self._plugin_distributed = plugin_distributed
1495
+ self._kubernetes_clusters = kubernetes_clusters
1465
1496
 
1466
1497
  @property
1467
- def plugin_fiftyone(self) -> 'bool':
1468
- """Gets the plugin_fiftyone of this V1UserFeatures. # noqa: E501
1498
+ def landing_studios(self) -> 'bool':
1499
+ """Gets the landing_studios of this V1UserFeatures. # noqa: E501
1469
1500
 
1470
1501
 
1471
- :return: The plugin_fiftyone of this V1UserFeatures. # noqa: E501
1502
+ :return: The landing_studios of this V1UserFeatures. # noqa: E501
1472
1503
  :rtype: bool
1473
1504
  """
1474
- return self._plugin_fiftyone
1505
+ return self._landing_studios
1475
1506
 
1476
- @plugin_fiftyone.setter
1477
- def plugin_fiftyone(self, plugin_fiftyone: 'bool'):
1478
- """Sets the plugin_fiftyone of this V1UserFeatures.
1507
+ @landing_studios.setter
1508
+ def landing_studios(self, landing_studios: 'bool'):
1509
+ """Sets the landing_studios of this V1UserFeatures.
1479
1510
 
1480
1511
 
1481
- :param plugin_fiftyone: The plugin_fiftyone of this V1UserFeatures. # noqa: E501
1512
+ :param landing_studios: The landing_studios of this V1UserFeatures. # noqa: E501
1482
1513
  :type: bool
1483
1514
  """
1484
1515
 
1485
- self._plugin_fiftyone = plugin_fiftyone
1516
+ self._landing_studios = landing_studios
1486
1517
 
1487
1518
  @property
1488
- def plugin_inference(self) -> 'bool':
1489
- """Gets the plugin_inference of this V1UserFeatures. # noqa: E501
1519
+ def lit_logger(self) -> 'bool':
1520
+ """Gets the lit_logger of this V1UserFeatures. # noqa: E501
1490
1521
 
1491
1522
 
1492
- :return: The plugin_inference of this V1UserFeatures. # noqa: E501
1523
+ :return: The lit_logger of this V1UserFeatures. # noqa: E501
1493
1524
  :rtype: bool
1494
1525
  """
1495
- return self._plugin_inference
1526
+ return self._lit_logger
1496
1527
 
1497
- @plugin_inference.setter
1498
- def plugin_inference(self, plugin_inference: 'bool'):
1499
- """Sets the plugin_inference of this V1UserFeatures.
1528
+ @lit_logger.setter
1529
+ def lit_logger(self, lit_logger: 'bool'):
1530
+ """Sets the lit_logger of this V1UserFeatures.
1500
1531
 
1501
1532
 
1502
- :param plugin_inference: The plugin_inference of this V1UserFeatures. # noqa: E501
1533
+ :param lit_logger: The lit_logger of this V1UserFeatures. # noqa: E501
1503
1534
  :type: bool
1504
1535
  """
1505
1536
 
1506
- self._plugin_inference = plugin_inference
1537
+ self._lit_logger = lit_logger
1507
1538
 
1508
1539
  @property
1509
- def plugin_label_studio(self) -> 'bool':
1510
- """Gets the plugin_label_studio of this V1UserFeatures. # noqa: E501
1540
+ def marketplace(self) -> 'bool':
1541
+ """Gets the marketplace of this V1UserFeatures. # noqa: E501
1511
1542
 
1512
1543
 
1513
- :return: The plugin_label_studio of this V1UserFeatures. # noqa: E501
1544
+ :return: The marketplace of this V1UserFeatures. # noqa: E501
1514
1545
  :rtype: bool
1515
1546
  """
1516
- return self._plugin_label_studio
1547
+ return self._marketplace
1517
1548
 
1518
- @plugin_label_studio.setter
1519
- def plugin_label_studio(self, plugin_label_studio: 'bool'):
1520
- """Sets the plugin_label_studio of this V1UserFeatures.
1549
+ @marketplace.setter
1550
+ def marketplace(self, marketplace: 'bool'):
1551
+ """Sets the marketplace of this V1UserFeatures.
1521
1552
 
1522
1553
 
1523
- :param plugin_label_studio: The plugin_label_studio of this V1UserFeatures. # noqa: E501
1554
+ :param marketplace: The marketplace of this V1UserFeatures. # noqa: E501
1524
1555
  :type: bool
1525
1556
  """
1526
1557
 
1527
- self._plugin_label_studio = plugin_label_studio
1558
+ self._marketplace = marketplace
1528
1559
 
1529
1560
  @property
1530
- def plugin_langflow(self) -> 'bool':
1531
- """Gets the plugin_langflow of this V1UserFeatures. # noqa: E501
1561
+ def mmt_fault_tolerance(self) -> 'bool':
1562
+ """Gets the mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
1532
1563
 
1533
1564
 
1534
- :return: The plugin_langflow of this V1UserFeatures. # noqa: E501
1565
+ :return: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
1535
1566
  :rtype: bool
1536
1567
  """
1537
- return self._plugin_langflow
1568
+ return self._mmt_fault_tolerance
1538
1569
 
1539
- @plugin_langflow.setter
1540
- def plugin_langflow(self, plugin_langflow: 'bool'):
1541
- """Sets the plugin_langflow of this V1UserFeatures.
1570
+ @mmt_fault_tolerance.setter
1571
+ def mmt_fault_tolerance(self, mmt_fault_tolerance: 'bool'):
1572
+ """Sets the mmt_fault_tolerance of this V1UserFeatures.
1542
1573
 
1543
1574
 
1544
- :param plugin_langflow: The plugin_langflow of this V1UserFeatures. # noqa: E501
1575
+ :param mmt_fault_tolerance: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
1545
1576
  :type: bool
1546
1577
  """
1547
1578
 
1548
- self._plugin_langflow = plugin_langflow
1579
+ self._mmt_fault_tolerance = mmt_fault_tolerance
1580
+
1581
+ @property
1582
+ def mmt_strategy_selector(self) -> 'bool':
1583
+ """Gets the mmt_strategy_selector of this V1UserFeatures. # noqa: E501
1584
+
1585
+
1586
+ :return: The mmt_strategy_selector of this V1UserFeatures. # noqa: E501
1587
+ :rtype: bool
1588
+ """
1589
+ return self._mmt_strategy_selector
1590
+
1591
+ @mmt_strategy_selector.setter
1592
+ def mmt_strategy_selector(self, mmt_strategy_selector: 'bool'):
1593
+ """Sets the mmt_strategy_selector of this V1UserFeatures.
1594
+
1595
+
1596
+ :param mmt_strategy_selector: The mmt_strategy_selector of this V1UserFeatures. # noqa: E501
1597
+ :type: bool
1598
+ """
1599
+
1600
+ self._mmt_strategy_selector = mmt_strategy_selector
1549
1601
 
1550
1602
  @property
1551
- def plugin_lightning_apps(self) -> 'bool':
1552
- """Gets the plugin_lightning_apps of this V1UserFeatures. # noqa: E501
1603
+ def multiple_studio_versions(self) -> 'bool':
1604
+ """Gets the multiple_studio_versions of this V1UserFeatures. # noqa: E501
1553
1605
 
1554
1606
 
1555
- :return: The plugin_lightning_apps of this V1UserFeatures. # noqa: E501
1607
+ :return: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
1556
1608
  :rtype: bool
1557
1609
  """
1558
- return self._plugin_lightning_apps
1610
+ return self._multiple_studio_versions
1559
1611
 
1560
- @plugin_lightning_apps.setter
1561
- def plugin_lightning_apps(self, plugin_lightning_apps: 'bool'):
1562
- """Sets the plugin_lightning_apps of this V1UserFeatures.
1612
+ @multiple_studio_versions.setter
1613
+ def multiple_studio_versions(self, multiple_studio_versions: 'bool'):
1614
+ """Sets the multiple_studio_versions of this V1UserFeatures.
1563
1615
 
1564
1616
 
1565
- :param plugin_lightning_apps: The plugin_lightning_apps of this V1UserFeatures. # noqa: E501
1617
+ :param multiple_studio_versions: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
1566
1618
  :type: bool
1567
1619
  """
1568
1620
 
1569
- self._plugin_lightning_apps = plugin_lightning_apps
1621
+ self._multiple_studio_versions = multiple_studio_versions
1570
1622
 
1571
1623
  @property
1572
- def plugin_lightning_apps_distributed(self) -> 'bool':
1573
- """Gets the plugin_lightning_apps_distributed of this V1UserFeatures. # noqa: E501
1624
+ def nerf_fs_nonpaying(self) -> 'bool':
1625
+ """Gets the nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1574
1626
 
1575
1627
 
1576
- :return: The plugin_lightning_apps_distributed of this V1UserFeatures. # noqa: E501
1628
+ :return: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1577
1629
  :rtype: bool
1578
1630
  """
1579
- return self._plugin_lightning_apps_distributed
1631
+ return self._nerf_fs_nonpaying
1580
1632
 
1581
- @plugin_lightning_apps_distributed.setter
1582
- def plugin_lightning_apps_distributed(self, plugin_lightning_apps_distributed: 'bool'):
1583
- """Sets the plugin_lightning_apps_distributed of this V1UserFeatures.
1633
+ @nerf_fs_nonpaying.setter
1634
+ def nerf_fs_nonpaying(self, nerf_fs_nonpaying: 'bool'):
1635
+ """Sets the nerf_fs_nonpaying of this V1UserFeatures.
1584
1636
 
1585
1637
 
1586
- :param plugin_lightning_apps_distributed: The plugin_lightning_apps_distributed of this V1UserFeatures. # noqa: E501
1638
+ :param nerf_fs_nonpaying: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1587
1639
  :type: bool
1588
1640
  """
1589
1641
 
1590
- self._plugin_lightning_apps_distributed = plugin_lightning_apps_distributed
1642
+ self._nerf_fs_nonpaying = nerf_fs_nonpaying
1591
1643
 
1592
1644
  @property
1593
- def plugin_mage_ai(self) -> 'bool':
1594
- """Gets the plugin_mage_ai of this V1UserFeatures. # noqa: E501
1645
+ def org_level_member_permissions(self) -> 'bool':
1646
+ """Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
1595
1647
 
1596
1648
 
1597
- :return: The plugin_mage_ai of this V1UserFeatures. # noqa: E501
1649
+ :return: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
1598
1650
  :rtype: bool
1599
1651
  """
1600
- return self._plugin_mage_ai
1652
+ return self._org_level_member_permissions
1601
1653
 
1602
- @plugin_mage_ai.setter
1603
- def plugin_mage_ai(self, plugin_mage_ai: 'bool'):
1604
- """Sets the plugin_mage_ai of this V1UserFeatures.
1654
+ @org_level_member_permissions.setter
1655
+ def org_level_member_permissions(self, org_level_member_permissions: 'bool'):
1656
+ """Sets the org_level_member_permissions of this V1UserFeatures.
1605
1657
 
1606
1658
 
1607
- :param plugin_mage_ai: The plugin_mage_ai of this V1UserFeatures. # noqa: E501
1659
+ :param org_level_member_permissions: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
1608
1660
  :type: bool
1609
1661
  """
1610
1662
 
1611
- self._plugin_mage_ai = plugin_mage_ai
1663
+ self._org_level_member_permissions = org_level_member_permissions
1612
1664
 
1613
1665
  @property
1614
- def plugin_milvus(self) -> 'bool':
1615
- """Gets the plugin_milvus of this V1UserFeatures. # noqa: E501
1666
+ def org_usage_limits(self) -> 'bool':
1667
+ """Gets the org_usage_limits of this V1UserFeatures. # noqa: E501
1616
1668
 
1617
1669
 
1618
- :return: The plugin_milvus of this V1UserFeatures. # noqa: E501
1670
+ :return: The org_usage_limits of this V1UserFeatures. # noqa: E501
1619
1671
  :rtype: bool
1620
1672
  """
1621
- return self._plugin_milvus
1673
+ return self._org_usage_limits
1622
1674
 
1623
- @plugin_milvus.setter
1624
- def plugin_milvus(self, plugin_milvus: 'bool'):
1625
- """Sets the plugin_milvus of this V1UserFeatures.
1675
+ @org_usage_limits.setter
1676
+ def org_usage_limits(self, org_usage_limits: 'bool'):
1677
+ """Sets the org_usage_limits of this V1UserFeatures.
1626
1678
 
1627
1679
 
1628
- :param plugin_milvus: The plugin_milvus of this V1UserFeatures. # noqa: E501
1680
+ :param org_usage_limits: The org_usage_limits of this V1UserFeatures. # noqa: E501
1629
1681
  :type: bool
1630
1682
  """
1631
1683
 
1632
- self._plugin_milvus = plugin_milvus
1684
+ self._org_usage_limits = org_usage_limits
1633
1685
 
1634
1686
  @property
1635
- def plugin_python_profiler(self) -> 'bool':
1636
- """Gets the plugin_python_profiler of this V1UserFeatures. # noqa: E501
1687
+ def persistent_disk(self) -> 'bool':
1688
+ """Gets the persistent_disk of this V1UserFeatures. # noqa: E501
1637
1689
 
1638
1690
 
1639
- :return: The plugin_python_profiler of this V1UserFeatures. # noqa: E501
1691
+ :return: The persistent_disk of this V1UserFeatures. # noqa: E501
1640
1692
  :rtype: bool
1641
1693
  """
1642
- return self._plugin_python_profiler
1694
+ return self._persistent_disk
1643
1695
 
1644
- @plugin_python_profiler.setter
1645
- def plugin_python_profiler(self, plugin_python_profiler: 'bool'):
1646
- """Sets the plugin_python_profiler of this V1UserFeatures.
1696
+ @persistent_disk.setter
1697
+ def persistent_disk(self, persistent_disk: 'bool'):
1698
+ """Sets the persistent_disk of this V1UserFeatures.
1647
1699
 
1648
1700
 
1649
- :param plugin_python_profiler: The plugin_python_profiler of this V1UserFeatures. # noqa: E501
1701
+ :param persistent_disk: The persistent_disk of this V1UserFeatures. # noqa: E501
1650
1702
  :type: bool
1651
1703
  """
1652
1704
 
1653
- self._plugin_python_profiler = plugin_python_profiler
1705
+ self._persistent_disk = persistent_disk
1654
1706
 
1655
1707
  @property
1656
- def plugin_react(self) -> 'bool':
1657
- """Gets the plugin_react of this V1UserFeatures. # noqa: E501
1708
+ def plugin_distributed(self) -> 'bool':
1709
+ """Gets the plugin_distributed of this V1UserFeatures. # noqa: E501
1658
1710
 
1659
1711
 
1660
- :return: The plugin_react of this V1UserFeatures. # noqa: E501
1712
+ :return: The plugin_distributed of this V1UserFeatures. # noqa: E501
1661
1713
  :rtype: bool
1662
1714
  """
1663
- return self._plugin_react
1715
+ return self._plugin_distributed
1664
1716
 
1665
- @plugin_react.setter
1666
- def plugin_react(self, plugin_react: 'bool'):
1667
- """Sets the plugin_react of this V1UserFeatures.
1717
+ @plugin_distributed.setter
1718
+ def plugin_distributed(self, plugin_distributed: 'bool'):
1719
+ """Sets the plugin_distributed of this V1UserFeatures.
1668
1720
 
1669
1721
 
1670
- :param plugin_react: The plugin_react of this V1UserFeatures. # noqa: E501
1722
+ :param plugin_distributed: The plugin_distributed of this V1UserFeatures. # noqa: E501
1671
1723
  :type: bool
1672
1724
  """
1673
1725
 
1674
- self._plugin_react = plugin_react
1726
+ self._plugin_distributed = plugin_distributed
1675
1727
 
1676
1728
  @property
1677
- def plugin_service(self) -> 'bool':
1678
- """Gets the plugin_service of this V1UserFeatures. # noqa: E501
1729
+ def plugin_inference(self) -> 'bool':
1730
+ """Gets the plugin_inference of this V1UserFeatures. # noqa: E501
1679
1731
 
1680
1732
 
1681
- :return: The plugin_service of this V1UserFeatures. # noqa: E501
1733
+ :return: The plugin_inference of this V1UserFeatures. # noqa: E501
1682
1734
  :rtype: bool
1683
1735
  """
1684
- return self._plugin_service
1736
+ return self._plugin_inference
1685
1737
 
1686
- @plugin_service.setter
1687
- def plugin_service(self, plugin_service: 'bool'):
1688
- """Sets the plugin_service of this V1UserFeatures.
1738
+ @plugin_inference.setter
1739
+ def plugin_inference(self, plugin_inference: 'bool'):
1740
+ """Sets the plugin_inference of this V1UserFeatures.
1689
1741
 
1690
1742
 
1691
- :param plugin_service: The plugin_service of this V1UserFeatures. # noqa: E501
1743
+ :param plugin_inference: The plugin_inference of this V1UserFeatures. # noqa: E501
1692
1744
  :type: bool
1693
1745
  """
1694
1746
 
1695
- self._plugin_service = plugin_service
1747
+ self._plugin_inference = plugin_inference
1696
1748
 
1697
1749
  @property
1698
- def plugin_sweeps(self) -> 'bool':
1699
- """Gets the plugin_sweeps of this V1UserFeatures. # noqa: E501
1750
+ def plugin_label_studio(self) -> 'bool':
1751
+ """Gets the plugin_label_studio of this V1UserFeatures. # noqa: E501
1700
1752
 
1701
1753
 
1702
- :return: The plugin_sweeps of this V1UserFeatures. # noqa: E501
1754
+ :return: The plugin_label_studio of this V1UserFeatures. # noqa: E501
1703
1755
  :rtype: bool
1704
1756
  """
1705
- return self._plugin_sweeps
1757
+ return self._plugin_label_studio
1706
1758
 
1707
- @plugin_sweeps.setter
1708
- def plugin_sweeps(self, plugin_sweeps: 'bool'):
1709
- """Sets the plugin_sweeps of this V1UserFeatures.
1759
+ @plugin_label_studio.setter
1760
+ def plugin_label_studio(self, plugin_label_studio: 'bool'):
1761
+ """Sets the plugin_label_studio of this V1UserFeatures.
1710
1762
 
1711
1763
 
1712
- :param plugin_sweeps: The plugin_sweeps of this V1UserFeatures. # noqa: E501
1764
+ :param plugin_label_studio: The plugin_label_studio of this V1UserFeatures. # noqa: E501
1713
1765
  :type: bool
1714
1766
  """
1715
1767
 
1716
- self._plugin_sweeps = plugin_sweeps
1768
+ self._plugin_label_studio = plugin_label_studio
1717
1769
 
1718
1770
  @property
1719
- def plugin_weviate(self) -> 'bool':
1720
- """Gets the plugin_weviate of this V1UserFeatures. # noqa: E501
1771
+ def plugin_langflow(self) -> 'bool':
1772
+ """Gets the plugin_langflow of this V1UserFeatures. # noqa: E501
1721
1773
 
1722
1774
 
1723
- :return: The plugin_weviate of this V1UserFeatures. # noqa: E501
1775
+ :return: The plugin_langflow of this V1UserFeatures. # noqa: E501
1724
1776
  :rtype: bool
1725
1777
  """
1726
- return self._plugin_weviate
1778
+ return self._plugin_langflow
1727
1779
 
1728
- @plugin_weviate.setter
1729
- def plugin_weviate(self, plugin_weviate: 'bool'):
1730
- """Sets the plugin_weviate of this V1UserFeatures.
1780
+ @plugin_langflow.setter
1781
+ def plugin_langflow(self, plugin_langflow: 'bool'):
1782
+ """Sets the plugin_langflow of this V1UserFeatures.
1731
1783
 
1732
1784
 
1733
- :param plugin_weviate: The plugin_weviate of this V1UserFeatures. # noqa: E501
1785
+ :param plugin_langflow: The plugin_langflow of this V1UserFeatures. # noqa: E501
1734
1786
  :type: bool
1735
1787
  """
1736
1788
 
1737
- self._plugin_weviate = plugin_weviate
1789
+ self._plugin_langflow = plugin_langflow
1790
+
1791
+ @property
1792
+ def plugin_python_profiler(self) -> 'bool':
1793
+ """Gets the plugin_python_profiler of this V1UserFeatures. # noqa: E501
1794
+
1795
+
1796
+ :return: The plugin_python_profiler of this V1UserFeatures. # noqa: E501
1797
+ :rtype: bool
1798
+ """
1799
+ return self._plugin_python_profiler
1800
+
1801
+ @plugin_python_profiler.setter
1802
+ def plugin_python_profiler(self, plugin_python_profiler: 'bool'):
1803
+ """Sets the plugin_python_profiler of this V1UserFeatures.
1804
+
1805
+
1806
+ :param plugin_python_profiler: The plugin_python_profiler of this V1UserFeatures. # noqa: E501
1807
+ :type: bool
1808
+ """
1809
+
1810
+ self._plugin_python_profiler = plugin_python_profiler
1811
+
1812
+ @property
1813
+ def plugin_sweeps(self) -> 'bool':
1814
+ """Gets the plugin_sweeps of this V1UserFeatures. # noqa: E501
1815
+
1816
+
1817
+ :return: The plugin_sweeps of this V1UserFeatures. # noqa: E501
1818
+ :rtype: bool
1819
+ """
1820
+ return self._plugin_sweeps
1821
+
1822
+ @plugin_sweeps.setter
1823
+ def plugin_sweeps(self, plugin_sweeps: 'bool'):
1824
+ """Sets the plugin_sweeps of this V1UserFeatures.
1825
+
1826
+
1827
+ :param plugin_sweeps: The plugin_sweeps of this V1UserFeatures. # noqa: E501
1828
+ :type: bool
1829
+ """
1830
+
1831
+ self._plugin_sweeps = plugin_sweeps
1738
1832
 
1739
1833
  @property
1740
1834
  def pricing_updates(self) -> 'bool':
@@ -1778,6 +1872,27 @@ class V1UserFeatures(object):
1778
1872
 
1779
1873
  self._product_generator = product_generator
1780
1874
 
1875
+ @property
1876
+ def product_license(self) -> 'bool':
1877
+ """Gets the product_license of this V1UserFeatures. # noqa: E501
1878
+
1879
+
1880
+ :return: The product_license of this V1UserFeatures. # noqa: E501
1881
+ :rtype: bool
1882
+ """
1883
+ return self._product_license
1884
+
1885
+ @product_license.setter
1886
+ def product_license(self, product_license: 'bool'):
1887
+ """Sets the product_license of this V1UserFeatures.
1888
+
1889
+
1890
+ :param product_license: The product_license of this V1UserFeatures. # noqa: E501
1891
+ :type: bool
1892
+ """
1893
+
1894
+ self._product_license = product_license
1895
+
1781
1896
  @property
1782
1897
  def project_selector(self) -> 'bool':
1783
1898
  """Gets the project_selector of this V1UserFeatures. # noqa: E501
@@ -1800,25 +1915,46 @@ class V1UserFeatures(object):
1800
1915
  self._project_selector = project_selector
1801
1916
 
1802
1917
  @property
1803
- def restart_ide_on_hang(self) -> 'bool':
1804
- """Gets the restart_ide_on_hang of this V1UserFeatures. # noqa: E501
1918
+ def publish_pipelines(self) -> 'bool':
1919
+ """Gets the publish_pipelines of this V1UserFeatures. # noqa: E501
1805
1920
 
1806
1921
 
1807
- :return: The restart_ide_on_hang of this V1UserFeatures. # noqa: E501
1922
+ :return: The publish_pipelines of this V1UserFeatures. # noqa: E501
1808
1923
  :rtype: bool
1809
1924
  """
1810
- return self._restart_ide_on_hang
1925
+ return self._publish_pipelines
1811
1926
 
1812
- @restart_ide_on_hang.setter
1813
- def restart_ide_on_hang(self, restart_ide_on_hang: 'bool'):
1814
- """Sets the restart_ide_on_hang of this V1UserFeatures.
1927
+ @publish_pipelines.setter
1928
+ def publish_pipelines(self, publish_pipelines: 'bool'):
1929
+ """Sets the publish_pipelines of this V1UserFeatures.
1815
1930
 
1816
1931
 
1817
- :param restart_ide_on_hang: The restart_ide_on_hang of this V1UserFeatures. # noqa: E501
1932
+ :param publish_pipelines: The publish_pipelines of this V1UserFeatures. # noqa: E501
1818
1933
  :type: bool
1819
1934
  """
1820
1935
 
1821
- self._restart_ide_on_hang = restart_ide_on_hang
1936
+ self._publish_pipelines = publish_pipelines
1937
+
1938
+ @property
1939
+ def reserved_machines_tab(self) -> 'bool':
1940
+ """Gets the reserved_machines_tab of this V1UserFeatures. # noqa: E501
1941
+
1942
+
1943
+ :return: The reserved_machines_tab of this V1UserFeatures. # noqa: E501
1944
+ :rtype: bool
1945
+ """
1946
+ return self._reserved_machines_tab
1947
+
1948
+ @reserved_machines_tab.setter
1949
+ def reserved_machines_tab(self, reserved_machines_tab: 'bool'):
1950
+ """Sets the reserved_machines_tab of this V1UserFeatures.
1951
+
1952
+
1953
+ :param reserved_machines_tab: The reserved_machines_tab of this V1UserFeatures. # noqa: E501
1954
+ :type: bool
1955
+ """
1956
+
1957
+ self._reserved_machines_tab = reserved_machines_tab
1822
1958
 
1823
1959
  @property
1824
1960
  def restartable_jobs(self) -> 'bool':
@@ -1862,6 +1998,27 @@ class V1UserFeatures(object):
1862
1998
 
1863
1999
  self._runnable_public_studio_page = runnable_public_studio_page
1864
2000
 
2001
+ @property
2002
+ def security_docs(self) -> 'bool':
2003
+ """Gets the security_docs of this V1UserFeatures. # noqa: E501
2004
+
2005
+
2006
+ :return: The security_docs of this V1UserFeatures. # noqa: E501
2007
+ :rtype: bool
2008
+ """
2009
+ return self._security_docs
2010
+
2011
+ @security_docs.setter
2012
+ def security_docs(self, security_docs: 'bool'):
2013
+ """Sets the security_docs of this V1UserFeatures.
2014
+
2015
+
2016
+ :param security_docs: The security_docs of this V1UserFeatures. # noqa: E501
2017
+ :type: bool
2018
+ """
2019
+
2020
+ self._security_docs = security_docs
2021
+
1865
2022
  @property
1866
2023
  def show_dev_admin(self) -> 'bool':
1867
2024
  """Gets the show_dev_admin of this V1UserFeatures. # noqa: E501
@@ -1905,88 +2062,46 @@ class V1UserFeatures(object):
1905
2062
  self._slurm = slurm
1906
2063
 
1907
2064
  @property
1908
- def slurm_machine_selector(self) -> 'bool':
1909
- """Gets the slurm_machine_selector of this V1UserFeatures. # noqa: E501
1910
-
1911
-
1912
- :return: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
1913
- :rtype: bool
1914
- """
1915
- return self._slurm_machine_selector
1916
-
1917
- @slurm_machine_selector.setter
1918
- def slurm_machine_selector(self, slurm_machine_selector: 'bool'):
1919
- """Sets the slurm_machine_selector of this V1UserFeatures.
1920
-
1921
-
1922
- :param slurm_machine_selector: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
1923
- :type: bool
1924
- """
1925
-
1926
- self._slurm_machine_selector = slurm_machine_selector
1927
-
1928
- @property
1929
- def snapshotter_service(self) -> 'bool':
1930
- """Gets the snapshotter_service of this V1UserFeatures. # noqa: E501
1931
-
1932
-
1933
- :return: The snapshotter_service of this V1UserFeatures. # noqa: E501
1934
- :rtype: bool
1935
- """
1936
- return self._snapshotter_service
1937
-
1938
- @snapshotter_service.setter
1939
- def snapshotter_service(self, snapshotter_service: 'bool'):
1940
- """Sets the snapshotter_service of this V1UserFeatures.
1941
-
1942
-
1943
- :param snapshotter_service: The snapshotter_service of this V1UserFeatures. # noqa: E501
1944
- :type: bool
1945
- """
1946
-
1947
- self._snapshotter_service = snapshotter_service
1948
-
1949
- @property
1950
- def snowflake_connection(self) -> 'bool':
1951
- """Gets the snowflake_connection of this V1UserFeatures. # noqa: E501
2065
+ def specialised_studios(self) -> 'bool':
2066
+ """Gets the specialised_studios of this V1UserFeatures. # noqa: E501
1952
2067
 
1953
2068
 
1954
- :return: The snowflake_connection of this V1UserFeatures. # noqa: E501
2069
+ :return: The specialised_studios of this V1UserFeatures. # noqa: E501
1955
2070
  :rtype: bool
1956
2071
  """
1957
- return self._snowflake_connection
2072
+ return self._specialised_studios
1958
2073
 
1959
- @snowflake_connection.setter
1960
- def snowflake_connection(self, snowflake_connection: 'bool'):
1961
- """Sets the snowflake_connection of this V1UserFeatures.
2074
+ @specialised_studios.setter
2075
+ def specialised_studios(self, specialised_studios: 'bool'):
2076
+ """Sets the specialised_studios of this V1UserFeatures.
1962
2077
 
1963
2078
 
1964
- :param snowflake_connection: The snowflake_connection of this V1UserFeatures. # noqa: E501
2079
+ :param specialised_studios: The specialised_studios of this V1UserFeatures. # noqa: E501
1965
2080
  :type: bool
1966
2081
  """
1967
2082
 
1968
- self._snowflake_connection = snowflake_connection
2083
+ self._specialised_studios = specialised_studios
1969
2084
 
1970
2085
  @property
1971
- def spot_v2(self) -> 'bool':
1972
- """Gets the spot_v2 of this V1UserFeatures. # noqa: E501
2086
+ def storage_overuse_deletion(self) -> 'bool':
2087
+ """Gets the storage_overuse_deletion of this V1UserFeatures. # noqa: E501
1973
2088
 
1974
2089
 
1975
- :return: The spot_v2 of this V1UserFeatures. # noqa: E501
2090
+ :return: The storage_overuse_deletion of this V1UserFeatures. # noqa: E501
1976
2091
  :rtype: bool
1977
2092
  """
1978
- return self._spot_v2
2093
+ return self._storage_overuse_deletion
1979
2094
 
1980
- @spot_v2.setter
1981
- def spot_v2(self, spot_v2: 'bool'):
1982
- """Sets the spot_v2 of this V1UserFeatures.
2095
+ @storage_overuse_deletion.setter
2096
+ def storage_overuse_deletion(self, storage_overuse_deletion: 'bool'):
2097
+ """Sets the storage_overuse_deletion of this V1UserFeatures.
1983
2098
 
1984
2099
 
1985
- :param spot_v2: The spot_v2 of this V1UserFeatures. # noqa: E501
2100
+ :param storage_overuse_deletion: The storage_overuse_deletion of this V1UserFeatures. # noqa: E501
1986
2101
  :type: bool
1987
2102
  """
1988
2103
 
1989
- self._spot_v2 = spot_v2
2104
+ self._storage_overuse_deletion = storage_overuse_deletion
1990
2105
 
1991
2106
  @property
1992
2107
  def studio_config(self) -> 'bool':
@@ -2009,27 +2124,6 @@ class V1UserFeatures(object):
2009
2124
 
2010
2125
  self._studio_config = studio_config
2011
2126
 
2012
- @property
2013
- def studio_on_stop(self) -> 'bool':
2014
- """Gets the studio_on_stop of this V1UserFeatures. # noqa: E501
2015
-
2016
-
2017
- :return: The studio_on_stop of this V1UserFeatures. # noqa: E501
2018
- :rtype: bool
2019
- """
2020
- return self._studio_on_stop
2021
-
2022
- @studio_on_stop.setter
2023
- def studio_on_stop(self, studio_on_stop: 'bool'):
2024
- """Sets the studio_on_stop of this V1UserFeatures.
2025
-
2026
-
2027
- :param studio_on_stop: The studio_on_stop of this V1UserFeatures. # noqa: E501
2028
- :type: bool
2029
- """
2030
-
2031
- self._studio_on_stop = studio_on_stop
2032
-
2033
2127
  @property
2034
2128
  def studio_version_visibility(self) -> 'bool':
2035
2129
  """Gets the studio_version_visibility of this V1UserFeatures. # noqa: E501
@@ -2052,109 +2146,67 @@ class V1UserFeatures(object):
2052
2146
  self._studio_version_visibility = studio_version_visibility
2053
2147
 
2054
2148
  @property
2055
- def teamspace_storage_tab(self) -> 'bool':
2056
- """Gets the teamspace_storage_tab of this V1UserFeatures. # noqa: E501
2057
-
2058
-
2059
- :return: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
2060
- :rtype: bool
2061
- """
2062
- return self._teamspace_storage_tab
2063
-
2064
- @teamspace_storage_tab.setter
2065
- def teamspace_storage_tab(self, teamspace_storage_tab: 'bool'):
2066
- """Sets the teamspace_storage_tab of this V1UserFeatures.
2067
-
2068
-
2069
- :param teamspace_storage_tab: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
2070
- :type: bool
2071
- """
2072
-
2073
- self._teamspace_storage_tab = teamspace_storage_tab
2074
-
2075
- @property
2076
- def trainium2(self) -> 'bool':
2077
- """Gets the trainium2 of this V1UserFeatures. # noqa: E501
2078
-
2079
-
2080
- :return: The trainium2 of this V1UserFeatures. # noqa: E501
2081
- :rtype: bool
2082
- """
2083
- return self._trainium2
2084
-
2085
- @trainium2.setter
2086
- def trainium2(self, trainium2: 'bool'):
2087
- """Sets the trainium2 of this V1UserFeatures.
2088
-
2089
-
2090
- :param trainium2: The trainium2 of this V1UserFeatures. # noqa: E501
2091
- :type: bool
2092
- """
2093
-
2094
- self._trainium2 = trainium2
2095
-
2096
- @property
2097
- def use_rclone_mounts_only(self) -> 'bool':
2098
- """Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
2149
+ def vultr(self) -> 'bool':
2150
+ """Gets the vultr of this V1UserFeatures. # noqa: E501
2099
2151
 
2100
2152
 
2101
- :return: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
2153
+ :return: The vultr of this V1UserFeatures. # noqa: E501
2102
2154
  :rtype: bool
2103
2155
  """
2104
- return self._use_rclone_mounts_only
2156
+ return self._vultr
2105
2157
 
2106
- @use_rclone_mounts_only.setter
2107
- def use_rclone_mounts_only(self, use_rclone_mounts_only: 'bool'):
2108
- """Sets the use_rclone_mounts_only of this V1UserFeatures.
2158
+ @vultr.setter
2159
+ def vultr(self, vultr: 'bool'):
2160
+ """Sets the vultr of this V1UserFeatures.
2109
2161
 
2110
2162
 
2111
- :param use_rclone_mounts_only: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
2163
+ :param vultr: The vultr of this V1UserFeatures. # noqa: E501
2112
2164
  :type: bool
2113
2165
  """
2114
2166
 
2115
- self._use_rclone_mounts_only = use_rclone_mounts_only
2167
+ self._vultr = vultr
2116
2168
 
2117
2169
  @property
2118
- def vultr(self) -> 'bool':
2119
- """Gets the vultr of this V1UserFeatures. # noqa: E501
2170
+ def weka(self) -> 'bool':
2171
+ """Gets the weka of this V1UserFeatures. # noqa: E501
2120
2172
 
2121
2173
 
2122
- :return: The vultr of this V1UserFeatures. # noqa: E501
2174
+ :return: The weka of this V1UserFeatures. # noqa: E501
2123
2175
  :rtype: bool
2124
2176
  """
2125
- return self._vultr
2177
+ return self._weka
2126
2178
 
2127
- @vultr.setter
2128
- def vultr(self, vultr: 'bool'):
2129
- """Sets the vultr of this V1UserFeatures.
2179
+ @weka.setter
2180
+ def weka(self, weka: 'bool'):
2181
+ """Sets the weka of this V1UserFeatures.
2130
2182
 
2131
2183
 
2132
- :param vultr: The vultr of this V1UserFeatures. # noqa: E501
2184
+ :param weka: The weka of this V1UserFeatures. # noqa: E501
2133
2185
  :type: bool
2134
2186
  """
2135
2187
 
2136
- self._vultr = vultr
2188
+ self._weka = weka
2137
2189
 
2138
2190
  @property
2139
- def writable_data_connections(self) -> 'bool':
2140
- """Gets the writable_data_connections of this V1UserFeatures. # noqa: E501
2191
+ def writable_s3_connections(self) -> 'bool':
2192
+ """Gets the writable_s3_connections of this V1UserFeatures. # noqa: E501
2141
2193
 
2142
2194
 
2143
- :return: The writable_data_connections of this V1UserFeatures. # noqa: E501
2195
+ :return: The writable_s3_connections of this V1UserFeatures. # noqa: E501
2144
2196
  :rtype: bool
2145
2197
  """
2146
- return self._writable_data_connections
2198
+ return self._writable_s3_connections
2147
2199
 
2148
- @writable_data_connections.setter
2149
- def writable_data_connections(self, writable_data_connections: 'bool'):
2150
- """Sets the writable_data_connections of this V1UserFeatures.
2200
+ @writable_s3_connections.setter
2201
+ def writable_s3_connections(self, writable_s3_connections: 'bool'):
2202
+ """Sets the writable_s3_connections of this V1UserFeatures.
2151
2203
 
2152
2204
 
2153
- :param writable_data_connections: The writable_data_connections of this V1UserFeatures. # noqa: E501
2205
+ :param writable_s3_connections: The writable_s3_connections of this V1UserFeatures. # noqa: E501
2154
2206
  :type: bool
2155
2207
  """
2156
2208
 
2157
- self._writable_data_connections = writable_data_connections
2209
+ self._writable_s3_connections = writable_s3_connections
2158
2210
 
2159
2211
  def to_dict(self) -> dict:
2160
2212
  """Returns the model properties as a dict"""