lightning-sdk 2025.11.13.post0__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 (1271) hide show
  1. docs/source/conf.py +378 -0
  2. lightning_sdk/__init__.py +43 -0
  3. lightning_sdk/__version__.py +3 -0
  4. lightning_sdk/agents.py +47 -0
  5. lightning_sdk/ai_hub.py +190 -0
  6. lightning_sdk/api/__init__.py +17 -0
  7. lightning_sdk/api/agents_api.py +107 -0
  8. lightning_sdk/api/ai_hub_api.py +173 -0
  9. lightning_sdk/api/base_studio_api.py +90 -0
  10. lightning_sdk/api/cloud_account_api.py +225 -0
  11. lightning_sdk/api/deployment_api.py +680 -0
  12. lightning_sdk/api/job_api.py +459 -0
  13. lightning_sdk/api/license_api.py +37 -0
  14. lightning_sdk/api/lit_container_api.py +254 -0
  15. lightning_sdk/api/llm_api.py +306 -0
  16. lightning_sdk/api/mmt_api.py +295 -0
  17. lightning_sdk/api/org_api.py +22 -0
  18. lightning_sdk/api/pipeline_api.py +120 -0
  19. lightning_sdk/api/studio_api.py +1043 -0
  20. lightning_sdk/api/teamspace_api.py +535 -0
  21. lightning_sdk/api/user_api.py +125 -0
  22. lightning_sdk/api/utils.py +806 -0
  23. lightning_sdk/base_studio.py +123 -0
  24. lightning_sdk/cli/__init__.py +1 -0
  25. lightning_sdk/cli/base_studio/__init__.py +10 -0
  26. lightning_sdk/cli/base_studio/list.py +43 -0
  27. lightning_sdk/cli/config/__init__.py +14 -0
  28. lightning_sdk/cli/config/get.py +57 -0
  29. lightning_sdk/cli/config/set.py +92 -0
  30. lightning_sdk/cli/config/show.py +9 -0
  31. lightning_sdk/cli/entrypoint.py +110 -0
  32. lightning_sdk/cli/groups.py +56 -0
  33. lightning_sdk/cli/job/__init__.py +7 -0
  34. lightning_sdk/cli/legacy/__init__.py +0 -0
  35. lightning_sdk/cli/legacy/ai_hub.py +65 -0
  36. lightning_sdk/cli/legacy/clusters_menu.py +49 -0
  37. lightning_sdk/cli/legacy/configure.py +129 -0
  38. lightning_sdk/cli/legacy/connect.py +34 -0
  39. lightning_sdk/cli/legacy/create.py +115 -0
  40. lightning_sdk/cli/legacy/delete.py +131 -0
  41. lightning_sdk/cli/legacy/deploy/__init__.py +0 -0
  42. lightning_sdk/cli/legacy/deploy/_auth.py +196 -0
  43. lightning_sdk/cli/legacy/deploy/devbox.py +163 -0
  44. lightning_sdk/cli/legacy/deploy/serve.py +466 -0
  45. lightning_sdk/cli/legacy/docker_cli.py +22 -0
  46. lightning_sdk/cli/legacy/download.py +322 -0
  47. lightning_sdk/cli/legacy/entrypoint.py +110 -0
  48. lightning_sdk/cli/legacy/exceptions.py +6 -0
  49. lightning_sdk/cli/legacy/generate.py +52 -0
  50. lightning_sdk/cli/legacy/inspection.py +45 -0
  51. lightning_sdk/cli/legacy/job_and_mmt_action.py +37 -0
  52. lightning_sdk/cli/legacy/jobs_menu.py +58 -0
  53. lightning_sdk/cli/legacy/list.py +326 -0
  54. lightning_sdk/cli/legacy/mmts_menu.py +58 -0
  55. lightning_sdk/cli/legacy/open.py +81 -0
  56. lightning_sdk/cli/legacy/run.py +443 -0
  57. lightning_sdk/cli/legacy/start.py +107 -0
  58. lightning_sdk/cli/legacy/stop.py +107 -0
  59. lightning_sdk/cli/legacy/studios_menu.py +101 -0
  60. lightning_sdk/cli/legacy/switch.py +63 -0
  61. lightning_sdk/cli/legacy/teamspace_menu.py +103 -0
  62. lightning_sdk/cli/legacy/upload.py +382 -0
  63. lightning_sdk/cli/license/__init__.py +14 -0
  64. lightning_sdk/cli/license/get.py +15 -0
  65. lightning_sdk/cli/license/list.py +45 -0
  66. lightning_sdk/cli/license/set.py +13 -0
  67. lightning_sdk/cli/mmt/__init__.py +7 -0
  68. lightning_sdk/cli/studio/__init__.py +26 -0
  69. lightning_sdk/cli/studio/connect.py +139 -0
  70. lightning_sdk/cli/studio/cp.py +138 -0
  71. lightning_sdk/cli/studio/create.py +96 -0
  72. lightning_sdk/cli/studio/delete.py +49 -0
  73. lightning_sdk/cli/studio/list.py +85 -0
  74. lightning_sdk/cli/studio/ssh.py +64 -0
  75. lightning_sdk/cli/studio/start.py +115 -0
  76. lightning_sdk/cli/studio/stop.py +45 -0
  77. lightning_sdk/cli/studio/switch.py +66 -0
  78. lightning_sdk/cli/utils/__init__.py +7 -0
  79. lightning_sdk/cli/utils/cloud_account_map.py +10 -0
  80. lightning_sdk/cli/utils/coloring.py +60 -0
  81. lightning_sdk/cli/utils/get_base_studio.py +24 -0
  82. lightning_sdk/cli/utils/handle_machine_and_gpus_args.py +69 -0
  83. lightning_sdk/cli/utils/logging.py +122 -0
  84. lightning_sdk/cli/utils/owner_selection.py +110 -0
  85. lightning_sdk/cli/utils/resolve.py +28 -0
  86. lightning_sdk/cli/utils/richt_print.py +35 -0
  87. lightning_sdk/cli/utils/save_to_config.py +27 -0
  88. lightning_sdk/cli/utils/ssh_connection.py +59 -0
  89. lightning_sdk/cli/utils/studio_selection.py +113 -0
  90. lightning_sdk/cli/utils/teamspace_selection.py +125 -0
  91. lightning_sdk/cli/vm/__init__.py +20 -0
  92. lightning_sdk/cli/vm/create.py +33 -0
  93. lightning_sdk/cli/vm/delete.py +25 -0
  94. lightning_sdk/cli/vm/list.py +30 -0
  95. lightning_sdk/cli/vm/ssh.py +31 -0
  96. lightning_sdk/cli/vm/start.py +60 -0
  97. lightning_sdk/cli/vm/stop.py +25 -0
  98. lightning_sdk/cli/vm/switch.py +38 -0
  99. lightning_sdk/constants.py +32 -0
  100. lightning_sdk/deployment/__init__.py +29 -0
  101. lightning_sdk/deployment/deployment.py +583 -0
  102. lightning_sdk/helpers.py +88 -0
  103. lightning_sdk/job/__init__.py +5 -0
  104. lightning_sdk/job/base.py +482 -0
  105. lightning_sdk/job/job.py +351 -0
  106. lightning_sdk/job/v1.py +262 -0
  107. lightning_sdk/job/v2.py +263 -0
  108. lightning_sdk/job/work.py +85 -0
  109. lightning_sdk/lightning_cloud/__init__.py +4 -0
  110. lightning_sdk/lightning_cloud/__version__.py +1 -0
  111. lightning_sdk/lightning_cloud/cli/__init__.py +0 -0
  112. lightning_sdk/lightning_cloud/cli/__main__.py +29 -0
  113. lightning_sdk/lightning_cloud/env.py +51 -0
  114. lightning_sdk/lightning_cloud/login.py +510 -0
  115. lightning_sdk/lightning_cloud/openapi/__init__.py +1136 -0
  116. lightning_sdk/lightning_cloud/openapi/api/__init__.py +51 -0
  117. lightning_sdk/lightning_cloud/openapi/api/agent_service_api.py +1366 -0
  118. lightning_sdk/lightning_cloud/openapi/api/analytics_service_api.py +141 -0
  119. lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +3436 -0
  120. lightning_sdk/lightning_cloud/openapi/api/auth_service_api.py +1172 -0
  121. lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +2044 -0
  122. lightning_sdk/lightning_cloud/openapi/api/blog_posts_service_api.py +533 -0
  123. lightning_sdk/lightning_cloud/openapi/api/cloud_space_environment_template_service_api.py +638 -0
  124. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +9834 -0
  125. lightning_sdk/lightning_cloud/openapi/api/cloudy_service_api.py +327 -0
  126. lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +4770 -0
  127. lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +1345 -0
  128. lightning_sdk/lightning_cloud/openapi/api/dataset_service_api.py +573 -0
  129. lightning_sdk/lightning_cloud/openapi/api/deployment_templates_service_api.py +756 -0
  130. lightning_sdk/lightning_cloud/openapi/api/endpoint_service_api.py +596 -0
  131. lightning_sdk/lightning_cloud/openapi/api/experiments_service_api.py +242 -0
  132. lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +957 -0
  133. lightning_sdk/lightning_cloud/openapi/api/git_credentials_service_api.py +497 -0
  134. lightning_sdk/lightning_cloud/openapi/api/incidents_service_api.py +1058 -0
  135. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +5657 -0
  136. lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +2273 -0
  137. lightning_sdk/lightning_cloud/openapi/api/lightningapp_instance_service_api.py +1675 -0
  138. lightning_sdk/lightning_cloud/openapi/api/lightningapp_v2_service_api.py +319 -0
  139. lightning_sdk/lightning_cloud/openapi/api/lightningwork_service_api.py +955 -0
  140. lightning_sdk/lightning_cloud/openapi/api/lit_dataset_service_api.py +1973 -0
  141. lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +1765 -0
  142. lightning_sdk/lightning_cloud/openapi/api/lit_page_service_api.py +525 -0
  143. lightning_sdk/lightning_cloud/openapi/api/lit_registry_service_api.py +912 -0
  144. lightning_sdk/lightning_cloud/openapi/api/markets_service_api.py +145 -0
  145. lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +2296 -0
  146. lightning_sdk/lightning_cloud/openapi/api/organizations_service_api.py +2177 -0
  147. lightning_sdk/lightning_cloud/openapi/api/pipeline_templates_service_api.py +339 -0
  148. lightning_sdk/lightning_cloud/openapi/api/pipelines_service_api.py +795 -0
  149. lightning_sdk/lightning_cloud/openapi/api/product_license_service_api.py +525 -0
  150. lightning_sdk/lightning_cloud/openapi/api/profiler_service_api.py +663 -0
  151. lightning_sdk/lightning_cloud/openapi/api/projects_service_api.py +2072 -0
  152. lightning_sdk/lightning_cloud/openapi/api/quest_service_api.py +432 -0
  153. lightning_sdk/lightning_cloud/openapi/api/schedules_service_api.py +924 -0
  154. lightning_sdk/lightning_cloud/openapi/api/sdk_command_history_service_api.py +141 -0
  155. lightning_sdk/lightning_cloud/openapi/api/secret_service_api.py +1034 -0
  156. lightning_sdk/lightning_cloud/openapi/api/slurm_jobs_user_service_api.py +1005 -0
  157. lightning_sdk/lightning_cloud/openapi/api/snowflake_service_api.py +686 -0
  158. lightning_sdk/lightning_cloud/openapi/api/ssh_public_key_service_api.py +610 -0
  159. lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +2351 -0
  160. lightning_sdk/lightning_cloud/openapi/api/studio_jobs_service_api.py +667 -0
  161. lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +1681 -0
  162. lightning_sdk/lightning_cloud/openapi/api/volume_service_api.py +258 -0
  163. lightning_sdk/lightning_cloud/openapi/api_client.py +646 -0
  164. lightning_sdk/lightning_cloud/openapi/configuration.py +235 -0
  165. lightning_sdk/lightning_cloud/openapi/models/__init__.py +1070 -0
  166. lightning_sdk/lightning_cloud/openapi/models/affiliatelinks_id_body.py +149 -0
  167. lightning_sdk/lightning_cloud/openapi/models/agentmanagedendpoints_id_body.py +331 -0
  168. lightning_sdk/lightning_cloud/openapi/models/agents_id_body.py +721 -0
  169. lightning_sdk/lightning_cloud/openapi/models/alertingevents_id_body.py +409 -0
  170. lightning_sdk/lightning_cloud/openapi/models/alerts_config_billing.py +175 -0
  171. lightning_sdk/lightning_cloud/openapi/models/alerts_config_studios.py +149 -0
  172. lightning_sdk/lightning_cloud/openapi/models/app_id_works_body.py +149 -0
  173. lightning_sdk/lightning_cloud/openapi/models/appinstances_id_body.py +175 -0
  174. lightning_sdk/lightning_cloud/openapi/models/approveautojoindomain_domain_body.py +123 -0
  175. lightning_sdk/lightning_cloud/openapi/models/apps_id_body.py +617 -0
  176. lightning_sdk/lightning_cloud/openapi/models/apps_id_body1.py +279 -0
  177. lightning_sdk/lightning_cloud/openapi/models/assistant_id_conversations_body.py +539 -0
  178. lightning_sdk/lightning_cloud/openapi/models/billing_checkout_body.py +175 -0
  179. lightning_sdk/lightning_cloud/openapi/models/billing_transfer_body.py +149 -0
  180. lightning_sdk/lightning_cloud/openapi/models/billing_transfer_body1.py +175 -0
  181. lightning_sdk/lightning_cloud/openapi/models/blogposts_id_body.py +305 -0
  182. lightning_sdk/lightning_cloud/openapi/models/captures_id_body.py +123 -0
  183. lightning_sdk/lightning_cloud/openapi/models/cloud_space_id_versionpublications_body.py +175 -0
  184. lightning_sdk/lightning_cloud/openapi/models/cloud_space_id_versionpublications_body1.py +175 -0
  185. lightning_sdk/lightning_cloud/openapi/models/cloud_space_id_versions_body.py +409 -0
  186. lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_metric_body.py +201 -0
  187. lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_runs_body.py +619 -0
  188. lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_systemmetrics_body.py +149 -0
  189. lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_visibility_body.py +149 -0
  190. lightning_sdk/lightning_cloud/openapi/models/cloudspaces_id_body.py +799 -0
  191. lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityblock_body.py +253 -0
  192. lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityreservations_body.py +331 -0
  193. lightning_sdk/lightning_cloud/openapi/models/cluster_id_kubernetestemplates_body.py +201 -0
  194. lightning_sdk/lightning_cloud/openapi/models/cluster_id_metrics_body.py +305 -0
  195. lightning_sdk/lightning_cloud/openapi/models/cluster_id_proxies_body.py +123 -0
  196. lightning_sdk/lightning_cloud/openapi/models/cluster_id_slurmusers_body.py +201 -0
  197. lightning_sdk/lightning_cloud/openapi/models/cluster_id_usagerestrictions_body.py +201 -0
  198. lightning_sdk/lightning_cloud/openapi/models/clusters_id_body.py +175 -0
  199. lightning_sdk/lightning_cloud/openapi/models/clusters_id_body1.py +149 -0
  200. lightning_sdk/lightning_cloud/openapi/models/conversations_id_body.py +123 -0
  201. lightning_sdk/lightning_cloud/openapi/models/conversations_id_body1.py +123 -0
  202. lightning_sdk/lightning_cloud/openapi/models/create.py +591 -0
  203. lightning_sdk/lightning_cloud/openapi/models/create_checkout_session_request_wallet_type.py +104 -0
  204. lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py +513 -0
  205. lightning_sdk/lightning_cloud/openapi/models/create_machine_request_represents_the_request_to_create_a_machine.py +461 -0
  206. lightning_sdk/lightning_cloud/openapi/models/credits_autoreplenish_body.py +175 -0
  207. lightning_sdk/lightning_cloud/openapi/models/credits_autoreplenish_body1.py +175 -0
  208. lightning_sdk/lightning_cloud/openapi/models/data_connection_mount_data_connection_mount_copy_status.py +105 -0
  209. lightning_sdk/lightning_cloud/openapi/models/dataset_id_versions_body.py +149 -0
  210. lightning_sdk/lightning_cloud/openapi/models/dataset_id_visibility_body.py +149 -0
  211. lightning_sdk/lightning_cloud/openapi/models/datasets_id_body.py +201 -0
  212. lightning_sdk/lightning_cloud/openapi/models/deployment_id_alertingpolicies_body.py +357 -0
  213. lightning_sdk/lightning_cloud/openapi/models/deployment_id_alertingpolicies_body1.py +331 -0
  214. lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +877 -0
  215. lightning_sdk/lightning_cloud/openapi/models/deploymenttemplates_id_body.py +513 -0
  216. lightning_sdk/lightning_cloud/openapi/models/endpoints_id_body.py +461 -0
  217. lightning_sdk/lightning_cloud/openapi/models/experiment_name_variant_name_body.py +123 -0
  218. lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +983 -0
  219. lightning_sdk/lightning_cloud/openapi/models/externalv1_cluster.py +253 -0
  220. lightning_sdk/lightning_cloud/openapi/models/externalv1_lightningapp_instance.py +357 -0
  221. lightning_sdk/lightning_cloud/openapi/models/externalv1_lightningwork.py +305 -0
  222. lightning_sdk/lightning_cloud/openapi/models/externalv1_user_status.py +357 -0
  223. lightning_sdk/lightning_cloud/openapi/models/get_endpoint_request_endpoint_ref_type.py +103 -0
  224. lightning_sdk/lightning_cloud/openapi/models/id_action_body.py +123 -0
  225. lightning_sdk/lightning_cloud/openapi/models/id_artifacts_body.py +123 -0
  226. lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +201 -0
  227. lightning_sdk/lightning_cloud/openapi/models/id_collaborate_body.py +175 -0
  228. lightning_sdk/lightning_cloud/openapi/models/id_contactowner_body.py +149 -0
  229. lightning_sdk/lightning_cloud/openapi/models/id_engage_body.py +123 -0
  230. lightning_sdk/lightning_cloud/openapi/models/id_engage_body1.py +149 -0
  231. lightning_sdk/lightning_cloud/openapi/models/id_execute_body.py +123 -0
  232. lightning_sdk/lightning_cloud/openapi/models/id_execute_body1.py +175 -0
  233. lightning_sdk/lightning_cloud/openapi/models/id_fork_body.py +149 -0
  234. lightning_sdk/lightning_cloud/openapi/models/id_fork_body1.py +201 -0
  235. lightning_sdk/lightning_cloud/openapi/models/id_get_body.py +437 -0
  236. lightning_sdk/lightning_cloud/openapi/models/id_index_body.py +175 -0
  237. lightning_sdk/lightning_cloud/openapi/models/id_index_body1.py +123 -0
  238. lightning_sdk/lightning_cloud/openapi/models/id_index_body2.py +123 -0
  239. lightning_sdk/lightning_cloud/openapi/models/id_index_body3.py +175 -0
  240. lightning_sdk/lightning_cloud/openapi/models/id_multipartuploads_body.py +149 -0
  241. lightning_sdk/lightning_cloud/openapi/models/id_output_body.py +175 -0
  242. lightning_sdk/lightning_cloud/openapi/models/id_publications_body.py +149 -0
  243. lightning_sdk/lightning_cloud/openapi/models/id_publications_body1.py +123 -0
  244. lightning_sdk/lightning_cloud/openapi/models/id_release_body.py +123 -0
  245. lightning_sdk/lightning_cloud/openapi/models/id_render_body.py +123 -0
  246. lightning_sdk/lightning_cloud/openapi/models/id_reportlogsactivity_body.py +123 -0
  247. lightning_sdk/lightning_cloud/openapi/models/id_reportrestarttimings_body.py +123 -0
  248. lightning_sdk/lightning_cloud/openapi/models/id_sleepconfig_body.py +175 -0
  249. lightning_sdk/lightning_cloud/openapi/models/id_start_body.py +149 -0
  250. lightning_sdk/lightning_cloud/openapi/models/id_transfer_body.py +175 -0
  251. lightning_sdk/lightning_cloud/openapi/models/id_uploads_body.py +123 -0
  252. lightning_sdk/lightning_cloud/openapi/models/id_visibility_body.py +123 -0
  253. lightning_sdk/lightning_cloud/openapi/models/id_visibility_body1.py +123 -0
  254. lightning_sdk/lightning_cloud/openapi/models/id_visibility_body2.py +149 -0
  255. lightning_sdk/lightning_cloud/openapi/models/incident_id_messages_body.py +123 -0
  256. lightning_sdk/lightning_cloud/openapi/models/incidents_id_body.py +279 -0
  257. lightning_sdk/lightning_cloud/openapi/models/job_id_reportroutingtelemetry_body.py +123 -0
  258. lightning_sdk/lightning_cloud/openapi/models/jobs_id_body.py +253 -0
  259. lightning_sdk/lightning_cloud/openapi/models/jobs_id_body1.py +149 -0
  260. lightning_sdk/lightning_cloud/openapi/models/jobs_id_body2.py +123 -0
  261. lightning_sdk/lightning_cloud/openapi/models/jobs_id_body3.py +149 -0
  262. lightning_sdk/lightning_cloud/openapi/models/kubernetestemplates_id_body.py +201 -0
  263. lightning_sdk/lightning_cloud/openapi/models/license_key_validate_body.py +123 -0
  264. lightning_sdk/lightning_cloud/openapi/models/litdatasets_dataset_id_body.py +149 -0
  265. lightning_sdk/lightning_cloud/openapi/models/litloggermetrics_id_body.py +175 -0
  266. lightning_sdk/lightning_cloud/openapi/models/litpages_id_body.py +331 -0
  267. lightning_sdk/lightning_cloud/openapi/models/litregistry_lit_repo_name_body.py +123 -0
  268. lightning_sdk/lightning_cloud/openapi/models/loggermetrics_id_body.py +123 -0
  269. lightning_sdk/lightning_cloud/openapi/models/message_id_actions_body.py +201 -0
  270. lightning_sdk/lightning_cloud/openapi/models/messages_id_body.py +123 -0
  271. lightning_sdk/lightning_cloud/openapi/models/messages_message_id_body.py +123 -0
  272. lightning_sdk/lightning_cloud/openapi/models/metrics_stream_id_loggerartifacts_body.py +123 -0
  273. lightning_sdk/lightning_cloud/openapi/models/metricsstream_create_body.py +461 -0
  274. lightning_sdk/lightning_cloud/openapi/models/metricsstream_delete_body.py +123 -0
  275. lightning_sdk/lightning_cloud/openapi/models/metricsstream_id_body.py +201 -0
  276. lightning_sdk/lightning_cloud/openapi/models/model_id_versions_body.py +175 -0
  277. lightning_sdk/lightning_cloud/openapi/models/model_id_visibility_body.py +149 -0
  278. lightning_sdk/lightning_cloud/openapi/models/models_id_body.py +123 -0
  279. lightning_sdk/lightning_cloud/openapi/models/models_model_id_body.py +227 -0
  280. lightning_sdk/lightning_cloud/openapi/models/models_model_id_body1.py +149 -0
  281. lightning_sdk/lightning_cloud/openapi/models/multimachinejobs_id_body.py +123 -0
  282. lightning_sdk/lightning_cloud/openapi/models/multipartuploads_upload_id_body.py +123 -0
  283. lightning_sdk/lightning_cloud/openapi/models/org_id_memberships_body.py +201 -0
  284. lightning_sdk/lightning_cloud/openapi/models/org_id_roles_body.py +175 -0
  285. lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +1111 -0
  286. lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body.py +539 -0
  287. lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body1.py +123 -0
  288. lightning_sdk/lightning_cloud/openapi/models/pipelinetemplates_id_body.py +331 -0
  289. lightning_sdk/lightning_cloud/openapi/models/profiler_captures_body.py +279 -0
  290. lightning_sdk/lightning_cloud/openapi/models/profiler_enabled_body.py +149 -0
  291. lightning_sdk/lightning_cloud/openapi/models/project_id_agentmanagedendpoints_body.py +149 -0
  292. lightning_sdk/lightning_cloud/openapi/models/project_id_agents_body.py +539 -0
  293. lightning_sdk/lightning_cloud/openapi/models/project_id_cloudspaces_body.py +565 -0
  294. lightning_sdk/lightning_cloud/openapi/models/project_id_clusters_body.py +149 -0
  295. lightning_sdk/lightning_cloud/openapi/models/project_id_datasets_body.py +513 -0
  296. lightning_sdk/lightning_cloud/openapi/models/project_id_endpoints_body.py +253 -0
  297. lightning_sdk/lightning_cloud/openapi/models/project_id_getapp_body.py +253 -0
  298. lightning_sdk/lightning_cloud/openapi/models/project_id_invite_body.py +175 -0
  299. lightning_sdk/lightning_cloud/openapi/models/project_id_jobs_body.py +175 -0
  300. lightning_sdk/lightning_cloud/openapi/models/project_id_litdatasets_body.py +227 -0
  301. lightning_sdk/lightning_cloud/openapi/models/project_id_litregistry_body.py +125 -0
  302. lightning_sdk/lightning_cloud/openapi/models/project_id_memberships_body.py +201 -0
  303. lightning_sdk/lightning_cloud/openapi/models/project_id_models_body.py +227 -0
  304. lightning_sdk/lightning_cloud/openapi/models/project_id_multimachinejobs_body.py +227 -0
  305. lightning_sdk/lightning_cloud/openapi/models/project_id_pipelines_body.py +253 -0
  306. lightning_sdk/lightning_cloud/openapi/models/project_id_projectclustersbindings_body.py +149 -0
  307. lightning_sdk/lightning_cloud/openapi/models/project_id_schedules_body.py +331 -0
  308. lightning_sdk/lightning_cloud/openapi/models/project_id_secrets_body.py +175 -0
  309. lightning_sdk/lightning_cloud/openapi/models/project_id_snowflake_body.py +123 -0
  310. lightning_sdk/lightning_cloud/openapi/models/project_id_storage_body.py +201 -0
  311. lightning_sdk/lightning_cloud/openapi/models/project_id_storagetransfers_body.py +175 -0
  312. lightning_sdk/lightning_cloud/openapi/models/project_tab_management_messages.py +123 -0
  313. lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +799 -0
  314. lightning_sdk/lightning_cloud/openapi/models/projects_project_id_body.py +175 -0
  315. lightning_sdk/lightning_cloud/openapi/models/protobuf_any.py +153 -0
  316. lightning_sdk/lightning_cloud/openapi/models/protobuf_null_value.py +102 -0
  317. lightning_sdk/lightning_cloud/openapi/models/query_query_id_body.py +175 -0
  318. lightning_sdk/lightning_cloud/openapi/models/rpc_status.py +181 -0
  319. lightning_sdk/lightning_cloud/openapi/models/schedules_id_body.py +513 -0
  320. lightning_sdk/lightning_cloud/openapi/models/secrets_id_body.py +123 -0
  321. lightning_sdk/lightning_cloud/openapi/models/secrets_id_body1.py +123 -0
  322. lightning_sdk/lightning_cloud/openapi/models/server_id_alerts_body.py +201 -0
  323. lightning_sdk/lightning_cloud/openapi/models/servers_server_id_body.py +123 -0
  324. lightning_sdk/lightning_cloud/openapi/models/service_health_service_status.py +104 -0
  325. lightning_sdk/lightning_cloud/openapi/models/setup.py +149 -0
  326. lightning_sdk/lightning_cloud/openapi/models/slurm_jobs_body.py +411 -0
  327. lightning_sdk/lightning_cloud/openapi/models/snowflake_export_body.py +305 -0
  328. lightning_sdk/lightning_cloud/openapi/models/snowflake_query_body.py +175 -0
  329. lightning_sdk/lightning_cloud/openapi/models/spec_lightningapp_instance_id_works_body.py +175 -0
  330. lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py +253 -0
  331. lightning_sdk/lightning_cloud/openapi/models/storagetransfers_validate_body.py +149 -0
  332. lightning_sdk/lightning_cloud/openapi/models/stream_result_of_v1_conversation_response_chunk.py +149 -0
  333. lightning_sdk/lightning_cloud/openapi/models/stream_result_of_v1_get_long_running_command_in_cloud_space_response.py +149 -0
  334. lightning_sdk/lightning_cloud/openapi/models/studioapp_jobs_body.py +279 -0
  335. lightning_sdk/lightning_cloud/openapi/models/update.py +435 -0
  336. lightning_sdk/lightning_cloud/openapi/models/update1.py +383 -0
  337. lightning_sdk/lightning_cloud/openapi/models/upload_id_complete_body.py +149 -0
  338. lightning_sdk/lightning_cloud/openapi/models/upload_id_complete_body1.py +149 -0
  339. lightning_sdk/lightning_cloud/openapi/models/upload_id_parts_body.py +149 -0
  340. lightning_sdk/lightning_cloud/openapi/models/upload_id_parts_body1.py +149 -0
  341. lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body.py +149 -0
  342. lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py +201 -0
  343. lightning_sdk/lightning_cloud/openapi/models/usagerestrictions_id_body.py +201 -0
  344. lightning_sdk/lightning_cloud/openapi/models/user_id_affiliatelinks_body.py +253 -0
  345. lightning_sdk/lightning_cloud/openapi/models/user_id_membershiprolebindings_body.py +123 -0
  346. lightning_sdk/lightning_cloud/openapi/models/user_id_membershiprolebindings_body1.py +123 -0
  347. lightning_sdk/lightning_cloud/openapi/models/user_id_upgradetrigger_body.py +201 -0
  348. lightning_sdk/lightning_cloud/openapi/models/user_user_id_body.py +201 -0
  349. lightning_sdk/lightning_cloud/openapi/models/v1_abort_storage_transfer_response.py +97 -0
  350. lightning_sdk/lightning_cloud/openapi/models/v1_accelerator_quota_info.py +201 -0
  351. lightning_sdk/lightning_cloud/openapi/models/v1_ack_user_storage_violation_response.py +97 -0
  352. lightning_sdk/lightning_cloud/openapi/models/v1_add_job_timing_response.py +97 -0
  353. lightning_sdk/lightning_cloud/openapi/models/v1_affiliate_link.py +435 -0
  354. lightning_sdk/lightning_cloud/openapi/models/v1_agent_complete_part_response.py +123 -0
  355. lightning_sdk/lightning_cloud/openapi/models/v1_agent_job.py +879 -0
  356. lightning_sdk/lightning_cloud/openapi/models/v1_agent_job_artifact.py +201 -0
  357. lightning_sdk/lightning_cloud/openapi/models/v1_agent_upload_multipart_url.py +149 -0
  358. lightning_sdk/lightning_cloud/openapi/models/v1_agent_upload_part_response.py +149 -0
  359. lightning_sdk/lightning_cloud/openapi/models/v1_aggregated_pod_metrics.py +799 -0
  360. lightning_sdk/lightning_cloud/openapi/models/v1_ai_pod_v1.py +175 -0
  361. lightning_sdk/lightning_cloud/openapi/models/v1_alert_method.py +102 -0
  362. lightning_sdk/lightning_cloud/openapi/models/v1_alerts_config.py +149 -0
  363. lightning_sdk/lightning_cloud/openapi/models/v1_api_pricing_spec.py +149 -0
  364. lightning_sdk/lightning_cloud/openapi/models/v1_app_type.py +104 -0
  365. lightning_sdk/lightning_cloud/openapi/models/v1_append_logger_metrics_response.py +97 -0
  366. lightning_sdk/lightning_cloud/openapi/models/v1_approve_auto_join_domain_response.py +123 -0
  367. lightning_sdk/lightning_cloud/openapi/models/v1_artifact.py +253 -0
  368. lightning_sdk/lightning_cloud/openapi/models/v1_assign_variant_response.py +97 -0
  369. lightning_sdk/lightning_cloud/openapi/models/v1_assistant.py +773 -0
  370. lightning_sdk/lightning_cloud/openapi/models/v1_assistant_knowledge_item_status.py +253 -0
  371. lightning_sdk/lightning_cloud/openapi/models/v1_assistant_knowledge_status.py +123 -0
  372. lightning_sdk/lightning_cloud/openapi/models/v1_assistant_model_status.py +110 -0
  373. lightning_sdk/lightning_cloud/openapi/models/v1_assistant_session_daily_aggregated.py +383 -0
  374. lightning_sdk/lightning_cloud/openapi/models/v1_author.py +201 -0
  375. lightning_sdk/lightning_cloud/openapi/models/v1_auto_join_domain_validation.py +175 -0
  376. lightning_sdk/lightning_cloud/openapi/models/v1_auto_join_org_response.py +149 -0
  377. lightning_sdk/lightning_cloud/openapi/models/v1_autoscaling_spec.py +305 -0
  378. lightning_sdk/lightning_cloud/openapi/models/v1_autoscaling_target_metric.py +149 -0
  379. lightning_sdk/lightning_cloud/openapi/models/v1_aws_cluster_credentials.py +175 -0
  380. lightning_sdk/lightning_cloud/openapi/models/v1_aws_data_connection.py +357 -0
  381. lightning_sdk/lightning_cloud/openapi/models/v1_aws_direct_v1.py +463 -0
  382. lightning_sdk/lightning_cloud/openapi/models/v1_aws_direct_v1_status.py +175 -0
  383. lightning_sdk/lightning_cloud/openapi/models/v1_batch_update_lightningwork_response.py +97 -0
  384. lightning_sdk/lightning_cloud/openapi/models/v1_billing_feature.py +227 -0
  385. lightning_sdk/lightning_cloud/openapi/models/v1_billing_period.py +103 -0
  386. lightning_sdk/lightning_cloud/openapi/models/v1_billing_subscription.py +383 -0
  387. lightning_sdk/lightning_cloud/openapi/models/v1_billing_tier.py +106 -0
  388. lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +435 -0
  389. lightning_sdk/lightning_cloud/openapi/models/v1_body.py +123 -0
  390. lightning_sdk/lightning_cloud/openapi/models/v1_build_spec.py +205 -0
  391. lightning_sdk/lightning_cloud/openapi/models/v1_cancel_cloud_space_instance_switch_response.py +97 -0
  392. lightning_sdk/lightning_cloud/openapi/models/v1_cancel_running_cloud_space_instance_transfer_response.py +97 -0
  393. lightning_sdk/lightning_cloud/openapi/models/v1_cancellation_metadata.py +149 -0
  394. lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py +409 -0
  395. lightning_sdk/lightning_cloud/openapi/models/v1_check_cluster_name_availability_request.py +123 -0
  396. lightning_sdk/lightning_cloud/openapi/models/v1_check_cluster_name_availability_response.py +123 -0
  397. lightning_sdk/lightning_cloud/openapi/models/v1_check_external_service_status_response.py +123 -0
  398. lightning_sdk/lightning_cloud/openapi/models/v1_check_snowflake_connection_response.py +123 -0
  399. lightning_sdk/lightning_cloud/openapi/models/v1_checkbox.py +201 -0
  400. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_provider.py +117 -0
  401. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +1631 -0
  402. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_app.py +643 -0
  403. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_app_action.py +149 -0
  404. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_app_action_type.py +103 -0
  405. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_app_owner_type.py +105 -0
  406. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_artifact_event.py +149 -0
  407. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_artifact_event_type.py +103 -0
  408. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_code_version.py +383 -0
  409. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_code_version_status.py +105 -0
  410. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_cold_start_metrics.py +669 -0
  411. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_cold_start_metrics_stats.py +357 -0
  412. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_engagement_response.py +97 -0
  413. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_config.py +149 -0
  414. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template.py +409 -0
  415. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +331 -0
  416. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_type.py +105 -0
  417. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_instance_collab_status.py +201 -0
  418. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_instance_config.py +253 -0
  419. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_instance_startup_status.py +227 -0
  420. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_instance_state.py +109 -0
  421. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_project_response.py +149 -0
  422. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_publication.py +149 -0
  423. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_publication_type.py +104 -0
  424. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_seed_file.py +149 -0
  425. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_session.py +201 -0
  426. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_source_type.py +103 -0
  427. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_specialized_view.py +105 -0
  428. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_state.py +106 -0
  429. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_transfer_metadata.py +331 -0
  430. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_version.py +669 -0
  431. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_version_publication.py +201 -0
  432. lightning_sdk/lightning_cloud/openapi/models/v1_cloudflare_v1.py +227 -0
  433. lightning_sdk/lightning_cloud/openapi/models/v1_cloudy_expert.py +279 -0
  434. lightning_sdk/lightning_cloud/openapi/models/v1_cloudy_settings.py +227 -0
  435. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +1501 -0
  436. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_availability.py +227 -0
  437. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +539 -0
  438. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_deletion_options.py +175 -0
  439. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_encryption_key.py +227 -0
  440. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_metrics.py +1527 -0
  441. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_names.py +123 -0
  442. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_proxy.py +201 -0
  443. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_resource_tag.py +149 -0
  444. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +565 -0
  445. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +1061 -0
  446. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_state.py +109 -0
  447. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_status.py +413 -0
  448. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_tagging_options.py +227 -0
  449. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_type.py +107 -0
  450. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_upload.py +149 -0
  451. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_usage_restriction.py +227 -0
  452. lightning_sdk/lightning_cloud/openapi/models/v1_collab_action.py +110 -0
  453. lightning_sdk/lightning_cloud/openapi/models/v1_collab_session.py +227 -0
  454. lightning_sdk/lightning_cloud/openapi/models/v1_complete_agent_multipart_upload.py +149 -0
  455. lightning_sdk/lightning_cloud/openapi/models/v1_complete_lit_dataset_multi_part_upload_response.py +97 -0
  456. lightning_sdk/lightning_cloud/openapi/models/v1_complete_lit_dataset_upload_response.py +97 -0
  457. lightning_sdk/lightning_cloud/openapi/models/v1_complete_model_upload_response.py +97 -0
  458. lightning_sdk/lightning_cloud/openapi/models/v1_complete_multi_part_upload_response.py +97 -0
  459. lightning_sdk/lightning_cloud/openapi/models/v1_complete_onboarding_response.py +97 -0
  460. lightning_sdk/lightning_cloud/openapi/models/v1_complete_running_cloud_space_instance_transfer_response.py +97 -0
  461. lightning_sdk/lightning_cloud/openapi/models/v1_complete_upload.py +149 -0
  462. lightning_sdk/lightning_cloud/openapi/models/v1_complete_upload_project_artifact_response.py +97 -0
  463. lightning_sdk/lightning_cloud/openapi/models/v1_complete_upload_temporary_artifact_request.py +175 -0
  464. lightning_sdk/lightning_cloud/openapi/models/v1_completed_part.py +149 -0
  465. lightning_sdk/lightning_cloud/openapi/models/v1_compute_config.py +257 -0
  466. lightning_sdk/lightning_cloud/openapi/models/v1_contact_assistant_owner_reason.py +102 -0
  467. lightning_sdk/lightning_cloud/openapi/models/v1_contact_assistant_owner_response.py +97 -0
  468. lightning_sdk/lightning_cloud/openapi/models/v1_container_metrics.py +461 -0
  469. lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +357 -0
  470. lightning_sdk/lightning_cloud/openapi/models/v1_conversation_response_chunk.py +331 -0
  471. lightning_sdk/lightning_cloud/openapi/models/v1_count_metrics_streams_response.py +123 -0
  472. lightning_sdk/lightning_cloud/openapi/models/v1_cpu_system_metrics.py +331 -0
  473. lightning_sdk/lightning_cloud/openapi/models/v1_create_agent_multipart_upload_response.py +123 -0
  474. lightning_sdk/lightning_cloud/openapi/models/v1_create_billing_portal_session_request.py +175 -0
  475. lightning_sdk/lightning_cloud/openapi/models/v1_create_billing_portal_session_response.py +123 -0
  476. lightning_sdk/lightning_cloud/openapi/models/v1_create_billing_upgrade_trigger_record_response.py +97 -0
  477. lightning_sdk/lightning_cloud/openapi/models/v1_create_blog_post_request.py +305 -0
  478. lightning_sdk/lightning_cloud/openapi/models/v1_create_checkout_session_request.py +331 -0
  479. lightning_sdk/lightning_cloud/openapi/models/v1_create_checkout_session_response.py +123 -0
  480. lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_app_instance_response.py +149 -0
  481. lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +409 -0
  482. lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_instance_metric_response.py +97 -0
  483. lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_capacity_reservation_response.py +201 -0
  484. lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_encryption_keys_request.py +123 -0
  485. lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_encryption_keys_response.py +123 -0
  486. lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_request.py +201 -0
  487. lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_response.py +227 -0
  488. lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_request.py +539 -0
  489. lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_template_request.py +565 -0
  490. lightning_sdk/lightning_cloud/openapi/models/v1_create_git_credentials_request.py +175 -0
  491. lightning_sdk/lightning_cloud/openapi/models/v1_create_incident_request.py +305 -0
  492. lightning_sdk/lightning_cloud/openapi/models/v1_create_job_request.py +201 -0
  493. lightning_sdk/lightning_cloud/openapi/models/v1_create_license_request.py +175 -0
  494. lightning_sdk/lightning_cloud/openapi/models/v1_create_lit_dataset_multi_part_upload_response.py +123 -0
  495. lightning_sdk/lightning_cloud/openapi/models/v1_create_lit_page_request.py +305 -0
  496. lightning_sdk/lightning_cloud/openapi/models/v1_create_lit_page_response.py +123 -0
  497. lightning_sdk/lightning_cloud/openapi/models/v1_create_machine_response.py +123 -0
  498. lightning_sdk/lightning_cloud/openapi/models/v1_create_managed_endpoint_response.py +149 -0
  499. lightning_sdk/lightning_cloud/openapi/models/v1_create_model_metrics_response.py +97 -0
  500. lightning_sdk/lightning_cloud/openapi/models/v1_create_multi_machine_job_request.py +253 -0
  501. lightning_sdk/lightning_cloud/openapi/models/v1_create_multi_part_upload_response.py +123 -0
  502. lightning_sdk/lightning_cloud/openapi/models/v1_create_organization_request.py +513 -0
  503. lightning_sdk/lightning_cloud/openapi/models/v1_create_pipeline_template_request.py +383 -0
  504. lightning_sdk/lightning_cloud/openapi/models/v1_create_project_request.py +461 -0
  505. lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_request.py +253 -0
  506. lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_response.py +97 -0
  507. lightning_sdk/lightning_cloud/openapi/models/v1_create_server_alert_response.py +97 -0
  508. lightning_sdk/lightning_cloud/openapi/models/v1_create_shared_metrics_stream_request.py +201 -0
  509. lightning_sdk/lightning_cloud/openapi/models/v1_create_shared_metrics_stream_response.py +123 -0
  510. lightning_sdk/lightning_cloud/openapi/models/v1_create_snowflake_connection_response.py +123 -0
  511. lightning_sdk/lightning_cloud/openapi/models/v1_create_ssh_public_key_request.py +175 -0
  512. lightning_sdk/lightning_cloud/openapi/models/v1_create_subscription_checkout_session_request.py +305 -0
  513. lightning_sdk/lightning_cloud/openapi/models/v1_create_subscription_checkout_session_response.py +123 -0
  514. lightning_sdk/lightning_cloud/openapi/models/v1_create_user_secret_request.py +149 -0
  515. lightning_sdk/lightning_cloud/openapi/models/v1_daily_model_metrics.py +149 -0
  516. lightning_sdk/lightning_cloud/openapi/models/v1_daily_usage.py +227 -0
  517. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +955 -0
  518. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection_artifact.py +227 -0
  519. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection_mount.py +227 -0
  520. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection_state.py +106 -0
  521. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection_tier.py +103 -0
  522. lightning_sdk/lightning_cloud/openapi/models/v1_data_path.py +201 -0
  523. lightning_sdk/lightning_cloud/openapi/models/v1_dataset.py +617 -0
  524. lightning_sdk/lightning_cloud/openapi/models/v1_dataset_type.py +103 -0
  525. lightning_sdk/lightning_cloud/openapi/models/v1_delete_affiliate_link_response.py +97 -0
  526. lightning_sdk/lightning_cloud/openapi/models/v1_delete_assistant_response.py +97 -0
  527. lightning_sdk/lightning_cloud/openapi/models/v1_delete_blog_post_response.py +123 -0
  528. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_app_response.py +97 -0
  529. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_environment_template_response.py +97 -0
  530. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_response.py +97 -0
  531. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_session_response.py +97 -0
  532. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_version_publication_response.py +97 -0
  533. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_version_response.py +97 -0
  534. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cluster_capacity_reservation_response.py +97 -0
  535. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cluster_encryption_key_response.py +97 -0
  536. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cluster_proxy_response.py +97 -0
  537. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cluster_response.py +97 -0
  538. lightning_sdk/lightning_cloud/openapi/models/v1_delete_cluster_usage_restriction_response.py +97 -0
  539. lightning_sdk/lightning_cloud/openapi/models/v1_delete_conversation_response.py +97 -0
  540. lightning_sdk/lightning_cloud/openapi/models/v1_delete_data_connection_response.py +97 -0
  541. lightning_sdk/lightning_cloud/openapi/models/v1_delete_dataset_response.py +97 -0
  542. lightning_sdk/lightning_cloud/openapi/models/v1_delete_deployment_alerting_policy_response.py +175 -0
  543. lightning_sdk/lightning_cloud/openapi/models/v1_delete_deployment_release_response.py +97 -0
  544. lightning_sdk/lightning_cloud/openapi/models/v1_delete_deployment_response.py +97 -0
  545. lightning_sdk/lightning_cloud/openapi/models/v1_delete_endpoint_response.py +97 -0
  546. lightning_sdk/lightning_cloud/openapi/models/v1_delete_git_credentials_response.py +97 -0
  547. lightning_sdk/lightning_cloud/openapi/models/v1_delete_incident_message_response.py +97 -0
  548. lightning_sdk/lightning_cloud/openapi/models/v1_delete_incident_response.py +97 -0
  549. lightning_sdk/lightning_cloud/openapi/models/v1_delete_index_response.py +97 -0
  550. lightning_sdk/lightning_cloud/openapi/models/v1_delete_job_response.py +97 -0
  551. lightning_sdk/lightning_cloud/openapi/models/v1_delete_kubernetes_template_response.py +97 -0
  552. lightning_sdk/lightning_cloud/openapi/models/v1_delete_license_response.py +97 -0
  553. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lightning_run_response.py +97 -0
  554. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lightningapp_instance_artifact_response.py +97 -0
  555. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lightningapp_instance_response.py +97 -0
  556. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lightningwork_response.py +97 -0
  557. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_dataset_response.py +97 -0
  558. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_dataset_version_response.py +97 -0
  559. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_page_response.py +97 -0
  560. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_registry_repository_image_artifact_version_by_digest_response.py +97 -0
  561. lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_repository_response.py +97 -0
  562. lightning_sdk/lightning_cloud/openapi/models/v1_delete_logger_artifact_response.py +97 -0
  563. lightning_sdk/lightning_cloud/openapi/models/v1_delete_machine_response.py +97 -0
  564. lightning_sdk/lightning_cloud/openapi/models/v1_delete_managed_endpoint_response.py +97 -0
  565. lightning_sdk/lightning_cloud/openapi/models/v1_delete_metrics_stream_response.py +97 -0
  566. lightning_sdk/lightning_cloud/openapi/models/v1_delete_model_response.py +97 -0
  567. lightning_sdk/lightning_cloud/openapi/models/v1_delete_model_version_response.py +97 -0
  568. lightning_sdk/lightning_cloud/openapi/models/v1_delete_multi_machine_job_response.py +97 -0
  569. lightning_sdk/lightning_cloud/openapi/models/v1_delete_org_membership_response.py +97 -0
  570. lightning_sdk/lightning_cloud/openapi/models/v1_delete_org_membership_role_binding_response.py +97 -0
  571. lightning_sdk/lightning_cloud/openapi/models/v1_delete_org_role_response.py +97 -0
  572. lightning_sdk/lightning_cloud/openapi/models/v1_delete_organization_response.py +97 -0
  573. lightning_sdk/lightning_cloud/openapi/models/v1_delete_pipeline_response.py +149 -0
  574. lightning_sdk/lightning_cloud/openapi/models/v1_delete_profiler_capture_response.py +97 -0
  575. lightning_sdk/lightning_cloud/openapi/models/v1_delete_project_artifact_response.py +97 -0
  576. lightning_sdk/lightning_cloud/openapi/models/v1_delete_project_cluster_binding_response.py +97 -0
  577. lightning_sdk/lightning_cloud/openapi/models/v1_delete_project_cluster_response.py +97 -0
  578. lightning_sdk/lightning_cloud/openapi/models/v1_delete_project_membership_response.py +97 -0
  579. lightning_sdk/lightning_cloud/openapi/models/v1_delete_project_membership_role_binding_response.py +97 -0
  580. lightning_sdk/lightning_cloud/openapi/models/v1_delete_project_response.py +97 -0
  581. lightning_sdk/lightning_cloud/openapi/models/v1_delete_project_role_response.py +97 -0
  582. lightning_sdk/lightning_cloud/openapi/models/v1_delete_schedule_response.py +175 -0
  583. lightning_sdk/lightning_cloud/openapi/models/v1_delete_secret_response.py +97 -0
  584. lightning_sdk/lightning_cloud/openapi/models/v1_delete_shared_metrics_stream_response.py +97 -0
  585. lightning_sdk/lightning_cloud/openapi/models/v1_delete_ssh_public_key_response.py +97 -0
  586. lightning_sdk/lightning_cloud/openapi/models/v1_delete_studio_job_response.py +97 -0
  587. lightning_sdk/lightning_cloud/openapi/models/v1_delete_user_slurm_job_response.py +97 -0
  588. lightning_sdk/lightning_cloud/openapi/models/v1_dependency_cache_state.py +104 -0
  589. lightning_sdk/lightning_cloud/openapi/models/v1_dependency_file_info.py +149 -0
  590. lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +929 -0
  591. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_event.py +487 -0
  592. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy.py +409 -0
  593. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_frequency.py +105 -0
  594. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_operation.py +105 -0
  595. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_severity.py +106 -0
  596. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +112 -0
  597. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_recipients.py +175 -0
  598. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_api.py +331 -0
  599. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_details.py +175 -0
  600. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event.py +357 -0
  601. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event_type.py +104 -0
  602. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_metrics.py +149 -0
  603. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_performance.py +305 -0
  604. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_release.py +331 -0
  605. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_spec.py +201 -0
  606. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_state.py +108 -0
  607. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_status.py +305 -0
  608. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_strategy.py +149 -0
  609. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template.py +773 -0
  610. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_engagement_response.py +97 -0
  611. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_gallery_response.py +591 -0
  612. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_parameter.py +435 -0
  613. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_parameter_placement.py +106 -0
  614. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_parameter_type.py +106 -0
  615. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_summary.py +591 -0
  616. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_type.py +105 -0
  617. lightning_sdk/lightning_cloud/openapi/models/v1_download_job_logs_response.py +123 -0
  618. lightning_sdk/lightning_cloud/openapi/models/v1_download_lightningapp_instance_logs_response.py +123 -0
  619. lightning_sdk/lightning_cloud/openapi/models/v1_drive.py +175 -0
  620. lightning_sdk/lightning_cloud/openapi/models/v1_drive_spec.py +201 -0
  621. lightning_sdk/lightning_cloud/openapi/models/v1_drive_state.py +107 -0
  622. lightning_sdk/lightning_cloud/openapi/models/v1_drive_state_reason.py +104 -0
  623. lightning_sdk/lightning_cloud/openapi/models/v1_drive_status.py +227 -0
  624. lightning_sdk/lightning_cloud/openapi/models/v1_drive_type.py +104 -0
  625. lightning_sdk/lightning_cloud/openapi/models/v1_drive_type_spec.py +97 -0
  626. lightning_sdk/lightning_cloud/openapi/models/v1_drive_type_status.py +97 -0
  627. lightning_sdk/lightning_cloud/openapi/models/v1_efs_config.py +201 -0
  628. lightning_sdk/lightning_cloud/openapi/models/v1_endpoint.py +513 -0
  629. lightning_sdk/lightning_cloud/openapi/models/v1_endpoint_auth.py +227 -0
  630. lightning_sdk/lightning_cloud/openapi/models/v1_endpoint_prewarm.py +253 -0
  631. lightning_sdk/lightning_cloud/openapi/models/v1_endpoint_type.py +104 -0
  632. lightning_sdk/lightning_cloud/openapi/models/v1_env_var.py +175 -0
  633. lightning_sdk/lightning_cloud/openapi/models/v1_execute_cloud_space_command_response.py +175 -0
  634. lightning_sdk/lightning_cloud/openapi/models/v1_execute_in_cloud_space_session_response.py +97 -0
  635. lightning_sdk/lightning_cloud/openapi/models/v1_execute_snowflake_query_response.py +149 -0
  636. lightning_sdk/lightning_cloud/openapi/models/v1_experiment.py +409 -0
  637. lightning_sdk/lightning_cloud/openapi/models/v1_export_snowflake_query_response.py +123 -0
  638. lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster.py +253 -0
  639. lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +931 -0
  640. lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +331 -0
  641. lightning_sdk/lightning_cloud/openapi/models/v1_filestore_data_connection.py +253 -0
  642. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_app.py +227 -0
  643. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_cloud_space.py +149 -0
  644. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_dataset.py +123 -0
  645. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_job.py +227 -0
  646. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_metric.py +201 -0
  647. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_metrics.py +227 -0
  648. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_mmt.py +227 -0
  649. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_slurm_job.py +149 -0
  650. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_snowflake_connection.py +123 -0
  651. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_work.py +149 -0
  652. lightning_sdk/lightning_cloud/openapi/models/v1_find_capacity_block_offering_response.py +149 -0
  653. lightning_sdk/lightning_cloud/openapi/models/v1_firewall_rule.py +175 -0
  654. lightning_sdk/lightning_cloud/openapi/models/v1_flowserver.py +149 -0
  655. lightning_sdk/lightning_cloud/openapi/models/v1_folder_index_status.py +106 -0
  656. lightning_sdk/lightning_cloud/openapi/models/v1_function_call.py +149 -0
  657. lightning_sdk/lightning_cloud/openapi/models/v1_function_tool.py +175 -0
  658. lightning_sdk/lightning_cloud/openapi/models/v1_gallery_app.py +877 -0
  659. lightning_sdk/lightning_cloud/openapi/models/v1_gallery_component.py +851 -0
  660. lightning_sdk/lightning_cloud/openapi/models/v1_gcp_data_connection.py +123 -0
  661. lightning_sdk/lightning_cloud/openapi/models/v1_gcp_data_connection_setup.py +123 -0
  662. lightning_sdk/lightning_cloud/openapi/models/v1_gcp_direct_vpc.py +149 -0
  663. lightning_sdk/lightning_cloud/openapi/models/v1_gcs_folder_data_connection.py +123 -0
  664. lightning_sdk/lightning_cloud/openapi/models/v1_ge_list_deployment_routing_telemetry_response.py +123 -0
  665. lightning_sdk/lightning_cloud/openapi/models/v1_generate_ssh_key_pair_request.py +123 -0
  666. lightning_sdk/lightning_cloud/openapi/models/v1_get_affiliate_link_response.py +123 -0
  667. lightning_sdk/lightning_cloud/openapi/models/v1_get_agent_job_env_response.py +149 -0
  668. lightning_sdk/lightning_cloud/openapi/models/v1_get_agent_job_logs_metadata_response.py +175 -0
  669. lightning_sdk/lightning_cloud/openapi/models/v1_get_artifacts_page_response.py +149 -0
  670. lightning_sdk/lightning_cloud/openapi/models/v1_get_assistant_session_daily_aggregated_response.py +201 -0
  671. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_cold_start_metrics_stats_response.py +123 -0
  672. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_instance_open_ports_response.py +123 -0
  673. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_instance_status_response.py +201 -0
  674. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_instance_system_metrics_aggregate_response.py +123 -0
  675. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_required_balance_status_response.py +149 -0
  676. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_size_response.py +227 -0
  677. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_transfer_estimate_response.py +149 -0
  678. lightning_sdk/lightning_cloud/openapi/models/v1_get_cluster_accelerator_demand_response.py +123 -0
  679. lightning_sdk/lightning_cloud/openapi/models/v1_get_cluster_credentials_response.py +123 -0
  680. lightning_sdk/lightning_cloud/openapi/models/v1_get_cluster_health_response.py +149 -0
  681. lightning_sdk/lightning_cloud/openapi/models/v1_get_deployment_routing_telemetry_aggregated_response.py +123 -0
  682. lightning_sdk/lightning_cloud/openapi/models/v1_get_deployment_routing_telemetry_content_response.py +123 -0
  683. lightning_sdk/lightning_cloud/openapi/models/v1_get_deployment_routing_telemetry_response.py +123 -0
  684. lightning_sdk/lightning_cloud/openapi/models/v1_get_folder_index_response.py +331 -0
  685. lightning_sdk/lightning_cloud/openapi/models/v1_get_job_stats_response.py +253 -0
  686. lightning_sdk/lightning_cloud/openapi/models/v1_get_job_system_metrics_response.py +123 -0
  687. lightning_sdk/lightning_cloud/openapi/models/v1_get_latest_model_metrics_response.py +123 -0
  688. lightning_sdk/lightning_cloud/openapi/models/v1_get_lightning_run_source_code_download_url_response.py +123 -0
  689. lightning_sdk/lightning_cloud/openapi/models/v1_get_lightningapp_instance_open_ports_response.py +123 -0
  690. lightning_sdk/lightning_cloud/openapi/models/v1_get_lightningapp_instance_system_metrics_response.py +123 -0
  691. lightning_sdk/lightning_cloud/openapi/models/v1_get_lit_dataset_file_upload_urls_response.py +123 -0
  692. lightning_sdk/lightning_cloud/openapi/models/v1_get_lit_dataset_files_url_response.py +149 -0
  693. lightning_sdk/lightning_cloud/openapi/models/v1_get_lit_page_response.py +123 -0
  694. lightning_sdk/lightning_cloud/openapi/models/v1_get_logger_metrics_response.py +123 -0
  695. lightning_sdk/lightning_cloud/openapi/models/v1_get_long_running_command_in_cloud_space_response.py +149 -0
  696. lightning_sdk/lightning_cloud/openapi/models/v1_get_machine_response.py +123 -0
  697. lightning_sdk/lightning_cloud/openapi/models/v1_get_market_pricing_response.py +201 -0
  698. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_file_upload_urls_response.py +123 -0
  699. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_file_url_response.py +175 -0
  700. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_files_response.py +279 -0
  701. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_files_url_response.py +149 -0
  702. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_metrics_response.py +123 -0
  703. lightning_sdk/lightning_cloud/openapi/models/v1_get_organization_storage_metadata_response.py +487 -0
  704. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_artifact_response.py +123 -0
  705. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_balance_response.py +201 -0
  706. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_compute_usage_response.py +175 -0
  707. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +643 -0
  708. lightning_sdk/lightning_cloud/openapi/models/v1_get_settings_response.py +227 -0
  709. lightning_sdk/lightning_cloud/openapi/models/v1_get_snowflake_query_response.py +149 -0
  710. lightning_sdk/lightning_cloud/openapi/models/v1_get_temp_bucket_credentials_response.py +201 -0
  711. lightning_sdk/lightning_cloud/openapi/models/v1_get_usage_details_response.py +123 -0
  712. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_balance_response.py +201 -0
  713. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_notification_preferences_response.py +123 -0
  714. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +1189 -0
  715. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +383 -0
  716. lightning_sdk/lightning_cloud/openapi/models/v1_get_volume_response.py +123 -0
  717. lightning_sdk/lightning_cloud/openapi/models/v1_git_credentials.py +227 -0
  718. lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +545 -0
  719. lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1_status.py +123 -0
  720. lightning_sdk/lightning_cloud/openapi/models/v1_gpu_system_metrics.py +253 -0
  721. lightning_sdk/lightning_cloud/openapi/models/v1_group_node_metrics.py +1215 -0
  722. lightning_sdk/lightning_cloud/openapi/models/v1_group_pod_metrics.py +1241 -0
  723. lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_request.py +177 -0
  724. lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_response.py +149 -0
  725. lightning_sdk/lightning_cloud/openapi/models/v1_guest_user.py +201 -0
  726. lightning_sdk/lightning_cloud/openapi/models/v1_header.py +175 -0
  727. lightning_sdk/lightning_cloud/openapi/models/v1_health_check_exec.py +123 -0
  728. lightning_sdk/lightning_cloud/openapi/models/v1_health_check_http_get.py +149 -0
  729. lightning_sdk/lightning_cloud/openapi/models/v1_ids_logger_metrics.py +123 -0
  730. lightning_sdk/lightning_cloud/openapi/models/v1_image_spec.py +289 -0
  731. lightning_sdk/lightning_cloud/openapi/models/v1_image_state.py +105 -0
  732. lightning_sdk/lightning_cloud/openapi/models/v1_incident.py +565 -0
  733. lightning_sdk/lightning_cloud/openapi/models/v1_incident_detail.py +149 -0
  734. lightning_sdk/lightning_cloud/openapi/models/v1_incident_event.py +591 -0
  735. lightning_sdk/lightning_cloud/openapi/models/v1_incident_message.py +253 -0
  736. lightning_sdk/lightning_cloud/openapi/models/v1_incident_severity.py +105 -0
  737. lightning_sdk/lightning_cloud/openapi/models/v1_incident_type.py +108 -0
  738. lightning_sdk/lightning_cloud/openapi/models/v1_index.py +149 -0
  739. lightning_sdk/lightning_cloud/openapi/models/v1_input.py +175 -0
  740. lightning_sdk/lightning_cloud/openapi/models/v1_instance_overprovisioning_spec.py +281 -0
  741. lightning_sdk/lightning_cloud/openapi/models/v1_interrupt_server_response.py +97 -0
  742. lightning_sdk/lightning_cloud/openapi/models/v1_invalidate_cloud_space_instance_code_settings_response.py +97 -0
  743. lightning_sdk/lightning_cloud/openapi/models/v1_invite_project_membership_response.py +123 -0
  744. lightning_sdk/lightning_cloud/openapi/models/v1_job.py +957 -0
  745. lightning_sdk/lightning_cloud/openapi/models/v1_job_action.py +103 -0
  746. lightning_sdk/lightning_cloud/openapi/models/v1_job_artifacts_type.py +103 -0
  747. lightning_sdk/lightning_cloud/openapi/models/v1_job_file.py +227 -0
  748. lightning_sdk/lightning_cloud/openapi/models/v1_job_health_check_config.py +253 -0
  749. lightning_sdk/lightning_cloud/openapi/models/v1_job_log_entry.py +175 -0
  750. lightning_sdk/lightning_cloud/openapi/models/v1_job_logs_page.py +227 -0
  751. lightning_sdk/lightning_cloud/openapi/models/v1_job_logs_response.py +149 -0
  752. lightning_sdk/lightning_cloud/openapi/models/v1_job_resource.py +279 -0
  753. lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +877 -0
  754. lightning_sdk/lightning_cloud/openapi/models/v1_job_timing.py +227 -0
  755. lightning_sdk/lightning_cloud/openapi/models/v1_job_type.py +109 -0
  756. lightning_sdk/lightning_cloud/openapi/models/v1_joinable_organization.py +331 -0
  757. lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_indexes.py +149 -0
  758. lightning_sdk/lightning_cloud/openapi/models/v1_kai_scheduler_queue_metrics.py +627 -0
  759. lightning_sdk/lightning_cloud/openapi/models/v1_keep_alive_cloud_space_instance_response.py +97 -0
  760. lightning_sdk/lightning_cloud/openapi/models/v1_knowledge_configuration.py +279 -0
  761. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_aws_config.py +279 -0
  762. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_settings_v1.py +253 -0
  763. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +357 -0
  764. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1_status.py +149 -0
  765. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template.py +357 -0
  766. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template_property.py +227 -0
  767. lightning_sdk/lightning_cloud/openapi/models/v1_lambda_labs_direct_v1.py +203 -0
  768. lightning_sdk/lightning_cloud/openapi/models/v1_license.py +227 -0
  769. lightning_sdk/lightning_cloud/openapi/models/v1_lightning_app_user.py +149 -0
  770. lightning_sdk/lightning_cloud/openapi/models/v1_lightning_auth.py +149 -0
  771. lightning_sdk/lightning_cloud/openapi/models/v1_lightning_basic_auth.py +149 -0
  772. lightning_sdk/lightning_cloud/openapi/models/v1_lightning_elastic_cluster_v1.py +97 -0
  773. lightning_sdk/lightning_cloud/openapi/models/v1_lightning_o_auth_auth.py +149 -0
  774. lightning_sdk/lightning_cloud/openapi/models/v1_lightning_run.py +827 -0
  775. lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_artifact.py +253 -0
  776. lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_event.py +279 -0
  777. lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_spec.py +957 -0
  778. lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_state.py +110 -0
  779. lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_status.py +487 -0
  780. lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_restart_policy.py +104 -0
  781. lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_cost.py +175 -0
  782. lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_drives.py +149 -0
  783. lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_event.py +253 -0
  784. lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_spec.py +513 -0
  785. lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_state.py +109 -0
  786. lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_status.py +435 -0
  787. lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_status_reason.py +107 -0
  788. lightning_sdk/lightning_cloud/openapi/models/v1_like_status.py +104 -0
  789. lightning_sdk/lightning_cloud/openapi/models/v1_list_affiliate_links_response.py +123 -0
  790. lightning_sdk/lightning_cloud/openapi/models/v1_list_agent_job_artifacts_response.py +175 -0
  791. lightning_sdk/lightning_cloud/openapi/models/v1_list_agent_jobs_response.py +123 -0
  792. lightning_sdk/lightning_cloud/openapi/models/v1_list_aggregated_pod_metrics_response.py +123 -0
  793. lightning_sdk/lightning_cloud/openapi/models/v1_list_assistants_response.py +123 -0
  794. lightning_sdk/lightning_cloud/openapi/models/v1_list_blog_posts_response.py +175 -0
  795. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_apps_response.py +123 -0
  796. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_cold_start_metrics_response.py +123 -0
  797. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_environment_templates_response.py +123 -0
  798. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_instances_response.py +201 -0
  799. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_publications_response.py +123 -0
  800. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_python_versions_response.py +123 -0
  801. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_sessions_response.py +123 -0
  802. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_tags_response.py +123 -0
  803. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_version_publications_response.py +123 -0
  804. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_versions_response.py +123 -0
  805. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_spaces_response.py +175 -0
  806. lightning_sdk/lightning_cloud/openapi/models/v1_list_cloudy_experts_response.py +123 -0
  807. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_accelerators_response.py +123 -0
  808. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_availabilities_response.py +123 -0
  809. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_capacity_reservations_response.py +123 -0
  810. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_metric_timestamps_response.py +123 -0
  811. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_metrics_response.py +123 -0
  812. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_namespace_metrics_response.py +123 -0
  813. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_namespace_user_metrics_response.py +123 -0
  814. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_proxies_response.py +123 -0
  815. lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_usage_restrictions_response.py +123 -0
  816. lightning_sdk/lightning_cloud/openapi/models/v1_list_clusters_response.py +149 -0
  817. lightning_sdk/lightning_cloud/openapi/models/v1_list_container_metrics_response.py +123 -0
  818. lightning_sdk/lightning_cloud/openapi/models/v1_list_conversation_message_actions_response.py +123 -0
  819. lightning_sdk/lightning_cloud/openapi/models/v1_list_conversations_response.py +175 -0
  820. lightning_sdk/lightning_cloud/openapi/models/v1_list_data_connection_artifacts_response.py +175 -0
  821. lightning_sdk/lightning_cloud/openapi/models/v1_list_data_connections_response.py +123 -0
  822. lightning_sdk/lightning_cloud/openapi/models/v1_list_datasets_response.py +123 -0
  823. lightning_sdk/lightning_cloud/openapi/models/v1_list_default_cluster_accelerators_response.py +123 -0
  824. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_alerting_events_response.py +123 -0
  825. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_alerting_policies_response.py +175 -0
  826. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_events_response.py +123 -0
  827. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_releases_response.py +123 -0
  828. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_tags_response.py +123 -0
  829. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_templates_response.py +175 -0
  830. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployments_response.py +123 -0
  831. lightning_sdk/lightning_cloud/openapi/models/v1_list_endpoints_response.py +123 -0
  832. lightning_sdk/lightning_cloud/openapi/models/v1_list_experiments_response.py +149 -0
  833. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_apps_response.py +123 -0
  834. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_cloud_spaces_response.py +123 -0
  835. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_datasets_response.py +123 -0
  836. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_jobs_response.py +123 -0
  837. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_metrics_response.py +123 -0
  838. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_mm_ts_response.py +123 -0
  839. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_slurm_jobs_response.py +123 -0
  840. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_snowflake_response.py +123 -0
  841. lightning_sdk/lightning_cloud/openapi/models/v1_list_gallery_components_response.py +123 -0
  842. lightning_sdk/lightning_cloud/openapi/models/v1_list_gallery_lightningapps_response.py +123 -0
  843. lightning_sdk/lightning_cloud/openapi/models/v1_list_git_credentials_response.py +123 -0
  844. lightning_sdk/lightning_cloud/openapi/models/v1_list_group_pod_metrics_response.py +123 -0
  845. lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_events_response.py +123 -0
  846. lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_messages_response.py +149 -0
  847. lightning_sdk/lightning_cloud/openapi/models/v1_list_incidents_response.py +149 -0
  848. lightning_sdk/lightning_cloud/openapi/models/v1_list_job_files_response.py +201 -0
  849. lightning_sdk/lightning_cloud/openapi/models/v1_list_job_resources_response.py +123 -0
  850. lightning_sdk/lightning_cloud/openapi/models/v1_list_jobs_response.py +175 -0
  851. lightning_sdk/lightning_cloud/openapi/models/v1_list_joinable_organizations_response.py +123 -0
  852. lightning_sdk/lightning_cloud/openapi/models/v1_list_kai_scheduler_queues_metrics_response.py +123 -0
  853. lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_templates_response.py +123 -0
  854. lightning_sdk/lightning_cloud/openapi/models/v1_list_license_response.py +123 -0
  855. lightning_sdk/lightning_cloud/openapi/models/v1_list_lightning_run_response.py +123 -0
  856. lightning_sdk/lightning_cloud/openapi/models/v1_list_lightningapp_instance_artifacts_response.py +175 -0
  857. lightning_sdk/lightning_cloud/openapi/models/v1_list_lightningapp_instance_events_response.py +123 -0
  858. lightning_sdk/lightning_cloud/openapi/models/v1_list_lightningapp_instances_response.py +175 -0
  859. lightning_sdk/lightning_cloud/openapi/models/v1_list_lightningwork_events_response.py +123 -0
  860. lightning_sdk/lightning_cloud/openapi/models/v1_list_lightningwork_response.py +123 -0
  861. lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_dataset_versions_response.py +123 -0
  862. lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_datasets_response.py +123 -0
  863. lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_pages_response.py +123 -0
  864. lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_registry_repository_image_artifact_versions_response.py +257 -0
  865. lightning_sdk/lightning_cloud/openapi/models/v1_list_logger_artifact_response.py +123 -0
  866. lightning_sdk/lightning_cloud/openapi/models/v1_list_machines_response.py +149 -0
  867. lightning_sdk/lightning_cloud/openapi/models/v1_list_managed_endpoints_response.py +123 -0
  868. lightning_sdk/lightning_cloud/openapi/models/v1_list_memberships_response.py +123 -0
  869. lightning_sdk/lightning_cloud/openapi/models/v1_list_metrics_streams_response.py +123 -0
  870. lightning_sdk/lightning_cloud/openapi/models/v1_list_model_versions_response.py +123 -0
  871. lightning_sdk/lightning_cloud/openapi/models/v1_list_models_response.py +123 -0
  872. lightning_sdk/lightning_cloud/openapi/models/v1_list_multi_machine_job_events_response.py +123 -0
  873. lightning_sdk/lightning_cloud/openapi/models/v1_list_multi_machine_jobs_response.py +123 -0
  874. lightning_sdk/lightning_cloud/openapi/models/v1_list_node_file_system_metrics_response.py +97 -0
  875. lightning_sdk/lightning_cloud/openapi/models/v1_list_node_metrics_response.py +123 -0
  876. lightning_sdk/lightning_cloud/openapi/models/v1_list_notification_dialogs_response.py +149 -0
  877. lightning_sdk/lightning_cloud/openapi/models/v1_list_org_members_response.py +123 -0
  878. lightning_sdk/lightning_cloud/openapi/models/v1_list_org_membership_role_binding_response.py +123 -0
  879. lightning_sdk/lightning_cloud/openapi/models/v1_list_org_memberships_response.py +123 -0
  880. lightning_sdk/lightning_cloud/openapi/models/v1_list_org_roles_response.py +123 -0
  881. lightning_sdk/lightning_cloud/openapi/models/v1_list_organization_cluster_encryption_keys_response.py +123 -0
  882. lightning_sdk/lightning_cloud/openapi/models/v1_list_organizations_response.py +123 -0
  883. lightning_sdk/lightning_cloud/openapi/models/v1_list_pipelines_response.py +123 -0
  884. lightning_sdk/lightning_cloud/openapi/models/v1_list_platform_notifications_response.py +123 -0
  885. lightning_sdk/lightning_cloud/openapi/models/v1_list_pod_metrics_response.py +123 -0
  886. lightning_sdk/lightning_cloud/openapi/models/v1_list_profiler_captures_response.py +123 -0
  887. lightning_sdk/lightning_cloud/openapi/models/v1_list_project_artifacts_response.py +175 -0
  888. lightning_sdk/lightning_cloud/openapi/models/v1_list_project_cluster_accelerators_response.py +123 -0
  889. lightning_sdk/lightning_cloud/openapi/models/v1_list_project_cluster_bindings_response.py +123 -0
  890. lightning_sdk/lightning_cloud/openapi/models/v1_list_project_clusters_response.py +123 -0
  891. lightning_sdk/lightning_cloud/openapi/models/v1_list_project_locked_resources_response.py +123 -0
  892. lightning_sdk/lightning_cloud/openapi/models/v1_list_project_membership_role_binding_response.py +123 -0
  893. lightning_sdk/lightning_cloud/openapi/models/v1_list_project_memberships_response.py +123 -0
  894. lightning_sdk/lightning_cloud/openapi/models/v1_list_project_roles_response.py +123 -0
  895. lightning_sdk/lightning_cloud/openapi/models/v1_list_published_cloud_spaces_response.py +175 -0
  896. lightning_sdk/lightning_cloud/openapi/models/v1_list_published_deployment_templates_response.py +175 -0
  897. lightning_sdk/lightning_cloud/openapi/models/v1_list_published_managed_endpoints_response.py +123 -0
  898. lightning_sdk/lightning_cloud/openapi/models/v1_list_quests_response.py +123 -0
  899. lightning_sdk/lightning_cloud/openapi/models/v1_list_schedule_runs_response.py +123 -0
  900. lightning_sdk/lightning_cloud/openapi/models/v1_list_schedules_response.py +123 -0
  901. lightning_sdk/lightning_cloud/openapi/models/v1_list_secrets_response.py +123 -0
  902. lightning_sdk/lightning_cloud/openapi/models/v1_list_slurm_cluster_users_response.py +123 -0
  903. lightning_sdk/lightning_cloud/openapi/models/v1_list_ssh_public_keys_response.py +175 -0
  904. lightning_sdk/lightning_cloud/openapi/models/v1_list_storage_transfers_response.py +123 -0
  905. lightning_sdk/lightning_cloud/openapi/models/v1_list_studio_jobs_response.py +123 -0
  906. lightning_sdk/lightning_cloud/openapi/models/v1_list_user_slurm_jobs_response.py +123 -0
  907. lightning_sdk/lightning_cloud/openapi/models/v1_lit_dataset.py +539 -0
  908. lightning_sdk/lightning_cloud/openapi/models/v1_lit_dataset_file.py +175 -0
  909. lightning_sdk/lightning_cloud/openapi/models/v1_lit_dataset_version_archive.py +435 -0
  910. lightning_sdk/lightning_cloud/openapi/models/v1_lit_page.py +539 -0
  911. lightning_sdk/lightning_cloud/openapi/models/v1_lit_page_type.py +103 -0
  912. lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_artifact.py +305 -0
  913. lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_project.py +261 -0
  914. lightning_sdk/lightning_cloud/openapi/models/v1_lit_repository.py +359 -0
  915. lightning_sdk/lightning_cloud/openapi/models/v1_lite_published_cloud_space_response.py +513 -0
  916. lightning_sdk/lightning_cloud/openapi/models/v1_locked_resource.py +227 -0
  917. lightning_sdk/lightning_cloud/openapi/models/v1_log_page.py +227 -0
  918. lightning_sdk/lightning_cloud/openapi/models/v1_logger_artifact.py +227 -0
  919. lightning_sdk/lightning_cloud/openapi/models/v1_login_request.py +175 -0
  920. lightning_sdk/lightning_cloud/openapi/models/v1_login_response.py +123 -0
  921. lightning_sdk/lightning_cloud/openapi/models/v1_logout_request.py +97 -0
  922. lightning_sdk/lightning_cloud/openapi/models/v1_logout_response.py +97 -0
  923. lightning_sdk/lightning_cloud/openapi/models/v1_logs_response.py +149 -0
  924. lightning_sdk/lightning_cloud/openapi/models/v1_lustre_data_connection.py +149 -0
  925. lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +617 -0
  926. lightning_sdk/lightning_cloud/openapi/models/v1_machine_direct_v1.py +123 -0
  927. lightning_sdk/lightning_cloud/openapi/models/v1_machines_selector.py +149 -0
  928. lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_request.py +253 -0
  929. lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_response.py +227 -0
  930. lightning_sdk/lightning_cloud/openapi/models/v1_managed_endpoint.py +383 -0
  931. lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +643 -0
  932. lightning_sdk/lightning_cloud/openapi/models/v1_managed_model_abilities.py +175 -0
  933. lightning_sdk/lightning_cloud/openapi/models/v1_market_price.py +149 -0
  934. lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +695 -0
  935. lightning_sdk/lightning_cloud/openapi/models/v1_message.py +513 -0
  936. lightning_sdk/lightning_cloud/openapi/models/v1_message_action.py +279 -0
  937. lightning_sdk/lightning_cloud/openapi/models/v1_message_author.py +123 -0
  938. lightning_sdk/lightning_cloud/openapi/models/v1_message_content.py +149 -0
  939. lightning_sdk/lightning_cloud/openapi/models/v1_message_content_type.py +103 -0
  940. lightning_sdk/lightning_cloud/openapi/models/v1_metadata.py +567 -0
  941. lightning_sdk/lightning_cloud/openapi/models/v1_metric_value.py +175 -0
  942. lightning_sdk/lightning_cloud/openapi/models/v1_metrics.py +175 -0
  943. lightning_sdk/lightning_cloud/openapi/models/v1_metrics_stream.py +877 -0
  944. lightning_sdk/lightning_cloud/openapi/models/v1_metrics_tags.py +201 -0
  945. lightning_sdk/lightning_cloud/openapi/models/v1_metrics_tracker.py +383 -0
  946. lightning_sdk/lightning_cloud/openapi/models/v1_model.py +539 -0
  947. lightning_sdk/lightning_cloud/openapi/models/v1_model_file.py +175 -0
  948. lightning_sdk/lightning_cloud/openapi/models/v1_model_metrics.py +175 -0
  949. lightning_sdk/lightning_cloud/openapi/models/v1_model_version_archive.py +435 -0
  950. lightning_sdk/lightning_cloud/openapi/models/v1_modify_filesystem_volume_response.py +97 -0
  951. lightning_sdk/lightning_cloud/openapi/models/v1_mount_target.py +201 -0
  952. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job.py +513 -0
  953. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_event.py +331 -0
  954. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_event_type.py +104 -0
  955. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_fault_tolerance.py +149 -0
  956. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_fault_tolerance_strategy.py +105 -0
  957. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_state.py +110 -0
  958. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_status.py +305 -0
  959. lightning_sdk/lightning_cloud/openapi/models/v1_named_get_logger_metrics.py +123 -0
  960. lightning_sdk/lightning_cloud/openapi/models/v1_namespace_metrics.py +591 -0
  961. lightning_sdk/lightning_cloud/openapi/models/v1_namespace_user_metrics.py +435 -0
  962. lightning_sdk/lightning_cloud/openapi/models/v1_nebius_direct_v1.py +175 -0
  963. lightning_sdk/lightning_cloud/openapi/models/v1_network_config.py +201 -0
  964. lightning_sdk/lightning_cloud/openapi/models/v1_new_feature.py +383 -0
  965. lightning_sdk/lightning_cloud/openapi/models/v1_node_metrics.py +695 -0
  966. lightning_sdk/lightning_cloud/openapi/models/v1_notification_preference.py +227 -0
  967. lightning_sdk/lightning_cloud/openapi/models/v1_notification_preferences_request.py +201 -0
  968. lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +106 -0
  969. lightning_sdk/lightning_cloud/openapi/models/v1_onboarding_event_request.py +175 -0
  970. lightning_sdk/lightning_cloud/openapi/models/v1_onboarding_event_response.py +97 -0
  971. lightning_sdk/lightning_cloud/openapi/models/v1_org_member.py +175 -0
  972. lightning_sdk/lightning_cloud/openapi/models/v1_org_membership.py +253 -0
  973. lightning_sdk/lightning_cloud/openapi/models/v1_org_membership_role_binding.py +227 -0
  974. lightning_sdk/lightning_cloud/openapi/models/v1_org_role.py +279 -0
  975. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +1451 -0
  976. lightning_sdk/lightning_cloud/openapi/models/v1_owner_type.py +104 -0
  977. lightning_sdk/lightning_cloud/openapi/models/v1_package_manager.py +104 -0
  978. lightning_sdk/lightning_cloud/openapi/models/v1_parameterization_spec.py +227 -0
  979. lightning_sdk/lightning_cloud/openapi/models/v1_path_mapping.py +175 -0
  980. lightning_sdk/lightning_cloud/openapi/models/v1_path_telemetry.py +123 -0
  981. lightning_sdk/lightning_cloud/openapi/models/v1_pause_storage_transfer_response.py +97 -0
  982. lightning_sdk/lightning_cloud/openapi/models/v1_phase_type.py +104 -0
  983. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline.py +591 -0
  984. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter.py +435 -0
  985. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter_placement.py +149 -0
  986. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter_placement_type.py +106 -0
  987. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter_type.py +106 -0
  988. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_state.py +111 -0
  989. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step.py +253 -0
  990. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_status.py +331 -0
  991. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_type.py +104 -0
  992. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_template.py +513 -0
  993. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_template_visibility_type.py +105 -0
  994. lightning_sdk/lightning_cloud/openapi/models/v1_platform_notification.py +279 -0
  995. lightning_sdk/lightning_cloud/openapi/models/v1_plugin.py +253 -0
  996. lightning_sdk/lightning_cloud/openapi/models/v1_plugins_list_response.py +123 -0
  997. lightning_sdk/lightning_cloud/openapi/models/v1_pod_metrics.py +747 -0
  998. lightning_sdk/lightning_cloud/openapi/models/v1_post_cloud_space_artifact_events_response.py +97 -0
  999. lightning_sdk/lightning_cloud/openapi/models/v1_presigned_url.py +149 -0
  1000. lightning_sdk/lightning_cloud/openapi/models/v1_profiler_capture.py +357 -0
  1001. lightning_sdk/lightning_cloud/openapi/models/v1_profiler_enabled_response.py +123 -0
  1002. lightning_sdk/lightning_cloud/openapi/models/v1_project.py +643 -0
  1003. lightning_sdk/lightning_cloud/openapi/models/v1_project_artifact.py +227 -0
  1004. lightning_sdk/lightning_cloud/openapi/models/v1_project_cluster_binding.py +331 -0
  1005. lightning_sdk/lightning_cloud/openapi/models/v1_project_compute_daily_usage.py +201 -0
  1006. lightning_sdk/lightning_cloud/openapi/models/v1_project_compute_usage.py +409 -0
  1007. lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +903 -0
  1008. lightning_sdk/lightning_cloud/openapi/models/v1_project_membership_invite.py +305 -0
  1009. lightning_sdk/lightning_cloud/openapi/models/v1_project_membership_role_binding.py +253 -0
  1010. lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +697 -0
  1011. lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +513 -0
  1012. lightning_sdk/lightning_cloud/openapi/models/v1_project_tab.py +149 -0
  1013. lightning_sdk/lightning_cloud/openapi/models/v1_prompt_suggestion.py +149 -0
  1014. lightning_sdk/lightning_cloud/openapi/models/v1_publish_cloud_space_response.py +97 -0
  1015. lightning_sdk/lightning_cloud/openapi/models/v1_published_cloud_space_response.py +669 -0
  1016. lightning_sdk/lightning_cloud/openapi/models/v1_purchase_annual_upsell_request.py +123 -0
  1017. lightning_sdk/lightning_cloud/openapi/models/v1_purchase_annual_upsell_response.py +123 -0
  1018. lightning_sdk/lightning_cloud/openapi/models/v1_purchase_capacity_block_response.py +175 -0
  1019. lightning_sdk/lightning_cloud/openapi/models/v1_python_dependency_info.py +149 -0
  1020. lightning_sdk/lightning_cloud/openapi/models/v1_query_param.py +175 -0
  1021. lightning_sdk/lightning_cloud/openapi/models/v1_query_result.py +123 -0
  1022. lightning_sdk/lightning_cloud/openapi/models/v1_query_result_row.py +123 -0
  1023. lightning_sdk/lightning_cloud/openapi/models/v1_quest.py +411 -0
  1024. lightning_sdk/lightning_cloud/openapi/models/v1_quest_status.py +104 -0
  1025. lightning_sdk/lightning_cloud/openapi/models/v1_queue_server_type.py +104 -0
  1026. lightning_sdk/lightning_cloud/openapi/models/v1_quotas.py +305 -0
  1027. lightning_sdk/lightning_cloud/openapi/models/v1_quote_annual_upsell_response.py +227 -0
  1028. lightning_sdk/lightning_cloud/openapi/models/v1_quote_subscription_response.py +331 -0
  1029. lightning_sdk/lightning_cloud/openapi/models/v1_r2_data_connection.py +305 -0
  1030. lightning_sdk/lightning_cloud/openapi/models/v1_refresh_index_response.py +97 -0
  1031. lightning_sdk/lightning_cloud/openapi/models/v1_refresh_path_response.py +97 -0
  1032. lightning_sdk/lightning_cloud/openapi/models/v1_refresh_request.py +123 -0
  1033. lightning_sdk/lightning_cloud/openapi/models/v1_refresh_response.py +123 -0
  1034. lightning_sdk/lightning_cloud/openapi/models/v1_region_state.py +105 -0
  1035. lightning_sdk/lightning_cloud/openapi/models/v1_regional_load_balancer.py +149 -0
  1036. lightning_sdk/lightning_cloud/openapi/models/v1_render_kubernetes_template_response.py +123 -0
  1037. lightning_sdk/lightning_cloud/openapi/models/v1_report_cloud_space_instance_stop_at_response.py +97 -0
  1038. lightning_sdk/lightning_cloud/openapi/models/v1_report_cloud_space_instance_system_metrics_response.py +97 -0
  1039. lightning_sdk/lightning_cloud/openapi/models/v1_report_deployment_routing_telemetry_response.py +97 -0
  1040. lightning_sdk/lightning_cloud/openapi/models/v1_report_k8s_cluster_metrics_response.py +97 -0
  1041. lightning_sdk/lightning_cloud/openapi/models/v1_report_logs_activity_response.py +97 -0
  1042. lightning_sdk/lightning_cloud/openapi/models/v1_report_restart_timings_response.py +97 -0
  1043. lightning_sdk/lightning_cloud/openapi/models/v1_request_cloud_space_access_response.py +97 -0
  1044. lightning_sdk/lightning_cloud/openapi/models/v1_request_cluster_access_request.py +175 -0
  1045. lightning_sdk/lightning_cloud/openapi/models/v1_request_cluster_access_response.py +97 -0
  1046. lightning_sdk/lightning_cloud/openapi/models/v1_request_verification_code_response.py +123 -0
  1047. lightning_sdk/lightning_cloud/openapi/models/v1_required_balance_reason.py +107 -0
  1048. lightning_sdk/lightning_cloud/openapi/models/v1_reservation_details.py +201 -0
  1049. lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_request.py +97 -0
  1050. lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_response.py +123 -0
  1051. lightning_sdk/lightning_cloud/openapi/models/v1_resource_tag.py +175 -0
  1052. lightning_sdk/lightning_cloud/openapi/models/v1_resource_visibility.py +175 -0
  1053. lightning_sdk/lightning_cloud/openapi/models/v1_resources.py +331 -0
  1054. lightning_sdk/lightning_cloud/openapi/models/v1_response_choice.py +201 -0
  1055. lightning_sdk/lightning_cloud/openapi/models/v1_response_choice_delta.py +149 -0
  1056. lightning_sdk/lightning_cloud/openapi/models/v1_restart_cloud_space_instance_response.py +97 -0
  1057. lightning_sdk/lightning_cloud/openapi/models/v1_restart_timing.py +201 -0
  1058. lightning_sdk/lightning_cloud/openapi/models/v1_restore_deployment_release_response.py +97 -0
  1059. lightning_sdk/lightning_cloud/openapi/models/v1_resume_storage_transfer_response.py +97 -0
  1060. lightning_sdk/lightning_cloud/openapi/models/v1_role.py +279 -0
  1061. lightning_sdk/lightning_cloud/openapi/models/v1_rolling_update_strategy.py +149 -0
  1062. lightning_sdk/lightning_cloud/openapi/models/v1_routing_telemetry.py +357 -0
  1063. lightning_sdk/lightning_cloud/openapi/models/v1_rule.py +201 -0
  1064. lightning_sdk/lightning_cloud/openapi/models/v1_rule_action.py +110 -0
  1065. lightning_sdk/lightning_cloud/openapi/models/v1_rule_condition.py +175 -0
  1066. lightning_sdk/lightning_cloud/openapi/models/v1_rule_effect.py +104 -0
  1067. lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +143 -0
  1068. lightning_sdk/lightning_cloud/openapi/models/v1_s3_folder_data_connection.py +123 -0
  1069. lightning_sdk/lightning_cloud/openapi/models/v1_schedule.py +565 -0
  1070. lightning_sdk/lightning_cloud/openapi/models/v1_schedule_action_type.py +104 -0
  1071. lightning_sdk/lightning_cloud/openapi/models/v1_schedule_resource_type.py +104 -0
  1072. lightning_sdk/lightning_cloud/openapi/models/v1_schedule_run.py +357 -0
  1073. lightning_sdk/lightning_cloud/openapi/models/v1_sdk_command_history_severity.py +104 -0
  1074. lightning_sdk/lightning_cloud/openapi/models/v1_sdk_command_history_type.py +104 -0
  1075. lightning_sdk/lightning_cloud/openapi/models/v1_search_job_logs_response.py +149 -0
  1076. lightning_sdk/lightning_cloud/openapi/models/v1_search_user.py +411 -0
  1077. lightning_sdk/lightning_cloud/openapi/models/v1_search_users_response.py +201 -0
  1078. lightning_sdk/lightning_cloud/openapi/models/v1_secret.py +331 -0
  1079. lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +107 -0
  1080. lightning_sdk/lightning_cloud/openapi/models/v1_select.py +149 -0
  1081. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert.py +201 -0
  1082. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_phase.py +105 -0
  1083. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_severity.py +103 -0
  1084. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_type.py +108 -0
  1085. lightning_sdk/lightning_cloud/openapi/models/v1_server_check_in_response.py +97 -0
  1086. lightning_sdk/lightning_cloud/openapi/models/v1_service_health.py +175 -0
  1087. lightning_sdk/lightning_cloud/openapi/models/v1_setup_confirmed_ssh_public_key_response.py +97 -0
  1088. lightning_sdk/lightning_cloud/openapi/models/v1_setup_data_connection_response.py +123 -0
  1089. lightning_sdk/lightning_cloud/openapi/models/v1_shared_filesystem.py +331 -0
  1090. lightning_sdk/lightning_cloud/openapi/models/v1_should_start_syncing_response.py +123 -0
  1091. lightning_sdk/lightning_cloud/openapi/models/v1_signed_url.py +149 -0
  1092. lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier.py +201 -0
  1093. lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier_type.py +105 -0
  1094. lightning_sdk/lightning_cloud/openapi/models/v1_sleep_server_response.py +97 -0
  1095. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_cluster_user.py +227 -0
  1096. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_job.py +749 -0
  1097. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_node.py +227 -0
  1098. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1.py +201 -0
  1099. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1_job_status.py +253 -0
  1100. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1_status.py +227 -0
  1101. lightning_sdk/lightning_cloud/openapi/models/v1_snowflake_data_connection.py +253 -0
  1102. lightning_sdk/lightning_cloud/openapi/models/v1_source_type.py +103 -0
  1103. lightning_sdk/lightning_cloud/openapi/models/v1_ssh_key_pair.py +201 -0
  1104. lightning_sdk/lightning_cloud/openapi/models/v1_ssh_public_key.py +279 -0
  1105. lightning_sdk/lightning_cloud/openapi/models/v1_start_cloud_space_instance_response.py +97 -0
  1106. lightning_sdk/lightning_cloud/openapi/models/v1_status_code_telemetry.py +123 -0
  1107. lightning_sdk/lightning_cloud/openapi/models/v1_stop_cloud_space_instance_response.py +97 -0
  1108. lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +409 -0
  1109. lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +109 -0
  1110. lightning_sdk/lightning_cloud/openapi/models/v1_storage_system_metrics.py +175 -0
  1111. lightning_sdk/lightning_cloud/openapi/models/v1_storage_transfer.py +435 -0
  1112. lightning_sdk/lightning_cloud/openapi/models/v1_storage_transfer_status.py +108 -0
  1113. lightning_sdk/lightning_cloud/openapi/models/v1_studio_job.py +435 -0
  1114. lightning_sdk/lightning_cloud/openapi/models/v1_studio_job_app.py +106 -0
  1115. lightning_sdk/lightning_cloud/openapi/models/v1_subnet_spec.py +149 -0
  1116. lightning_sdk/lightning_cloud/openapi/models/v1_switch_cloud_space_instance_response.py +97 -0
  1117. lightning_sdk/lightning_cloud/openapi/models/v1_system_info.py +617 -0
  1118. lightning_sdk/lightning_cloud/openapi/models/v1_system_metrics.py +201 -0
  1119. lightning_sdk/lightning_cloud/openapi/models/v1_system_metrics_aggregated.py +227 -0
  1120. lightning_sdk/lightning_cloud/openapi/models/v1_system_metrics_list.py +149 -0
  1121. lightning_sdk/lightning_cloud/openapi/models/v1_telemetry.py +331 -0
  1122. lightning_sdk/lightning_cloud/openapi/models/v1_timestamp_code_telemetry.py +123 -0
  1123. lightning_sdk/lightning_cloud/openapi/models/v1_token_login_request.py +123 -0
  1124. lightning_sdk/lightning_cloud/openapi/models/v1_token_login_response.py +123 -0
  1125. lightning_sdk/lightning_cloud/openapi/models/v1_token_owner_type.py +104 -0
  1126. lightning_sdk/lightning_cloud/openapi/models/v1_token_usage.py +175 -0
  1127. lightning_sdk/lightning_cloud/openapi/models/v1_tool.py +149 -0
  1128. lightning_sdk/lightning_cloud/openapi/models/v1_tool_call.py +175 -0
  1129. lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +227 -0
  1130. lightning_sdk/lightning_cloud/openapi/models/v1_transfer_cloud_space_response.py +97 -0
  1131. lightning_sdk/lightning_cloud/openapi/models/v1_transfer_org_balance_response.py +97 -0
  1132. lightning_sdk/lightning_cloud/openapi/models/v1_transfer_project_balance_response.py +149 -0
  1133. lightning_sdk/lightning_cloud/openapi/models/v1_transfer_user_balance_request.py +253 -0
  1134. lightning_sdk/lightning_cloud/openapi/models/v1_transfer_user_balance_response.py +97 -0
  1135. lightning_sdk/lightning_cloud/openapi/models/v1_trigger_filesystem_upgrade_response.py +123 -0
  1136. lightning_sdk/lightning_cloud/openapi/models/v1_unpublish_cloud_space_response.py +97 -0
  1137. lightning_sdk/lightning_cloud/openapi/models/v1_update_agent_status_request.py +149 -0
  1138. lightning_sdk/lightning_cloud/openapi/models/v1_update_agent_status_response.py +97 -0
  1139. lightning_sdk/lightning_cloud/openapi/models/v1_update_billing_subscription_request.py +227 -0
  1140. lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_collab_response.py +123 -0
  1141. lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_instance_config_request.py +253 -0
  1142. lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_publication_response.py +97 -0
  1143. lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_visibility_response.py +97 -0
  1144. lightning_sdk/lightning_cloud/openapi/models/v1_update_cluster_accelerators_request.py +149 -0
  1145. lightning_sdk/lightning_cloud/openapi/models/v1_update_cluster_accelerators_response.py +97 -0
  1146. lightning_sdk/lightning_cloud/openapi/models/v1_update_cluster_availability_request.py +201 -0
  1147. lightning_sdk/lightning_cloud/openapi/models/v1_update_conversation_like_response.py +149 -0
  1148. lightning_sdk/lightning_cloud/openapi/models/v1_update_conversation_message_like_response.py +149 -0
  1149. lightning_sdk/lightning_cloud/openapi/models/v1_update_deployment_visibility_response.py +97 -0
  1150. lightning_sdk/lightning_cloud/openapi/models/v1_update_index_response.py +97 -0
  1151. lightning_sdk/lightning_cloud/openapi/models/v1_update_job_visibility_response.py +97 -0
  1152. lightning_sdk/lightning_cloud/openapi/models/v1_update_lit_dataset_visibility_response.py +123 -0
  1153. lightning_sdk/lightning_cloud/openapi/models/v1_update_lit_page_response.py +123 -0
  1154. lightning_sdk/lightning_cloud/openapi/models/v1_update_lit_repository_response.py +97 -0
  1155. lightning_sdk/lightning_cloud/openapi/models/v1_update_metrics_stream_visibility_response.py +123 -0
  1156. lightning_sdk/lightning_cloud/openapi/models/v1_update_model_visibility_response.py +123 -0
  1157. lightning_sdk/lightning_cloud/openapi/models/v1_update_organization_credits_auto_replenish_response.py +97 -0
  1158. lightning_sdk/lightning_cloud/openapi/models/v1_update_project_cluster_accelerators_response.py +97 -0
  1159. lightning_sdk/lightning_cloud/openapi/models/v1_update_project_tab_order_response.py +123 -0
  1160. lightning_sdk/lightning_cloud/openapi/models/v1_update_shared_metrics_stream_response.py +97 -0
  1161. lightning_sdk/lightning_cloud/openapi/models/v1_update_snowflake_query_response.py +97 -0
  1162. lightning_sdk/lightning_cloud/openapi/models/v1_update_user_credits_auto_replenish_response.py +97 -0
  1163. lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +825 -0
  1164. lightning_sdk/lightning_cloud/openapi/models/v1_update_user_viewed_new_features_request.py +123 -0
  1165. lightning_sdk/lightning_cloud/openapi/models/v1_update_user_viewed_new_features_response.py +97 -0
  1166. lightning_sdk/lightning_cloud/openapi/models/v1_update_volume_response.py +123 -0
  1167. lightning_sdk/lightning_cloud/openapi/models/v1_upload_agent_job_artifact_response.py +123 -0
  1168. lightning_sdk/lightning_cloud/openapi/models/v1_upload_agent_job_output_response.py +123 -0
  1169. lightning_sdk/lightning_cloud/openapi/models/v1_upload_lightningapp_instance_artifact_response.py +123 -0
  1170. lightning_sdk/lightning_cloud/openapi/models/v1_upload_project_artifact_parts_response.py +123 -0
  1171. lightning_sdk/lightning_cloud/openapi/models/v1_upload_project_artifact_response.py +175 -0
  1172. lightning_sdk/lightning_cloud/openapi/models/v1_upload_settings_response.py +123 -0
  1173. lightning_sdk/lightning_cloud/openapi/models/v1_upload_temporary_artifact_request.py +123 -0
  1174. lightning_sdk/lightning_cloud/openapi/models/v1_upstream_cloud_space.py +305 -0
  1175. lightning_sdk/lightning_cloud/openapi/models/v1_upstream_job.py +227 -0
  1176. lightning_sdk/lightning_cloud/openapi/models/v1_upstream_managed.py +123 -0
  1177. lightning_sdk/lightning_cloud/openapi/models/v1_upstream_open_ai.py +149 -0
  1178. lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +591 -0
  1179. lightning_sdk/lightning_cloud/openapi/models/v1_usage_details.py +487 -0
  1180. lightning_sdk/lightning_cloud/openapi/models/v1_usage_report.py +279 -0
  1181. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +2255 -0
  1182. lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py +415 -0
  1183. lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_flow_compute_config.py +175 -0
  1184. lightning_sdk/lightning_cloud/openapi/models/v1_user_slurm_job_action_response.py +97 -0
  1185. lightning_sdk/lightning_cloud/openapi/models/v1_validate_assistant_status_response.py +149 -0
  1186. lightning_sdk/lightning_cloud/openapi/models/v1_validate_auto_join_domain_response.py +97 -0
  1187. lightning_sdk/lightning_cloud/openapi/models/v1_validate_data_connection_response.py +253 -0
  1188. lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_request.py +175 -0
  1189. lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_response.py +97 -0
  1190. lightning_sdk/lightning_cloud/openapi/models/v1_validate_license_response.py +123 -0
  1191. lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_endpoint_request.py +175 -0
  1192. lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_endpoint_response.py +149 -0
  1193. lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_model_response.py +123 -0
  1194. lightning_sdk/lightning_cloud/openapi/models/v1_validate_storage_transfer_response.py +123 -0
  1195. lightning_sdk/lightning_cloud/openapi/models/v1_verify_verification_response.py +97 -0
  1196. lightning_sdk/lightning_cloud/openapi/models/v1_voltage_park_direct_v1.py +229 -0
  1197. lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +643 -0
  1198. lightning_sdk/lightning_cloud/openapi/models/v1_volume_state.py +105 -0
  1199. lightning_sdk/lightning_cloud/openapi/models/v1_vultr_direct_v1.py +177 -0
  1200. lightning_sdk/lightning_cloud/openapi/models/v1_weka_data_connection.py +201 -0
  1201. lightning_sdk/lightning_cloud/openapi/models/v1_work.py +175 -0
  1202. lightning_sdk/lightning_cloud/openapi/models/validate.py +331 -0
  1203. lightning_sdk/lightning_cloud/openapi/models/validateautojoindomain_domain_body.py +123 -0
  1204. lightning_sdk/lightning_cloud/openapi/models/version_default_body.py +149 -0
  1205. lightning_sdk/lightning_cloud/openapi/models/version_default_body1.py +149 -0
  1206. lightning_sdk/lightning_cloud/openapi/models/version_uploads_body.py +123 -0
  1207. lightning_sdk/lightning_cloud/openapi/models/version_uploads_body1.py +123 -0
  1208. lightning_sdk/lightning_cloud/openapi/models/versions_id_body.py +357 -0
  1209. lightning_sdk/lightning_cloud/openapi/models/versions_version_body.py +123 -0
  1210. lightning_sdk/lightning_cloud/openapi/models/versions_version_body1.py +123 -0
  1211. lightning_sdk/lightning_cloud/openapi/models/volumes_id_body.py +123 -0
  1212. lightning_sdk/lightning_cloud/openapi/models/works_id_body.py +123 -0
  1213. lightning_sdk/lightning_cloud/openapi/rest.py +324 -0
  1214. lightning_sdk/lightning_cloud/rest_client.py +220 -0
  1215. lightning_sdk/lightning_cloud/source_code/__init__.py +3 -0
  1216. lightning_sdk/lightning_cloud/source_code/copytree.py +174 -0
  1217. lightning_sdk/lightning_cloud/source_code/hashing.py +41 -0
  1218. lightning_sdk/lightning_cloud/source_code/local.py +107 -0
  1219. lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +103 -0
  1220. lightning_sdk/lightning_cloud/source_code/tar.py +194 -0
  1221. lightning_sdk/lightning_cloud/source_code/uploader.py +97 -0
  1222. lightning_sdk/lightning_cloud/utils/__init__.py +3 -0
  1223. lightning_sdk/lightning_cloud/utils/data_connection.py +411 -0
  1224. lightning_sdk/lightning_cloud/utils/dataset.py +60 -0
  1225. lightning_sdk/lightning_cloud/utils/name_generator.py +1078 -0
  1226. lightning_sdk/lightning_cloud/utils/network.py +13 -0
  1227. lightning_sdk/lit_container.py +146 -0
  1228. lightning_sdk/llm/__init__.py +3 -0
  1229. lightning_sdk/llm/llm.py +497 -0
  1230. lightning_sdk/llm/public_assistants.py +54 -0
  1231. lightning_sdk/machine.py +231 -0
  1232. lightning_sdk/mmt/__init__.py +4 -0
  1233. lightning_sdk/mmt/base.py +378 -0
  1234. lightning_sdk/mmt/mmt.py +349 -0
  1235. lightning_sdk/mmt/v1.py +199 -0
  1236. lightning_sdk/mmt/v2.py +252 -0
  1237. lightning_sdk/models.py +208 -0
  1238. lightning_sdk/organization.py +49 -0
  1239. lightning_sdk/owner.py +50 -0
  1240. lightning_sdk/pipeline/__init__.py +14 -0
  1241. lightning_sdk/pipeline/pipeline.py +166 -0
  1242. lightning_sdk/pipeline/printer.py +124 -0
  1243. lightning_sdk/pipeline/schedule.py +859 -0
  1244. lightning_sdk/pipeline/steps.py +365 -0
  1245. lightning_sdk/pipeline/utils.py +116 -0
  1246. lightning_sdk/plugin.py +456 -0
  1247. lightning_sdk/sandbox.py +160 -0
  1248. lightning_sdk/serve.py +311 -0
  1249. lightning_sdk/services/__init__.py +5 -0
  1250. lightning_sdk/services/file_endpoint.py +222 -0
  1251. lightning_sdk/services/finetune_llm.py +35 -0
  1252. lightning_sdk/services/utilities.py +125 -0
  1253. lightning_sdk/status.py +17 -0
  1254. lightning_sdk/studio.py +907 -0
  1255. lightning_sdk/teamspace.py +692 -0
  1256. lightning_sdk/user.py +60 -0
  1257. lightning_sdk/utils/__init__.py +0 -0
  1258. lightning_sdk/utils/config.py +179 -0
  1259. lightning_sdk/utils/dynamic.py +61 -0
  1260. lightning_sdk/utils/enum.py +116 -0
  1261. lightning_sdk/utils/license.py +13 -0
  1262. lightning_sdk/utils/logging.py +79 -0
  1263. lightning_sdk/utils/names.py +1179 -0
  1264. lightning_sdk/utils/progress.py +283 -0
  1265. lightning_sdk/utils/resolve.py +325 -0
  1266. lightning_sdk-2025.11.13.post0.dist-info/LICENSE +21 -0
  1267. lightning_sdk-2025.11.13.post0.dist-info/METADATA +117 -0
  1268. lightning_sdk-2025.11.13.post0.dist-info/RECORD +1271 -0
  1269. lightning_sdk-2025.11.13.post0.dist-info/WHEEL +5 -0
  1270. lightning_sdk-2025.11.13.post0.dist-info/entry_points.txt +3 -0
  1271. lightning_sdk-2025.11.13.post0.dist-info/top_level.txt +2 -0
