lightning-sdk 2025.10.14__py3-none-any.whl → 2025.10.23__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 (76) hide show
  1. lightning_sdk/__init__.py +6 -3
  2. lightning_sdk/api/base_studio_api.py +13 -9
  3. lightning_sdk/api/job_api.py +4 -1
  4. lightning_sdk/api/license_api.py +26 -59
  5. lightning_sdk/api/studio_api.py +7 -2
  6. lightning_sdk/base_studio.py +30 -17
  7. lightning_sdk/cli/base_studio/list.py +1 -3
  8. lightning_sdk/cli/entrypoint.py +11 -34
  9. lightning_sdk/cli/groups.py +7 -0
  10. lightning_sdk/cli/license/__init__.py +14 -0
  11. lightning_sdk/cli/license/get.py +15 -0
  12. lightning_sdk/cli/license/list.py +45 -0
  13. lightning_sdk/cli/license/set.py +13 -0
  14. lightning_sdk/cli/studio/connect.py +42 -92
  15. lightning_sdk/cli/studio/create.py +23 -1
  16. lightning_sdk/cli/studio/start.py +12 -2
  17. lightning_sdk/cli/utils/get_base_studio.py +24 -0
  18. lightning_sdk/cli/utils/handle_machine_and_gpus_args.py +69 -0
  19. lightning_sdk/cli/utils/logging.py +121 -0
  20. lightning_sdk/cli/utils/ssh_connection.py +1 -1
  21. lightning_sdk/constants.py +1 -0
  22. lightning_sdk/helpers.py +53 -34
  23. lightning_sdk/job/base.py +7 -0
  24. lightning_sdk/job/job.py +8 -0
  25. lightning_sdk/job/v1.py +3 -0
  26. lightning_sdk/job/v2.py +4 -0
  27. lightning_sdk/lightning_cloud/login.py +260 -10
  28. lightning_sdk/lightning_cloud/openapi/__init__.py +16 -3
  29. lightning_sdk/lightning_cloud/openapi/api/auth_service_api.py +279 -0
  30. lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +117 -0
  31. lightning_sdk/lightning_cloud/openapi/api/product_license_service_api.py +108 -108
  32. lightning_sdk/lightning_cloud/openapi/models/__init__.py +16 -3
  33. lightning_sdk/lightning_cloud/openapi/models/create_machine_request_represents_the_request_to_create_a_machine.py +27 -1
  34. lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +27 -1
  35. lightning_sdk/lightning_cloud/openapi/models/id_fork_body1.py +27 -1
  36. lightning_sdk/lightning_cloud/openapi/models/license_key_validate_body.py +123 -0
  37. lightning_sdk/lightning_cloud/openapi/models/update1.py +27 -1
  38. lightning_sdk/lightning_cloud/openapi/models/v1_create_license_request.py +175 -0
  39. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +27 -1
  40. lightning_sdk/lightning_cloud/openapi/models/v1_delete_license_response.py +97 -0
  41. lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +27 -1
  42. lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +27 -1
  43. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_metric.py +201 -0
  44. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_transfer_estimate_response.py +29 -3
  45. lightning_sdk/lightning_cloud/openapi/models/v1_incident.py +27 -1
  46. lightning_sdk/lightning_cloud/openapi/models/v1_incident_detail.py +149 -0
  47. lightning_sdk/lightning_cloud/openapi/models/v1_incident_event.py +27 -1
  48. lightning_sdk/lightning_cloud/openapi/models/v1_license.py +227 -0
  49. lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_metrics_response.py +123 -0
  50. lightning_sdk/lightning_cloud/openapi/models/{v1_list_product_licenses_response.py → v1_list_license_response.py} +16 -16
  51. lightning_sdk/lightning_cloud/openapi/models/v1_list_platform_notifications_response.py +123 -0
  52. lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +27 -1
  53. lightning_sdk/lightning_cloud/openapi/models/v1_platform_notification.py +279 -0
  54. lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_request.py +97 -0
  55. lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_response.py +123 -0
  56. lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier.py +53 -1
  57. lightning_sdk/lightning_cloud/openapi/models/v1_token_login_request.py +123 -0
  58. lightning_sdk/lightning_cloud/openapi/models/v1_token_login_response.py +123 -0
  59. lightning_sdk/lightning_cloud/openapi/models/v1_token_owner_type.py +104 -0
  60. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +139 -191
  61. lightning_sdk/lightning_cloud/openapi/models/{v1_product_license_check_response.py → v1_validate_license_response.py} +21 -21
  62. lightning_sdk/lightning_cloud/rest_client.py +48 -45
  63. lightning_sdk/machine.py +5 -0
  64. lightning_sdk/pipeline/steps.py +1 -0
  65. lightning_sdk/studio.py +55 -13
  66. lightning_sdk/utils/config.py +18 -3
  67. lightning_sdk/utils/license.py +13 -0
  68. lightning_sdk/utils/resolve.py +6 -1
  69. {lightning_sdk-2025.10.14.dist-info → lightning_sdk-2025.10.23.dist-info}/METADATA +1 -1
  70. {lightning_sdk-2025.10.14.dist-info → lightning_sdk-2025.10.23.dist-info}/RECORD +74 -54
  71. lightning_sdk/lightning_cloud/openapi/models/v1_product_license.py +0 -435
  72. lightning_sdk/services/license.py +0 -363
  73. {lightning_sdk-2025.10.14.dist-info → lightning_sdk-2025.10.23.dist-info}/LICENSE +0 -0
  74. {lightning_sdk-2025.10.14.dist-info → lightning_sdk-2025.10.23.dist-info}/WHEEL +0 -0
  75. {lightning_sdk-2025.10.14.dist-info → lightning_sdk-2025.10.23.dist-info}/entry_points.txt +0 -0
  76. {lightning_sdk-2025.10.14.dist-info → lightning_sdk-2025.10.23.dist-info}/top_level.txt +0 -0
