lightning-sdk 2025.12.17__py3-none-any.whl → 2026.1.27__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 (130) hide show
  1. lightning_sdk/__version__.py +1 -1
  2. lightning_sdk/api/k8s_api.py +75 -29
  3. lightning_sdk/api/studio_api.py +192 -37
  4. lightning_sdk/api/teamspace_api.py +180 -54
  5. lightning_sdk/api/utils.py +8 -0
  6. lightning_sdk/cli/cp/__init__.py +67 -0
  7. lightning_sdk/cli/cp/teamspace_uploads.py +93 -0
  8. lightning_sdk/cli/entrypoint.py +2 -0
  9. lightning_sdk/cli/groups.py +22 -0
  10. lightning_sdk/cli/legacy/clusters_menu.py +2 -2
  11. lightning_sdk/cli/legacy/deploy/_auth.py +7 -6
  12. lightning_sdk/cli/legacy/download.py +29 -98
  13. lightning_sdk/cli/legacy/run.py +13 -2
  14. lightning_sdk/cli/legacy/upload.py +24 -31
  15. lightning_sdk/cli/studio/__init__.py +4 -0
  16. lightning_sdk/cli/studio/cp.py +24 -65
  17. lightning_sdk/cli/studio/ls.py +57 -0
  18. lightning_sdk/cli/studio/rm.py +71 -0
  19. lightning_sdk/cli/utils/filesystem.py +103 -0
  20. lightning_sdk/cli/utils/logging.py +2 -1
  21. lightning_sdk/cli/utils/teamspace_selection.py +5 -0
  22. lightning_sdk/exceptions.py +31 -0
  23. lightning_sdk/job/base.py +1 -1
  24. lightning_sdk/k8s_cluster.py +9 -10
  25. lightning_sdk/lightning_cloud/__version__.py +1 -1
  26. lightning_sdk/lightning_cloud/openapi/__init__.py +43 -23
  27. lightning_sdk/lightning_cloud/openapi/api/__init__.py +2 -1
  28. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +118 -1
  29. lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +378 -536
  30. lightning_sdk/lightning_cloud/openapi/api/container_registry_service_api.py +456 -0
  31. lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +5 -1
  32. lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +11 -11
  33. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +113 -0
  34. lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +246 -19
  35. lightning_sdk/lightning_cloud/openapi/api/lightningwork_service_api.py +116 -11
  36. lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +588 -2
  37. lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +9 -1
  38. lightning_sdk/lightning_cloud/openapi/api/organizations_service_api.py +113 -0
  39. lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +5 -1
  40. lightning_sdk/lightning_cloud/openapi/api/{kubernetes_virtual_machine_service_api.py → virtual_machine_service_api.py} +82 -82
  41. lightning_sdk/lightning_cloud/openapi/models/__init__.py +41 -22
  42. lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_cluster_capacity_reservation_body.py +53 -1
  43. lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_machine_body.py +53 -1
  44. lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_org_cluster_capacity_reservation_body.py +409 -0
  45. lightning_sdk/lightning_cloud/openapi/models/{v1_add_container_registry_response.py → cluster_service_report_machine_system_metrics_body.py} +23 -23
  46. lightning_sdk/lightning_cloud/openapi/models/container_registry_config_ecr.py +149 -0
  47. lightning_sdk/lightning_cloud/openapi/models/{v1_container_registry_status.py → container_registry_provider.py} +14 -10
  48. lightning_sdk/lightning_cloud/openapi/models/container_registry_service_create_container_registry_body.py +201 -0
  49. lightning_sdk/lightning_cloud/openapi/models/{v1_ecr_registry_config_input.py → container_registry_service_refresh_container_registry_credentials_body.py} +21 -21
  50. lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +27 -1
  51. lightning_sdk/lightning_cloud/openapi/models/{v1_ecr_registry_config.py → jobs_service_duplicate_deployment_body.py} +51 -51
  52. lightning_sdk/lightning_cloud/openapi/models/lit_logger_service_create_lit_logger_media_body.py +305 -0
  53. lightning_sdk/lightning_cloud/openapi/models/lit_logger_service_update_lit_logger_media_body.py +149 -0
  54. lightning_sdk/lightning_cloud/openapi/models/lit_logger_service_update_metrics_stream_body.py +53 -1
  55. lightning_sdk/lightning_cloud/openapi/models/organizations_service_update_org_role_body.py +175 -0
  56. lightning_sdk/lightning_cloud/openapi/models/v1_capacity_reservation_used_by.py +227 -0
  57. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_provider.py +2 -1
  58. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_type.py +1 -0
  59. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +27 -1
  60. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +53 -1
  61. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +79 -27
  62. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_type.py +0 -1
  63. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry.py +63 -89
  64. lightning_sdk/lightning_cloud/openapi/models/{cluster_service_add_container_registry_body.py → v1_container_registry_config.py} +16 -16
  65. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_scopes.py +149 -0
  66. lightning_sdk/lightning_cloud/openapi/models/{v1_delete_kubernetes_virtual_machine_response.py → v1_create_container_registry_response.py} +6 -6
  67. lightning_sdk/lightning_cloud/openapi/models/v1_create_lit_logger_media_response.py +149 -0
  68. lightning_sdk/lightning_cloud/openapi/models/v1_create_org_cluster_capacity_reservation_response.py +201 -0
  69. lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_request.py +29 -3
  70. lightning_sdk/lightning_cloud/openapi/models/v1_cudo_direct_v1.py +175 -0
  71. lightning_sdk/lightning_cloud/openapi/models/{cluster_service_refresh_container_registry_credentials_body.py → v1_delete_lit_logger_media_response.py} +6 -6
  72. lightning_sdk/lightning_cloud/openapi/models/{kubernetes_virtual_machine_service_update_kubernetes_virtual_machine_body.py → v1_delete_org_cluster_capacity_reservation_response.py} +6 -6
  73. lightning_sdk/lightning_cloud/openapi/models/v1_delete_virtual_machine_response.py +97 -0
  74. lightning_sdk/lightning_cloud/openapi/models/v1_describe_org_cluster_capacity_reservation_response.py +201 -0
  75. lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +27 -27
  76. lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +27 -1
  77. lightning_sdk/lightning_cloud/openapi/models/v1_generic_job_spec.py +79 -1
  78. lightning_sdk/lightning_cloud/openapi/models/{v1_validate_container_registry_response.py → v1_get_kubernetes_pod_logs_response.py} +37 -37
  79. lightning_sdk/lightning_cloud/openapi/models/{v1_get_machine_response.py → v1_get_kubernetes_pod_response.py} +23 -23
  80. lightning_sdk/lightning_cloud/openapi/models/v1_job.py +27 -1
  81. lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +27 -1
  82. lightning_sdk/lightning_cloud/openapi/models/v1_joinable_organization.py +27 -1
  83. lightning_sdk/lightning_cloud/openapi/models/{v1_container_registry_integration.py → v1_k8s_incident_setting.py} +49 -23
  84. lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_type.py +108 -0
  85. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_settings_v1.py +53 -1
  86. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +53 -27
  87. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_pod.py +27 -1
  88. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_pod_logs_page.py +227 -0
  89. lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_config.py +53 -1
  90. lightning_sdk/lightning_cloud/openapi/models/v1_list_container_registries_response.py +6 -6
  91. lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_pods_response.py +43 -17
  92. lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_pods_sort_order.py +104 -0
  93. lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_logger_media_response.py +149 -0
  94. lightning_sdk/lightning_cloud/openapi/models/v1_list_models_response.py +55 -3
  95. lightning_sdk/lightning_cloud/openapi/models/{v1_list_kubernetes_virtual_machines_response.py → v1_list_virtual_machines_response.py} +16 -16
  96. lightning_sdk/lightning_cloud/openapi/models/v1_lit_logger_media.py +513 -0
  97. lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +27 -53
  98. lightning_sdk/lightning_cloud/openapi/models/v1_machine_direct_v1.py +107 -3
  99. lightning_sdk/lightning_cloud/openapi/models/v1_media_type.py +104 -0
  100. lightning_sdk/lightning_cloud/openapi/models/{v1_ai_pod_v1.py → v1_mithril_direct_v1.py} +51 -51
  101. lightning_sdk/lightning_cloud/openapi/models/v1_nebius_direct_v1.py +29 -3
  102. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +27 -1
  103. lightning_sdk/lightning_cloud/openapi/models/v1_refresh_container_registry_credentials_response.py +1 -27
  104. lightning_sdk/lightning_cloud/openapi/models/{cluster_service_validate_container_registry_body.py → v1_report_cloud_space_instance_idle_state_response.py} +6 -6
  105. lightning_sdk/lightning_cloud/openapi/models/v1_report_machine_system_metrics_response.py +97 -0
  106. lightning_sdk/lightning_cloud/openapi/models/{v1_ecr_registry_details.py → v1_tenant_credentials.py} +53 -53
  107. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +183 -157
  108. lightning_sdk/lightning_cloud/openapi/models/{v1_kubernetes_virtual_machine.py → v1_virtual_machine.py} +94 -68
  109. lightning_sdk/lightning_cloud/openapi/models/{v1_kubevirt_vm_configuration.py → v1_vm_configuration.py} +20 -20
  110. lightning_sdk/lightning_cloud/openapi/models/{v1_kubevirt_provider_configuration.py → v1_vm_provider_configuration.py} +32 -32
  111. lightning_sdk/lightning_cloud/openapi/models/virtual_machine_service_create_virtual_machine_body.py +565 -0
  112. lightning_sdk/lightning_cloud/openapi/models/virtual_machine_service_update_virtual_machine_body.py +97 -0
  113. lightning_sdk/lightning_cloud/openapi/rest.py +2 -2
  114. lightning_sdk/lightning_cloud/rest_client.py +0 -2
  115. lightning_sdk/machine.py +3 -3
  116. lightning_sdk/studio.py +14 -4
  117. lightning_sdk/teamspace.py +28 -7
  118. lightning_sdk/utils/logging.py +2 -1
  119. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/METADATA +1 -5
  120. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/RECORD +125 -102
  121. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/WHEEL +1 -1
  122. lightning_sdk/lightning_cloud/cli/__main__.py +0 -29
  123. lightning_sdk/lightning_cloud/openapi/models/kubernetes_virtual_machine_service_create_kubernetes_virtual_machine_body.py +0 -513
  124. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_info.py +0 -281
  125. lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_vm_resources.py +0 -201
  126. lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +0 -103
  127. /lightning_sdk/lightning_cloud/openapi/models/{v1_list_filesystem_mmts_response.py → v1_list_filesystem_mm_ts_response.py} +0 -0
  128. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/LICENSE +0 -0
  129. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/entry_points.txt +0 -0
  130. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/top_level.txt +0 -0
