lightning-sdk 0.2.14__py3-none-any.whl → 0.2.16__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 (122) hide show
  1. lightning_sdk/__init__.py +1 -1
  2. lightning_sdk/api/base_studio_api.py +79 -0
  3. lightning_sdk/api/cluster_api.py +83 -1
  4. lightning_sdk/api/license_api.py +48 -0
  5. lightning_sdk/api/llm_api.py +73 -12
  6. lightning_sdk/api/studio_api.py +50 -1
  7. lightning_sdk/api/teamspace_api.py +127 -1
  8. lightning_sdk/api/utils.py +4 -0
  9. lightning_sdk/base_studio.py +83 -0
  10. lightning_sdk/cli/create.py +21 -1
  11. lightning_sdk/cli/delete.py +6 -8
  12. lightning_sdk/cli/deploy/__init__.py +0 -0
  13. lightning_sdk/cli/deploy/_auth.py +189 -0
  14. lightning_sdk/cli/deploy/devbox.py +157 -0
  15. lightning_sdk/cli/{serve.py → deploy/serve.py} +22 -281
  16. lightning_sdk/cli/download.py +69 -16
  17. lightning_sdk/cli/entrypoint.py +1 -1
  18. lightning_sdk/cli/open.py +21 -2
  19. lightning_sdk/cli/start.py +12 -3
  20. lightning_sdk/cli/teamspace_menu.py +9 -1
  21. lightning_sdk/cli/upload.py +2 -5
  22. lightning_sdk/lightning_cloud/openapi/__init__.py +29 -0
  23. lightning_sdk/lightning_cloud/openapi/api/__init__.py +1 -0
  24. lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +121 -0
  25. lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +9 -1
  26. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +226 -0
  27. lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +105 -0
  28. lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +178 -0
  29. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +984 -101
  30. lightning_sdk/lightning_cloud/openapi/api/product_license_service_api.py +525 -0
  31. lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +93 -0
  32. lightning_sdk/lightning_cloud/openapi/configuration.py +1 -1
  33. lightning_sdk/lightning_cloud/openapi/models/__init__.py +28 -0
  34. lightning_sdk/lightning_cloud/openapi/models/assistant_id_conversations_body.py +79 -1
  35. lightning_sdk/lightning_cloud/openapi/models/cloudspaces_id_body.py +53 -1
  36. lightning_sdk/lightning_cloud/openapi/models/deployment_id_alertingpolicies_body.py +331 -0
  37. lightning_sdk/lightning_cloud/openapi/models/deployment_id_alertingpolicies_body1.py +305 -0
  38. lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +53 -1
  39. lightning_sdk/lightning_cloud/openapi/models/endpoints_id_body.py +27 -1
  40. lightning_sdk/lightning_cloud/openapi/models/model_id_versions_body.py +27 -1
  41. lightning_sdk/lightning_cloud/openapi/models/models_id_body.py +123 -0
  42. lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +183 -1
  43. lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body.py +6 -6
  44. lightning_sdk/lightning_cloud/openapi/models/project_id_cloudspaces_body.py +27 -1
  45. lightning_sdk/lightning_cloud/openapi/models/project_id_storage_body.py +27 -1
  46. lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +107 -3
  47. lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py +27 -1
  48. lightning_sdk/lightning_cloud/openapi/models/update.py +79 -1
  49. lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py +55 -3
  50. lightning_sdk/lightning_cloud/openapi/models/v1_aws_direct_v1.py +53 -1
  51. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_provider.py +3 -0
  52. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +79 -1
  53. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_config.py +123 -0
  54. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +79 -1
  55. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_type.py +104 -0
  56. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_source_type.py +103 -0
  57. lightning_sdk/lightning_cloud/openapi/models/v1_cloudflare_v1.py +66 -66
  58. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +27 -1
  59. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_tagging_options.py +27 -1
  60. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_upload.py +149 -0
  61. lightning_sdk/lightning_cloud/openapi/models/v1_complete_upload.py +55 -3
  62. lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +27 -1
  63. lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +79 -1
  64. lightning_sdk/lightning_cloud/openapi/models/v1_delete_deployment_alerting_policy_response.py +175 -0
  65. lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +53 -1
  66. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_event.py +487 -0
  67. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy.py +383 -0
  68. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_frequency.py +105 -0
  69. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_operation.py +105 -0
  70. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_severity.py +106 -0
  71. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +111 -0
  72. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_api.py +27 -1
  73. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_state.py +4 -4
  74. lightning_sdk/lightning_cloud/openapi/models/v1_endpoint.py +27 -1
  75. lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +27 -1
  76. lightning_sdk/lightning_cloud/openapi/models/v1_ge_list_deployment_routing_telemetry_response.py +123 -0
  77. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_instance_open_ports_response.py +123 -0
  78. lightning_sdk/lightning_cloud/openapi/models/v1_get_deployment_routing_telemetry_content_response.py +123 -0
  79. lightning_sdk/lightning_cloud/openapi/models/v1_get_job_stats_response.py +53 -1
  80. lightning_sdk/lightning_cloud/openapi/models/v1_get_organization_storage_metadata_response.py +331 -0
  81. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_balance_response.py +1 -27
  82. lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +27 -1
  83. lightning_sdk/lightning_cloud/openapi/models/v1_job_type.py +1 -0
  84. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_alerting_events_response.py +123 -0
  85. lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_alerting_policies_response.py +175 -0
  86. lightning_sdk/lightning_cloud/openapi/models/v1_list_product_licenses_response.py +123 -0
  87. lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +27 -1
  88. lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +43 -17
  89. lightning_sdk/lightning_cloud/openapi/models/v1_modify_filesystem_volume_response.py +97 -0
  90. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +183 -1
  91. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline.py +6 -6
  92. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_state.py +111 -0
  93. lightning_sdk/lightning_cloud/openapi/models/v1_presigned_url.py +53 -1
  94. lightning_sdk/lightning_cloud/openapi/models/v1_product_license.py +409 -0
  95. lightning_sdk/lightning_cloud/openapi/models/v1_product_license_check_response.py +123 -0
  96. lightning_sdk/lightning_cloud/openapi/models/v1_project.py +27 -1
  97. lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +43 -17
  98. lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +107 -3
  99. lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +53 -1
  100. lightning_sdk/lightning_cloud/openapi/models/v1_r2_data_connection.py +53 -1
  101. lightning_sdk/lightning_cloud/openapi/models/v1_routing_telemetry.py +253 -0
  102. lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +1 -0
  103. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_type.py +2 -0
  104. lightning_sdk/lightning_cloud/openapi/models/v1_sleep_server_response.py +97 -0
  105. lightning_sdk/lightning_cloud/openapi/models/v1_trigger_filesystem_upgrade_response.py +123 -0
  106. lightning_sdk/lightning_cloud/openapi/models/v1_upload_project_artifact_response.py +27 -1
  107. lightning_sdk/lightning_cloud/openapi/models/v1_usage_report.py +79 -1
  108. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +347 -113
  109. lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py +27 -1
  110. lightning_sdk/lightning_cloud/rest_client.py +4 -0
  111. lightning_sdk/llm/llm.py +132 -40
  112. lightning_sdk/services/__init__.py +1 -1
  113. lightning_sdk/services/license.py +236 -0
  114. lightning_sdk/studio.py +62 -1
  115. lightning_sdk/teamspace.py +68 -0
  116. {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.16.dist-info}/METADATA +1 -1
  117. {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.16.dist-info}/RECORD +122 -86
  118. /lightning_sdk/services/{finetune/__init__.py → finetune_llm.py} +0 -0
  119. {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.16.dist-info}/LICENSE +0 -0
  120. {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.16.dist-info}/WHEEL +0 -0
  121. {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.16.dist-info}/entry_points.txt +0 -0
  122. {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.16.dist-info}/top_level.txt +0 -0