@@ -45,7 +45,6 @@ class V1UserFeatures(object):
45
45
  'agents_v2': 'bool',
46
46
  'ai_hub_monetization': 'bool',
47
47
  'auto_fast_load': 'bool',
48
- 'auto_join_orgs': 'bool',
49
48
  'b2c_experience': 'bool',
50
49
  'byo_machine_type': 'bool',
51
50
  'cap_add': 'list[str]',
@@ -64,7 +63,6 @@ class V1UserFeatures(object):
64
63
  'deployment_persistent_disk': 'bool',
65
64
  'drive_v2': 'bool',
66
65
  'enterprise_compute_admin': 'bool',
67
- 'f227': 'bool',
68
66
  'f234': 'bool',
69
67
  'f236': 'bool',
70
68
  'f239': 'bool',
@@ -73,24 +71,25 @@ class V1UserFeatures(object):
73
71
  'f243': 'bool',
74
72
  'f245': 'bool',
75
73
  'f247': 'bool',
76
- 'f248': 'bool',
77
74
  'f250': 'bool',
78
75
  'f252': 'bool',
79
76
  'f253': 'bool',
80
77
  'f254': 'bool',
81
78
  'f255': 'bool',
82
- 'f257': 'bool',
83
79
  'f258': 'bool',
84
80
  'f259': 'bool',
85
81
  'f260': 'bool',
86
82
  'f261': 'bool',
87
83
  'f262': 'bool',
88
84
  'f263': 'bool',
89
- 'f264': 'bool',
85
+ 'f265': 'bool',
86
+ 'f266': 'bool',
87
+ 'f267': 'bool',
88
+ 'f268': 'bool',
89
+ 'f269': 'bool',
90
+ 'f270': 'bool',
90
91
  'fair_share': 'bool',
91
92
  'featured_studios_admin': 'bool',
92
- 'gcs_connections_optimized': 'bool',
93
- 'instant_capacity_reservation': 'bool',
94
93
  'job_artifacts_v2': 'bool',
95
94
  'kubernetes_cluster_ui': 'bool',
96
95
  'kubernetes_clusters': 'bool',
@@ -127,7 +126,6 @@ class V1UserFeatures(object):
127
126
  'studio_config': 'bool',