@@ -74,28 +74,29 @@ class V1UserFeatures(object):
74
74
  'f254': 'bool',
75
75
  'f258': 'bool',
76
76
  'f259': 'bool',
77
- 'f265': 'bool',
78
77
  'f266': 'bool',
79
78
  'f268': 'bool',
80
79
  'f270': 'bool',
81
80
  'f271': 'bool',
82
81
  'f272': 'bool',
83
82
  'f273': 'bool',
84
- 'f274': 'bool',
85
83
  'f275': 'bool',
86
84
  'f276': 'bool',
87
- 'f278': 'bool',
88
85
  'f279': 'bool',
89
86
  'f280': 'bool',
90
87
  'f281': 'bool',
91
- 'f282': 'bool',
92
88
  'f283': 'bool',
93
- 'f284': 'bool',
94
89
  'f285': 'bool',
95
- 'f286': 'bool',
96
90
  'f287': 'bool',
97
91
  'f288': 'bool',
98
92
  'f289': 'bool',
93
+ 'f290': 'bool',
94
+ 'f292': 'bool',
95
+ 'f293': 'bool',
96
+ 'f294': 'bool',
97
+ 'f295': 'bool',
98
+ 'f296': 'bool',
99
+ 'f297': 'bool',
99
100
  'fair_share': 'bool',