@@ -46,7 +46,9 @@ class V1UserFeatures(object):
46
46
  'ai_hub_monetization': 'bool',
47
47
  'auto_fast_load': 'bool',
48
48
  'auto_join_orgs': 'bool',
49
+ 'auto_top_up': 'bool',
49
50
  'b2c_experience': 'bool',
51
+ 'big_default_cpus': 'bool',
50
52
  'byoc_litcr': 'bool',
51
53
  'cap_add': 'list[str]',
52
54
  'cap_drop': 'list[str]',
@@ -54,41 +56,47 @@ class V1UserFeatures(object):
54
56
  'capacity_reservation_dry_run': 'bool',
55
57
  'chat_models': 'bool',
56
58
  'cloud_space_environment_templates': 'bool',
59
+ 'cloudy_vibe_code': 'bool',
57
60
  'code_tab': 'bool',
58
61
  'collab_screen_sharing': 'bool',
59
62
  'concurrent_gpu_limit': 'bool',
60
63
  'cost_attribution_settings': 'bool',
61
64
  'custom_app_domain': 'bool',
62
- 'custom_instance_types': 'bool',
63
65
  'datasets': 'bool',
64
66
  'default_one_cluster': 'bool',
65
67
  'deployment_alerts': 'bool',
66
68
  'deployment_persistent_disk': 'bool',
69
+ 'deployment_requests_tab': 'bool',
67
70
  'dgx_cloud': 'bool',
68
- 'doc_helper_chat': 'bool',
69
71
  'docs_agent': 'bool',
72
+ 'down_switch_machine': 'bool',
70
73
  'drive_v2': 'bool',
71
74
  'enable_storage_limits': 'bool',
72
75
  'enterprise_compute_admin': 'bool',
73
76
  'fair_share': 'bool',
74
77
  'featured_studios_admin': 'bool',
75
78
  'filestore': 'bool',
76
- 'gcp_local_disk_binding': 'bool',
79
+ 'gcs_folders': 'bool',
77
80
  'inactive_notify_delete': 'bool',
78
81
  'instant_capacity_reservation': 'bool',
79
82
  'job_artifacts_v2': 'bool',
80
83
  'lambda_labs': 'bool',
81
84
  'landing_studios': 'bool',
85
+ 'lightning_cloud': 'bool',
82
86
  'lit_logger': 'bool',
87
+ 'manage_storage_costs': 'bool',
83
88
  'marketplace': 'bool',
84
89
  'mmt_fault_tolerance': 'bool',
85
90
  'mmt_strategy_selector': 'bool',
91
+ 'multicloud_folders': 'bool',
86
92
  'multicloud_saas': 'bool',
87
93
  'multiple_studio_versions': 'bool',
94
+ 'nebius': 'bool',
95
+ 'neocloud_studios': 'bool',
88
96
  'nerf_fs_nonpaying': 'bool',
89
- 'org_admin_alerts': 'bool',
90
97
  'org_level_member_permissions': 'bool',
91
98
  'org_usage_limits': 'bool',
99
+ 'paygo_free_storage_limit_check': 'bool',
92
100
  'pipelines': 'bool',
93
101
  'plugin_distributed': 'bool',
94
102
  'plugin_inference': 'bool',
@@ -99,19 +107,20 @@ class V1UserFeatures(object):
99
107
  'plugin_sweeps': 'bool',
100
108
  'pricing_updates': 'bool',
101
109
  'product_generator': 'bool',
110
+ 'product_license': 'bool',
102
111
  'project_selector': 'bool',
103
112
  'publish_pipelines': 'bool',
104
113
  'r2_data_connections': 'bool',
105
114
  'restartable_jobs': 'bool',
106
115
  'runnable_public_studio_page': 'bool',
107
116
  'security_docs': 'bool',
117
+ 'seoul_aws_region': 'bool',
108
118
  'show_dev_admin': 'bool',
109
119
  'single_wallet': 'bool',
110
120
  'slurm': 'bool',
111
121
  'slurm_machine_selector': 'bool',
112
122
  'stop_ide_container_on_shutdown': 'bool',
113
123
  'studio_config': 'bool',
114
- 'studio_deployment': 'bool',
115
124
  'studio_on_stop': 'bool',
116
125
  'studio_version_visibility': 'bool',
117
126
  'studios_dashboard': 'bool',
@@ -130,7 +139,9 @@ class V1UserFeatures(object):
130
139
  'ai_hub_monetization': 'aiHubMonetization',
131
140
  'auto_fast_load': 'autoFastLoad',
132
141
  'auto_join_orgs': 'autoJoinOrgs',
142
+ 'auto_top_up': 'autoTopUp',
133
143
  'b2c_experience': 'b2cExperience',
144
+ 'big_default_cpus': 'bigDefaultCpus',
134
145
  'byoc_litcr': 'byocLitcr',
135
146
  'cap_add': 'capAdd',
136
147
  'cap_drop': 'capDrop',
@@ -138,41 +149,47 @@ class V1UserFeatures(object):
138
149
  'capacity_reservation_dry_run': 'capacityReservationDryRun',
139
150
  'chat_models': 'chatModels',
140
151
  'cloud_space_environment_templates': 'cloudSpaceEnvironmentTemplates',
152
+ 'cloudy_vibe_code': 'cloudyVibeCode',
141
153
  'code_tab': 'codeTab',
142
154
  'collab_screen_sharing': 'collabScreenSharing',
143
155
  'concurrent_gpu_limit': 'concurrentGpuLimit',
144
156
  'cost_attribution_settings': 'costAttributionSettings',
