lightning-sdk 2025.12.17__py3-none-any.whl → 2026.1.22__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.
- lightning_sdk/__version__.py +1 -1
- lightning_sdk/api/k8s_api.py +75 -29
- lightning_sdk/api/studio_api.py +195 -33
- lightning_sdk/api/teamspace_api.py +28 -9
- lightning_sdk/cli/cp/__init__.py +64 -0
- lightning_sdk/cli/entrypoint.py +2 -0
- lightning_sdk/cli/groups.py +22 -0
- lightning_sdk/cli/legacy/clusters_menu.py +2 -2
- lightning_sdk/cli/legacy/deploy/_auth.py +7 -6
- lightning_sdk/cli/legacy/run.py +13 -2
- lightning_sdk/cli/studio/__init__.py +4 -0
- lightning_sdk/cli/studio/cp.py +20 -64
- lightning_sdk/cli/studio/ls.py +57 -0
- lightning_sdk/cli/studio/rm.py +71 -0
- lightning_sdk/cli/utils/logging.py +2 -1
- lightning_sdk/cli/utils/studio_filesystem.py +65 -0
- lightning_sdk/cli/utils/teamspace_selection.py +5 -0
- lightning_sdk/exceptions.py +4 -0
- lightning_sdk/job/base.py +1 -1
- lightning_sdk/k8s_cluster.py +9 -10
- lightning_sdk/lightning_cloud/__version__.py +1 -1
- lightning_sdk/lightning_cloud/openapi/__init__.py +29 -11
- lightning_sdk/lightning_cloud/openapi/api/__init__.py +1 -1
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +113 -0
- lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +268 -123
- lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +246 -19
- lightning_sdk/lightning_cloud/openapi/api/lightningwork_service_api.py +116 -11
- lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +588 -2
- lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +9 -1
- lightning_sdk/lightning_cloud/openapi/api/{kubernetes_virtual_machine_service_api.py → virtual_machine_service_api.py} +82 -82
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +28 -10
- lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_cluster_capacity_reservation_body.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_machine_body.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_org_cluster_capacity_reservation_body.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/cluster_service_report_machine_system_metrics_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/lit_logger_service_create_lit_logger_media_body.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/lit_logger_service_update_lit_logger_media_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/lit_logger_service_update_metrics_stream_body.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_capacity_reservation_used_by.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_provider.py +1 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +53 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_type.py +0 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_lit_logger_media_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_org_cluster_capacity_reservation_response.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_request.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/{v1_ai_pod_v1.py → v1_cudo_direct_v1.py} +51 -51
- lightning_sdk/lightning_cloud/openapi/models/{v1_delete_kubernetes_virtual_machine_response.py → v1_delete_lit_logger_media_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/{kubernetes_virtual_machine_service_update_kubernetes_virtual_machine_body.py → v1_delete_virtual_machine_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +27 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_kubernetes_pod_logs_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_get_machine_response.py → v1_get_kubernetes_pod_response.py} +23 -23
- lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_joinable_organization.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_setting.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_type.py +108 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_settings_v1.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_pod.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_pod_logs_page.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_config.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_pods_response.py +43 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_pods_sort_order.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_logger_media_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_models_response.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/{v1_list_kubernetes_virtual_machines_response.py → v1_list_virtual_machines_response.py} +16 -16
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_logger_media.py +513 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +27 -53
- lightning_sdk/lightning_cloud/openapi/models/v1_machine_direct_v1.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_media_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_nebius_direct_v1.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_report_cloud_space_instance_idle_state_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_report_machine_system_metrics_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_tenant_credentials.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +157 -131
- lightning_sdk/lightning_cloud/openapi/models/{v1_kubernetes_virtual_machine.py → v1_virtual_machine.py} +94 -68
- lightning_sdk/lightning_cloud/openapi/models/{v1_kubevirt_vm_configuration.py → v1_vm_configuration.py} +20 -20
- lightning_sdk/lightning_cloud/openapi/models/{v1_kubevirt_provider_configuration.py → v1_vm_provider_configuration.py} +32 -32
- lightning_sdk/lightning_cloud/openapi/models/virtual_machine_service_create_virtual_machine_body.py +565 -0
- lightning_sdk/lightning_cloud/openapi/models/virtual_machine_service_update_virtual_machine_body.py +97 -0
- lightning_sdk/lightning_cloud/rest_client.py +0 -2
- lightning_sdk/machine.py +3 -3
- lightning_sdk/studio.py +14 -4
- lightning_sdk/utils/logging.py +2 -1
- {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.22.dist-info}/METADATA +1 -5
- {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.22.dist-info}/RECORD +95 -75
- {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.22.dist-info}/WHEEL +1 -1
- lightning_sdk/lightning_cloud/cli/__main__.py +0 -29
- lightning_sdk/lightning_cloud/openapi/models/kubernetes_virtual_machine_service_create_kubernetes_virtual_machine_body.py +0 -513
- lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_vm_resources.py +0 -201
- lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +0 -103
- {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.22.dist-info}/LICENSE +0 -0
- {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.22.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.22.dist-info}/top_level.txt +0 -0
|
@@ -81,21 +81,22 @@ class V1UserFeatures(object):
|
|
|
81
81
|
'f271': 'bool',
|
|
82
82
|
'f272': 'bool',
|
|
83
83
|
'f273': 'bool',
|
|
84
|
-
'f274': 'bool',
|
|
85
84
|
'f275': 'bool',
|
|
86
85
|
'f276': 'bool',
|
|
87
|
-
'f278': 'bool',
|
|
88
86
|
'f279': 'bool',
|
|
89
87
|
'f280': 'bool',
|
|
90
88
|
'f281': 'bool',
|
|
91
|
-
'f282': 'bool',
|
|
92
89
|
'f283': 'bool',
|
|
93
|
-
'f284': 'bool',
|
|
94
90
|
'f285': 'bool',
|
|
95
|
-
'f286': 'bool',
|
|
96
91
|
'f287': 'bool',
|
|
97
92
|
'f288': 'bool',
|
|
98
93
|
'f289': 'bool',
|
|
94
|
+
'f290': 'bool',
|
|
95
|
+
'f291': 'bool',
|
|
96
|
+
'f292': 'bool',
|
|
97
|
+
'f293': 'bool',
|
|
98
|
+
'f294': 'bool',
|
|
99
|
+
'f295': 'bool',
|
|
99
100
|
'fair_share': 'bool',
|
|
100
101
|
'featured_studios_admin': 'bool',
|
|
101
102
|
'job_artifacts_v2': 'bool',
|
|
@@ -175,21 +176,22 @@ class V1UserFeatures(object):
|
|
|
175
176
|
'f271': 'f271',
|
|
176
177
|
'f272': 'f272',
|
|
177
178
|
'f273': 'f273',
|
|
178
|
-
'f274': 'f274',
|
|
179
179
|
'f275': 'f275',
|
|
180
180
|
'f276': 'f276',
|
|
181
|
-
'f278': 'f278',
|
|
182
181
|
'f279': 'f279',
|
|
183
182
|
'f280': 'f280',
|
|
184
183
|
'f281': 'f281',
|
|
185
|
-
'f282': 'f282',
|
|
186
184
|
'f283': 'f283',
|
|
187
|
-
'f284': 'f284',
|
|
188
185
|
'f285': 'f285',
|
|
189
|
-
'f286': 'f286',
|
|
190
186
|
'f287': 'f287',
|
|
191
187
|
'f288': 'f288',
|
|
192
188
|
'f289': 'f289',
|
|
189
|
+
'f290': 'f290',
|
|
190
|
+
'f291': 'f291',
|
|
191
|
+
'f292': 'f292',
|
|
192
|
+
'f293': 'f293',
|
|
193
|
+
'f294': 'f294',
|
|
194
|
+
'f295': 'f295',
|
|
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,
|
|
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, f265: '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, f291: 'bool' =None, f292: 'bool' =None, f293: 'bool' =None, f294: 'bool' =None, f295: '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
|
|
@@ -270,21 +272,22 @@ class V1UserFeatures(object):
|
|
|
270
272
|
self._f271 = None
|
|
271
273
|
self._f272 = None
|
|
272
274
|
self._f273 = None
|
|
273
|
-
self._f274 = None
|
|
274
275
|
self._f275 = None
|
|
275
276
|
self._f276 = None
|
|
276
|
-
self._f278 = None
|
|
277
277
|
self._f279 = None
|
|
278
278
|
self._f280 = None
|
|
279
279
|
self._f281 = None
|
|
280
|
-
self._f282 = None
|
|
281
280
|
self._f283 = None
|
|
282
|
-
self._f284 = None
|
|
283
281
|
self._f285 = None
|
|
284
|
-
self._f286 = None
|
|
285
282
|
self._f287 = None
|
|
286
283
|
self._f288 = None
|
|
287
284
|
self._f289 = None
|
|
285
|
+
self._f290 = None
|
|
286
|
+
self._f291 = None
|
|
287
|
+
self._f292 = None
|
|
288
|
+
self._f293 = None
|
|
289
|
+
self._f294 = None
|
|
290
|
+
self._f295 = None
|
|
288
291
|
self._fair_share = None
|
|
289
292
|
self._featured_studios_admin = None
|
|
290
293
|
self._job_artifacts_v2 = None
|
|
@@ -402,36 +405,38 @@ class V1UserFeatures(object):
|
|
|
402
405
|
self.f272 = f272
|
|
403
406
|
if f273 is not None:
|
|
404
407
|
self.f273 = f273
|
|
405
|
-
if f274 is not None:
|
|
406
|
-
self.f274 = f274
|
|
407
408
|
if f275 is not None:
|
|
408
409
|
self.f275 = f275
|
|
409
410
|
if f276 is not None:
|
|
410
411
|
self.f276 = f276
|
|
411
|
-
if f278 is not None:
|
|
412
|
-
self.f278 = f278
|
|
413
412
|
if f279 is not None:
|
|
414
413
|
self.f279 = f279
|
|
415
414
|
if f280 is not None:
|
|
416
415
|
self.f280 = f280
|
|
417
416
|
if f281 is not None:
|
|
418
417
|
self.f281 = f281
|
|
419
|
-
if f282 is not None:
|
|
420
|
-
self.f282 = f282
|
|
421
418
|
if f283 is not None:
|
|
422
419
|
self.f283 = f283
|
|
423
|
-
if f284 is not None:
|
|
424
|
-
self.f284 = f284
|
|
425
420
|
if f285 is not None:
|
|
426
421
|
self.f285 = f285
|
|
427
|
-
if f286 is not None:
|
|
428
|
-
self.f286 = f286
|
|
429
422
|
if f287 is not None:
|
|
430
423
|
self.f287 = f287
|
|
431
424
|
if f288 is not None:
|
|
432
425
|
self.f288 = f288
|
|
433
426
|
if f289 is not None:
|
|
434
427
|
self.f289 = f289
|
|
428
|
+
if f290 is not None:
|
|
429
|
+
self.f290 = f290
|
|
430
|
+
if f291 is not None:
|
|
431
|
+
self.f291 = f291
|
|
432
|
+
if f292 is not None:
|
|
433
|
+
self.f292 = f292
|
|
434
|
+
if f293 is not None:
|
|
435
|
+
self.f293 = f293
|
|
436
|
+
if f294 is not None:
|
|
437
|
+
self.f294 = f294
|
|
438
|
+
if f295 is not None:
|
|
439
|
+
self.f295 = f295
|
|
435
440
|
if fair_share is not None:
|
|
436
441
|
self.fair_share = fair_share
|
|
437
442
|
if featured_studios_admin is not None:
|
|
@@ -1345,27 +1350,6 @@ class V1UserFeatures(object):
|
|
|
1345
1350
|
|
|
1346
1351
|
self._f273 = f273
|
|
1347
1352
|
|
|
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
1353
|
@property
|
|
1370
1354
|
def f275(self) -> 'bool':
|
|
1371
1355
|
"""Gets the f275 of this V1UserFeatures. # noqa: E501
|
|
@@ -1408,27 +1392,6 @@ class V1UserFeatures(object):
|
|
|
1408
1392
|
|
|
1409
1393
|
self._f276 = f276
|
|
1410
1394
|
|
|
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
1395
|
@property
|
|
1433
1396
|
def f279(self) -> 'bool':
|
|
1434
1397
|
"""Gets the f279 of this V1UserFeatures. # noqa: E501
|
|
@@ -1492,27 +1455,6 @@ class V1UserFeatures(object):
|
|
|
1492
1455
|
|
|
1493
1456
|
self._f281 = f281
|
|
1494
1457
|
|
|
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
1458
|
@property
|
|
1517
1459
|
def f283(self) -> 'bool':
|
|
1518
1460
|
"""Gets the f283 of this V1UserFeatures. # noqa: E501
|
|
@@ -1534,27 +1476,6 @@ class V1UserFeatures(object):
|
|
|
1534
1476
|
|
|
1535
1477
|
self._f283 = f283
|
|
1536
1478
|
|
|
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
1479
|
@property
|
|
1559
1480
|
def f285(self) -> 'bool':
|
|
1560
1481
|
"""Gets the f285 of this V1UserFeatures. # noqa: E501
|
|
@@ -1576,27 +1497,6 @@ class V1UserFeatures(object):
|
|
|
1576
1497
|
|
|
1577
1498
|
self._f285 = f285
|
|
1578
1499
|
|
|
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
1500
|
@property
|
|
1601
1501
|
def f287(self) -> 'bool':
|
|
1602
1502
|
"""Gets the f287 of this V1UserFeatures. # noqa: E501
|
|
@@ -1660,6 +1560,132 @@ class V1UserFeatures(object):
|
|
|
1660
1560
|
|
|
1661
1561
|
self._f289 = f289
|
|
1662
1562
|
|
|
1563
|
+
@property
|
|
1564
|
+
def f290(self) -> 'bool':
|
|
1565
|
+
"""Gets the f290 of this V1UserFeatures. # noqa: E501
|
|
1566
|
+
|
|
1567
|
+
|
|
1568
|
+
:return: The f290 of this V1UserFeatures. # noqa: E501
|
|
1569
|
+
:rtype: bool
|
|
1570
|
+
"""
|
|
1571
|
+
return self._f290
|
|
1572
|
+
|
|
1573
|
+
@f290.setter
|
|
1574
|
+
def f290(self, f290: 'bool'):
|
|
1575
|
+
"""Sets the f290 of this V1UserFeatures.
|
|
1576
|
+
|
|
1577
|
+
|
|
1578
|
+
:param f290: The f290 of this V1UserFeatures. # noqa: E501
|
|
1579
|
+
:type: bool
|
|
1580
|
+
"""
|
|
1581
|
+
|
|
1582
|
+
self._f290 = f290
|
|
1583
|
+
|
|
1584
|
+
@property
|
|
1585
|
+
def f291(self) -> 'bool':
|
|
1586
|
+
"""Gets the f291 of this V1UserFeatures. # noqa: E501
|
|
1587
|
+
|
|
1588
|
+
|
|
1589
|
+
:return: The f291 of this V1UserFeatures. # noqa: E501
|
|
1590
|
+
:rtype: bool
|
|
1591
|
+
"""
|
|
1592
|
+
return self._f291
|
|
1593
|
+
|
|
1594
|
+
@f291.setter
|
|
1595
|
+
def f291(self, f291: 'bool'):
|
|
1596
|
+
"""Sets the f291 of this V1UserFeatures.
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
|
+
:param f291: The f291 of this V1UserFeatures. # noqa: E501
|
|
1600
|
+
:type: bool
|
|
1601
|
+
"""
|
|
1602
|
+
|
|
1603
|
+
self._f291 = f291
|
|
1604
|
+
|
|
1605
|
+
@property
|
|
1606
|
+
def f292(self) -> 'bool':
|
|
1607
|
+
"""Gets the f292 of this V1UserFeatures. # noqa: E501
|
|
1608
|
+
|
|
1609
|
+
|
|
1610
|
+
:return: The f292 of this V1UserFeatures. # noqa: E501
|
|
1611
|
+
:rtype: bool
|
|
1612
|
+
"""
|
|
1613
|
+
return self._f292
|
|
1614
|
+
|
|
1615
|
+
@f292.setter
|
|
1616
|
+
def f292(self, f292: 'bool'):
|
|
1617
|
+
"""Sets the f292 of this V1UserFeatures.
|
|
1618
|
+
|
|
1619
|
+
|
|
1620
|
+
:param f292: The f292 of this V1UserFeatures. # noqa: E501
|
|
1621
|
+
:type: bool
|
|
1622
|
+
"""
|
|
1623
|
+
|
|
1624
|
+
self._f292 = f292
|
|
1625
|
+
|
|
1626
|
+
@property
|
|
1627
|
+
def f293(self) -> 'bool':
|
|
1628
|
+
"""Gets the f293 of this V1UserFeatures. # noqa: E501
|
|
1629
|
+
|
|
1630
|
+
|
|
1631
|
+
:return: The f293 of this V1UserFeatures. # noqa: E501
|
|
1632
|
+
:rtype: bool
|
|
1633
|
+
"""
|
|
1634
|
+
return self._f293
|
|
1635
|
+
|
|
1636
|
+
@f293.setter
|
|
1637
|
+
def f293(self, f293: 'bool'):
|
|
1638
|
+
"""Sets the f293 of this V1UserFeatures.
|
|
1639
|
+
|
|
1640
|
+
|
|
1641
|
+
:param f293: The f293 of this V1UserFeatures. # noqa: E501
|
|
1642
|
+
:type: bool
|
|
1643
|
+
"""
|
|
1644
|
+
|
|
1645
|
+
self._f293 = f293
|
|
1646
|
+
|
|
1647
|
+
@property
|
|
1648
|
+
def f294(self) -> 'bool':
|
|
1649
|
+
"""Gets the f294 of this V1UserFeatures. # noqa: E501
|
|
1650
|
+
|
|
1651
|
+
|
|
1652
|
+
:return: The f294 of this V1UserFeatures. # noqa: E501
|
|
1653
|
+
:rtype: bool
|
|
1654
|
+
"""
|
|
1655
|
+
return self._f294
|
|
1656
|
+
|
|
1657
|
+
@f294.setter
|
|
1658
|
+
def f294(self, f294: 'bool'):
|
|
1659
|
+
"""Sets the f294 of this V1UserFeatures.
|
|
1660
|
+
|
|
1661
|
+
|
|
1662
|
+
:param f294: The f294 of this V1UserFeatures. # noqa: E501
|
|
1663
|
+
:type: bool
|
|
1664
|
+
"""
|
|
1665
|
+
|
|
1666
|
+
self._f294 = f294
|
|
1667
|
+
|
|
1668
|
+
@property
|
|
1669
|
+
def f295(self) -> 'bool':
|
|
1670
|
+
"""Gets the f295 of this V1UserFeatures. # noqa: E501
|
|
1671
|
+
|
|
1672
|
+
|
|
1673
|
+
:return: The f295 of this V1UserFeatures. # noqa: E501
|
|
1674
|
+
:rtype: bool
|
|
1675
|
+
"""
|
|
1676
|
+
return self._f295
|
|
1677
|
+
|
|
1678
|
+
@f295.setter
|
|
1679
|
+
def f295(self, f295: 'bool'):
|
|
1680
|
+
"""Sets the f295 of this V1UserFeatures.
|
|
1681
|
+
|
|
1682
|
+
|
|
1683
|
+
:param f295: The f295 of this V1UserFeatures. # noqa: E501
|
|
1684
|
+
:type: bool
|
|
1685
|
+
"""
|
|
1686
|
+
|
|
1687
|
+
self._f295 = f295
|
|
1688
|
+
|
|
1663
1689
|
@property
|
|
1664
1690
|
def fair_share(self) -> 'bool':
|
|
1665
1691
|
"""Gets the fair_share of this V1UserFeatures. # noqa: E501
|