100
101
  'featured_studios_admin': 'bool',
101
102
  'job_artifacts_v2': 'bool',
@@ -168,28 +169,29 @@ class V1UserFeatures(object):
168
169
  'f254': 'f254',
169
170
  'f258': 'f258',
170
171
  'f259': 'f259',
171
- 'f265': 'f265',
172
172
  'f266': 'f266',
173
173
  'f268': 'f268',
174
174
  'f270': 'f270',
175
175
  'f271': 'f271',
176
176
  'f272': 'f272',
177
177
  'f273': 'f273',
178
- 'f274': 'f274',
179
178
  'f275': 'f275',
180
179
  'f276': 'f276',
181
- 'f278': 'f278',
182
180
  'f279': 'f279',
183
181
  'f280': 'f280',
184
182
  'f281': 'f281',
185
- 'f282': 'f282',
186
183
  'f283': 'f283',
187
- 'f284': 'f284',
188
184
  'f285': 'f285',
189
- 'f286': 'f286',
190
185
  'f287': 'f287',
191
186
  'f288': 'f288',
192
187
  'f289': 'f289',
188
+ 'f290': 'f290',
189
+ 'f292': 'f292',
190
+ 'f293': 'f293',
191
+ 'f294': 'f294',
192
+ 'f295': 'f295',
193
+ 'f296': 'f296',
194
+ 'f297': 'f297',
193
195
  'fair_share': 'fairShare',