128
127
  'studio_sharing_v2': 'bool',
129
128
  'studio_version_visibility': 'bool',
130
- 'trainium2': 'bool',
131
129
  'vultr': 'bool',
132
130
  'weka': 'bool',
133
131
  'writable_s3_connections': 'bool'
@@ -138,7 +136,6 @@ class V1UserFeatures(object):
138
136
  'agents_v2': 'agentsV2',
139
137
  'ai_hub_monetization': 'aiHubMonetization',
140
138
  'auto_fast_load': 'autoFastLoad',
141
- 'auto_join_orgs': 'autoJoinOrgs',
142
139
  'b2c_experience': 'b2cExperience',
143
140
  'byo_machine_type': 'byoMachineType',
144
141
  'cap_add': 'capAdd',
@@ -157,7 +154,6 @@ class V1UserFeatures(object):
157
154
  'deployment_persistent_disk': 'deploymentPersistentDisk',
158
155
  'drive_v2': 'driveV2',
159
156
  'enterprise_compute_admin': 'enterpriseComputeAdmin',
160
- 'f227': 'f227',
161
157
  'f234': 'f234',
162
158
  'f236': 'f236',
163
159
  'f239': 'f239',
@@ -166,24 +162,25 @@ class V1UserFeatures(object):
166
162
  'f243': 'f243',
167
163
  'f245': 'f245',
168
164
  'f247': 'f247',
169
- 'f248': 'f248',
170
165
  'f250': 'f250',
171
166
  'f252': 'f252',
172
167
  'f253': 'f253',
173
168
  'f254': 'f254',
174
169
  'f255': 'f255',
175
- 'f257': 'f257',
176
170
  'f258': 'f258',
177
171
  'f259': 'f259',
178
172
  'f260': 'f260',
179
173
  'f261': 'f261',
180
174
  'f262': 'f262',
181
175
  'f263': 'f263',
182
- 'f264': 'f264',
176
+ 'f265': 'f265',
177
+ 'f266': 'f266',
178
+ 'f267': 'f267',
179
+ 'f268': 'f268',
180
+ 'f269': 'f269',
181
+ 'f270': 'f270',
183
182
  'fair_share': 'fairShare',
184
183
  'featured_studios_admin': 'featuredStudiosAdmin',
185
- 'gcs_connections_optimized': 'gcsConnectionsOptimized',
186
- 'instant_capacity_reservation': 'instantCapacityReservation',
187
184
  'job_artifacts_v2': 'jobArtifactsV2',
188
185
  'kubernetes_cluster_ui': 'kubernetesClusterUi',
189
186
  'kubernetes_clusters': 'kubernetesClusters',
@@ -220,19 +217,17 @@ class V1UserFeatures(object):
220
217
  'studio_config': 'studioConfig',
221
218
  'studio_sharing_v2': 'studioSharingV2',
222
219
  'studio_version_visibility': 'studioVersionVisibility',
223
- 'trainium2': 'trainium2',
224
220
  'vultr': 'vultr',
225
221
  'weka': 'weka',
226
222
  'writable_s3_connections': 'writableS3Connections'
227
223
  }
228
224
 
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, b2c_experience: 'bool' =None, byo_machine_type: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloudspace_schedules: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, control_center_monitoring: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_persistent_disk: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f227: 'bool' =None, f234: 'bool' =None, f236: 'bool' =None, f239: 'bool' =None, f240: 'bool' =None, f241: 'bool' =None, f243: 'bool' =None, f245: 'bool' =None, f247: 'bool' =None, f248: 'bool' =None, f250: 'bool' =None, f252: 'bool' =None, f253: 'bool' =None, f254: 'bool' =None, f255: 'bool' =None, f257: 'bool' =None, f258: 'bool' =None, f259: 'bool' =None, f260: 'bool' =None, f261: 'bool' =None, f262: 'bool' =None, f263: 'bool' =None, f264: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, gcs_connections_optimized: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, kubernetes_cluster_ui: 'bool' =None, kubernetes_clusters: 'bool' =None, landing_studios: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, model_api_dashboard: 'bool' =None, 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_sharing_v2: 'bool' =None, studio_version_visibility: 'bool' =None, trainium2: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None, writable_s3_connections: 'bool' =None): # noqa: E501
225
+ 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, custom_app_domain: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_persistent_disk: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f234: 'bool' =None, f236: 'bool' =None, f239: '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, f255: 'bool' =None, f258: 'bool' =None, f259: 'bool' =None, f260: 'bool' =None, f261: 'bool' =None, f262: 'bool' =None, f263: 'bool' =None, f265: 'bool' =None, f266: 'bool' =None, f267: 'bool' =None, f268: 'bool' =None, f269: 'bool' =None, f270: '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, model_api_dashboard: '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_sharing_v2: 'bool' =None, studio_version_visibility: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None, writable_s3_connections: 'bool' =None): # noqa: E501
230
226
  """V1UserFeatures - a model defined in Swagger""" # noqa: E501