145
157
  'custom_app_domain': 'customAppDomain',
146
- 'custom_instance_types': 'customInstanceTypes',
147
158
  'datasets': 'datasets',
148
159
  'default_one_cluster': 'defaultOneCluster',
149
160
  'deployment_alerts': 'deploymentAlerts',
150
161
  'deployment_persistent_disk': 'deploymentPersistentDisk',
162
+ 'deployment_requests_tab': 'deploymentRequestsTab',
151
163
  'dgx_cloud': 'dgxCloud',
152
- 'doc_helper_chat': 'docHelperChat',
153
164
  'docs_agent': 'docsAgent',
165
+ 'down_switch_machine': 'downSwitchMachine',
154
166
  'drive_v2': 'driveV2',
155
167
  'enable_storage_limits': 'enableStorageLimits',
156
168
  'enterprise_compute_admin': 'enterpriseComputeAdmin',
157
169
  'fair_share': 'fairShare',
158
170
  'featured_studios_admin': 'featuredStudiosAdmin',
159
171
  'filestore': 'filestore',
160
- 'gcp_local_disk_binding': 'gcpLocalDiskBinding',
172
+ 'gcs_folders': 'gcsFolders',
161
173
  'inactive_notify_delete': 'inactiveNotifyDelete',
162
174
  'instant_capacity_reservation': 'instantCapacityReservation',
163
175
  'job_artifacts_v2': 'jobArtifactsV2',
164
176
  'lambda_labs': 'lambdaLabs',
165
177
  'landing_studios': 'landingStudios',
178
+ 'lightning_cloud': 'lightningCloud',
166
179
  'lit_logger': 'litLogger',
180
+ 'manage_storage_costs': 'manageStorageCosts',
167
181
  'marketplace': 'marketplace',
168
182
  'mmt_fault_tolerance': 'mmtFaultTolerance',
169
183
  'mmt_strategy_selector': 'mmtStrategySelector',
184
+ 'multicloud_folders': 'multicloudFolders',
170
185
  'multicloud_saas': 'multicloudSaas',
171
186
  'multiple_studio_versions': 'multipleStudioVersions',
187
+ 'nebius': 'nebius',
188
+ 'neocloud_studios': 'neocloudStudios',
172
189
  'nerf_fs_nonpaying': 'nerfFsNonpaying',
173
- 'org_admin_alerts': 'orgAdminAlerts',
174
190
  'org_level_member_permissions': 'orgLevelMemberPermissions',
175
191
  'org_usage_limits': 'orgUsageLimits',
192
+ 'paygo_free_storage_limit_check': 'paygoFreeStorageLimitCheck',
176
193
  'pipelines': 'pipelines',
177
194
  'plugin_distributed': 'pluginDistributed',
178
195
  'plugin_inference': 'pluginInference',
@@ -183,19 +200,20 @@ class V1UserFeatures(object):
183
200
  'plugin_sweeps': 'pluginSweeps',
184
201
  'pricing_updates': 'pricingUpdates',
185
202
  'product_generator': 'productGenerator',
203
+ 'product_license': 'productLicense',
186
204
  'project_selector': 'projectSelector',
187
205
  'publish_pipelines': 'publishPipelines',
188
206
  'r2_data_connections': 'r2DataConnections',
189
207
  'restartable_jobs': 'restartableJobs',
190
208
  'runnable_public_studio_page': 'runnablePublicStudioPage',
191
209
  'security_docs': 'securityDocs',
210
+ 'seoul_aws_region': 'seoulAwsRegion',
192
211
  'show_dev_admin': 'showDevAdmin',
193
212
  'single_wallet': 'singleWallet',
194
213
  'slurm': 'slurm',
195
214
  'slurm_machine_selector': 'slurmMachineSelector',
196
215
  'stop_ide_container_on_shutdown': 'stopIdeContainerOnShutdown',
197
216
  'studio_config': 'studioConfig',
198
- 'studio_deployment': 'studioDeployment',
199
217
  'studio_on_stop': 'studioOnStop',
200
218
  'studio_version_visibility': 'studioVersionVisibility',
201
219
  'studios_dashboard': 'studiosDashboard',
@@ -208,14 +226,16 @@ class V1UserFeatures(object):
208
226
  'weka': 'weka'
209
227
  }
210
228
 
211
- def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, b2c_experience: 'bool' =None, byoc_litcr: '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, cloud_space_environment_templates: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, concurrent_gpu_limit: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, custom_instance_types: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_alerts: 'bool' =None, deployment_persistent_disk: 'bool' =None, dgx_cloud: 'bool' =None, doc_helper_chat: 'bool' =None, docs_agent: 'bool' =None, drive_v2: 'bool' =None, enable_storage_limits: 'bool' =None, enterprise_compute_admin: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, filestore: 'bool' =None, gcp_local_disk_binding: 'bool' =None, inactive_notify_delete: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, lambda_labs: 'bool' =None, landing_studios: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multicloud_saas: 'bool' =None, multiple_studio_versions: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_admin_alerts: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, pipelines: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_service: 'bool' =None, plugin_sweeps: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, project_selector: 'bool' =None, publish_pipelines: 'bool' =None, r2_data_connections: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, single_wallet: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, stop_ide_container_on_shutdown: 'bool' =None, studio_config: 'bool' =None, studio_deployment: 'bool' =None, studio_on_stop: 'bool' =None, studio_version_visibility: 'bool' =None, studios_dashboard: 'bool' =None, studios_dashboard_system_metrics: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, voltage_park: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
229
+ def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, auto_top_up: 'bool' =None, b2c_experience: 'bool' =None, big_default_cpus: 'bool' =None, byoc_litcr: '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, cloud_space_environment_templates: 'bool' =None, cloudy_vibe_code: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, concurrent_gpu_limit: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_alerts: 'bool' =None, deployment_persistent_disk: 'bool' =None, deployment_requests_tab: 'bool' =None, dgx_cloud: 'bool' =None, docs_agent: 'bool' =None, down_switch_machine: 'bool' =None, drive_v2: 'bool' =None, enable_storage_limits: 'bool' =None, enterprise_compute_admin: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, filestore: 'bool' =None, gcs_folders: 'bool' =None, inactive_notify_delete: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, lambda_labs: 'bool' =None, landing_studios: 'bool' =None, lightning_cloud: 'bool' =None, lit_logger: 'bool' =None, manage_storage_costs: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multicloud_folders: 'bool' =None, multicloud_saas: 'bool' =None, multiple_studio_versions: 'bool' =None, nebius: 'bool' =None, neocloud_studios: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, paygo_free_storage_limit_check: 'bool' =None, pipelines: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_service: 'bool' =None, plugin_sweeps: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, product_license: 'bool' =None, project_selector: 'bool' =None, publish_pipelines: 'bool' =None, r2_data_connections: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, seoul_aws_region: 'bool' =None, show_dev_admin: 'bool' =None, single_wallet: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, stop_ide_container_on_shutdown: 'bool' =None, studio_config: 'bool' =None, studio_on_stop: 'bool' =None, studio_version_visibility: 'bool' =None, studios_dashboard: 'bool' =None, studios_dashboard_system_metrics: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, voltage_park: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
212
230
  """V1UserFeatures - a model defined in Swagger""" # noqa: E501