194
196
  'featured_studios_admin': 'featuredStudiosAdmin',
195
197
  'job_artifacts_v2': 'jobArtifactsV2',
@@ -228,7 +230,7 @@ class V1UserFeatures(object):
228
230
  'weka': 'weka'
229
231
  }
230
232
 
231
- 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, f265: 'bool' =None, f266: 'bool' =None, f268: 'bool' =None, f270: 'bool' =None, f271: 'bool' =None, f272: 'bool' =None, f273: 'bool' =None, f274: 'bool' =None, f275: 'bool' =None, f276: 'bool' =None, f278: 'bool' =None, f279: 'bool' =None, f280: 'bool' =None, f281: 'bool' =None, f282: 'bool' =None, f283: 'bool' =None, f284: 'bool' =None, f285: 'bool' =None, f286: 'bool' =None, f287: 'bool' =None, f288: 'bool' =None, f289: '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, 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, 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): # noqa: E501
233
+ 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, f266: 'bool' =None, f268: 'bool' =None, f270: 'bool' =None, f271: 'bool' =None, f272: 'bool' =None, f273: 'bool' =None, f275: 'bool' =None, f276: 'bool' =None, f279: 'bool' =None, f280: 'bool' =None, f281: 'bool' =None, f283: 'bool' =None, f285: 'bool' =None, f287: 'bool' =None, f288: 'bool' =None, f289: 'bool' =None, f290: 'bool' =None, f292: 'bool' =None, f293: 'bool' =None, f294: 'bool' =None, f295: 'bool' =None, f296: 'bool' =None, f297: '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, 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, 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): # noqa: E501
232
234
  """V1UserFeatures - a model defined in Swagger""" # noqa: E501
233
235
  self._affiliate_links = None
234
236
  self._agents_v2 = None
@@ -263,28 +265,29 @@ class V1UserFeatures(object):
263
265
  self._f254 = None
264
266
  self._f258 = None
265
267
  self._f259 = None
266
- self._f265 = None
267
268
  self._f266 = None
268
269
  self._f268 = None
269
270
  self._f270 = None
270
271
  self._f271 = None
271
272
  self._f272 = None
272
273
  self._f273 = None
273
- self._f274 = None
274
274
  self._f275 = None
275
275
  self._f276 = None
276
- self._f278 = None
277
276
  self._f279 = None
278
277
  self._f280 = None
279
278
  self._f281 = None
280
- self._f282 = None
281
279
  self._f283 = None
282
- self._f284 = None
283
280
  self._f285 = None
284
- self._f286 = None
285
281
  self._f287 = None
286
282
  self._f288 = None
287
283
  self._f289 = None
284
+ self._f290 = None
285
+ self._f292 = None
286
+ self._f293 = None
287
+ self._f294 = None
288
+ self._f295 = None
289
+ self._f296 = None
290
+ self._f297 = None
288
291
  self._fair_share = None
289
292
  self._featured_studios_admin = None
290
293
  self._job_artifacts_v2 = None
@@ -388,8 +391,6 @@ class V1UserFeatures(object):
388
391
  self.f258 = f258
389
392
  if f259 is not None:
390
393
  self.f259 = f259
391
- if f265 is not None:
392
- self.f265 = f265
393
394
  if f266 is not None:
394
395
  self.f266 = f266
395
396
  if f268 is not None:
@@ -402,36 +403,40 @@ class V1UserFeatures(object):
402
403
  self.f272 = f272
