lightning-sdk 2025.12.16__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/org_api.py +7 -0
- lightning_sdk/api/studio_api.py +223 -36
- lightning_sdk/api/teamspace_api.py +28 -9
- lightning_sdk/api/user_api.py +5 -0
- 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/download.py +2 -1
- lightning_sdk/cli/legacy/run.py +13 -2
- lightning_sdk/cli/legacy/studios_menu.py +8 -1
- 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 +24 -5
- lightning_sdk/job/job.py +12 -5
- lightning_sdk/job/v1.py +5 -2
- lightning_sdk/job/v2.py +9 -1
- lightning_sdk/k8s_cluster.py +9 -10
- lightning_sdk/lightning_cloud/__version__.py +1 -1
- lightning_sdk/lightning_cloud/openapi/__init__.py +46 -3
- lightning_sdk/lightning_cloud/openapi/api/__init__.py +1 -0
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +118 -1
- lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +787 -125
- lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +5 -1
- lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +11 -11
- 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/storage_service_api.py +5 -1
- lightning_sdk/lightning_cloud/openapi/api/virtual_machine_service_api.py +557 -0
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +45 -3
- lightning_sdk/lightning_cloud/openapi/models/cloud_space_environment_template_service_update_cloud_space_environment_template_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/cluster_service_add_container_registry_body.py +123 -0
- 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 +79 -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_refresh_container_registry_credentials_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/cluster_service_report_machine_system_metrics_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/cluster_service_validate_container_registry_body.py +97 -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_add_container_registry_response.py +123 -0
- 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_template_config.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_specialized_view.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_container_registry.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_info.py +281 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_integration.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_status.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +27 -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_cudo_direct_v1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_container_registry_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_logger_media_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_virtual_machine_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_ai_pod_v1.py → v1_ecr_registry_config.py} +49 -49
- lightning_sdk/lightning_cloud/openapi/models/v1_ecr_registry_config_input.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ecr_registry_details.py +201 -0
- 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_artifacts_page_response.py +29 -3
- 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_get_user_response.py +27 -1
- 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 +105 -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 +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_container_registries_response.py +123 -0
- 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_virtual_machines_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_logger_media.py +513 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +53 -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_node_metrics.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_refresh_container_registry_credentials_response.py +123 -0
- 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_search_user.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_tenant_credentials.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +217 -113
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_container_registry_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_virtual_machine.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_vm_configuration.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_vm_provider_configuration.py +227 -0
- 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/openapi/rest.py +2 -2
- lightning_sdk/lightning_cloud/rest_client.py +0 -2
- lightning_sdk/machine.py +3 -3
- lightning_sdk/mmt/base.py +26 -7
- lightning_sdk/mmt/mmt.py +11 -6
- lightning_sdk/mmt/v1.py +5 -2
- lightning_sdk/mmt/v2.py +5 -2
- lightning_sdk/organization.py +10 -1
- lightning_sdk/owner.py +4 -0
- lightning_sdk/plugin.py +2 -2
- lightning_sdk/studio.py +47 -6
- lightning_sdk/user.py +22 -2
- lightning_sdk/utils/logging.py +2 -1
- lightning_sdk/utils/resolve.py +9 -7
- {lightning_sdk-2025.12.16.dist-info → lightning_sdk-2026.1.22.dist-info}/METADATA +1 -5
- {lightning_sdk-2025.12.16.dist-info → lightning_sdk-2026.1.22.dist-info}/RECORD +139 -94
- {lightning_sdk-2025.12.16.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/source_code/logs_socket_api.py +0 -103
- /lightning_sdk/lightning_cloud/openapi/models/{v1_list_filesystem_mm_ts_response.py → v1_list_filesystem_mmts_response.py} +0 -0
- {lightning_sdk-2025.12.16.dist-info → lightning_sdk-2026.1.22.dist-info}/LICENSE +0 -0
- {lightning_sdk-2025.12.16.dist-info → lightning_sdk-2026.1.22.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-2025.12.16.dist-info → lightning_sdk-2026.1.22.dist-info}/top_level.txt +0 -0
|
@@ -81,18 +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
|
-
'
|
|
91
|
+
'f287': 'bool',
|
|
92
|
+
'f288': 'bool',
|
|
93
|
+
'f289': 'bool',
|
|
94
|
+
'f290': 'bool',
|
|
95
|
+
'f291': 'bool',
|
|
96
|
+
'f292': 'bool',
|
|
97
|
+
'f293': 'bool',
|
|
98
|
+
'f294': 'bool',
|
|
99
|
+
'f295': 'bool',
|
|
96
100
|
'fair_share': 'bool',
|
|
97
101
|
'featured_studios_admin': 'bool',
|
|
98
102
|
'job_artifacts_v2': 'bool',
|
|
@@ -172,18 +176,22 @@ class V1UserFeatures(object):
|
|
|
172
176
|
'f271': 'f271',
|
|
173
177
|
'f272': 'f272',
|
|
174
178
|
'f273': 'f273',
|
|
175
|
-
'f274': 'f274',
|
|
176
179
|
'f275': 'f275',
|
|
177
180
|
'f276': 'f276',
|
|
178
|
-
'f278': 'f278',
|
|
179
181
|
'f279': 'f279',
|
|
180
182
|
'f280': 'f280',
|
|
181
183
|
'f281': 'f281',
|
|
182
|
-
'f282': 'f282',
|
|
183
184
|
'f283': 'f283',
|
|
184
|
-
'f284': 'f284',
|
|
185
185
|
'f285': 'f285',
|
|
186
|
-
'
|
|
186
|
+
'f287': 'f287',
|
|
187
|
+
'f288': 'f288',
|
|
188
|
+
'f289': 'f289',
|
|
189
|
+
'f290': 'f290',
|
|
190
|
+
'f291': 'f291',
|
|
191
|
+
'f292': 'f292',
|
|
192
|
+
'f293': 'f293',
|
|
193
|
+
'f294': 'f294',
|
|
194
|
+
'f295': 'f295',
|
|
187
195
|
'fair_share': 'fairShare',
|
|
188
196
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
189
197
|
'job_artifacts_v2': 'jobArtifactsV2',
|
|
@@ -222,7 +230,7 @@ class V1UserFeatures(object):
|
|
|
222
230
|
'weka': 'weka'
|
|
223
231
|
}
|
|
224
232
|
|
|
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, 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
|
|
226
234
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
227
235
|
self._affiliate_links = None
|
|
228
236
|
self._agents_v2 = None
|
|
@@ -264,18 +272,22 @@ class V1UserFeatures(object):
|
|
|
264
272
|
self._f271 = None
|
|
265
273
|
self._f272 = None
|
|
266
274
|
self._f273 = None
|
|
267
|
-
self._f274 = None
|
|
268
275
|
self._f275 = None
|
|
269
276
|
self._f276 = None
|
|
270
|
-
self._f278 = None
|
|
271
277
|
self._f279 = None
|
|
272
278
|
self._f280 = None
|
|
273
279
|
self._f281 = None
|
|
274
|
-
self._f282 = None
|
|
275
280
|
self._f283 = None
|
|
276
|
-
self._f284 = None
|
|
277
281
|
self._f285 = None
|
|
278
|
-
self.
|
|
282
|
+
self._f287 = None
|
|
283
|
+
self._f288 = None
|
|
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
|
|
279
291
|
self._fair_share = None
|
|
280
292
|
self._featured_studios_admin = None
|
|
281
293
|
self._job_artifacts_v2 = None
|
|
@@ -393,30 +405,38 @@ class V1UserFeatures(object):
|
|
|
393
405
|
self.f272 = f272
|
|
394
406
|
if f273 is not None:
|
|
395
407
|
self.f273 = f273
|
|
396
|
-
if f274 is not None:
|
|
397
|
-
self.f274 = f274
|
|
398
408
|
if f275 is not None:
|
|
399
409
|
self.f275 = f275
|
|
400
410
|
if f276 is not None:
|
|
401
411
|
self.f276 = f276
|
|
402
|
-
if f278 is not None:
|
|
403
|
-
self.f278 = f278
|
|
404
412
|
if f279 is not None:
|
|
405
413
|
self.f279 = f279
|
|
406
414
|
if f280 is not None:
|
|
407
415
|
self.f280 = f280
|
|
408
416
|
if f281 is not None:
|
|
409
417
|
self.f281 = f281
|
|
410
|
-
if f282 is not None:
|
|
411
|
-
self.f282 = f282
|
|
412
418
|
if f283 is not None:
|
|
413
419
|
self.f283 = f283
|
|
414
|
-
if f284 is not None:
|
|
415
|
-
self.f284 = f284
|
|
416
420
|
if f285 is not None:
|
|
417
421
|
self.f285 = f285
|
|
418
|
-
if
|
|
419
|
-
self.
|
|
422
|
+
if f287 is not None:
|
|
423
|
+
self.f287 = f287
|
|
424
|
+
if f288 is not None:
|
|
425
|
+
self.f288 = f288
|
|
426
|
+
if f289 is not None:
|
|
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
|
|
420
440
|
if fair_share is not None:
|
|
421
441
|
self.fair_share = fair_share
|
|
422
442
|
if featured_studios_admin is not None:
|
|
@@ -1330,27 +1350,6 @@ class V1UserFeatures(object):
|
|
|
1330
1350
|
|
|
1331
1351
|
self._f273 = f273
|
|
1332
1352
|
|
|
1333
|
-
@property
|
|
1334
|
-
def f274(self) -> 'bool':
|
|
1335
|
-
"""Gets the f274 of this V1UserFeatures. # noqa: E501
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
:return: The f274 of this V1UserFeatures. # noqa: E501
|
|
1339
|
-
:rtype: bool
|
|
1340
|
-
"""
|
|
1341
|
-
return self._f274
|
|
1342
|
-
|
|
1343
|
-
@f274.setter
|
|
1344
|
-
def f274(self, f274: 'bool'):
|
|
1345
|
-
"""Sets the f274 of this V1UserFeatures.
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
:param f274: The f274 of this V1UserFeatures. # noqa: E501
|
|
1349
|
-
:type: bool
|
|
1350
|
-
"""
|
|
1351
|
-
|
|
1352
|
-
self._f274 = f274
|
|
1353
|
-
|
|
1354
1353
|
@property
|
|
1355
1354
|
def f275(self) -> 'bool':
|
|
1356
1355
|
"""Gets the f275 of this V1UserFeatures. # noqa: E501
|
|
@@ -1393,27 +1392,6 @@ class V1UserFeatures(object):
|
|
|
1393
1392
|
|
|
1394
1393
|
self._f276 = f276
|
|
1395
1394
|
|
|
1396
|
-
@property
|
|
1397
|
-
def f278(self) -> 'bool':
|
|
1398
|
-
"""Gets the f278 of this V1UserFeatures. # noqa: E501
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
:return: The f278 of this V1UserFeatures. # noqa: E501
|
|
1402
|
-
:rtype: bool
|
|
1403
|
-
"""
|
|
1404
|
-
return self._f278
|
|
1405
|
-
|
|
1406
|
-
@f278.setter
|
|
1407
|
-
def f278(self, f278: 'bool'):
|
|
1408
|
-
"""Sets the f278 of this V1UserFeatures.
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
:param f278: The f278 of this V1UserFeatures. # noqa: E501
|
|
1412
|
-
:type: bool
|
|
1413
|
-
"""
|
|
1414
|
-
|
|
1415
|
-
self._f278 = f278
|
|
1416
|
-
|
|
1417
1395
|
@property
|
|
1418
1396
|
def f279(self) -> 'bool':
|
|
1419
1397
|
"""Gets the f279 of this V1UserFeatures. # noqa: E501
|
|
@@ -1478,109 +1456,235 @@ class V1UserFeatures(object):
|
|
|
1478
1456
|
self._f281 = f281
|
|
1479
1457
|
|
|
1480
1458
|
@property
|
|
1481
|
-
def
|
|
1482
|
-
"""Gets the
|
|
1459
|
+
def f283(self) -> 'bool':
|
|
1460
|
+
"""Gets the f283 of this V1UserFeatures. # noqa: E501
|
|
1483
1461
|
|
|
1484
1462
|
|
|
1485
|
-
:return: The
|
|
1463
|
+
:return: The f283 of this V1UserFeatures. # noqa: E501
|
|
1486
1464
|
:rtype: bool
|
|
1487
1465
|
"""
|
|
1488
|
-
return self.
|
|
1466
|
+
return self._f283
|
|
1489
1467
|
|
|
1490
|
-
@
|
|
1491
|
-
def
|
|
1492
|
-
"""Sets the
|
|
1468
|
+
@f283.setter
|
|
1469
|
+
def f283(self, f283: 'bool'):
|
|
1470
|
+
"""Sets the f283 of this V1UserFeatures.
|
|
1493
1471
|
|
|
1494
1472
|
|
|
1495
|
-
:param
|
|
1473
|
+
:param f283: The f283 of this V1UserFeatures. # noqa: E501
|
|
1496
1474
|
:type: bool
|
|
1497
1475
|
"""
|
|
1498
1476
|
|
|
1499
|
-
self.
|
|
1477
|
+
self._f283 = f283
|
|
1500
1478
|
|
|
1501
1479
|
@property
|
|
1502
|
-
def
|
|
1503
|
-
"""Gets the
|
|
1480
|
+
def f285(self) -> 'bool':
|
|
1481
|
+
"""Gets the f285 of this V1UserFeatures. # noqa: E501
|
|
1504
1482
|
|
|
1505
1483
|
|
|
1506
|
-
:return: The
|
|
1484
|
+
:return: The f285 of this V1UserFeatures. # noqa: E501
|
|
1507
1485
|
:rtype: bool
|
|
1508
1486
|
"""
|
|
1509
|
-
return self.
|
|
1487
|
+
return self._f285
|
|
1510
1488
|
|
|
1511
|
-
@
|
|
1512
|
-
def
|
|
1513
|
-
"""Sets the
|
|
1489
|
+
@f285.setter
|
|
1490
|
+
def f285(self, f285: 'bool'):
|
|
1491
|
+
"""Sets the f285 of this V1UserFeatures.
|
|
1514
1492
|
|
|
1515
1493
|
|
|
1516
|
-
:param
|
|
1494
|
+
:param f285: The f285 of this V1UserFeatures. # noqa: E501
|
|
1517
1495
|
:type: bool
|
|
1518
1496
|
"""
|
|
1519
1497
|
|
|
1520
|
-
self.
|
|
1498
|
+
self._f285 = f285
|
|
1521
1499
|
|
|
1522
1500
|
@property
|
|
1523
|
-
def
|
|
1524
|
-
"""Gets the
|
|
1501
|
+
def f287(self) -> 'bool':
|
|
1502
|
+
"""Gets the f287 of this V1UserFeatures. # noqa: E501
|
|
1525
1503
|
|
|
1526
1504
|
|
|
1527
|
-
:return: The
|
|
1505
|
+
:return: The f287 of this V1UserFeatures. # noqa: E501
|
|
1528
1506
|
:rtype: bool
|
|
1529
1507
|
"""
|
|
1530
|
-
return self.
|
|
1508
|
+
return self._f287
|
|
1531
1509
|
|
|
1532
|
-
@
|
|
1533
|
-
def
|
|
1534
|
-
"""Sets the
|
|
1510
|
+
@f287.setter
|
|
1511
|
+
def f287(self, f287: 'bool'):
|
|
1512
|
+
"""Sets the f287 of this V1UserFeatures.
|
|
1535
1513
|
|
|
1536
1514
|
|
|
1537
|
-
:param
|
|
1515
|
+
:param f287: The f287 of this V1UserFeatures. # noqa: E501
|
|
1538
1516
|
:type: bool
|
|
1539
1517
|
"""
|
|
1540
1518
|
|
|
1541
|
-
self.
|
|
1519
|
+
self._f287 = f287
|
|
1542
1520
|
|
|
1543
1521
|
@property
|
|
1544
|
-
def
|
|
1545
|
-
"""Gets the
|
|
1522
|
+
def f288(self) -> 'bool':
|
|
1523
|
+
"""Gets the f288 of this V1UserFeatures. # noqa: E501
|
|
1546
1524
|
|
|
1547
1525
|
|
|
1548
|
-
:return: The
|
|
1526
|
+
:return: The f288 of this V1UserFeatures. # noqa: E501
|
|
1549
1527
|
:rtype: bool
|
|
1550
1528
|
"""
|
|
1551
|
-
return self.
|
|
1529
|
+
return self._f288
|
|
1552
1530
|
|
|
1553
|
-
@
|
|
1554
|
-
def
|
|
1555
|
-
"""Sets the
|
|
1531
|
+
@f288.setter
|
|
1532
|
+
def f288(self, f288: 'bool'):
|
|
1533
|
+
"""Sets the f288 of this V1UserFeatures.
|
|
1556
1534
|
|
|
1557
1535
|
|
|
1558
|
-
:param
|
|
1536
|
+
:param f288: The f288 of this V1UserFeatures. # noqa: E501
|
|
1559
1537
|
:type: bool
|
|
1560
1538
|
"""
|
|
1561
1539
|
|
|
1562
|
-
self.
|
|
1540
|
+
self._f288 = f288
|
|
1541
|
+
|
|
1542
|
+
@property
|
|
1543
|
+
def f289(self) -> 'bool':
|
|
1544
|
+
"""Gets the f289 of this V1UserFeatures. # noqa: E501
|
|
1545
|
+
|
|
1546
|
+
|
|
1547
|
+
:return: The f289 of this V1UserFeatures. # noqa: E501
|
|
1548
|
+
:rtype: bool
|
|
1549
|
+
"""
|
|
1550
|
+
return self._f289
|
|
1551
|
+
|
|
1552
|
+
@f289.setter
|
|
1553
|
+
def f289(self, f289: 'bool'):
|
|
1554
|
+
"""Sets the f289 of this V1UserFeatures.
|
|
1555
|
+
|
|
1556
|
+
|
|
1557
|
+
:param f289: The f289 of this V1UserFeatures. # noqa: E501
|
|
1558
|
+
:type: bool
|
|
1559
|
+
"""
|
|
1560
|
+
|
|
1561
|
+
self._f289 = f289
|
|
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
|
|
1563
1667
|
|
|
1564
1668
|
@property
|
|
1565
|
-
def
|
|
1566
|
-
"""Gets the
|
|
1669
|
+
def f295(self) -> 'bool':
|
|
1670
|
+
"""Gets the f295 of this V1UserFeatures. # noqa: E501
|
|
1567
1671
|
|
|
1568
1672
|
|
|
1569
|
-
:return: The
|
|
1673
|
+
:return: The f295 of this V1UserFeatures. # noqa: E501
|
|
1570
1674
|
:rtype: bool
|
|
1571
1675
|
"""
|
|
1572
|
-
return self.
|
|
1676
|
+
return self._f295
|
|
1573
1677
|
|
|
1574
|
-
@
|
|
1575
|
-
def
|
|
1576
|
-
"""Sets the
|
|
1678
|
+
@f295.setter
|
|
1679
|
+
def f295(self, f295: 'bool'):
|
|
1680
|
+
"""Sets the f295 of this V1UserFeatures.
|
|
1577
1681
|
|
|
1578
1682
|
|
|
1579
|
-
:param
|
|
1683
|
+
:param f295: The f295 of this V1UserFeatures. # noqa: E501
|
|
1580
1684
|
:type: bool
|
|
1581
1685
|
"""
|
|
1582
1686
|
|
|
1583
|
-
self.
|
|
1687
|
+
self._f295 = f295
|
|
1584
1688
|
|
|
1585
1689
|
@property
|
|
1586
1690
|
def fair_share(self) -> 'bool':
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
external/v1/auth_service.proto
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: version not set
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
|
|
12
|
+
NOTE
|
|
13
|
+
----
|
|
14
|
+
standard swagger-codegen-cli for this python client has been modified
|
|
15
|
+
by custom templates. The purpose of these templates is to include
|
|
16
|
+
typing information in the API and Model code. Please refer to the
|
|
17
|
+
main grid repository for more info
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
import pprint
|
|
21
|
+
import re # noqa: F401
|
|
22
|
+
|
|
23
|
+
from typing import TYPE_CHECKING
|
|
24
|
+
|
|
25
|
+
import six
|
|
26
|
+
|
|
27
|
+
if TYPE_CHECKING:
|
|
28
|
+
from datetime import datetime
|
|
29
|
+
from lightning_sdk.lightning_cloud.openapi.models import *
|
|
30
|
+
|
|
31
|
+
class V1ValidateContainerRegistryResponse(object):
|
|
32
|
+
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
33
|
+
|
|
34
|
+
Do not edit the class manually.
|
|
35
|
+
"""
|
|
36
|
+
"""
|
|
37
|
+
Attributes:
|
|
38
|
+
swagger_types (dict): The key is attribute name
|
|
39
|
+
and the value is attribute type.
|
|
40
|
+
attribute_map (dict): The key is attribute name
|
|
41
|
+
and the value is json key in definition.
|
|
42
|
+
"""
|
|
43
|
+
swagger_types = {
|
|
44
|
+
'message': 'str',
|
|
45
|
+
'valid': 'bool'
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
attribute_map = {
|
|
49
|
+
'message': 'message',
|
|
50
|
+
'valid': 'valid'
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
def __init__(self, message: 'str' =None, valid: 'bool' =None): # noqa: E501
|
|
54
|
+
"""V1ValidateContainerRegistryResponse - a model defined in Swagger""" # noqa: E501
|
|
55
|
+
self._message = None
|
|
56
|
+
self._valid = None
|
|
57
|
+
self.discriminator = None
|
|
58
|
+
if message is not None:
|
|
59
|
+
self.message = message
|
|
60
|
+
if valid is not None:
|
|
61
|
+
self.valid = valid
|
|
62
|
+
|
|
63
|
+
@property
|
|
64
|
+
def message(self) -> 'str':
|
|
65
|
+
"""Gets the message of this V1ValidateContainerRegistryResponse. # noqa: E501
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
:return: The message of this V1ValidateContainerRegistryResponse. # noqa: E501
|
|
69
|
+
:rtype: str
|
|
70
|
+
"""
|
|
71
|
+
return self._message
|
|
72
|
+
|
|
73
|
+
@message.setter
|
|
74
|
+
def message(self, message: 'str'):
|
|
75
|
+
"""Sets the message of this V1ValidateContainerRegistryResponse.
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
:param message: The message of this V1ValidateContainerRegistryResponse. # noqa: E501
|
|
79
|
+
:type: str
|
|
80
|
+
"""
|
|
81
|
+
|
|
82
|
+
self._message = message
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
def valid(self) -> 'bool':
|
|
86
|
+
"""Gets the valid of this V1ValidateContainerRegistryResponse. # noqa: E501
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
:return: The valid of this V1ValidateContainerRegistryResponse. # noqa: E501
|
|
90
|
+
:rtype: bool
|
|
91
|
+
"""
|
|
92
|
+
return self._valid
|
|
93
|
+
|
|
94
|
+
@valid.setter
|
|
95
|
+
def valid(self, valid: 'bool'):
|
|
96
|
+
"""Sets the valid of this V1ValidateContainerRegistryResponse.
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
:param valid: The valid of this V1ValidateContainerRegistryResponse. # noqa: E501
|
|
100
|
+
:type: bool
|
|
101
|
+
"""
|
|
102
|
+
|
|
103
|
+
self._valid = valid
|
|
104
|
+
|
|
105
|
+
def to_dict(self) -> dict:
|
|
106
|
+
"""Returns the model properties as a dict"""
|
|
107
|
+
result = {}
|
|
108
|
+
|
|
109
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
110
|
+
value = getattr(self, attr)
|
|
111
|
+
if isinstance(value, list):
|
|
112
|
+
result[attr] = list(map(
|
|
113
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
114
|
+
value
|
|
115
|
+
))
|
|
116
|
+
elif hasattr(value, "to_dict"):
|
|
117
|
+
result[attr] = value.to_dict()
|
|
118
|
+
elif isinstance(value, dict):
|
|
119
|
+
result[attr] = dict(map(
|
|
120
|
+
lambda item: (item[0], item[1].to_dict())
|
|
121
|
+
if hasattr(item[1], "to_dict") else item,
|
|
122
|
+
value.items()
|
|
123
|
+
))
|
|
124
|
+
else:
|
|
125
|
+
result[attr] = value
|
|
126
|
+
if issubclass(V1ValidateContainerRegistryResponse, dict):
|
|
127
|
+
for key, value in self.items():
|
|
128
|
+
result[key] = value
|
|
129
|
+
|
|
130
|
+
return result
|
|
131
|
+
|
|
132
|
+
def to_str(self) -> str:
|
|
133
|
+
"""Returns the string representation of the model"""
|
|
134
|
+
return pprint.pformat(self.to_dict())
|
|
135
|
+
|
|
136
|
+
def __repr__(self) -> str:
|
|
137
|
+
"""For `print` and `pprint`"""
|
|
138
|
+
return self.to_str()
|
|
139
|
+
|
|
140
|
+
def __eq__(self, other: 'V1ValidateContainerRegistryResponse') -> bool:
|
|
141
|
+
"""Returns true if both objects are equal"""
|
|
142
|
+
if not isinstance(other, V1ValidateContainerRegistryResponse):
|
|
143
|
+
return False
|
|
144
|
+
|
|
145
|
+
return self.__dict__ == other.__dict__
|
|
146
|
+
|
|
147
|
+
def __ne__(self, other: 'V1ValidateContainerRegistryResponse') -> bool:
|
|
148
|
+
"""Returns true if both objects are not equal"""
|
|
149
|
+
return not self == other
|