213
231
  self._affiliate_links = None
214
232
  self._agents_v2 = None
215
233
  self._ai_hub_monetization = None
216
234
  self._auto_fast_load = None
217
235
  self._auto_join_orgs = None
236
+ self._auto_top_up = None
218
237
  self._b2c_experience = None
238
+ self._big_default_cpus = None
219
239
  self._byoc_litcr = None
220
240
  self._cap_add = None
221
241
  self._cap_drop = None
@@ -223,41 +243,47 @@ class V1UserFeatures(object):
223
243
  self._capacity_reservation_dry_run = None
224
244
  self._chat_models = None
225
245
  self._cloud_space_environment_templates = None
246
+ self._cloudy_vibe_code = None
226
247
  self._code_tab = None
227
248
  self._collab_screen_sharing = None
228
249
  self._concurrent_gpu_limit = None
229
250
  self._cost_attribution_settings = None
230
251
  self._custom_app_domain = None
231
- self._custom_instance_types = None
232
252
  self._datasets = None
233
253
  self._default_one_cluster = None
234
254
  self._deployment_alerts = None
235
255
  self._deployment_persistent_disk = None
256
+ self._deployment_requests_tab = None
236
257
  self._dgx_cloud = None
237
- self._doc_helper_chat = None
238
258
  self._docs_agent = None
259
+ self._down_switch_machine = None
239
260
  self._drive_v2 = None
240
261
  self._enable_storage_limits = None
241
262
  self._enterprise_compute_admin = None
242
263
  self._fair_share = None
243
264
  self._featured_studios_admin = None
244
265
  self._filestore = None
245
- self._gcp_local_disk_binding = None
266
+ self._gcs_folders = None
246
267
  self._inactive_notify_delete = None
247
268
  self._instant_capacity_reservation = None
248
269
  self._job_artifacts_v2 = None
249
270
  self._lambda_labs = None
250
271
  self._landing_studios = None
272
+ self._lightning_cloud = None
251
273
  self._lit_logger = None
274
+ self._manage_storage_costs = None
252
275
  self._marketplace = None
253
276
  self._mmt_fault_tolerance = None
254
277
  self._mmt_strategy_selector = None
278
+ self._multicloud_folders = None
255
279
  self._multicloud_saas = None
256
280
  self._multiple_studio_versions = None
281
+ self._nebius = None
282
+ self._neocloud_studios = None
257
283
  self._nerf_fs_nonpaying = None
258
- self._org_admin_alerts = None
259
284
  self._org_level_member_permissions = None
260
285
  self._org_usage_limits = None
286
+ self._paygo_free_storage_limit_check = None
261
287
  self._pipelines = None
262
288
  self._plugin_distributed = None
263
289
  self._plugin_inference = None
@@ -268,19 +294,20 @@ class V1UserFeatures(object):
268
294
  self._plugin_sweeps = None
269
295
  self._pricing_updates = None
270
296
  self._product_generator = None
297
+ self._product_license = None
271
298
  self._project_selector = None
272
299
  self._publish_pipelines = None
273
300
  self._r2_data_connections = None
274
301
  self._restartable_jobs = None
275
302
  self._runnable_public_studio_page = None
276
303
  self._security_docs = None
304
+ self._seoul_aws_region = None
277
305
  self._show_dev_admin = None
278
306
  self._single_wallet = None
279
307
  self._slurm = None
280
308
  self._slurm_machine_selector = None
281
309
  self._stop_ide_container_on_shutdown = None
282
310
  self._studio_config = None
283
- self._studio_deployment = None
284
311
  self._studio_on_stop = None
285
312
  self._studio_version_visibility = None
286
313
  self._studios_dashboard = None
@@ -302,8 +329,12 @@ class V1UserFeatures(object):
302
329
  self.auto_fast_load = auto_fast_load
303
330
  if auto_join_orgs is not None:
304
331
  self.auto_join_orgs = auto_join_orgs
332
+ if auto_top_up is not None:
333
+ self.auto_top_up = auto_top_up
305
334
  if b2c_experience is not None:
306
335
  self.b2c_experience = b2c_experience
336
+ if big_default_cpus is not None:
337
+ self.big_default_cpus = big_default_cpus
307
338
  if byoc_litcr is not None:
308
339
  self.byoc_litcr = byoc_litcr
309
340
  if cap_add is not None:
@@ -318,6 +349,8 @@ class V1UserFeatures(object):
318
349
  self.chat_models = chat_models
319
350
  if cloud_space_environment_templates is not None:
320
351
  self.cloud_space_environment_templates = cloud_space_environment_templates
352
+ if cloudy_vibe_code is not None:
353
+ self.cloudy_vibe_code = cloudy_vibe_code
321
354
  if code_tab is not None:
322
355
  self.code_tab = code_tab
323
356
  if collab_screen_sharing is not None:
@@ -328,8 +361,6 @@ class V1UserFeatures(object):
328
361
  self.cost_attribution_settings = cost_attribution_settings
329
362
  if custom_app_domain is not None:
330
363
  self.custom_app_domain = custom_app_domain
331
- if custom_instance_types is not None:
332
- self.custom_instance_types = custom_instance_types
333
364
  if datasets is not None:
334
365
  self.datasets = datasets
335
366
  if default_one_cluster is not None:
@@ -338,12 +369,14 @@ class V1UserFeatures(object):
338
369
  self.deployment_alerts = deployment_alerts
339
370
  if deployment_persistent_disk is not None:
340
371
  self.deployment_persistent_disk = deployment_persistent_disk
372
+ if deployment_requests_tab is not None:
373
+ self.deployment_requests_tab = deployment_requests_tab
341
374
  if dgx_cloud is not None:
342
375
  self.dgx_cloud = dgx_cloud
343
- if doc_helper_chat is not None:
344
- self.doc_helper_chat = doc_helper_chat
345
376
  if docs_agent is not None:
346
377
  self.docs_agent = docs_agent
378
+ if down_switch_machine is not None:
379
+ self.down_switch_machine = down_switch_machine
347
380
  if drive_v2 is not None:
348
381
  self.drive_v2 = drive_v2
349
382
  if enable_storage_limits is not None:
@@ -356,8 +389,8 @@ class V1UserFeatures(object):
356
389
  self.featured_studios_admin = featured_studios_admin
357
390
  if filestore is not None:
358
391
  self.filestore = filestore
359
- if gcp_local_disk_binding is not None:
360
- self.gcp_local_disk_binding = gcp_local_disk_binding
392
+ if gcs_folders is not None:
393
+ self.gcs_folders = gcs_folders
361
394
  if inactive_notify_delete is not None:
362
395
  self.inactive_notify_delete = inactive_notify_delete
363
396
  if instant_capacity_reservation is not None:
@@ -368,26 +401,36 @@ class V1UserFeatures(object):
368
401
  self.lambda_labs = lambda_labs
369
402
  if landing_studios is not None:
370
403
  self.landing_studios = landing_studios
404
+ if lightning_cloud is not None:
405
+ self.lightning_cloud = lightning_cloud
371
406
  if lit_logger is not None:
372
407
  self.lit_logger = lit_logger
408
+ if manage_storage_costs is not None:
409
+ self.manage_storage_costs = manage_storage_costs
373
410
  if marketplace is not None:
374
411
  self.marketplace = marketplace
375
412
  if mmt_fault_tolerance is not None:
376
413
  self.mmt_fault_tolerance = mmt_fault_tolerance
377
414
  if mmt_strategy_selector is not None:
378
415
  self.mmt_strategy_selector = mmt_strategy_selector
416
+ if multicloud_folders is not None:
417
+ self.multicloud_folders = multicloud_folders
379
418
  if multicloud_saas is not None:
380
419
  self.multicloud_saas = multicloud_saas
381
420
  if multiple_studio_versions is not None:
382
421
  self.multiple_studio_versions = multiple_studio_versions
422
+ if nebius is not None:
423
+ self.nebius = nebius
424
+ if neocloud_studios is not None:
425
+ self.neocloud_studios = neocloud_studios
383
426
  if nerf_fs_nonpaying is not None:
384
427
  self.nerf_fs_nonpaying = nerf_fs_nonpaying
385
- if org_admin_alerts is not None:
386
- self.org_admin_alerts = org_admin_alerts
387
428
  if org_level_member_permissions is not None:
388
429
  self.org_level_member_permissions = org_level_member_permissions
389
430
  if org_usage_limits is not None:
390
431
  self.org_usage_limits = org_usage_limits
432
+ if paygo_free_storage_limit_check is not None:
433
+ self.paygo_free_storage_limit_check = paygo_free_storage_limit_check
391
434
  if pipelines is not None:
392
435
  self.pipelines = pipelines
393
436
  if plugin_distributed is not None:
@@ -408,6 +451,8 @@ class V1UserFeatures(object):
408
451
  self.pricing_updates = pricing_updates
409
452
  if product_generator is not None:
410
453
  self.product_generator = product_generator
454
+ if product_license is not None:
455
+ self.product_license = product_license
411
456
  if project_selector is not None:
412
457
  self.project_selector = project_selector
413
458
  if publish_pipelines is not None:
@@ -420,6 +465,8 @@ class V1UserFeatures(object):
420
465
  self.runnable_public_studio_page = runnable_public_studio_page
421
466
  if security_docs is not None:
422
467
  self.security_docs = security_docs
468
+ if seoul_aws_region is not None:
469
+ self.seoul_aws_region = seoul_aws_region
423
470
  if show_dev_admin is not None:
424
471
  self.show_dev_admin = show_dev_admin
425
472
  if single_wallet is not None:
@@ -432,8 +479,6 @@ class V1UserFeatures(object):
432
479
  self.stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
433
480
  if studio_config is not None:
434
481
  self.studio_config = studio_config
435
- if studio_deployment is not None:
436
- self.studio_deployment = studio_deployment
437
482
  if studio_on_stop is not None:
438
483
  self.studio_on_stop = studio_on_stop
439
484
  if studio_version_visibility is not None:
@@ -560,6 +605,27 @@ class V1UserFeatures(object):
560
605
 
561
606
  self._auto_join_orgs = auto_join_orgs
562
607
 
608
+ @property
609
+ def auto_top_up(self) -> 'bool':
610
+ """Gets the auto_top_up of this V1UserFeatures. # noqa: E501
611
+
612
+
613
+ :return: The auto_top_up of this V1UserFeatures. # noqa: E501
614
+ :rtype: bool
615
+ """
616
+ return self._auto_top_up
617
+
618
+ @auto_top_up.setter
619
+ def auto_top_up(self, auto_top_up: 'bool'):
620
+ """Sets the auto_top_up of this V1UserFeatures.
621
+
622
+
623
+ :param auto_top_up: The auto_top_up of this V1UserFeatures. # noqa: E501
624
+ :type: bool
625
+ """
626
+
627
+ self._auto_top_up = auto_top_up
628
+
563
629
  @property
564
630
  def b2c_experience(self) -> 'bool':
565
631
  """Gets the b2c_experience of this V1UserFeatures. # noqa: E501
@@ -581,6 +647,27 @@ class V1UserFeatures(object):
581
647
 
582
648
  self._b2c_experience = b2c_experience
583
649
 
650
+ @property
651
+ def big_default_cpus(self) -> 'bool':
652
+ """Gets the big_default_cpus of this V1UserFeatures. # noqa: E501
653
+
654
+
655
+ :return: The big_default_cpus of this V1UserFeatures. # noqa: E501
656
+ :rtype: bool
657
+ """
658
+ return self._big_default_cpus
659
+
660
+ @big_default_cpus.setter
661
+ def big_default_cpus(self, big_default_cpus: 'bool'):
662
+ """Sets the big_default_cpus of this V1UserFeatures.
663
+
664
+
665
+ :param big_default_cpus: The big_default_cpus of this V1UserFeatures. # noqa: E501
666
+ :type: bool
667
+ """
668
+
669
+ self._big_default_cpus = big_default_cpus
670
+
584
671
  @property
585
672
  def byoc_litcr(self) -> 'bool':
586
673
  """Gets the byoc_litcr of this V1UserFeatures. # noqa: E501
@@ -728,6 +815,27 @@ class V1UserFeatures(object):
728
815
 
729
816
  self._cloud_space_environment_templates = cloud_space_environment_templates
730
817
 
818
+ @property
819
+ def cloudy_vibe_code(self) -> 'bool':
820
+ """Gets the cloudy_vibe_code of this V1UserFeatures. # noqa: E501
821
+
822
+
823
+ :return: The cloudy_vibe_code of this V1UserFeatures. # noqa: E501
824
+ :rtype: bool
825
+ """
826
+ return self._cloudy_vibe_code
827
+
828
+ @cloudy_vibe_code.setter
829
+ def cloudy_vibe_code(self, cloudy_vibe_code: 'bool'):
830
+ """Sets the cloudy_vibe_code of this V1UserFeatures.
831
+
832
+
833
+ :param cloudy_vibe_code: The cloudy_vibe_code of this V1UserFeatures. # noqa: E501
834
+ :type: bool
835
+ """
836
+
837
+ self._cloudy_vibe_code = cloudy_vibe_code
838
+
731
839
  @property