403
404
  if f273 is not None:
404
405
  self.f273 = f273
405
- if f274 is not None:
406
- self.f274 = f274
407
406
  if f275 is not None:
408
407
  self.f275 = f275
409
408
  if f276 is not None:
410
409
  self.f276 = f276
411
- if f278 is not None:
412
- self.f278 = f278
413
410
  if f279 is not None:
414
411
  self.f279 = f279
415
412
  if f280 is not None:
416
413
  self.f280 = f280
417
414
  if f281 is not None:
418
415
  self.f281 = f281
419
- if f282 is not None:
420
- self.f282 = f282
421
416
  if f283 is not None:
422
417
  self.f283 = f283
423
- if f284 is not None:
424
- self.f284 = f284
425
418
  if f285 is not None:
426
419
  self.f285 = f285
427
- if f286 is not None:
428
- self.f286 = f286
429
420
  if f287 is not None:
430
421
  self.f287 = f287
431
422
  if f288 is not None:
432
423
  self.f288 = f288
433
424
  if f289 is not None:
434
425
  self.f289 = f289
426
+ if f290 is not None:
427
+ self.f290 = f290
428
+ if f292 is not None:
429
+ self.f292 = f292
430
+ if f293 is not None:
431
+ self.f293 = f293
432
+ if f294 is not None:
433
+ self.f294 = f294
434
+ if f295 is not None:
435
+ self.f295 = f295
436
+ if f296 is not None:
437
+ self.f296 = f296
438
+ if f297 is not None:
439
+ self.f297 = f297
435
440
  if fair_share is not None:
436
441
  self.fair_share = fair_share
437
442
  if featured_studios_admin is not None:
@@ -1198,27 +1203,6 @@ class V1UserFeatures(object):
1198
1203
 
1199
1204
  self._f259 = f259
1200
1205
 
1201
- @property
1202
- def f265(self) -> 'bool':
1203
- """Gets the f265 of this V1UserFeatures. # noqa: E501
1204
-
1205
-
1206
- :return: The f265 of this V1UserFeatures. # noqa: E501
1207
- :rtype: bool
1208
- """
1209
- return self._f265
1210
-
1211
- @f265.setter
1212
- def f265(self, f265: 'bool'):
1213
- """Sets the f265 of this V1UserFeatures.
1214
-
1215
-
1216
- :param f265: The f265 of this V1UserFeatures. # noqa: E501
1217
- :type: bool
1218
- """
1219
-
1220
- self._f265 = f265
1221
-
1222
1206
  @property
1223
1207
  def f266(self) -> 'bool':
1224
1208
  """Gets the f266 of this V1UserFeatures. # noqa: E501
@@ -1345,27 +1329,6 @@ class V1UserFeatures(object):
1345
1329
 
1346
1330
  self._f273 = f273
1347
1331
 
1348
- @property
1349
- def f274(self) -> 'bool':
1350
- """Gets the f274 of this V1UserFeatures. # noqa: E501
1351
-
1352
-
1353
- :return: The f274 of this V1UserFeatures. # noqa: E501
1354
- :rtype: bool
1355
- """
1356
- return self._f274
1357
-
1358
- @f274.setter
1359
- def f274(self, f274: 'bool'):
1360
- """Sets the f274 of this V1UserFeatures.
1361
-
1362
-
1363
- :param f274: The f274 of this V1UserFeatures. # noqa: E501
1364
- :type: bool
1365
- """
1366
-
1367
- self._f274 = f274
1368
-
1369
1332
  @property
1370
1333
  def f275(self) -> 'bool':
1371
1334
  """Gets the f275 of this V1UserFeatures. # noqa: E501
@@ -1408,27 +1371,6 @@ class V1UserFeatures(object):
1408
1371
 
1409
1372
  self._f276 = f276
1410
1373
 
1411
- @property
1412
- def f278(self) -> 'bool':
1413
- """Gets the f278 of this V1UserFeatures. # noqa: E501
1414
-
1415
-
1416
- :return: The f278 of this V1UserFeatures. # noqa: E501
1417
- :rtype: bool
1418
- """
1419
- return self._f278
1420
-
1421
- @f278.setter
1422
- def f278(self, f278: 'bool'):
1423
- """Sets the f278 of this V1UserFeatures.
1424
-
1425
-
1426
- :param f278: The f278 of this V1UserFeatures. # noqa: E501
1427
- :type: bool
1428
- """
1429
-
1430
- self._f278 = f278
1431
-
1432
1374
  @property