231
227
  self._affiliate_links = None
232
228
  self._agents_v2 = None
233
229
  self._ai_hub_monetization = None
234
230
  self._auto_fast_load = None
235
- self._auto_join_orgs = None
236
231
  self._b2c_experience = None
237
232
  self._byo_machine_type = None
238
233
  self._cap_add = None
@@ -251,7 +246,6 @@ class V1UserFeatures(object):
251
246
  self._deployment_persistent_disk = None
252
247
  self._drive_v2 = None
253
248
  self._enterprise_compute_admin = None
254
- self._f227 = None
255
249
  self._f234 = None
256
250
  self._f236 = None
257
251
  self._f239 = None
@@ -260,24 +254,25 @@ class V1UserFeatures(object):
260
254
  self._f243 = None
261
255
  self._f245 = None
262
256
  self._f247 = None
263
- self._f248 = None
264
257
  self._f250 = None
265
258
  self._f252 = None
266
259
  self._f253 = None
267
260
  self._f254 = None
268
261
  self._f255 = None
269
- self._f257 = None
270
262
  self._f258 = None
271
263
  self._f259 = None
272
264
  self._f260 = None
273
265
  self._f261 = None
274
266
  self._f262 = None
275
267
  self._f263 = None
276
- self._f264 = None
268
+ self._f265 = None
269
+ self._f266 = None
270
+ self._f267 = None
271
+ self._f268 = None
272
+ self._f269 = None
273
+ self._f270 = None
277
274
  self._fair_share = None
278
275
  self._featured_studios_admin = None
279
- self._gcs_connections_optimized = None
280
- self._instant_capacity_reservation = None
281
276
  self._job_artifacts_v2 = None
282
277
  self._kubernetes_cluster_ui = None
283
278
  self._kubernetes_clusters = None
@@ -314,7 +309,6 @@ class V1UserFeatures(object):
314
309
  self._studio_config = None
315
310
  self._studio_sharing_v2 = None
316
311
  self._studio_version_visibility = None
317
- self._trainium2 = None
318
312
  self._vultr = None
319
313
  self._weka = None
320
314
  self._writable_s3_connections = None
@@ -327,8 +321,6 @@ class V1UserFeatures(object):
327
321
  self.ai_hub_monetization = ai_hub_monetization
328
322
  if auto_fast_load is not None:
329
323
  self.auto_fast_load = auto_fast_load
330
- if auto_join_orgs is not None:
331
- self.auto_join_orgs = auto_join_orgs
332
324
  if b2c_experience is not None:
333
325
  self.b2c_experience = b2c_experience
334
326
  if byo_machine_type is not None:
@@ -365,8 +357,6 @@ class V1UserFeatures(object):
365
357
  self.drive_v2 = drive_v2
366
358
  if enterprise_compute_admin is not None:
367
359
  self.enterprise_compute_admin = enterprise_compute_admin
368
- if f227 is not None:
369
- self.f227 = f227
370
360
  if f234 is not None:
371
361
  self.f234 = f234
372
362
  if f236 is not None:
@@ -383,8 +373,6 @@ class V1UserFeatures(object):
383
373
  self.f245 = f245
384
374
  if f247 is not None:
385
375
  self.f247 = f247