732
840
  def code_tab(self) -> 'bool':
733
841
  """Gets the code_tab of this V1UserFeatures. # noqa: E501
@@ -833,27 +941,6 @@ class V1UserFeatures(object):
833
941
 
834
942
  self._custom_app_domain = custom_app_domain
835
943
 
836
- @property
837
- def custom_instance_types(self) -> 'bool':
838
- """Gets the custom_instance_types of this V1UserFeatures. # noqa: E501
839
-
840
-
841
- :return: The custom_instance_types of this V1UserFeatures. # noqa: E501
842
- :rtype: bool
843
- """
844
- return self._custom_instance_types
845
-
846
- @custom_instance_types.setter
847
- def custom_instance_types(self, custom_instance_types: 'bool'):
848
- """Sets the custom_instance_types of this V1UserFeatures.
849
-
850
-
851
- :param custom_instance_types: The custom_instance_types of this V1UserFeatures. # noqa: E501
852
- :type: bool
853
- """
854
-
855
- self._custom_instance_types = custom_instance_types
856
-
857
944
  @property
858
945
  def datasets(self) -> 'bool':
859
946
  """Gets the datasets of this V1UserFeatures. # noqa: E501
@@ -939,46 +1026,46 @@ class V1UserFeatures(object):
939
1026
  self._deployment_persistent_disk = deployment_persistent_disk
940
1027
 
941
1028
  @property
942
- def dgx_cloud(self) -> 'bool':
943
- """Gets the dgx_cloud of this V1UserFeatures. # noqa: E501
1029
+ def deployment_requests_tab(self) -> 'bool':
1030
+ """Gets the deployment_requests_tab of this V1UserFeatures. # noqa: E501
944
1031
 
945
1032
 
946
- :return: The dgx_cloud of this V1UserFeatures. # noqa: E501
1033
+ :return: The deployment_requests_tab of this V1UserFeatures. # noqa: E501
947
1034
  :rtype: bool
948
1035
  """
949
- return self._dgx_cloud
1036
+ return self._deployment_requests_tab
950
1037
 
951
- @dgx_cloud.setter
952
- def dgx_cloud(self, dgx_cloud: 'bool'):
953
- """Sets the dgx_cloud of this V1UserFeatures.
1038
+ @deployment_requests_tab.setter
1039
+ def deployment_requests_tab(self, deployment_requests_tab: 'bool'):
1040
+ """Sets the deployment_requests_tab of this V1UserFeatures.
954
1041
 
955
1042
 
956
- :param dgx_cloud: The dgx_cloud of this V1UserFeatures. # noqa: E501
1043
+ :param deployment_requests_tab: The deployment_requests_tab of this V1UserFeatures. # noqa: E501
957
1044
  :type: bool
958
1045
  """
959
1046
 
960
- self._dgx_cloud = dgx_cloud
1047
+ self._deployment_requests_tab = deployment_requests_tab
961
1048
 
962
1049
  @property
963
- def doc_helper_chat(self) -> 'bool':
964
- """Gets the doc_helper_chat of this V1UserFeatures. # noqa: E501
1050
+ def dgx_cloud(self) -> 'bool':
1051
+ """Gets the dgx_cloud of this V1UserFeatures. # noqa: E501
965
1052
 
966
1053
 
967
- :return: The doc_helper_chat of this V1UserFeatures. # noqa: E501
1054
+ :return: The dgx_cloud of this V1UserFeatures. # noqa: E501
968
1055
  :rtype: bool
969
1056
  """
970
- return self._doc_helper_chat
1057
+ return self._dgx_cloud
971
1058
 
972
- @doc_helper_chat.setter
973
- def doc_helper_chat(self, doc_helper_chat: 'bool'):
974
- """Sets the doc_helper_chat of this V1UserFeatures.
1059
+ @dgx_cloud.setter
1060
+ def dgx_cloud(self, dgx_cloud: 'bool'):
1061
+ """Sets the dgx_cloud of this V1UserFeatures.
975
1062
 
976
1063
 
977
- :param doc_helper_chat: The doc_helper_chat of this V1UserFeatures. # noqa: E501
1064
+ :param dgx_cloud: The dgx_cloud of this V1UserFeatures. # noqa: E501
978
1065
  :type: bool
979
1066
  """
980
1067
 
981
- self._doc_helper_chat = doc_helper_chat
1068
+ self._dgx_cloud = dgx_cloud
982
1069
 
983
1070
  @property
984
1071
  def docs_agent(self) -> 'bool':
@@ -1001,6 +1088,27 @@ class V1UserFeatures(object):
1001
1088
 
1002
1089
  self._docs_agent = docs_agent
1003
1090
 
1091
+ @property
1092
+ def down_switch_machine(self) -> 'bool':
1093
+ """Gets the down_switch_machine of this V1UserFeatures. # noqa: E501
1094
+
1095
+
1096
+ :return: The down_switch_machine of this V1UserFeatures. # noqa: E501
1097
+ :rtype: bool
1098
+ """
1099
+ return self._down_switch_machine
1100
+
1101
+ @down_switch_machine.setter
1102
+ def down_switch_machine(self, down_switch_machine: 'bool'):
1103
+ """Sets the down_switch_machine of this V1UserFeatures.
1104
+
1105
+
1106
+ :param down_switch_machine: The down_switch_machine of this V1UserFeatures. # noqa: E501
1107
+ :type: bool
1108
+ """
1109
+
1110
+ self._down_switch_machine = down_switch_machine
1111
+
1004
1112
  @property
1005
1113
  def drive_v2(self) -> 'bool':
1006
1114
  """Gets the drive_v2 of this V1UserFeatures. # noqa: E501
@@ -1128,25 +1236,25 @@ class V1UserFeatures(object):
1128
1236
  self._filestore = filestore
1129
1237
 
1130
1238
  @property
1131
- def gcp_local_disk_binding(self) -> 'bool':
1132
- """Gets the gcp_local_disk_binding of this V1UserFeatures. # noqa: E501
1239
+ def gcs_folders(self) -> 'bool':
1240
+ """Gets the gcs_folders of this V1UserFeatures. # noqa: E501
1133
1241
 
1134
1242
 
1135
- :return: The gcp_local_disk_binding of this V1UserFeatures. # noqa: E501
1243
+ :return: The gcs_folders of this V1UserFeatures. # noqa: E501
1136
1244
  :rtype: bool
1137
1245
  """