1433
1375
  def f279(self) -> 'bool':
1434
1376
  """Gets the f279 of this V1UserFeatures. # noqa: E501
@@ -1492,27 +1434,6 @@ class V1UserFeatures(object):
1492
1434
 
1493
1435
  self._f281 = f281
1494
1436
 
1495
- @property
1496
- def f282(self) -> 'bool':
1497
- """Gets the f282 of this V1UserFeatures. # noqa: E501
1498
-
1499
-
1500
- :return: The f282 of this V1UserFeatures. # noqa: E501
1501
- :rtype: bool
1502
- """
1503
- return self._f282
1504
-
1505
- @f282.setter
1506
- def f282(self, f282: 'bool'):
1507
- """Sets the f282 of this V1UserFeatures.
1508
-
1509
-
1510
- :param f282: The f282 of this V1UserFeatures. # noqa: E501
1511
- :type: bool
1512
- """
1513
-
1514
- self._f282 = f282
1515
-
1516
1437
  @property
1517
1438
  def f283(self) -> 'bool':
1518
1439
  """Gets the f283 of this V1UserFeatures. # noqa: E501
@@ -1534,27 +1455,6 @@ class V1UserFeatures(object):
1534
1455
 
1535
1456
  self._f283 = f283
1536
1457
 
1537
- @property
1538
- def f284(self) -> 'bool':
1539
- """Gets the f284 of this V1UserFeatures. # noqa: E501
1540
-
1541
-
1542
- :return: The f284 of this V1UserFeatures. # noqa: E501
1543
- :rtype: bool
1544
- """
1545
- return self._f284
1546
-
1547
- @f284.setter
1548
- def f284(self, f284: 'bool'):
1549
- """Sets the f284 of this V1UserFeatures.
1550
-
1551
-
1552
- :param f284: The f284 of this V1UserFeatures. # noqa: E501
1553
- :type: bool
1554
- """
1555
-
1556
- self._f284 = f284
1557
-
1558
1458
  @property
1559
1459
  def f285(self) -> 'bool':
1560
1460
  """Gets the f285 of this V1UserFeatures. # noqa: E501
@@ -1576,27 +1476,6 @@ class V1UserFeatures(object):
1576
1476
 
1577
1477
  self._f285 = f285
1578
1478
 
1579
- @property
1580
- def f286(self) -> 'bool':
1581
- """Gets the f286 of this V1UserFeatures. # noqa: E501
1582
-
1583
-
1584
- :return: The f286 of this V1UserFeatures. # noqa: E501
1585
- :rtype: bool
1586
- """
1587
- return self._f286
1588
-
1589
- @f286.setter
1590
- def f286(self, f286: 'bool'):
1591
- """Sets the f286 of this V1UserFeatures.
1592
-
1593
-
1594
- :param f286: The f286 of this V1UserFeatures. # noqa: E501
1595
- :type: bool
1596
- """
1597
-
1598
- self._f286 = f286
1599
-
1600
1479
  @property
1601
1480
  def f287(self) -> 'bool':
1602
1481
  """Gets the f287 of this V1UserFeatures. # noqa: E501
@@ -1660,6 +1539,153 @@ class V1UserFeatures(object):
1660
1539
 
1661
1540
  self._f289 = f289
1662
1541
 