386
- if f248 is not None:
387
- self.f248 = f248
388
376
  if f250 is not None:
389
377
  self.f250 = f250
390
378
  if f252 is not None:
@@ -395,8 +383,6 @@ class V1UserFeatures(object):
395
383
  self.f254 = f254
396
384
  if f255 is not None:
397
385
  self.f255 = f255
398
- if f257 is not None:
399
- self.f257 = f257
400
386
  if f258 is not None:
401
387
  self.f258 = f258
402
388
  if f259 is not None:
@@ -409,16 +395,22 @@ class V1UserFeatures(object):
409
395
  self.f262 = f262
410
396
  if f263 is not None:
411
397
  self.f263 = f263
412
- if f264 is not None:
413
- self.f264 = f264
398
+ if f265 is not None:
399
+ self.f265 = f265
400
+ if f266 is not None:
401
+ self.f266 = f266
402
+ if f267 is not None:
403
+ self.f267 = f267
404
+ if f268 is not None:
405
+ self.f268 = f268
406
+ if f269 is not None:
407
+ self.f269 = f269
408
+ if f270 is not None:
409
+ self.f270 = f270
414
410
  if fair_share is not None:
415
411
  self.fair_share = fair_share
416
412
  if featured_studios_admin is not None:
417
413
  self.featured_studios_admin = featured_studios_admin
418
- if gcs_connections_optimized is not None:
419
- self.gcs_connections_optimized = gcs_connections_optimized
420
- if instant_capacity_reservation is not None:
421
- self.instant_capacity_reservation = instant_capacity_reservation
422
414
  if job_artifacts_v2 is not None:
423
415
  self.job_artifacts_v2 = job_artifacts_v2
424
416
  if kubernetes_cluster_ui is not None:
@@ -491,8 +483,6 @@ class V1UserFeatures(object):
491
483
  self.studio_sharing_v2 = studio_sharing_v2
492
484
  if studio_version_visibility is not None:
493
485
  self.studio_version_visibility = studio_version_visibility
494
- if trainium2 is not None:
495
- self.trainium2 = trainium2
496
486
  if vultr is not None:
497
487
  self.vultr = vultr
498
488
  if weka is not None:
@@ -584,27 +574,6 @@ class V1UserFeatures(object):
584
574
 
585
575
  self._auto_fast_load = auto_fast_load
586
576
 
587
- @property
588
- def auto_join_orgs(self) -> 'bool':
589
- """Gets the auto_join_orgs of this V1UserFeatures. # noqa: E501
590
-
591
-
592
- :return: The auto_join_orgs of this V1UserFeatures. # noqa: E501
593
- :rtype: bool
594
- """
595
- return self._auto_join_orgs
596
-
597
- @auto_join_orgs.setter
598
- def auto_join_orgs(self, auto_join_orgs: 'bool'):
599
- """Sets the auto_join_orgs of this V1UserFeatures.
600
-
601
-
602
- :param auto_join_orgs: The auto_join_orgs of this V1UserFeatures. # noqa: E501
603
- :type: bool
604
- """
605
-
606
- self._auto_join_orgs = auto_join_orgs
607
-
608
577
  @property
609
578
  def b2c_experience(self) -> 'bool':
610
579
  """Gets the b2c_experience of this V1UserFeatures. # noqa: E501
@@ -983,27 +952,6 @@ class V1UserFeatures(object):
983
952
 
984
953
  self._enterprise_compute_admin = enterprise_compute_admin
985
954
 
986
- @property
987
- def f227(self) -> 'bool':
988
- """Gets the f227 of this V1UserFeatures. # noqa: E501
989
-
990
-
991
- :return: The f227 of this V1UserFeatures. # noqa: E501
992
- :rtype: bool
993
- """
994
- return self._f227
995
-
996
- @f227.setter
997
- def f227(self, f227: 'bool'):
998
- """Sets the f227 of this V1UserFeatures.
999
-
1000
-
1001
- :param f227: The f227 of this V1UserFeatures. # noqa: E501
1002
- :type: bool
1003
- """
1004
-
1005
- self._f227 = f227
1006
-
1007
955
  @property
1008
956
  def f234(self) -> 'bool':
1009
957
  """Gets the f234 of this V1UserFeatures. # noqa: E501