1138
- return self._gcp_local_disk_binding
1246
+ return self._gcs_folders
1139
1247
 
1140
- @gcp_local_disk_binding.setter
1141
- def gcp_local_disk_binding(self, gcp_local_disk_binding: 'bool'):
1142
- """Sets the gcp_local_disk_binding of this V1UserFeatures.
1248
+ @gcs_folders.setter
1249
+ def gcs_folders(self, gcs_folders: 'bool'):
1250
+ """Sets the gcs_folders of this V1UserFeatures.
1143
1251
 
1144
1252
 
1145
- :param gcp_local_disk_binding: The gcp_local_disk_binding of this V1UserFeatures. # noqa: E501
1253
+ :param gcs_folders: The gcs_folders of this V1UserFeatures. # noqa: E501
1146
1254
  :type: bool
1147
1255
  """
1148
1256
 
1149
- self._gcp_local_disk_binding = gcp_local_disk_binding
1257
+ self._gcs_folders = gcs_folders
1150
1258
 
1151
1259
  @property
1152
1260
  def inactive_notify_delete(self) -> 'bool':
@@ -1253,6 +1361,27 @@ class V1UserFeatures(object):
1253
1361
 
1254
1362
  self._landing_studios = landing_studios
1255
1363
 
1364
+ @property
1365
+ def lightning_cloud(self) -> 'bool':
1366
+ """Gets the lightning_cloud of this V1UserFeatures. # noqa: E501
1367
+
1368
+
1369
+ :return: The lightning_cloud of this V1UserFeatures. # noqa: E501
1370
+ :rtype: bool
1371
+ """
1372
+ return self._lightning_cloud
1373
+
1374
+ @lightning_cloud.setter
1375
+ def lightning_cloud(self, lightning_cloud: 'bool'):
1376
+ """Sets the lightning_cloud of this V1UserFeatures.
1377
+
1378
+
1379
+ :param lightning_cloud: The lightning_cloud of this V1UserFeatures. # noqa: E501
1380
+ :type: bool
1381
+ """
1382
+
1383
+ self._lightning_cloud = lightning_cloud
1384
+
1256
1385
  @property
1257
1386
  def lit_logger(self) -> 'bool':
1258
1387
  """Gets the lit_logger of this V1UserFeatures. # noqa: E501
@@ -1274,6 +1403,27 @@ class V1UserFeatures(object):
1274
1403
 
1275
1404
  self._lit_logger = lit_logger
1276
1405
 
1406
+ @property
1407
+ def manage_storage_costs(self) -> 'bool':
1408
+ """Gets the manage_storage_costs of this V1UserFeatures. # noqa: E501
1409
+
1410
+
1411
+ :return: The manage_storage_costs of this V1UserFeatures. # noqa: E501
1412
+ :rtype: bool
1413
+ """
1414
+ return self._manage_storage_costs
1415
+
1416
+ @manage_storage_costs.setter
1417
+ def manage_storage_costs(self, manage_storage_costs: 'bool'):
1418
+ """Sets the manage_storage_costs of this V1UserFeatures.
1419
+
1420
+
1421
+ :param manage_storage_costs: The manage_storage_costs of this V1UserFeatures. # noqa: E501
1422
+ :type: bool
1423
+ """
1424
+
1425
+ self._manage_storage_costs = manage_storage_costs
1426
+
1277
1427
  @property
1278
1428
  def marketplace(self) -> 'bool':
1279
1429
  """Gets the marketplace of this V1UserFeatures. # noqa: E501
@@ -1337,6 +1487,27 @@ class V1UserFeatures(object):
1337
1487
 
1338
1488
  self._mmt_strategy_selector = mmt_strategy_selector
1339
1489
 
1490
+ @property
1491
+ def multicloud_folders(self) -> 'bool':
1492
+ """Gets the multicloud_folders of this V1UserFeatures. # noqa: E501
1493
+
1494
+
1495
+ :return: The multicloud_folders of this V1UserFeatures. # noqa: E501
1496
+ :rtype: bool
1497
+ """
1498
+ return self._multicloud_folders
1499
+
1500
+ @multicloud_folders.setter
1501
+ def multicloud_folders(self, multicloud_folders: 'bool'):
1502
+ """Sets the multicloud_folders of this V1UserFeatures.
1503
+
1504
+
1505
+ :param multicloud_folders: The multicloud_folders of this V1UserFeatures. # noqa: E501
1506
+ :type: bool
1507
+ """
1508
+
1509
+ self._multicloud_folders = multicloud_folders
1510
+
1340
1511
  @property
1341
1512
  def multicloud_saas(self) -> 'bool':
1342
1513
  """Gets the multicloud_saas of this V1UserFeatures. # noqa: E501
@@ -1380,46 +1551,67 @@ class V1UserFeatures(object):
1380
1551
  self._multiple_studio_versions = multiple_studio_versions
1381
1552
 
1382
1553
  @property
1383
- def nerf_fs_nonpaying(self) -> 'bool':
1384
- """Gets the nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1554
+ def nebius(self) -> 'bool':
1555
+ """Gets the nebius of this V1UserFeatures. # noqa: E501
1385
1556
 
1386
1557
 
1387
- :return: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1558
+ :return: The nebius of this V1UserFeatures. # noqa: E501
1388
1559
  :rtype: bool
1389
1560
  """
1390
- return self._nerf_fs_nonpaying
1561
+ return self._nebius
1391
1562
 
1392
- @nerf_fs_nonpaying.setter
1393
- def nerf_fs_nonpaying(self, nerf_fs_nonpaying: 'bool'):
1394
- """Sets the nerf_fs_nonpaying of this V1UserFeatures.
1563
+ @nebius.setter
1564
+ def nebius(self, nebius: 'bool'):
1565
+ """Sets the nebius of this V1UserFeatures.
1395
1566
 
1396
1567
 
1397
- :param nerf_fs_nonpaying: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1568
+ :param nebius: The nebius of this V1UserFeatures. # noqa: E501
1398
1569
  :type: bool
1399
1570
  """
1400
1571
 
1401
- self._nerf_fs_nonpaying = nerf_fs_nonpaying
1572
+ self._nebius = nebius
1573
+
1574
+ @property
1575
+ def neocloud_studios(self) -> 'bool':
1576
+ """Gets the neocloud_studios of this V1UserFeatures. # noqa: E501
1577
+
1578
+
1579
+ :return: The neocloud_studios of this V1UserFeatures. # noqa: E501
1580
+ :rtype: bool
1581
+ """
1582
+ return self._neocloud_studios
1583
+
1584
+ @neocloud_studios.setter
1585
+ def neocloud_studios(self, neocloud_studios: 'bool'):
1586
+ """Sets the neocloud_studios of this V1UserFeatures.
1587
+
1588
+
1589
+ :param neocloud_studios: The neocloud_studios of this V1UserFeatures. # noqa: E501
1590
+ :type: bool
1591
+ """
1592
+
1593
+ self._neocloud_studios = neocloud_studios
1402
1594
 