1542
+ @property
1543
+ def f290(self) -> 'bool':
1544
+ """Gets the f290 of this V1UserFeatures. # noqa: E501
1545
+
1546
+
1547
+ :return: The f290 of this V1UserFeatures. # noqa: E501
1548
+ :rtype: bool
1549
+ """
1550
+ return self._f290
1551
+
1552
+ @f290.setter
1553
+ def f290(self, f290: 'bool'):
1554
+ """Sets the f290 of this V1UserFeatures.
1555
+
1556
+
1557
+ :param f290: The f290 of this V1UserFeatures. # noqa: E501
1558
+ :type: bool
1559
+ """
1560
+
1561
+ self._f290 = f290
1562
+
1563
+ @property
1564
+ def f292(self) -> 'bool':
1565
+ """Gets the f292 of this V1UserFeatures. # noqa: E501
1566
+
1567
+
1568
+ :return: The f292 of this V1UserFeatures. # noqa: E501
1569
+ :rtype: bool
1570
+ """
1571
+ return self._f292
1572
+
1573
+ @f292.setter
1574
+ def f292(self, f292: 'bool'):
1575
+ """Sets the f292 of this V1UserFeatures.
1576
+
1577
+
1578
+ :param f292: The f292 of this V1UserFeatures. # noqa: E501
1579
+ :type: bool
1580
+ """
1581
+
1582
+ self._f292 = f292
1583
+
1584
+ @property
1585
+ def f293(self) -> 'bool':
1586
+ """Gets the f293 of this V1UserFeatures. # noqa: E501
1587
+
1588
+
1589
+ :return: The f293 of this V1UserFeatures. # noqa: E501
1590
+ :rtype: bool
1591
+ """
1592
+ return self._f293
1593
+
1594
+ @f293.setter
1595
+ def f293(self, f293: 'bool'):
1596
+ """Sets the f293 of this V1UserFeatures.
1597
+
1598
+
1599
+ :param f293: The f293 of this V1UserFeatures. # noqa: E501
1600
+ :type: bool
1601
+ """
1602
+
1603
+ self._f293 = f293
1604
+
1605
+ @property
1606
+ def f294(self) -> 'bool':
1607
+ """Gets the f294 of this V1UserFeatures. # noqa: E501
1608
+
1609
+
1610
+ :return: The f294 of this V1UserFeatures. # noqa: E501
1611
+ :rtype: bool
1612
+ """
1613
+ return self._f294
1614
+
1615
+ @f294.setter
1616
+ def f294(self, f294: 'bool'):
1617
+ """Sets the f294 of this V1UserFeatures.
1618
+
1619
+
1620
+ :param f294: The f294 of this V1UserFeatures. # noqa: E501
1621
+ :type: bool
1622
+ """
1623
+
1624
+ self._f294 = f294
1625
+
1626
+ @property
1627
+ def f295(self) -> 'bool':
1628
+ """Gets the f295 of this V1UserFeatures. # noqa: E501
1629
+
1630
+
1631
+ :return: The f295 of this V1UserFeatures. # noqa: E501
1632
+ :rtype: bool
1633
+ """
1634
+ return self._f295
1635
+
1636
+ @f295.setter
1637
+ def f295(self, f295: 'bool'):
1638
+ """Sets the f295 of this V1UserFeatures.
1639
+
1640
+
1641
+ :param f295: The f295 of this V1UserFeatures. # noqa: E501
1642
+ :type: bool
1643
+ """
1644
+
1645
+ self._f295 = f295
1646
+
1647
+ @property
1648
+ def f296(self) -> 'bool':
1649
+ """Gets the f296 of this V1UserFeatures. # noqa: E501
1650
+
1651
+
1652
+ :return: The f296 of this V1UserFeatures. # noqa: E501
1653
+ :rtype: bool
1654
+ """
1655
+ return self._f296
1656
+
1657
+ @f296.setter
1658
+ def f296(self, f296: 'bool'):
1659
+ """Sets the f296 of this V1UserFeatures.
1660
+
1661
+
1662
+ :param f296: The f296 of this V1UserFeatures. # noqa: E501
1663
+ :type: bool
1664
+ """
1665
+
1666
+ self._f296 = f296
1667
+
1668
+ @property
1669
+ def f297(self) -> 'bool':
1670
+ """Gets the f297 of this V1UserFeatures. # noqa: E501
1671
+
1672
+
1673
+ :return: The f297 of this V1UserFeatures. # noqa: E501
1674
+ :rtype: bool
1675
+ """
1676
+ return self._f297
1677
+
1678
+ @f297.setter
1679
+ def f297(self, f297: 'bool'):
1680
+ """Sets the f297 of this V1UserFeatures.
1681
+
1682
+
1683
+ :param f297: The f297 of this V1UserFeatures. # noqa: E501
1684
+ :type: bool
1685
+ """
1686
+
1687
+ self._f297 = f297
1688
+
1663
1689
  @property
1664
1690
  def fair_share(self) -> 'bool':
1665
1691
  """Gets the fair_share of this V1UserFeatures. # noqa: E501