@@ -1172,27 +1120,6 @@ class V1UserFeatures(object):
1172
1120
 
1173
1121
  self._f247 = f247
1174
1122
 
1175
- @property
1176
- def f248(self) -> 'bool':
1177
- """Gets the f248 of this V1UserFeatures. # noqa: E501
1178
-
1179
-
1180
- :return: The f248 of this V1UserFeatures. # noqa: E501
1181
- :rtype: bool
1182
- """
1183
- return self._f248
1184
-
1185
- @f248.setter
1186
- def f248(self, f248: 'bool'):
1187
- """Sets the f248 of this V1UserFeatures.
1188
-
1189
-
1190
- :param f248: The f248 of this V1UserFeatures. # noqa: E501
1191
- :type: bool
1192
- """
1193
-
1194
- self._f248 = f248
1195
-
1196
1123
  @property
1197
1124
  def f250(self) -> 'bool':
1198
1125
  """Gets the f250 of this V1UserFeatures. # noqa: E501
@@ -1298,27 +1225,6 @@ class V1UserFeatures(object):
1298
1225
 
1299
1226
  self._f255 = f255
1300
1227
 
1301
- @property
1302
- def f257(self) -> 'bool':
1303
- """Gets the f257 of this V1UserFeatures. # noqa: E501
1304
-
1305
-
1306
- :return: The f257 of this V1UserFeatures. # noqa: E501
1307
- :rtype: bool
1308
- """
1309
- return self._f257
1310
-
1311
- @f257.setter
1312
- def f257(self, f257: 'bool'):
1313
- """Sets the f257 of this V1UserFeatures.
1314
-
1315
-
1316
- :param f257: The f257 of this V1UserFeatures. # noqa: E501
1317
- :type: bool
1318
- """
1319
-
1320
- self._f257 = f257
1321
-
1322
1228
  @property
1323
1229
  def f258(self) -> 'bool':
1324
1230
  """Gets the f258 of this V1UserFeatures. # noqa: E501
@@ -1446,109 +1352,172 @@ class V1UserFeatures(object):
1446
1352
  self._f263 = f263
1447
1353
 
1448
1354
  @property
1449
- def f264(self) -> 'bool':
1450
- """Gets the f264 of this V1UserFeatures. # noqa: E501
1355
+ def f265(self) -> 'bool':
1356
+ """Gets the f265 of this V1UserFeatures. # noqa: E501
1451
1357
 
1452
1358
 
1453
- :return: The f264 of this V1UserFeatures. # noqa: E501
1359
+ :return: The f265 of this V1UserFeatures. # noqa: E501
1454
1360
  :rtype: bool
1455
1361
  """
1456
- return self._f264
1362
+ return self._f265
1457
1363
 
1458
- @f264.setter
1459
- def f264(self, f264: 'bool'):
1460
- """Sets the f264 of this V1UserFeatures.
1364
+ @f265.setter
1365
+ def f265(self, f265: 'bool'):
1366
+ """Sets the f265 of this V1UserFeatures.
1461
1367
 
1462
1368
 
1463
- :param f264: The f264 of this V1UserFeatures. # noqa: E501
1369
+ :param f265: The f265 of this V1UserFeatures. # noqa: E501
1464
1370
  :type: bool
1465
1371
  """
1466
1372
 
1467
- self._f264 = f264
1373
+ self._f265 = f265
1468
1374
 
1469
1375
  @property
1470
- def fair_share(self) -> 'bool':
1471
- """Gets the fair_share of this V1UserFeatures. # noqa: E501
1376
+ def f266(self) -> 'bool':
1377
+ """Gets the f266 of this V1UserFeatures. # noqa: E501
1472
1378
 
1473
1379
 
1474
- :return: The fair_share of this V1UserFeatures. # noqa: E501
1380
+ :return: The f266 of this V1UserFeatures. # noqa: E501
1475
1381
  :rtype: bool