1403
1595
  @property
1404
- def org_admin_alerts(self) -> 'bool':
1405
- """Gets the org_admin_alerts of this V1UserFeatures. # noqa: E501
1596
+ def nerf_fs_nonpaying(self) -> 'bool':
1597
+ """Gets the nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1406
1598
 
1407
1599
 
1408
- :return: The org_admin_alerts of this V1UserFeatures. # noqa: E501
1600
+ :return: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1409
1601
  :rtype: bool
1410
1602
  """
1411
- return self._org_admin_alerts
1603
+ return self._nerf_fs_nonpaying
1412
1604
 
1413
- @org_admin_alerts.setter
1414
- def org_admin_alerts(self, org_admin_alerts: 'bool'):
1415
- """Sets the org_admin_alerts of this V1UserFeatures.
1605
+ @nerf_fs_nonpaying.setter
1606
+ def nerf_fs_nonpaying(self, nerf_fs_nonpaying: 'bool'):
1607
+ """Sets the nerf_fs_nonpaying of this V1UserFeatures.
1416
1608
 
1417
1609
 
1418
- :param org_admin_alerts: The org_admin_alerts of this V1UserFeatures. # noqa: E501
1610
+ :param nerf_fs_nonpaying: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
1419
1611
  :type: bool
1420
1612
  """
1421
1613
 
1422
- self._org_admin_alerts = org_admin_alerts
1614
+ self._nerf_fs_nonpaying = nerf_fs_nonpaying
1423
1615
 
1424
1616
  @property
1425
1617
  def org_level_member_permissions(self) -> 'bool':
@@ -1463,6 +1655,27 @@ class V1UserFeatures(object):
1463
1655
 
1464
1656
  self._org_usage_limits = org_usage_limits
1465
1657
 
1658
+ @property
1659
+ def paygo_free_storage_limit_check(self) -> 'bool':
1660
+ """Gets the paygo_free_storage_limit_check of this V1UserFeatures. # noqa: E501
1661
+
1662
+
1663
+ :return: The paygo_free_storage_limit_check of this V1UserFeatures. # noqa: E501
1664
+ :rtype: bool
1665
+ """
1666
+ return self._paygo_free_storage_limit_check
1667
+
1668
+ @paygo_free_storage_limit_check.setter
1669
+ def paygo_free_storage_limit_check(self, paygo_free_storage_limit_check: 'bool'):
1670
+ """Sets the paygo_free_storage_limit_check of this V1UserFeatures.
1671
+
1672
+
1673
+ :param paygo_free_storage_limit_check: The paygo_free_storage_limit_check of this V1UserFeatures. # noqa: E501
1674
+ :type: bool
1675
+ """
1676
+
1677
+ self._paygo_free_storage_limit_check = paygo_free_storage_limit_check
1678
+
1466
1679
  @property
1467
1680
  def pipelines(self) -> 'bool':
1468
1681
  """Gets the pipelines of this V1UserFeatures. # noqa: E501
@@ -1673,6 +1886,27 @@ class V1UserFeatures(object):
1673
1886
 
1674
1887
  self._product_generator = product_generator
1675
1888
 
1889
+ @property
1890
+ def product_license(self) -> 'bool':
1891
+ """Gets the product_license of this V1UserFeatures. # noqa: E501
1892
+
1893
+
1894
+ :return: The product_license of this V1UserFeatures. # noqa: E501
1895
+ :rtype: bool
1896
+ """
1897
+ return self._product_license
1898
+
1899
+ @product_license.setter
1900
+ def product_license(self, product_license: 'bool'):
1901
+ """Sets the product_license of this V1UserFeatures.
1902
+
1903
+
1904
+ :param product_license: The product_license of this V1UserFeatures. # noqa: E501
1905
+ :type: bool
1906
+ """
1907
+
1908
+ self._product_license = product_license
1909
+
1676
1910
  @property
1677
1911
  def project_selector(self) -> 'bool':
1678
1912
  """Gets the project_selector of this V1UserFeatures. # noqa: E501
@@ -1799,6 +2033,27 @@ class V1UserFeatures(object):
1799
2033
 
1800
2034
  self._security_docs = security_docs
1801
2035
 
2036
+ @property
2037
+ def seoul_aws_region(self) -> 'bool':
2038
+ """Gets the seoul_aws_region of this V1UserFeatures. # noqa: E501
2039
+
2040
+
2041
+ :return: The seoul_aws_region of this V1UserFeatures. # noqa: E501
2042
+ :rtype: bool
2043
+ """
2044
+ return self._seoul_aws_region
2045
+
2046
+ @seoul_aws_region.setter
2047
+ def seoul_aws_region(self, seoul_aws_region: 'bool'):
2048
+ """Sets the seoul_aws_region of this V1UserFeatures.
2049
+
2050
+
2051
+ :param seoul_aws_region: The seoul_aws_region of this V1UserFeatures. # noqa: E501
2052
+ :type: bool
2053
+ """
2054
+
2055
+ self._seoul_aws_region = seoul_aws_region
2056
+
1802
2057
  @property
1803
2058
  def show_dev_admin(self) -> 'bool':
1804
2059
  """Gets the show_dev_admin of this V1UserFeatures. # noqa: E501
@@ -1925,27 +2180,6 @@ class V1UserFeatures(object):
1925
2180
 
1926
2181
  self._studio_config = studio_config
1927
2182
 
1928
- @property
1929
- def studio_deployment(self) -> 'bool':
1930
- """Gets the studio_deployment of this V1UserFeatures. # noqa: E501
1931
-
1932
-
1933
- :return: The studio_deployment of this V1UserFeatures. # noqa: E501
1934
- :rtype: bool
1935
- """
1936
- return self._studio_deployment
1937
-
1938
- @studio_deployment.setter
1939
- def studio_deployment(self, studio_deployment: 'bool'):
1940
- """Sets the studio_deployment of this V1UserFeatures.
1941
-
1942
-
1943
- :param studio_deployment: The studio_deployment of this V1UserFeatures. # noqa: E501
1944
- :type: bool
1945
- """
1946
-
1947
- self._studio_deployment = studio_deployment
1948
-
1949
2183
  @property
1950
2184
  def studio_on_stop(self) -> 'bool':
1951
2185
  """Gets the studio_on_stop of this V1UserFeatures. # noqa: E501