@@ -0,0 +1,2255 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ external/v1/auth_service.proto
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: version not set
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+
12
+ NOTE
13
+ ----
14
+ standard swagger-codegen-cli for this python client has been modified
15
+ by custom templates. The purpose of these templates is to include
16
+ typing information in the API and Model code. Please refer to the
17
+ main grid repository for more info
18
+ """
19
+
20
+ import pprint
21
+ import re # noqa: F401
22
+
23
+ from typing import TYPE_CHECKING
24
+
25
+ import six
26
+
27
+ if TYPE_CHECKING:
28
+ from datetime import datetime
29
+ from lightning_sdk.lightning_cloud.openapi.models import *
30
+
31
+ class V1UserFeatures(object):
32
+ """NOTE: This class is auto generated by the swagger code generator program.
33
+
34
+ Do not edit the class manually.
35
+ """
36
+ """
37
+ Attributes:
38
+ swagger_types (dict): The key is attribute name
39
+ and the value is attribute type.
40
+ attribute_map (dict): The key is attribute name
41
+ and the value is json key in definition.
42
+ """
43
+ swagger_types = {
44
+ 'affiliate_links': 'bool',
45
+ 'agents_v2': 'bool',
46
+ 'ai_hub_monetization': 'bool',
47
+ 'auto_fast_load': 'bool',
48
+ 'b2c_experience': 'bool',
49
+ 'byo_machine_type': 'bool',
50
+ 'cap_add': 'list[str]',
51
+ 'cap_drop': 'list[str]',
52
+ 'capacity_reservation_byoc': 'bool',
53
+ 'capacity_reservation_dry_run': 'bool',
54
+ 'chat_models': 'bool',
55
+ 'cloudspace_schedules': 'bool',
56
+ 'code_tab': 'bool',
57
+ 'collab_screen_sharing': 'bool',
58
+ 'control_center_monitoring': 'bool',
59
+ 'cost_attribution_settings': 'bool',
60
+ 'datasets': 'bool',
61
+ 'default_one_cluster': 'bool',
62
+ 'drive_v2': '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',
89
+ 'featured_studios_admin': 'bool',
90
+ 'job_artifacts_v2': 'bool',
91
+ 'kubernetes_cluster_ui': 'bool',
92
+ 'kubernetes_clusters': 'bool',
93
+ 'landing_studios': 'bool',
94
+ 'lit_logger': 'bool',
95
+ 'marketplace': 'bool',
96
+ 'mmt_fault_tolerance': 'bool',
97
+ 'mmt_strategy_selector': 'bool',
98
+ 'multiple_studio_versions': 'bool',
99
+ 'nerf_fs_nonpaying': 'bool',
100
+ 'org_level_member_permissions': 'bool',
101
+ 'org_usage_limits': 'bool',
102
+ 'persistent_disk': 'bool',
103
+ 'plugin_distributed': 'bool',
104
+ 'plugin_inference': 'bool',
105
+ 'plugin_label_studio': 'bool',
106
+ 'plugin_langflow': 'bool',
107
+ 'plugin_python_profiler': 'bool',
108
+ 'plugin_sweeps': 'bool',
109
+ 'pricing_updates': 'bool',
110
+ 'product_generator': 'bool',
111
+ 'product_license': 'bool',
112
+ 'project_selector': 'bool',
113
+ 'publish_pipelines': 'bool',
114
+ 'reserved_machines_tab': 'bool',
115
+ 'restartable_jobs': 'bool',
116
+ 'runnable_public_studio_page': 'bool',
117
+ 'security_docs': 'bool',
118
+ 'show_dev_admin': 'bool',
119
+ 'slurm': 'bool',
120
+ 'specialised_studios': 'bool',
121
+ 'storage_overuse_deletion': 'bool',
122
+ 'studio_config': 'bool',
123
+ 'studio_version_visibility': 'bool',
124
+ 'vultr': 'bool',
125
+ 'weka': 'bool',
126
+ 'writable_s3_connections': 'bool'
127
+ }
128
+
129
+ attribute_map = {
130
+ 'affiliate_links': 'affiliateLinks',
131
+ 'agents_v2': 'agentsV2',
132
+ 'ai_hub_monetization': 'aiHubMonetization',
133
+ 'auto_fast_load': 'autoFastLoad',
134
+ 'b2c_experience': 'b2cExperience',
135
+ 'byo_machine_type': 'byoMachineType',
136
+ 'cap_add': 'capAdd',
137
+ 'cap_drop': 'capDrop',
138
+ 'capacity_reservation_byoc': 'capacityReservationByoc',
139
+ 'capacity_reservation_dry_run': 'capacityReservationDryRun',
140
+ 'chat_models': 'chatModels',
141
+ 'cloudspace_schedules': 'cloudspaceSchedules',
142
+ 'code_tab': 'codeTab',
143
+ 'collab_screen_sharing': 'collabScreenSharing',
144
+ 'control_center_monitoring': 'controlCenterMonitoring',
145
+ 'cost_attribution_settings': 'costAttributionSettings',
146
+ 'datasets': 'datasets',
147
+ 'default_one_cluster': 'defaultOneCluster',
148
+ 'drive_v2': 'driveV2',
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',
175
+ 'featured_studios_admin': 'featuredStudiosAdmin',
176
+ 'job_artifacts_v2': 'jobArtifactsV2',
177
+ 'kubernetes_cluster_ui': 'kubernetesClusterUi',
178
+ 'kubernetes_clusters': 'kubernetesClusters',
179
+ 'landing_studios': 'landingStudios',
180
+ 'lit_logger': 'litLogger',
181
+ 'marketplace': 'marketplace',
182
+ 'mmt_fault_tolerance': 'mmtFaultTolerance',
183
+ 'mmt_strategy_selector': 'mmtStrategySelector',
184
+ 'multiple_studio_versions': 'multipleStudioVersions',
185
+ 'nerf_fs_nonpaying': 'nerfFsNonpaying',
186
+ 'org_level_member_permissions': 'orgLevelMemberPermissions',
187
+ 'org_usage_limits': 'orgUsageLimits',
188
+ 'persistent_disk': 'persistentDisk',
189
+ 'plugin_distributed': 'pluginDistributed',
190
+ 'plugin_inference': 'pluginInference',
191
+ 'plugin_label_studio': 'pluginLabelStudio',
192
+ 'plugin_langflow': 'pluginLangflow',
193
+ 'plugin_python_profiler': 'pluginPythonProfiler',
194
+ 'plugin_sweeps': 'pluginSweeps',
195
+ 'pricing_updates': 'pricingUpdates',
196
+ 'product_generator': 'productGenerator',
197
+ 'product_license': 'productLicense',
198
+ 'project_selector': 'projectSelector',
199
+ 'publish_pipelines': 'publishPipelines',
200
+ 'reserved_machines_tab': 'reservedMachinesTab',
201
+ 'restartable_jobs': 'restartableJobs',
202
+ 'runnable_public_studio_page': 'runnablePublicStudioPage',
203
+ 'security_docs': 'securityDocs',
204
+ 'show_dev_admin': 'showDevAdmin',
205
+ 'slurm': 'slurm',
206
+ 'specialised_studios': 'specialisedStudios',
207
+ 'storage_overuse_deletion': 'storageOveruseDeletion',
208
+ 'studio_config': 'studioConfig',
209
+ 'studio_version_visibility': 'studioVersionVisibility',
210
+ 'vultr': 'vultr',
211
+ 'weka': 'weka',
212
+ 'writable_s3_connections': 'writableS3Connections'
213
+ }
214
+
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
216
+ """V1UserFeatures - a model defined in Swagger""" # noqa: E501
217
+ self._affiliate_links = None
218
+ self._agents_v2 = None
219
+ self._ai_hub_monetization = None
220
+ self._auto_fast_load = None
221
+ self._b2c_experience = None
222
+ self._byo_machine_type = None
223
+ self._cap_add = None
224
+ self._cap_drop = None
225
+ self._capacity_reservation_byoc = None
226
+ self._capacity_reservation_dry_run = None
227
+ self._chat_models = None
228
+ self._cloudspace_schedules = None
229
+ self._code_tab = None
230
+ self._collab_screen_sharing = None
231
+ self._control_center_monitoring = None
232
+ self._cost_attribution_settings = None
233
+ self._datasets = None
234
+ self._default_one_cluster = None
235
+ self._drive_v2 = 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
262
+ self._featured_studios_admin = None
263
+ self._job_artifacts_v2 = None
264
+ self._kubernetes_cluster_ui = None
265
+ self._kubernetes_clusters = None
266
+ self._landing_studios = None
267
+ self._lit_logger = None
268
+ self._marketplace = None
269
+ self._mmt_fault_tolerance = None
270
+ self._mmt_strategy_selector = None
271
+ self._multiple_studio_versions = None
272
+ self._nerf_fs_nonpaying = None
273
+ self._org_level_member_permissions = None
274
+ self._org_usage_limits = None
275
+ self._persistent_disk = None
276
+ self._plugin_distributed = None
277
+ self._plugin_inference = None
278
+ self._plugin_label_studio = None
279
+ self._plugin_langflow = None
280
+ self._plugin_python_profiler = None
281
+ self._plugin_sweeps = None
282
+ self._pricing_updates = None
283
+ self._product_generator = None
284
+ self._product_license = None
285
+ self._project_selector = None
286
+ self._publish_pipelines = None
287
+ self._reserved_machines_tab = None
288
+ self._restartable_jobs = None
289
+ self._runnable_public_studio_page = None
290
+ self._security_docs = None
291
+ self._show_dev_admin = None
292
+ self._slurm = None
293
+ self._specialised_studios = None
294
+ self._storage_overuse_deletion = None
295
+ self._studio_config = None
296
+ self._studio_version_visibility = None
297
+ self._vultr = None
298
+ self._weka = None
299
+ self._writable_s3_connections = None
300
+ self.discriminator = None
301
+ if affiliate_links is not None:
302
+ self.affiliate_links = affiliate_links
303
+ if agents_v2 is not None:
304
+ self.agents_v2 = agents_v2
305
+ if ai_hub_monetization is not None:
306
+ self.ai_hub_monetization = ai_hub_monetization
307
+ if auto_fast_load is not None:
308
+ self.auto_fast_load = auto_fast_load
309
+ if b2c_experience is not None:
310
+ self.b2c_experience = b2c_experience
311
+ if byo_machine_type is not None:
312
+ self.byo_machine_type = byo_machine_type
313
+ if cap_add is not None:
314
+ self.cap_add = cap_add
315
+ if cap_drop is not None:
316
+ self.cap_drop = cap_drop
317
+ if capacity_reservation_byoc is not None:
318
+ self.capacity_reservation_byoc = capacity_reservation_byoc
319
+ if capacity_reservation_dry_run is not None:
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
325
+ if code_tab is not None:
326
+ self.code_tab = code_tab
327
+ if collab_screen_sharing is not None:
328
+ self.collab_screen_sharing = collab_screen_sharing
329
+ if control_center_monitoring is not None:
330
+ self.control_center_monitoring = control_center_monitoring
331
+ if cost_attribution_settings is not None:
332
+ self.cost_attribution_settings = cost_attribution_settings
333
+ if datasets is not None:
334
+ self.datasets = datasets
335
+ if default_one_cluster is not None:
336
+ self.default_one_cluster = default_one_cluster
337
+ if drive_v2 is not None:
338
+ self.drive_v2 = drive_v2
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
391
+ if featured_studios_admin is not None:
392
+ self.featured_studios_admin = featured_studios_admin
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
399
+ if landing_studios is not None:
400
+ self.landing_studios = landing_studios
401
+ if lit_logger is not None:
402
+ self.lit_logger = lit_logger
403
+ if marketplace is not None:
404
+ self.marketplace = marketplace
405
+ if mmt_fault_tolerance is not None:
406
+ self.mmt_fault_tolerance = mmt_fault_tolerance
407
+ if mmt_strategy_selector is not None:
408
+ self.mmt_strategy_selector = mmt_strategy_selector
409
+ if multiple_studio_versions is not None:
410
+ self.multiple_studio_versions = multiple_studio_versions
411
+ if nerf_fs_nonpaying is not None:
412
+ self.nerf_fs_nonpaying = nerf_fs_nonpaying
413
+ if org_level_member_permissions is not None:
414
+ self.org_level_member_permissions = org_level_member_permissions
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
419
+ if plugin_distributed is not None:
420
+ self.plugin_distributed = plugin_distributed
421
+ if plugin_inference is not None:
422
+ self.plugin_inference = plugin_inference
423
+ if plugin_label_studio is not None:
424
+ self.plugin_label_studio = plugin_label_studio
425
+ if plugin_langflow is not None:
426
+ self.plugin_langflow = plugin_langflow
427
+ if plugin_python_profiler is not None:
428
+ self.plugin_python_profiler = plugin_python_profiler
429
+ if plugin_sweeps is not None:
430
+ self.plugin_sweeps = plugin_sweeps
431
+ if pricing_updates is not None:
432
+ self.pricing_updates = pricing_updates
433
+ if product_generator is not None:
434
+ self.product_generator = product_generator
435
+ if product_license is not None:
436
+ self.product_license = product_license
437
+ if project_selector is not None:
438
+ self.project_selector = project_selector
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
443
+ if restartable_jobs is not None:
444
+ self.restartable_jobs = restartable_jobs
445
+ if runnable_public_studio_page is not None:
446
+ self.runnable_public_studio_page = runnable_public_studio_page
447
+ if security_docs is not None:
448
+ self.security_docs = security_docs
449
+ if show_dev_admin is not None:
450
+ self.show_dev_admin = show_dev_admin
451
+ if slurm is not None:
452
+ self.slurm = slurm
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
457
+ if studio_config is not None:
458
+ self.studio_config = studio_config
459
+ if studio_version_visibility is not None:
460
+ self.studio_version_visibility = studio_version_visibility
461
+ if vultr is not None:
462
+ self.vultr = vultr
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
467
+
468
+ @property
469
+ def affiliate_links(self) -> 'bool':
470
+ """Gets the affiliate_links of this V1UserFeatures. # noqa: E501
471
+
472
+
473
+ :return: The affiliate_links of this V1UserFeatures. # noqa: E501
474
+ :rtype: bool
475
+ """
476
+ return self._affiliate_links
477
+
478
+ @affiliate_links.setter
479
+ def affiliate_links(self, affiliate_links: 'bool'):
480
+ """Sets the affiliate_links of this V1UserFeatures.
481
+
482
+
483
+ :param affiliate_links: The affiliate_links of this V1UserFeatures. # noqa: E501
484
+ :type: bool
485
+ """
486
+
487
+ self._affiliate_links = affiliate_links
488
+
489
+ @property
490
+ def agents_v2(self) -> 'bool':
491
+ """Gets the agents_v2 of this V1UserFeatures. # noqa: E501
492
+
493
+
494
+ :return: The agents_v2 of this V1UserFeatures. # noqa: E501
495
+ :rtype: bool
496
+ """
497
+ return self._agents_v2
498
+
499
+ @agents_v2.setter
500
+ def agents_v2(self, agents_v2: 'bool'):
501
+ """Sets the agents_v2 of this V1UserFeatures.
502
+
503
+
504
+ :param agents_v2: The agents_v2 of this V1UserFeatures. # noqa: E501
505
+ :type: bool
506
+ """
507
+
508
+ self._agents_v2 = agents_v2
509
+
510
+ @property
511
+ def ai_hub_monetization(self) -> 'bool':
512
+ """Gets the ai_hub_monetization of this V1UserFeatures. # noqa: E501
513
+
514
+
515
+ :return: The ai_hub_monetization of this V1UserFeatures. # noqa: E501
516
+ :rtype: bool
517
+ """
518
+ return self._ai_hub_monetization
519
+
520
+ @ai_hub_monetization.setter
521
+ def ai_hub_monetization(self, ai_hub_monetization: 'bool'):
522
+ """Sets the ai_hub_monetization of this V1UserFeatures.
523
+
524
+
525
+ :param ai_hub_monetization: The ai_hub_monetization of this V1UserFeatures. # noqa: E501
526
+ :type: bool
527
+ """
528
+
529
+ self._ai_hub_monetization = ai_hub_monetization
530
+
531
+ @property
532
+ def auto_fast_load(self) -> 'bool':
533
+ """Gets the auto_fast_load of this V1UserFeatures. # noqa: E501
534
+
535
+
536
+ :return: The auto_fast_load of this V1UserFeatures. # noqa: E501
537
+ :rtype: bool
538
+ """
539
+ return self._auto_fast_load
540
+
541
+ @auto_fast_load.setter
542
+ def auto_fast_load(self, auto_fast_load: 'bool'):
543
+ """Sets the auto_fast_load of this V1UserFeatures.
544
+
545
+
546
+ :param auto_fast_load: The auto_fast_load of this V1UserFeatures. # noqa: E501
547
+ :type: bool
548
+ """
549
+
550
+ self._auto_fast_load = auto_fast_load
551
+
552
+ @property
553
+ def b2c_experience(self) -> 'bool':
554
+ """Gets the b2c_experience of this V1UserFeatures. # noqa: E501
555
+
556
+
557
+ :return: The b2c_experience of this V1UserFeatures. # noqa: E501
558
+ :rtype: bool
559
+ """
560
+ return self._b2c_experience
561
+
562
+ @b2c_experience.setter
563
+ def b2c_experience(self, b2c_experience: 'bool'):
564
+ """Sets the b2c_experience of this V1UserFeatures.
565
+
566
+
567
+ :param b2c_experience: The b2c_experience of this V1UserFeatures. # noqa: E501
568
+ :type: bool
569
+ """
570
+
571
+ self._b2c_experience = b2c_experience
572
+
573
+ @property
574
+ def byo_machine_type(self) -> 'bool':
575
+ """Gets the byo_machine_type of this V1UserFeatures. # noqa: E501
576
+
577
+
578
+ :return: The byo_machine_type of this V1UserFeatures. # noqa: E501
579
+ :rtype: bool
580
+ """
581
+ return self._byo_machine_type
582
+
583
+ @byo_machine_type.setter
584
+ def byo_machine_type(self, byo_machine_type: 'bool'):
585
+ """Sets the byo_machine_type of this V1UserFeatures.
586
+
587
+
588
+ :param byo_machine_type: The byo_machine_type of this V1UserFeatures. # noqa: E501
589
+ :type: bool
590
+ """
591
+
592
+ self._byo_machine_type = byo_machine_type
593
+
594
+ @property
595
+ def cap_add(self) -> 'list[str]':
596
+ """Gets the cap_add of this V1UserFeatures. # noqa: E501
597
+
598
+
599
+ :return: The cap_add of this V1UserFeatures. # noqa: E501
600
+ :rtype: list[str]
601
+ """
602
+ return self._cap_add
603
+
604
+ @cap_add.setter
605
+ def cap_add(self, cap_add: 'list[str]'):
606
+ """Sets the cap_add of this V1UserFeatures.
607
+
608
+
609
+ :param cap_add: The cap_add of this V1UserFeatures. # noqa: E501
610
+ :type: list[str]
611
+ """
612
+
613
+ self._cap_add = cap_add
614
+
615
+ @property
616
+ def cap_drop(self) -> 'list[str]':
617
+ """Gets the cap_drop of this V1UserFeatures. # noqa: E501
618
+
619
+
620
+ :return: The cap_drop of this V1UserFeatures. # noqa: E501
621
+ :rtype: list[str]
622
+ """
623
+ return self._cap_drop
624
+
625
+ @cap_drop.setter
626
+ def cap_drop(self, cap_drop: 'list[str]'):
627
+ """Sets the cap_drop of this V1UserFeatures.
628
+
629
+
630
+ :param cap_drop: The cap_drop of this V1UserFeatures. # noqa: E501
631
+ :type: list[str]
632
+ """
633
+
634
+ self._cap_drop = cap_drop
635
+
636
+ @property
637
+ def capacity_reservation_byoc(self) -> 'bool':
638
+ """Gets the capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
639
+
640
+
641
+ :return: The capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
642
+ :rtype: bool
643
+ """
644
+ return self._capacity_reservation_byoc
645
+
646
+ @capacity_reservation_byoc.setter
647
+ def capacity_reservation_byoc(self, capacity_reservation_byoc: 'bool'):
648
+ """Sets the capacity_reservation_byoc of this V1UserFeatures.
649
+
650
+
651
+ :param capacity_reservation_byoc: The capacity_reservation_byoc of this V1UserFeatures. # noqa: E501
652
+ :type: bool
653
+ """
654
+
655
+ self._capacity_reservation_byoc = capacity_reservation_byoc
656
+
657
+ @property
658
+ def capacity_reservation_dry_run(self) -> 'bool':
659
+ """Gets the capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
660
+
661
+
662
+ :return: The capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
663
+ :rtype: bool
664
+ """
665
+ return self._capacity_reservation_dry_run
666
+
667
+ @capacity_reservation_dry_run.setter
668
+ def capacity_reservation_dry_run(self, capacity_reservation_dry_run: 'bool'):
669
+ """Sets the capacity_reservation_dry_run of this V1UserFeatures.
670
+
671
+
672
+ :param capacity_reservation_dry_run: The capacity_reservation_dry_run of this V1UserFeatures. # noqa: E501
673
+ :type: bool
674
+ """
675
+
676
+ self._capacity_reservation_dry_run = capacity_reservation_dry_run
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
+
720
+ @property
721
+ def code_tab(self) -> 'bool':
722
+ """Gets the code_tab of this V1UserFeatures. # noqa: E501
723
+
724
+
725
+ :return: The code_tab of this V1UserFeatures. # noqa: E501
726
+ :rtype: bool
727
+ """
728
+ return self._code_tab
729
+
730
+ @code_tab.setter
731
+ def code_tab(self, code_tab: 'bool'):
732
+ """Sets the code_tab of this V1UserFeatures.
733
+
734
+
735
+ :param code_tab: The code_tab of this V1UserFeatures. # noqa: E501
736
+ :type: bool
737
+ """
738
+
739
+ self._code_tab = code_tab
740
+
741
+ @property
742
+ def collab_screen_sharing(self) -> 'bool':
743
+ """Gets the collab_screen_sharing of this V1UserFeatures. # noqa: E501
744
+
745
+
746
+ :return: The collab_screen_sharing of this V1UserFeatures. # noqa: E501
747
+ :rtype: bool
748
+ """
749
+ return self._collab_screen_sharing
750
+
751
+ @collab_screen_sharing.setter
752
+ def collab_screen_sharing(self, collab_screen_sharing: 'bool'):
753
+ """Sets the collab_screen_sharing of this V1UserFeatures.
754
+
755
+
756
+ :param collab_screen_sharing: The collab_screen_sharing of this V1UserFeatures. # noqa: E501
757
+ :type: bool
758
+ """
759
+
760
+ self._collab_screen_sharing = collab_screen_sharing
761
+
762
+ @property
763
+ def control_center_monitoring(self) -> 'bool':
764
+ """Gets the control_center_monitoring of this V1UserFeatures. # noqa: E501
765
+
766
+
767
+ :return: The control_center_monitoring of this V1UserFeatures. # noqa: E501
768
+ :rtype: bool
769
+ """
770
+ return self._control_center_monitoring
771
+
772
+ @control_center_monitoring.setter
773
+ def control_center_monitoring(self, control_center_monitoring: 'bool'):
774
+ """Sets the control_center_monitoring of this V1UserFeatures.
775
+
776
+
777
+ :param control_center_monitoring: The control_center_monitoring of this V1UserFeatures. # noqa: E501
778
+ :type: bool
779
+ """
780
+
781
+ self._control_center_monitoring = control_center_monitoring
782
+
783
+ @property
784
+ def cost_attribution_settings(self) -> 'bool':
785
+ """Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
786
+
787
+
788
+ :return: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
789
+ :rtype: bool
790
+ """
791
+ return self._cost_attribution_settings
792
+
793
+ @cost_attribution_settings.setter
794
+ def cost_attribution_settings(self, cost_attribution_settings: 'bool'):
795
+ """Sets the cost_attribution_settings of this V1UserFeatures.
796
+
797
+
798
+ :param cost_attribution_settings: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
799
+ :type: bool
800
+ """
801
+
802
+ self._cost_attribution_settings = cost_attribution_settings
803
+
804
+ @property
805
+ def datasets(self) -> 'bool':
806
+ """Gets the datasets of this V1UserFeatures. # noqa: E501
807
+
808
+
809
+ :return: The datasets of this V1UserFeatures. # noqa: E501
810
+ :rtype: bool
811
+ """
812
+ return self._datasets
813
+
814
+ @datasets.setter
815
+ def datasets(self, datasets: 'bool'):
816
+ """Sets the datasets of this V1UserFeatures.
817
+
818
+
819
+ :param datasets: The datasets of this V1UserFeatures. # noqa: E501
820
+ :type: bool
821
+ """
822
+
823
+ self._datasets = datasets
824
+
825
+ @property
826
+ def default_one_cluster(self) -> 'bool':
827
+ """Gets the default_one_cluster of this V1UserFeatures. # noqa: E501
828
+
829
+
830
+ :return: The default_one_cluster of this V1UserFeatures. # noqa: E501
831
+ :rtype: bool
832
+ """
833
+ return self._default_one_cluster
834
+
835
+ @default_one_cluster.setter
836
+ def default_one_cluster(self, default_one_cluster: 'bool'):
837
+ """Sets the default_one_cluster of this V1UserFeatures.
838
+
839
+
840
+ :param default_one_cluster: The default_one_cluster of this V1UserFeatures. # noqa: E501
841
+ :type: bool
842
+ """
843
+
844
+ self._default_one_cluster = default_one_cluster
845
+
846
+ @property
847
+ def drive_v2(self) -> 'bool':
848
+ """Gets the drive_v2 of this V1UserFeatures. # noqa: E501
849
+
850
+
851
+ :return: The drive_v2 of this V1UserFeatures. # noqa: E501
852
+ :rtype: bool
853
+ """
854
+ return self._drive_v2
855
+
856
+ @drive_v2.setter
857
+ def drive_v2(self, drive_v2: 'bool'):
858
+ """Sets the drive_v2 of this V1UserFeatures.
859
+
860
+
861
+ :param drive_v2: The drive_v2 of this V1UserFeatures. # noqa: E501
862
+ :type: bool
863
+ """
864
+
865
+ self._drive_v2 = drive_v2
866
+
867
+ @property
868
+ def enterprise_compute_admin(self) -> 'bool':
869
+ """Gets the enterprise_compute_admin of this V1UserFeatures. # noqa: E501
870
+
871
+
872
+ :return: The enterprise_compute_admin of this V1UserFeatures. # noqa: E501
873
+ :rtype: bool
874
+ """
875
+ return self._enterprise_compute_admin
876
+
877
+ @enterprise_compute_admin.setter
878
+ def enterprise_compute_admin(self, enterprise_compute_admin: 'bool'):
879
+ """Sets the enterprise_compute_admin of this V1UserFeatures.
880
+
881
+
882
+ :param enterprise_compute_admin: The enterprise_compute_admin of this V1UserFeatures. # noqa: E501
883
+ :type: bool
884
+ """
885
+
886
+ self._enterprise_compute_admin = enterprise_compute_admin
887
+
888
+ @property
889
+ def f234(self) -> 'bool':
890
+ """Gets the f234 of this V1UserFeatures. # noqa: E501
891
+
892
+
893
+ :return: The f234 of this V1UserFeatures. # noqa: E501
894
+ :rtype: bool
895
+ """
896
+ return self._f234
897
+
898
+ @f234.setter
899
+ def f234(self, f234: 'bool'):
900
+ """Sets the f234 of this V1UserFeatures.
901
+
902
+
903
+ :param f234: The f234 of this V1UserFeatures. # noqa: E501
904
+ :type: bool
905
+ """
906
+
907
+ self._f234 = f234
908
+
909
+ @property
910
+ def f236(self) -> 'bool':
911
+ """Gets the f236 of this V1UserFeatures. # noqa: E501
912
+
913
+
914
+ :return: The f236 of this V1UserFeatures. # noqa: E501
915
+ :rtype: bool
916
+ """
917
+ return self._f236
918
+
919
+ @f236.setter
920
+ def f236(self, f236: 'bool'):
921
+ """Sets the f236 of this V1UserFeatures.
922
+
923
+
924
+ :param f236: The f236 of this V1UserFeatures. # noqa: E501
925
+ :type: bool
926
+ """
927
+
928
+ self._f236 = f236
929
+
930
+ @property
931
+ def f240(self) -> 'bool':
932
+ """Gets the f240 of this V1UserFeatures. # noqa: E501
933
+
934
+
935
+ :return: The f240 of this V1UserFeatures. # noqa: E501
936
+ :rtype: bool
937
+ """
938
+ return self._f240
939
+
940
+ @f240.setter
941
+ def f240(self, f240: 'bool'):
942
+ """Sets the f240 of this V1UserFeatures.
943
+
944
+
945
+ :param f240: The f240 of this V1UserFeatures. # noqa: E501
946
+ :type: bool
947
+ """
948
+
949
+ self._f240 = f240
950
+
951
+ @property
952
+ def f241(self) -> 'bool':
953
+ """Gets the f241 of this V1UserFeatures. # noqa: E501
954
+
955
+
956
+ :return: The f241 of this V1UserFeatures. # noqa: E501
957
+ :rtype: bool
958
+ """
959
+ return self._f241
960
+
961
+ @f241.setter
962
+ def f241(self, f241: 'bool'):
963
+ """Sets the f241 of this V1UserFeatures.
964
+
965
+
966
+ :param f241: The f241 of this V1UserFeatures. # noqa: E501
967
+ :type: bool
968
+ """
969
+
970
+ self._f241 = f241
971
+
972
+ @property
973
+ def f243(self) -> 'bool':
974
+ """Gets the f243 of this V1UserFeatures. # noqa: E501
975
+
976
+
977
+ :return: The f243 of this V1UserFeatures. # noqa: E501
978
+ :rtype: bool
979
+ """
980
+ return self._f243
981
+
982
+ @f243.setter
983
+ def f243(self, f243: 'bool'):
984
+ """Sets the f243 of this V1UserFeatures.
985
+
986
+
987
+ :param f243: The f243 of this V1UserFeatures. # noqa: E501
988
+ :type: bool
989
+ """
990
+
991
+ self._f243 = f243
992
+
993
+ @property
994
+ def f245(self) -> 'bool':
995
+ """Gets the f245 of this V1UserFeatures. # noqa: E501
996
+
997
+
998
+ :return: The f245 of this V1UserFeatures. # noqa: E501
999
+ :rtype: bool
1000
+ """
1001
+ return self._f245
1002
+
1003
+ @f245.setter
1004
+ def f245(self, f245: 'bool'):
1005
+ """Sets the f245 of this V1UserFeatures.
1006
+
1007
+
1008
+ :param f245: The f245 of this V1UserFeatures. # noqa: E501
1009
+ :type: bool
1010
+ """
1011
+
1012
+ self._f245 = f245
1013
+
1014
+ @property
1015
+ def f247(self) -> 'bool':
1016
+ """Gets the f247 of this V1UserFeatures. # noqa: E501
1017
+
1018
+
1019
+ :return: The f247 of this V1UserFeatures. # noqa: E501
1020
+ :rtype: bool
1021
+ """
1022
+ return self._f247
1023
+
1024
+ @f247.setter
1025
+ def f247(self, f247: 'bool'):
1026
+ """Sets the f247 of this V1UserFeatures.
1027
+
1028
+
1029
+ :param f247: The f247 of this V1UserFeatures. # noqa: E501
1030
+ :type: bool
1031
+ """
1032
+
1033
+ self._f247 = f247
1034
+
1035
+ @property
1036
+ def f250(self) -> 'bool':
1037
+ """Gets the f250 of this V1UserFeatures. # noqa: E501
1038
+
1039
+
1040
+ :return: The f250 of this V1UserFeatures. # noqa: E501
1041
+ :rtype: bool
1042
+ """
1043
+ return self._f250
1044
+
1045
+ @f250.setter
1046
+ def f250(self, f250: 'bool'):
1047
+ """Sets the f250 of this V1UserFeatures.
1048
+
1049
+
1050
+ :param f250: The f250 of this V1UserFeatures. # noqa: E501
1051
+ :type: bool
1052
+ """
1053
+
1054
+ self._f250 = f250
1055
+
1056
+ @property
1057
+ def f252(self) -> 'bool':
1058
+ """Gets the f252 of this V1UserFeatures. # noqa: E501
1059
+
1060
+
1061
+ :return: The f252 of this V1UserFeatures. # noqa: E501
1062
+ :rtype: bool
1063
+ """
1064
+ return self._f252
1065
+
1066
+ @f252.setter
1067
+ def f252(self, f252: 'bool'):
1068
+ """Sets the f252 of this V1UserFeatures.
1069
+
1070
+
1071
+ :param f252: The f252 of this V1UserFeatures. # noqa: E501
1072
+ :type: bool
1073
+ """
1074
+
1075
+ self._f252 = f252
1076
+
1077
+ @property
1078
+ def f253(self) -> 'bool':
1079
+ """Gets the f253 of this V1UserFeatures. # noqa: E501
1080
+
1081
+
1082
+ :return: The f253 of this V1UserFeatures. # noqa: E501
1083
+ :rtype: bool
1084
+ """
1085
+ return self._f253
1086
+
1087
+ @f253.setter
1088
+ def f253(self, f253: 'bool'):
1089
+ """Sets the f253 of this V1UserFeatures.
1090
+
1091
+
1092
+ :param f253: The f253 of this V1UserFeatures. # noqa: E501
1093
+ :type: bool
1094
+ """
1095
+
1096
+ self._f253 = f253
1097
+
1098
+ @property
1099
+ def f254(self) -> 'bool':
1100
+ """Gets the f254 of this V1UserFeatures. # noqa: E501
1101
+
1102
+
1103
+ :return: The f254 of this V1UserFeatures. # noqa: E501
1104
+ :rtype: bool
1105
+ """
1106
+ return self._f254
1107
+
1108
+ @f254.setter
1109
+ def f254(self, f254: 'bool'):
1110
+ """Sets the f254 of this V1UserFeatures.
1111
+
1112
+
1113
+ :param f254: The f254 of this V1UserFeatures. # noqa: E501
1114
+ :type: bool
1115
+ """
1116
+
1117
+ self._f254 = f254
1118
+
1119
+ @property
1120
+ def f258(self) -> 'bool':
1121
+ """Gets the f258 of this V1UserFeatures. # noqa: E501
1122
+
1123
+
1124
+ :return: The f258 of this V1UserFeatures. # noqa: E501
1125
+ :rtype: bool
1126
+ """
1127
+ return self._f258
1128
+
1129
+ @f258.setter
1130
+ def f258(self, f258: 'bool'):
1131
+ """Sets the f258 of this V1UserFeatures.
1132
+
1133
+
1134
+ :param f258: The f258 of this V1UserFeatures. # noqa: E501
1135
+ :type: bool
1136
+ """
1137
+
1138
+ self._f258 = f258
1139
+
1140
+ @property
1141
+ def f259(self) -> 'bool':
1142
+ """Gets the f259 of this V1UserFeatures. # noqa: E501
1143
+
1144
+
1145
+ :return: The f259 of this V1UserFeatures. # noqa: E501
1146
+ :rtype: bool
1147
+ """
1148
+ return self._f259
1149
+
1150
+ @f259.setter
1151
+ def f259(self, f259: 'bool'):
1152
+ """Sets the f259 of this V1UserFeatures.
1153
+
1154
+
1155
+ :param f259: The f259 of this V1UserFeatures. # noqa: E501
1156
+ :type: bool
1157
+ """
1158
+
1159
+ self._f259 = f259
1160
+
1161
+ @property
1162
+ def f261(self) -> 'bool':
1163
+ """Gets the f261 of this V1UserFeatures. # noqa: E501
1164
+
1165
+
1166
+ :return: The f261 of this V1UserFeatures. # noqa: E501
1167
+ :rtype: bool
1168
+ """
1169
+ return self._f261
1170
+
1171
+ @f261.setter
1172
+ def f261(self, f261: 'bool'):
1173
+ """Sets the f261 of this V1UserFeatures.
1174
+
1175
+
1176
+ :param f261: The f261 of this V1UserFeatures. # noqa: E501
1177
+ :type: bool
1178
+ """
1179
+
1180
+ self._f261 = f261
1181
+
1182
+ @property
1183
+ def f262(self) -> 'bool':
1184
+ """Gets the f262 of this V1UserFeatures. # noqa: E501
1185
+
1186
+
1187
+ :return: The f262 of this V1UserFeatures. # noqa: E501
1188
+ :rtype: bool
1189
+ """
1190
+ return self._f262
1191
+
1192
+ @f262.setter
1193
+ def f262(self, f262: 'bool'):
1194
+ """Sets the f262 of this V1UserFeatures.
1195
+
1196
+
1197
+ :param f262: The f262 of this V1UserFeatures. # noqa: E501
1198
+ :type: bool
1199
+ """
1200
+
1201
+ self._f262 = f262
1202
+
1203
+ @property
1204
+ def f265(self) -> 'bool':
1205
+ """Gets the f265 of this V1UserFeatures. # noqa: E501
1206
+
1207
+
1208
+ :return: The f265 of this V1UserFeatures. # noqa: E501
1209
+ :rtype: bool
1210
+ """
1211
+ return self._f265
1212
+
1213
+ @f265.setter
1214
+ def f265(self, f265: 'bool'):
1215
+ """Sets the f265 of this V1UserFeatures.
1216
+
1217
+
1218
+ :param f265: The f265 of this V1UserFeatures. # noqa: E501
1219
+ :type: bool
1220
+ """
1221
+
1222
+ self._f265 = f265
1223
+
1224
+ @property
1225
+ def f266(self) -> 'bool':
1226
+ """Gets the f266 of this V1UserFeatures. # noqa: E501
1227
+
1228
+
1229
+ :return: The f266 of this V1UserFeatures. # noqa: E501
1230
+ :rtype: bool
1231
+ """
1232
+ return self._f266
1233
+
1234
+ @f266.setter
1235
+ def f266(self, f266: 'bool'):
1236
+ """Sets the f266 of this V1UserFeatures.
1237
+
1238
+
1239
+ :param f266: The f266 of this V1UserFeatures. # noqa: E501
1240
+ :type: bool
1241
+ """
1242
+
1243
+ self._f266 = f266
1244
+
1245
+ @property
1246
+ def f268(self) -> 'bool':
1247
+ """Gets the f268 of this V1UserFeatures. # noqa: E501
1248
+
1249
+
1250
+ :return: The f268 of this V1UserFeatures. # noqa: E501
1251
+ :rtype: bool
1252
+ """
1253
+ return self._f268
1254
+
1255
+ @f268.setter
1256
+ def f268(self, f268: 'bool'):
1257
+ """Sets the f268 of this V1UserFeatures.
1258
+
1259
+
1260
+ :param f268: The f268 of this V1UserFeatures. # noqa: E501
1261
+ :type: bool
1262
+ """
1263
+
1264
+ self._f268 = f268
1265
+
1266
+ @property
1267
+ def f269(self) -> 'bool':
1268
+ """Gets the f269 of this V1UserFeatures. # noqa: E501
1269
+
1270
+
1271
+ :return: The f269 of this V1UserFeatures. # noqa: E501
1272
+ :rtype: bool
1273
+ """
1274
+ return self._f269
1275
+
1276
+ @f269.setter
1277
+ def f269(self, f269: 'bool'):
1278
+ """Sets the f269 of this V1UserFeatures.
1279
+
1280
+
1281
+ :param f269: The f269 of this V1UserFeatures. # noqa: E501
1282
+ :type: bool
1283
+ """
1284
+
1285
+ self._f269 = f269
1286
+
1287
+ @property
1288
+ def f270(self) -> 'bool':
1289
+ """Gets the f270 of this V1UserFeatures. # noqa: E501
1290
+
1291
+
1292
+ :return: The f270 of this V1UserFeatures. # noqa: E501
1293
+ :rtype: bool
1294
+ """
1295
+ return self._f270
1296
+
1297
+ @f270.setter
1298
+ def f270(self, f270: 'bool'):
1299
+ """Sets the f270 of this V1UserFeatures.
1300
+
1301
+
1302
+ :param f270: The f270 of this V1UserFeatures. # noqa: E501
1303
+ :type: bool
1304
+ """
1305
+
1306
+ self._f270 = f270
1307
+
1308
+ @property
1309
+ def f271(self) -> 'bool':
1310
+ """Gets the f271 of this V1UserFeatures. # noqa: E501
1311
+
1312
+
1313
+ :return: The f271 of this V1UserFeatures. # noqa: E501
1314
+ :rtype: bool
1315
+ """
1316
+ return self._f271
1317
+
1318
+ @f271.setter
1319
+ def f271(self, f271: 'bool'):
1320
+ """Sets the f271 of this V1UserFeatures.
1321
+
1322
+
1323
+ :param f271: The f271 of this V1UserFeatures. # noqa: E501
1324
+ :type: bool
1325
+ """
1326
+
1327
+ self._f271 = f271
1328
+
1329
+ @property
1330
+ def f272(self) -> 'bool':
1331
+ """Gets the f272 of this V1UserFeatures. # noqa: E501
1332
+
1333
+
1334
+ :return: The f272 of this V1UserFeatures. # noqa: E501
1335
+ :rtype: bool
1336
+ """
1337
+ return self._f272
1338
+
1339
+ @f272.setter
1340
+ def f272(self, f272: 'bool'):
1341
+ """Sets the f272 of this V1UserFeatures.
1342
+
1343
+
1344
+ :param f272: The f272 of this V1UserFeatures. # noqa: E501
1345
+ :type: bool
1346
+ """
1347
+
1348
+ self._f272 = f272
1349
+
1350
+ @property
1351
+ def f273(self) -> 'bool':
1352
+ """Gets the f273 of this V1UserFeatures. # noqa: E501
1353
+
1354
+
1355
+ :return: The f273 of this V1UserFeatures. # noqa: E501
1356
+ :rtype: bool
1357
+ """
1358
+ return self._f273
1359
+
1360
+ @f273.setter
1361
+ def f273(self, f273: 'bool'):
1362
+ """Sets the f273 of this V1UserFeatures.
1363
+
1364
+
1365
+ :param f273: The f273 of this V1UserFeatures. # noqa: E501
1366
+ :type: bool
1367
+ """
1368
+
1369
+ self._f273 = f273
1370
+
1371
+ @property
1372
+ def f274(self) -> 'bool':
1373
+ """Gets the f274 of this V1UserFeatures. # noqa: E501
1374
+
1375
+
1376
+ :return: The f274 of this V1UserFeatures. # noqa: E501
1377
+ :rtype: bool
1378
+ """
1379
+ return self._f274
1380
+
1381
+ @f274.setter
1382
+ def f274(self, f274: 'bool'):
1383
+ """Sets the f274 of this V1UserFeatures.
1384
+
1385
+
1386
+ :param f274: The f274 of this V1UserFeatures. # noqa: E501
1387
+ :type: bool
1388
+ """
1389
+
1390
+ self._f274 = f274
1391
+
1392
+ @property
1393
+ def fair_share(self) -> 'bool':
1394
+ """Gets the fair_share of this V1UserFeatures. # noqa: E501
1395
+
1396
+
1397
+ :return: The fair_share of this V1UserFeatures. # noqa: E501
1398
+ :rtype: bool
1399
+ """
1400
+ return self._fair_share
1401
+
1402
+ @fair_share.setter
1403
+ def fair_share(self, fair_share: 'bool'):
1404
+ """Sets the fair_share of this V1UserFeatures.
1405
+
1406
+
1407
+ :param fair_share: The fair_share of this V1UserFeatures. # noqa: E501
1408
+ :type: bool
1409
+ """
1410
+
1411
+ self._fair_share = fair_share
1412
+
1413
+ @property
1414
+ def featured_studios_admin(self) -> 'bool':
1415
+ """Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
1416
+
1417
+
1418
+ :return: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1419
+ :rtype: bool
1420
+ """
1421
+ return self._featured_studios_admin
1422
+
1423
+ @featured_studios_admin.setter
1424
+ def featured_studios_admin(self, featured_studios_admin: 'bool'):
1425
+ """Sets the featured_studios_admin of this V1UserFeatures.
1426
+
1427
+
1428
+ :param featured_studios_admin: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1429
+ :type: bool
1430
+ """
1431
+
1432
+ self._featured_studios_admin = featured_studios_admin
1433
+
1434
+ @property
1435
+ def job_artifacts_v2(self) -> 'bool':
1436
+ """Gets the job_artifacts_v2 of this V1UserFeatures. # noqa: E501
1437
+
1438
+
1439
+ :return: The job_artifacts_v2 of this V1UserFeatures. # noqa: E501
1440
+ :rtype: bool
1441
+ """
1442
+ return self._job_artifacts_v2
1443
+
1444
+ @job_artifacts_v2.setter
1445
+ def job_artifacts_v2(self, job_artifacts_v2: 'bool'):
1446
+ """Sets the job_artifacts_v2 of this V1UserFeatures.
1447
+
1448
+
1449
+ :param job_artifacts_v2: The job_artifacts_v2 of this V1UserFeatures. # noqa: E501
1450
+ :type: bool
1451
+ """
1452
+
1453
+ self._job_artifacts_v2 = job_artifacts_v2
1454
+
1455
+ @property
1456
+ def kubernetes_cluster_ui(self) -> 'bool':
1457
+ """Gets the kubernetes_cluster_ui of this V1UserFeatures. # noqa: E501
1458
+
1459
+
1460
+ :return: The kubernetes_cluster_ui of this V1UserFeatures. # noqa: E501
1461
+ :rtype: bool
1462
+ """
1463
+ return self._kubernetes_cluster_ui
1464
+
1465
+ @kubernetes_cluster_ui.setter
1466
+ def kubernetes_cluster_ui(self, kubernetes_cluster_ui: 'bool'):
1467
+ """Sets the kubernetes_cluster_ui of this V1UserFeatures.
1468
+
1469
+
1470
+ :param kubernetes_cluster_ui: The kubernetes_cluster_ui of this V1UserFeatures. # noqa: E501
1471
+ :type: bool
1472
+ """
1473
+
1474
+ self._kubernetes_cluster_ui = kubernetes_cluster_ui
1475
+
1476
+ @property
1477
+ def kubernetes_clusters(self) -> 'bool':
1478
+ """Gets the kubernetes_clusters of this V1UserFeatures. # noqa: E501
1479
+
1480
+
1481
+ :return: The kubernetes_clusters of this V1UserFeatures. # noqa: E501
1482
+ :rtype: bool
1483
+ """
1484
+ return self._kubernetes_clusters
1485
+
1486
+ @kubernetes_clusters.setter
1487
+ def kubernetes_clusters(self, kubernetes_clusters: 'bool'):
1488
+ """Sets the kubernetes_clusters of this V1UserFeatures.
1489
+
1490
+
1491
+ :param kubernetes_clusters: The kubernetes_clusters of this V1UserFeatures. # noqa: E501
1492
+ :type: bool
1493
+ """
1494
+
1495
+ self._kubernetes_clusters = kubernetes_clusters
1496
+
1497
+ @property
1498
+ def landing_studios(self) -> 'bool':
1499
+ """Gets the landing_studios of this V1UserFeatures. # noqa: E501
1500
+
1501
+
1502
+ :return: The landing_studios of this V1UserFeatures. # noqa: E501
1503
+ :rtype: bool
1504
+ """
1505
+ return self._landing_studios
1506
+
1507
+ @landing_studios.setter
1508
+ def landing_studios(self, landing_studios: 'bool'):
1509
+ """Sets the landing_studios of this V1UserFeatures.
1510
+
1511
+
1512
+ :param landing_studios: The landing_studios of this V1UserFeatures. # noqa: E501
1513
+ :type: bool
1514
+ """
1515
+
1516
+ self._landing_studios = landing_studios
1517
+
1518
+ @property
1519
+ def lit_logger(self) -> 'bool':
1520
+ """Gets the lit_logger of this V1UserFeatures. # noqa: E501
1521
+
1522
+
1523
+ :return: The lit_logger of this V1UserFeatures. # noqa: E501
1524
+ :rtype: bool
1525
+ """
1526
+ return self._lit_logger
1527
+
1528
+ @lit_logger.setter
1529
+ def lit_logger(self, lit_logger: 'bool'):
1530
+ """Sets the lit_logger of this V1UserFeatures.
1531
+
1532
+
1533
+ :param lit_logger: The lit_logger of this V1UserFeatures. # noqa: E501
1534
+ :type: bool
1535
+ """
1536
+
1537
+ self._lit_logger = lit_logger
1538
+
1539
+ @property
1540
+ def marketplace(self) -> 'bool':
1541
+ """Gets the marketplace of this V1UserFeatures. # noqa: E501
1542
+
1543
+
1544
+ :return: The marketplace of this V1UserFeatures. # noqa: E501
1545
+ :rtype: bool
1546
+ """
1547
+ return self._marketplace
1548
+
1549
+ @marketplace.setter
1550
+ def marketplace(self, marketplace: 'bool'):
1551
+ """Sets the marketplace of this V1UserFeatures.
1552
+
1553
+
1554
+ :param marketplace: The marketplace of this V1UserFeatures. # noqa: E501
1555
+ :type: bool
1556
+ """
1557
+
1558
+ self._marketplace = marketplace
1559
+
1560
+ @property
1561
+ def mmt_fault_tolerance(self) -> 'bool':
1562
+ """Gets the mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
1563
+
1564
+
1565
+ :return: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
1566
+ :rtype: bool
1567
+ """
1568
+ return self._mmt_fault_tolerance
1569
+
1570
+ @mmt_fault_tolerance.setter
1571
+ def mmt_fault_tolerance(self, mmt_fault_tolerance: 'bool'):
1572
+ """Sets the mmt_fault_tolerance of this V1UserFeatures.
1573
+
1574
+
1575
+ :param mmt_fault_tolerance: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
1576
+ :type: bool
1577
+ """
1578
+
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
1601
+
1602
+ @property
1603
+ def multiple_studio_versions(self) -> 'bool':
1604
+ """Gets the multiple_studio_versions of this V1UserFeatures. # noqa: E501
1605
+
1606
+
1607
+ :return: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
1608
+ :rtype: bool
1609
+ """
1610
+ return self._multiple_studio_versions
1611
+
1612
+ @multiple_studio_versions.setter
1613
+ def multiple_studio_versions(self, multiple_studio_versions: 'bool'):
1614
+ """Sets the multiple_studio_versions of this V1UserFeatures.
1615
+
1616
+
1617
+ :param multiple_studio_versions: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
1618
+ :type: bool
1619
+ """
1620
+
1621
+ self._multiple_studio_versions = multiple_studio_versions
1622
+
1623
+ @property
1624
+ def nerf_fs_nonpaying(self) -> 'bool':
1625
+ """Gets the nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1626
+
1627
+
1628
+ :return: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1629
+ :rtype: bool
1630
+ """
1631
+ return self._nerf_fs_nonpaying
1632
+
1633
+ @nerf_fs_nonpaying.setter
1634
+ def nerf_fs_nonpaying(self, nerf_fs_nonpaying: 'bool'):
1635
+ """Sets the nerf_fs_nonpaying of this V1UserFeatures.
1636
+
1637
+
1638
+ :param nerf_fs_nonpaying: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1639
+ :type: bool
1640
+ """
1641
+
1642
+ self._nerf_fs_nonpaying = nerf_fs_nonpaying
1643
+
1644
+ @property
1645
+ def org_level_member_permissions(self) -> 'bool':
1646
+ """Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
1647
+
1648
+
1649
+ :return: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
1650
+ :rtype: bool
1651
+ """
1652
+ return self._org_level_member_permissions
1653
+
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.
1657
+
1658
+
1659
+ :param org_level_member_permissions: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
1660
+ :type: bool
1661
+ """
1662
+
1663
+ self._org_level_member_permissions = org_level_member_permissions
1664
+
1665
+ @property
1666
+ def org_usage_limits(self) -> 'bool':
1667
+ """Gets the org_usage_limits of this V1UserFeatures. # noqa: E501
1668
+
1669
+
1670
+ :return: The org_usage_limits of this V1UserFeatures. # noqa: E501
1671
+ :rtype: bool
1672
+ """
1673
+ return self._org_usage_limits
1674
+
1675
+ @org_usage_limits.setter
1676
+ def org_usage_limits(self, org_usage_limits: 'bool'):
1677
+ """Sets the org_usage_limits of this V1UserFeatures.
1678
+
1679
+
1680
+ :param org_usage_limits: The org_usage_limits of this V1UserFeatures. # noqa: E501
1681
+ :type: bool
1682
+ """
1683
+
1684
+ self._org_usage_limits = org_usage_limits
1685
+
1686
+ @property
1687
+ def persistent_disk(self) -> 'bool':
1688
+ """Gets the persistent_disk of this V1UserFeatures. # noqa: E501
1689
+
1690
+
1691
+ :return: The persistent_disk of this V1UserFeatures. # noqa: E501
1692
+ :rtype: bool
1693
+ """
1694
+ return self._persistent_disk
1695
+
1696
+ @persistent_disk.setter
1697
+ def persistent_disk(self, persistent_disk: 'bool'):
1698
+ """Sets the persistent_disk of this V1UserFeatures.
1699
+
1700
+
1701
+ :param persistent_disk: The persistent_disk of this V1UserFeatures. # noqa: E501
1702
+ :type: bool
1703
+ """
1704
+
1705
+ self._persistent_disk = persistent_disk
1706
+
1707
+ @property
1708
+ def plugin_distributed(self) -> 'bool':
1709
+ """Gets the plugin_distributed of this V1UserFeatures. # noqa: E501
1710
+
1711
+
1712
+ :return: The plugin_distributed of this V1UserFeatures. # noqa: E501
1713
+ :rtype: bool
1714
+ """
1715
+ return self._plugin_distributed
1716
+
1717
+ @plugin_distributed.setter
1718
+ def plugin_distributed(self, plugin_distributed: 'bool'):
1719
+ """Sets the plugin_distributed of this V1UserFeatures.
1720
+
1721
+
1722
+ :param plugin_distributed: The plugin_distributed of this V1UserFeatures. # noqa: E501
1723
+ :type: bool
1724
+ """
1725
+
1726
+ self._plugin_distributed = plugin_distributed
1727
+
1728
+ @property
1729
+ def plugin_inference(self) -> 'bool':
1730
+ """Gets the plugin_inference of this V1UserFeatures. # noqa: E501
1731
+
1732
+
1733
+ :return: The plugin_inference of this V1UserFeatures. # noqa: E501
1734
+ :rtype: bool
1735
+ """
1736
+ return self._plugin_inference
1737
+
1738
+ @plugin_inference.setter
1739
+ def plugin_inference(self, plugin_inference: 'bool'):
1740
+ """Sets the plugin_inference of this V1UserFeatures.
1741
+
1742
+
1743
+ :param plugin_inference: The plugin_inference of this V1UserFeatures. # noqa: E501
1744
+ :type: bool
1745
+ """
1746
+
1747
+ self._plugin_inference = plugin_inference
1748
+
1749
+ @property
1750
+ def plugin_label_studio(self) -> 'bool':
1751
+ """Gets the plugin_label_studio of this V1UserFeatures. # noqa: E501
1752
+
1753
+
1754
+ :return: The plugin_label_studio of this V1UserFeatures. # noqa: E501
1755
+ :rtype: bool
1756
+ """
1757
+ return self._plugin_label_studio
1758
+
1759
+ @plugin_label_studio.setter
1760
+ def plugin_label_studio(self, plugin_label_studio: 'bool'):
1761
+ """Sets the plugin_label_studio of this V1UserFeatures.
1762
+
1763
+
1764
+ :param plugin_label_studio: The plugin_label_studio of this V1UserFeatures. # noqa: E501
1765
+ :type: bool
1766
+ """
1767
+
1768
+ self._plugin_label_studio = plugin_label_studio
1769
+
1770
+ @property
1771
+ def plugin_langflow(self) -> 'bool':
1772
+ """Gets the plugin_langflow of this V1UserFeatures. # noqa: E501
1773
+
1774
+
1775
+ :return: The plugin_langflow of this V1UserFeatures. # noqa: E501
1776
+ :rtype: bool
1777
+ """
1778
+ return self._plugin_langflow
1779
+
1780
+ @plugin_langflow.setter
1781
+ def plugin_langflow(self, plugin_langflow: 'bool'):
1782
+ """Sets the plugin_langflow of this V1UserFeatures.
1783
+
1784
+
1785
+ :param plugin_langflow: The plugin_langflow of this V1UserFeatures. # noqa: E501
1786
+ :type: bool
1787
+ """
1788
+
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
1832
+
1833
+ @property
1834
+ def pricing_updates(self) -> 'bool':
1835
+ """Gets the pricing_updates of this V1UserFeatures. # noqa: E501
1836
+
1837
+
1838
+ :return: The pricing_updates of this V1UserFeatures. # noqa: E501
1839
+ :rtype: bool
1840
+ """
1841
+ return self._pricing_updates
1842
+
1843
+ @pricing_updates.setter
1844
+ def pricing_updates(self, pricing_updates: 'bool'):
1845
+ """Sets the pricing_updates of this V1UserFeatures.
1846
+
1847
+
1848
+ :param pricing_updates: The pricing_updates of this V1UserFeatures. # noqa: E501
1849
+ :type: bool
1850
+ """
1851
+
1852
+ self._pricing_updates = pricing_updates
1853
+
1854
+ @property
1855
+ def product_generator(self) -> 'bool':
1856
+ """Gets the product_generator of this V1UserFeatures. # noqa: E501
1857
+
1858
+
1859
+ :return: The product_generator of this V1UserFeatures. # noqa: E501
1860
+ :rtype: bool
1861
+ """
1862
+ return self._product_generator
1863
+
1864
+ @product_generator.setter
1865
+ def product_generator(self, product_generator: 'bool'):
1866
+ """Sets the product_generator of this V1UserFeatures.
1867
+
1868
+
1869
+ :param product_generator: The product_generator of this V1UserFeatures. # noqa: E501
1870
+ :type: bool
1871
+ """
1872
+
1873
+ self._product_generator = product_generator
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
+
1896
+ @property
1897
+ def project_selector(self) -> 'bool':
1898
+ """Gets the project_selector of this V1UserFeatures. # noqa: E501
1899
+
1900
+
1901
+ :return: The project_selector of this V1UserFeatures. # noqa: E501
1902
+ :rtype: bool
1903
+ """
1904
+ return self._project_selector
1905
+
1906
+ @project_selector.setter
1907
+ def project_selector(self, project_selector: 'bool'):
1908
+ """Sets the project_selector of this V1UserFeatures.
1909
+
1910
+
1911
+ :param project_selector: The project_selector of this V1UserFeatures. # noqa: E501
1912
+ :type: bool
1913
+ """
1914
+
1915
+ self._project_selector = project_selector
1916
+
1917
+ @property
1918
+ def publish_pipelines(self) -> 'bool':
1919
+ """Gets the publish_pipelines of this V1UserFeatures. # noqa: E501
1920
+
1921
+
1922
+ :return: The publish_pipelines of this V1UserFeatures. # noqa: E501
1923
+ :rtype: bool
1924
+ """
1925
+ return self._publish_pipelines
1926
+
1927
+ @publish_pipelines.setter
1928
+ def publish_pipelines(self, publish_pipelines: 'bool'):
1929
+ """Sets the publish_pipelines of this V1UserFeatures.
1930
+
1931
+
1932
+ :param publish_pipelines: The publish_pipelines of this V1UserFeatures. # noqa: E501
1933
+ :type: bool
1934
+ """
1935
+
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
1958
+
1959
+ @property
1960
+ def restartable_jobs(self) -> 'bool':
1961
+ """Gets the restartable_jobs of this V1UserFeatures. # noqa: E501
1962
+
1963
+
1964
+ :return: The restartable_jobs of this V1UserFeatures. # noqa: E501
1965
+ :rtype: bool
1966
+ """
1967
+ return self._restartable_jobs
1968
+
1969
+ @restartable_jobs.setter
1970
+ def restartable_jobs(self, restartable_jobs: 'bool'):
1971
+ """Sets the restartable_jobs of this V1UserFeatures.
1972
+
1973
+
1974
+ :param restartable_jobs: The restartable_jobs of this V1UserFeatures. # noqa: E501
1975
+ :type: bool
1976
+ """
1977
+
1978
+ self._restartable_jobs = restartable_jobs
1979
+
1980
+ @property
1981
+ def runnable_public_studio_page(self) -> 'bool':
1982
+ """Gets the runnable_public_studio_page of this V1UserFeatures. # noqa: E501
1983
+
1984
+
1985
+ :return: The runnable_public_studio_page of this V1UserFeatures. # noqa: E501
1986
+ :rtype: bool
1987
+ """
1988
+ return self._runnable_public_studio_page
1989
+
1990
+ @runnable_public_studio_page.setter
1991
+ def runnable_public_studio_page(self, runnable_public_studio_page: 'bool'):
1992
+ """Sets the runnable_public_studio_page of this V1UserFeatures.
1993
+
1994
+
1995
+ :param runnable_public_studio_page: The runnable_public_studio_page of this V1UserFeatures. # noqa: E501
1996
+ :type: bool
1997
+ """
1998
+
1999
+ self._runnable_public_studio_page = runnable_public_studio_page
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
+
2022
+ @property
2023
+ def show_dev_admin(self) -> 'bool':
2024
+ """Gets the show_dev_admin of this V1UserFeatures. # noqa: E501
2025
+
2026
+
2027
+ :return: The show_dev_admin of this V1UserFeatures. # noqa: E501
2028
+ :rtype: bool
2029
+ """
2030
+ return self._show_dev_admin
2031
+
2032
+ @show_dev_admin.setter
2033
+ def show_dev_admin(self, show_dev_admin: 'bool'):
2034
+ """Sets the show_dev_admin of this V1UserFeatures.
2035
+
2036
+
2037
+ :param show_dev_admin: The show_dev_admin of this V1UserFeatures. # noqa: E501
2038
+ :type: bool
2039
+ """
2040
+
2041
+ self._show_dev_admin = show_dev_admin
2042
+
2043
+ @property
2044
+ def slurm(self) -> 'bool':
2045
+ """Gets the slurm of this V1UserFeatures. # noqa: E501
2046
+
2047
+
2048
+ :return: The slurm of this V1UserFeatures. # noqa: E501
2049
+ :rtype: bool
2050
+ """
2051
+ return self._slurm
2052
+
2053
+ @slurm.setter
2054
+ def slurm(self, slurm: 'bool'):
2055
+ """Sets the slurm of this V1UserFeatures.
2056
+
2057
+
2058
+ :param slurm: The slurm of this V1UserFeatures. # noqa: E501
2059
+ :type: bool
2060
+ """
2061
+
2062
+ self._slurm = slurm
2063
+
2064
+ @property
2065
+ def specialised_studios(self) -> 'bool':
2066
+ """Gets the specialised_studios of this V1UserFeatures. # noqa: E501
2067
+
2068
+
2069
+ :return: The specialised_studios of this V1UserFeatures. # noqa: E501
2070
+ :rtype: bool
2071
+ """
2072
+ return self._specialised_studios
2073
+
2074
+ @specialised_studios.setter
2075
+ def specialised_studios(self, specialised_studios: 'bool'):
2076
+ """Sets the specialised_studios of this V1UserFeatures.
2077
+
2078
+
2079
+ :param specialised_studios: The specialised_studios of this V1UserFeatures. # noqa: E501
2080
+ :type: bool
2081
+ """
2082
+
2083
+ self._specialised_studios = specialised_studios
2084
+
2085
+ @property
2086
+ def storage_overuse_deletion(self) -> 'bool':
2087
+ """Gets the storage_overuse_deletion of this V1UserFeatures. # noqa: E501
2088
+
2089
+
2090
+ :return: The storage_overuse_deletion of this V1UserFeatures. # noqa: E501
2091
+ :rtype: bool
2092
+ """
2093
+ return self._storage_overuse_deletion
2094
+
2095
+ @storage_overuse_deletion.setter
2096
+ def storage_overuse_deletion(self, storage_overuse_deletion: 'bool'):
2097
+ """Sets the storage_overuse_deletion of this V1UserFeatures.
2098
+
2099
+
2100
+ :param storage_overuse_deletion: The storage_overuse_deletion of this V1UserFeatures. # noqa: E501
2101
+ :type: bool
2102
+ """
2103
+
2104
+ self._storage_overuse_deletion = storage_overuse_deletion
2105
+
2106
+ @property
2107
+ def studio_config(self) -> 'bool':
2108
+ """Gets the studio_config of this V1UserFeatures. # noqa: E501
2109
+
2110
+
2111
+ :return: The studio_config of this V1UserFeatures. # noqa: E501
2112
+ :rtype: bool
2113
+ """
2114
+ return self._studio_config
2115
+
2116
+ @studio_config.setter
2117
+ def studio_config(self, studio_config: 'bool'):
2118
+ """Sets the studio_config of this V1UserFeatures.
2119
+
2120
+
2121
+ :param studio_config: The studio_config of this V1UserFeatures. # noqa: E501
2122
+ :type: bool
2123
+ """
2124
+
2125
+ self._studio_config = studio_config
2126
+
2127
+ @property
2128
+ def studio_version_visibility(self) -> 'bool':
2129
+ """Gets the studio_version_visibility of this V1UserFeatures. # noqa: E501
2130
+
2131
+
2132
+ :return: The studio_version_visibility of this V1UserFeatures. # noqa: E501
2133
+ :rtype: bool
2134
+ """
2135
+ return self._studio_version_visibility
2136
+
2137
+ @studio_version_visibility.setter
2138
+ def studio_version_visibility(self, studio_version_visibility: 'bool'):
2139
+ """Sets the studio_version_visibility of this V1UserFeatures.
2140
+
2141
+
2142
+ :param studio_version_visibility: The studio_version_visibility of this V1UserFeatures. # noqa: E501
2143
+ :type: bool
2144
+ """
2145
+
2146
+ self._studio_version_visibility = studio_version_visibility
2147
+
2148
+ @property
2149
+ def vultr(self) -> 'bool':
2150
+ """Gets the vultr of this V1UserFeatures. # noqa: E501
2151
+
2152
+
2153
+ :return: The vultr of this V1UserFeatures. # noqa: E501
2154
+ :rtype: bool
2155
+ """
2156
+ return self._vultr
2157
+
2158
+ @vultr.setter
2159
+ def vultr(self, vultr: 'bool'):
2160
+ """Sets the vultr of this V1UserFeatures.
2161
+
2162
+
2163
+ :param vultr: The vultr of this V1UserFeatures. # noqa: E501
2164
+ :type: bool
2165
+ """
2166
+
2167
+ self._vultr = vultr
2168
+
2169
+ @property
2170
+ def weka(self) -> 'bool':
2171
+ """Gets the weka of this V1UserFeatures. # noqa: E501
2172
+
2173
+
2174
+ :return: The weka of this V1UserFeatures. # noqa: E501
2175
+ :rtype: bool
2176
+ """
2177
+ return self._weka
2178
+
2179
+ @weka.setter
2180
+ def weka(self, weka: 'bool'):
2181
+ """Sets the weka of this V1UserFeatures.
2182
+
2183
+
2184
+ :param weka: The weka of this V1UserFeatures. # noqa: E501
2185
+ :type: bool
2186
+ """
2187
+
2188
+ self._weka = weka
2189
+
2190
+ @property
2191
+ def writable_s3_connections(self) -> 'bool':
2192
+ """Gets the writable_s3_connections of this V1UserFeatures. # noqa: E501
2193
+
2194
+
2195
+ :return: The writable_s3_connections of this V1UserFeatures. # noqa: E501
2196
+ :rtype: bool
2197
+ """
2198
+ return self._writable_s3_connections
2199
+
2200
+ @writable_s3_connections.setter
2201
+ def writable_s3_connections(self, writable_s3_connections: 'bool'):
2202
+ """Sets the writable_s3_connections of this V1UserFeatures.
2203
+
2204
+
2205
+ :param writable_s3_connections: The writable_s3_connections of this V1UserFeatures. # noqa: E501
2206
+ :type: bool
2207
+ """
2208
+
2209
+ self._writable_s3_connections = writable_s3_connections
2210
+
2211
+ def to_dict(self) -> dict:
2212
+ """Returns the model properties as a dict"""
2213
+ result = {}
2214
+
2215
+ for attr, _ in six.iteritems(self.swagger_types):
2216
+ value = getattr(self, attr)
2217
+ if isinstance(value, list):
2218
+ result[attr] = list(map(
2219
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
2220
+ value
2221
+ ))
2222
+ elif hasattr(value, "to_dict"):
2223
+ result[attr] = value.to_dict()
2224
+ elif isinstance(value, dict):
2225
+ result[attr] = dict(map(
2226
+ lambda item: (item[0], item[1].to_dict())
2227
+ if hasattr(item[1], "to_dict") else item,
2228
+ value.items()
2229
+ ))
2230
+ else:
2231
+ result[attr] = value
2232
+ if issubclass(V1UserFeatures, dict):
2233
+ for key, value in self.items():
2234
+ result[key] = value
2235
+
2236
+ return result
2237
+
2238
+ def to_str(self) -> str:
2239
+ """Returns the string representation of the model"""
2240
+ return pprint.pformat(self.to_dict())
2241
+
2242
+ def __repr__(self) -> str:
2243
+ """For `print` and `pprint`"""
2244
+ return self.to_str()
2245
+
2246
+ def __eq__(self, other: 'V1UserFeatures') -> bool:
2247
+ """Returns true if both objects are equal"""
2248
+ if not isinstance(other, V1UserFeatures):
2249
+ return False
2250
+
2251
+ return self.__dict__ == other.__dict__
2252
+
2253
+ def __ne__(self, other: 'V1UserFeatures') -> bool:
2254
+ """Returns true if both objects are not equal"""
2255
+ return not self == other