1476
1382
  """
1477
- return self._fair_share
1383
+ return self._f266
1478
1384
 
1479
- @fair_share.setter
1480
- def fair_share(self, fair_share: 'bool'):
1481
- """Sets the fair_share of this V1UserFeatures.
1385
+ @f266.setter
1386
+ def f266(self, f266: 'bool'):
1387
+ """Sets the f266 of this V1UserFeatures.
1482
1388
 
1483
1389
 
1484
- :param fair_share: The fair_share of this V1UserFeatures. # noqa: E501
1390
+ :param f266: The f266 of this V1UserFeatures. # noqa: E501
1485
1391
  :type: bool
1486
1392
  """
1487
1393
 
1488
- self._fair_share = fair_share
1394
+ self._f266 = f266
1489
1395
 
1490
1396
  @property
1491
- def featured_studios_admin(self) -> 'bool':
1492
- """Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
1397
+ def f267(self) -> 'bool':
1398
+ """Gets the f267 of this V1UserFeatures. # noqa: E501
1493
1399
 
1494
1400
 
1495
- :return: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1401
+ :return: The f267 of this V1UserFeatures. # noqa: E501
1496
1402
  :rtype: bool
1497
1403
  """
1498
- return self._featured_studios_admin
1404
+ return self._f267
1499
1405
 
1500
- @featured_studios_admin.setter
1501
- def featured_studios_admin(self, featured_studios_admin: 'bool'):
1502
- """Sets the featured_studios_admin of this V1UserFeatures.
1406
+ @f267.setter
1407
+ def f267(self, f267: 'bool'):
1408
+ """Sets the f267 of this V1UserFeatures.
1503
1409
 
1504
1410
 
1505
- :param featured_studios_admin: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1411
+ :param f267: The f267 of this V1UserFeatures. # noqa: E501
1506
1412
  :type: bool
1507
1413
  """
1508
1414
 
1509
- self._featured_studios_admin = featured_studios_admin
1415
+ self._f267 = f267
1510
1416
 
1511
1417
  @property
1512
- def gcs_connections_optimized(self) -> 'bool':
1513
- """Gets the gcs_connections_optimized of this V1UserFeatures. # noqa: E501
1418
+ def f268(self) -> 'bool':
1419
+ """Gets the f268 of this V1UserFeatures. # noqa: E501
1514
1420
 
1515
1421
 
1516
- :return: The gcs_connections_optimized of this V1UserFeatures. # noqa: E501
1422
+ :return: The f268 of this V1UserFeatures. # noqa: E501
1517
1423
  :rtype: bool
1518
1424
  """
1519
- return self._gcs_connections_optimized
1425
+ return self._f268
1520
1426
 
1521
- @gcs_connections_optimized.setter
1522
- def gcs_connections_optimized(self, gcs_connections_optimized: 'bool'):
1523
- """Sets the gcs_connections_optimized of this V1UserFeatures.
1427
+ @f268.setter
1428
+ def f268(self, f268: 'bool'):
1429
+ """Sets the f268 of this V1UserFeatures.
1524
1430
 
1525
1431
 
1526
- :param gcs_connections_optimized: The gcs_connections_optimized of this V1UserFeatures. # noqa: E501
1432
+ :param f268: The f268 of this V1UserFeatures. # noqa: E501
1527
1433
  :type: bool
1528
1434
  """
1529
1435
 
1530
- self._gcs_connections_optimized = gcs_connections_optimized
1436
+ self._f268 = f268
1531
1437
 
1532
1438
  @property
1533
- def instant_capacity_reservation(self) -> 'bool':
1534
- """Gets the instant_capacity_reservation of this V1UserFeatures. # noqa: E501
1439
+ def f269(self) -> 'bool':
1440
+ """Gets the f269 of this V1UserFeatures. # noqa: E501
1535
1441
 
1536
1442
 
1537
- :return: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
1443
+ :return: The f269 of this V1UserFeatures. # noqa: E501
1538
1444
  :rtype: bool
1539
1445
  """
1540
- return self._instant_capacity_reservation
1446
+ return self._f269
1541
1447
 
1542
- @instant_capacity_reservation.setter
1543
- def instant_capacity_reservation(self, instant_capacity_reservation: 'bool'):
1544
- """Sets the instant_capacity_reservation of this V1UserFeatures.
1448
+ @f269.setter
1449
+ def f269(self, f269: 'bool'):
1450
+ """Sets the f269 of this V1UserFeatures.
1545
1451
 
1546
1452
 
1547
- :param instant_capacity_reservation: The instant_capacity_reservation of this V1UserFeatures. # noqa: E501
1453
+ :param f269: The f269 of this V1UserFeatures. # noqa: E501
1548
1454
  :type: bool
1549
1455
  """
1550
1456
 
1551
- self._instant_capacity_reservation = instant_capacity_reservation
1457
+ self._f269 = f269
1458
+
1459
+ @property
1460
+ def f270(self) -> 'bool':
1461
+ """Gets the f270 of this V1UserFeatures. # noqa: E501
1462
+
1463
+
1464
+ :return: The f270 of this V1UserFeatures. # noqa: E501
1465
+ :rtype: bool
1466
+ """
1467
+ return self._f270
1468
+
1469
+ @f270.setter
1470
+ def f270(self, f270: 'bool'):
1471
+ """Sets the f270 of this V1UserFeatures.
1472
+
1473
+
1474
+ :param f270: The f270 of this V1UserFeatures. # noqa: E501
1475
+ :type: bool
1476
+ """
1477
+
1478
+ self._f270 = f270
1479
+
1480
+ @property
1481
+ def fair_share(self) -> 'bool':
1482
+ """Gets the fair_share of this V1UserFeatures. # noqa: E501
1483
+
1484
+
1485
+ :return: The fair_share of this V1UserFeatures. # noqa: E501
1486
+ :rtype: bool
1487
+ """
1488
+ return self._fair_share
1489
+
1490
+ @fair_share.setter
1491
+ def fair_share(self, fair_share: 'bool'):
1492
+ """Sets the fair_share of this V1UserFeatures.
1493
+
1494
+
1495
+ :param fair_share: The fair_share of this V1UserFeatures. # noqa: E501
1496
+ :type: bool
1497
+ """
1498
+
1499
+ self._fair_share = fair_share
1500
+
1501
+ @property
1502
+ def featured_studios_admin(self) -> 'bool':
1503
+ """Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
1504
+
1505
+
1506
+ :return: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1507
+ :rtype: bool
1508
+ """
1509
+ return self._featured_studios_admin
1510
+
1511
+ @featured_studios_admin.setter
1512
+ def featured_studios_admin(self, featured_studios_admin: 'bool'):
1513
+ """Sets the featured_studios_admin of this V1UserFeatures.
1514
+
1515
+
1516
+ :param featured_studios_admin: The featured_studios_admin of this V1UserFeatures. # noqa: E501
1517
+ :type: bool
1518
+ """
1519
+
1520
+ self._featured_studios_admin = featured_studios_admin
1552
1521
 
1553
1522
  @property
1554
1523
  def job_artifacts_v2(self) -> 'bool':
@@ -2306,27 +2275,6 @@ class V1UserFeatures(object):
2306
2275
 
2307
2276
  self._studio_version_visibility = studio_version_visibility
2308
2277
 
2309
- @property
2310
- def trainium2(self) -> 'bool':
2311
- """Gets the trainium2 of this V1UserFeatures. # noqa: E501
2312
-
2313
-
2314
- :return: The trainium2 of this V1UserFeatures. # noqa: E501
2315
- :rtype: bool
2316
- """
2317
- return self._trainium2
2318
-
2319
- @trainium2.setter
2320
- def trainium2(self, trainium2: 'bool'):
2321
- """Sets the trainium2 of this V1UserFeatures.
2322
-
2323
-
2324
- :param trainium2: The trainium2 of this V1UserFeatures. # noqa: E501
2325
- :type: bool
2326
- """
2327
-
2328
- self._trainium2 = trainium2
2329
-
2330
2278
  @property
2331
2279
  def vultr(self) -> 'bool':
2332
2280
  """Gets the vultr of this V1UserFeatures. # noqa: E501