lightning-sdk 2025.8.18.post0__py3-none-any.whl → 2025.8.19.post0__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/__init__.py +1 -1
- lightning_sdk/api/studio_api.py +14 -36
- lightning_sdk/api/utils.py +108 -18
- lightning_sdk/lightning_cloud/openapi/__init__.py +1 -0
- lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +113 -0
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +3 -81
- lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_storage_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_metrics.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_list_aggregated_pod_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_node_metrics.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_instance_config_request.py +3 -81
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +1 -105
- {lightning_sdk-2025.8.18.post0.dist-info → lightning_sdk-2025.8.19.post0.dist-info}/METADATA +1 -1
- {lightning_sdk-2025.8.18.post0.dist-info → lightning_sdk-2025.8.19.post0.dist-info}/RECORD +23 -22
- {lightning_sdk-2025.8.18.post0.dist-info → lightning_sdk-2025.8.19.post0.dist-info}/LICENSE +0 -0
- {lightning_sdk-2025.8.18.post0.dist-info → lightning_sdk-2025.8.19.post0.dist-info}/WHEEL +0 -0
- {lightning_sdk-2025.8.18.post0.dist-info → lightning_sdk-2025.8.19.post0.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-2025.8.18.post0.dist-info → lightning_sdk-2025.8.19.post0.dist-info}/top_level.txt +0 -0
lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_instance_config_request.py
CHANGED
|
@@ -43,57 +43,42 @@ class V1UpdateCloudSpaceInstanceConfigRequest(object):
|
|
|
43
43
|
swagger_types = {
|
|
44
44
|
'compute_config': 'V1UserRequestedComputeConfig',
|
|
45
45
|
'data_connection_mounts': 'list[V1DataConnectionMount]',
|
|
46
|
-
'disable_auto_shutdown': 'bool',
|
|
47
46
|
'id': 'str',
|
|
48
47
|
'ide': 'str',
|
|
49
|
-
'idle_shutdown_seconds': 'int',
|
|
50
48
|
'port_plugin_port': 'str',
|
|
51
|
-
'project_id': 'str'
|
|
52
|
-
'switch_to_default_machine_on_idle': 'bool'
|
|
49
|
+
'project_id': 'str'
|
|
53
50
|
}
|
|
54
51
|
|
|
55
52
|
attribute_map = {
|
|
56
53
|
'compute_config': 'computeConfig',
|
|
57
54
|
'data_connection_mounts': 'dataConnectionMounts',
|
|
58
|
-
'disable_auto_shutdown': 'disableAutoShutdown',
|
|
59
55
|
'id': 'id',
|
|
60
56
|
'ide': 'ide',
|
|
61
|
-
'idle_shutdown_seconds': 'idleShutdownSeconds',
|
|
62
57
|
'port_plugin_port': 'portPluginPort',
|
|
63
|
-
'project_id': 'projectId'
|
|
64
|
-
'switch_to_default_machine_on_idle': 'switchToDefaultMachineOnIdle'
|
|
58
|
+
'project_id': 'projectId'
|
|
65
59
|
}
|
|
66
60
|
|
|
67
|
-
def __init__(self, compute_config: 'V1UserRequestedComputeConfig' =None, data_connection_mounts: 'list[V1DataConnectionMount]' =None,
|
|
61
|
+
def __init__(self, compute_config: 'V1UserRequestedComputeConfig' =None, data_connection_mounts: 'list[V1DataConnectionMount]' =None, id: 'str' =None, ide: 'str' =None, port_plugin_port: 'str' =None, project_id: 'str' =None): # noqa: E501
|
|
68
62
|
"""V1UpdateCloudSpaceInstanceConfigRequest - a model defined in Swagger""" # noqa: E501
|
|
69
63
|
self._compute_config = None
|
|
70
64
|
self._data_connection_mounts = None
|
|
71
|
-
self._disable_auto_shutdown = None
|
|
72
65
|
self._id = None
|
|
73
66
|
self._ide = None
|
|
74
|
-
self._idle_shutdown_seconds = None
|
|
75
67
|
self._port_plugin_port = None
|
|
76
68
|
self._project_id = None
|
|
77
|
-
self._switch_to_default_machine_on_idle = None
|
|
78
69
|
self.discriminator = None
|
|
79
70
|
if compute_config is not None:
|
|
80
71
|
self.compute_config = compute_config
|
|
81
72
|
if data_connection_mounts is not None:
|
|
82
73
|
self.data_connection_mounts = data_connection_mounts
|
|
83
|
-
if disable_auto_shutdown is not None:
|
|
84
|
-
self.disable_auto_shutdown = disable_auto_shutdown
|
|
85
74
|
if id is not None:
|
|
86
75
|
self.id = id
|
|
87
76
|
if ide is not None:
|
|
88
77
|
self.ide = ide
|
|
89
|
-
if idle_shutdown_seconds is not None:
|
|
90
|
-
self.idle_shutdown_seconds = idle_shutdown_seconds
|
|
91
78
|
if port_plugin_port is not None:
|
|
92
79
|
self.port_plugin_port = port_plugin_port
|
|
93
80
|
if project_id is not None:
|
|
94
81
|
self.project_id = project_id
|
|
95
|
-
if switch_to_default_machine_on_idle is not None:
|
|
96
|
-
self.switch_to_default_machine_on_idle = switch_to_default_machine_on_idle
|
|
97
82
|
|
|
98
83
|
@property
|
|
99
84
|
def compute_config(self) -> 'V1UserRequestedComputeConfig':
|
|
@@ -137,27 +122,6 @@ class V1UpdateCloudSpaceInstanceConfigRequest(object):
|
|
|
137
122
|
|
|
138
123
|
self._data_connection_mounts = data_connection_mounts
|
|
139
124
|
|
|
140
|
-
@property
|
|
141
|
-
def disable_auto_shutdown(self) -> 'bool':
|
|
142
|
-
"""Gets the disable_auto_shutdown of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
:return: The disable_auto_shutdown of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
146
|
-
:rtype: bool
|
|
147
|
-
"""
|
|
148
|
-
return self._disable_auto_shutdown
|
|
149
|
-
|
|
150
|
-
@disable_auto_shutdown.setter
|
|
151
|
-
def disable_auto_shutdown(self, disable_auto_shutdown: 'bool'):
|
|
152
|
-
"""Sets the disable_auto_shutdown of this V1UpdateCloudSpaceInstanceConfigRequest.
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
:param disable_auto_shutdown: The disable_auto_shutdown of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
156
|
-
:type: bool
|
|
157
|
-
"""
|
|
158
|
-
|
|
159
|
-
self._disable_auto_shutdown = disable_auto_shutdown
|
|
160
|
-
|
|
161
125
|
@property
|
|
162
126
|
def id(self) -> 'str':
|
|
163
127
|
"""Gets the id of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
@@ -200,27 +164,6 @@ class V1UpdateCloudSpaceInstanceConfigRequest(object):
|
|
|
200
164
|
|
|
201
165
|
self._ide = ide
|
|
202
166
|
|
|
203
|
-
@property
|
|
204
|
-
def idle_shutdown_seconds(self) -> 'int':
|
|
205
|
-
"""Gets the idle_shutdown_seconds of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
:return: The idle_shutdown_seconds of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
209
|
-
:rtype: int
|
|
210
|
-
"""
|
|
211
|
-
return self._idle_shutdown_seconds
|
|
212
|
-
|
|
213
|
-
@idle_shutdown_seconds.setter
|
|
214
|
-
def idle_shutdown_seconds(self, idle_shutdown_seconds: 'int'):
|
|
215
|
-
"""Sets the idle_shutdown_seconds of this V1UpdateCloudSpaceInstanceConfigRequest.
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
:param idle_shutdown_seconds: The idle_shutdown_seconds of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
219
|
-
:type: int
|
|
220
|
-
"""
|
|
221
|
-
|
|
222
|
-
self._idle_shutdown_seconds = idle_shutdown_seconds
|
|
223
|
-
|
|
224
167
|
@property
|
|
225
168
|
def port_plugin_port(self) -> 'str':
|
|
226
169
|
"""Gets the port_plugin_port of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
@@ -263,27 +206,6 @@ class V1UpdateCloudSpaceInstanceConfigRequest(object):
|
|
|
263
206
|
|
|
264
207
|
self._project_id = project_id
|
|
265
208
|
|
|
266
|
-
@property
|
|
267
|
-
def switch_to_default_machine_on_idle(self) -> 'bool':
|
|
268
|
-
"""Gets the switch_to_default_machine_on_idle of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
:return: The switch_to_default_machine_on_idle of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
272
|
-
:rtype: bool
|
|
273
|
-
"""
|
|
274
|
-
return self._switch_to_default_machine_on_idle
|
|
275
|
-
|
|
276
|
-
@switch_to_default_machine_on_idle.setter
|
|
277
|
-
def switch_to_default_machine_on_idle(self, switch_to_default_machine_on_idle: 'bool'):
|
|
278
|
-
"""Sets the switch_to_default_machine_on_idle of this V1UpdateCloudSpaceInstanceConfigRequest.
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
:param switch_to_default_machine_on_idle: The switch_to_default_machine_on_idle of this V1UpdateCloudSpaceInstanceConfigRequest. # noqa: E501
|
|
282
|
-
:type: bool
|
|
283
|
-
"""
|
|
284
|
-
|
|
285
|
-
self._switch_to_default_machine_on_idle = switch_to_default_machine_on_idle
|
|
286
|
-
|
|
287
209
|
def to_dict(self) -> dict:
|
|
288
210
|
"""Returns the model properties as a dict"""
|
|
289
211
|
result = {}
|
|
@@ -41,7 +41,6 @@ class V1UserFeatures(object):
|
|
|
41
41
|
and the value is json key in definition.
|
|
42
42
|
"""
|
|
43
43
|
swagger_types = {
|
|
44
|
-
'add_data_v2': 'bool',
|
|
45
44
|
'affiliate_links': 'bool',
|
|
46
45
|
'agents_v2': 'bool',
|
|
47
46
|
'ai_hub_monetization': 'bool',
|
|
@@ -75,7 +74,6 @@ class V1UserFeatures(object):
|
|
|
75
74
|
'f241': 'bool',
|
|
76
75
|
'f242': 'bool',
|
|
77
76
|
'f243': 'bool',
|
|
78
|
-
'f244': 'bool',
|
|
79
77
|
'f245': 'bool',
|
|
80
78
|
'fair_share': 'bool',
|
|
81
79
|
'featured_studios_admin': 'bool',
|
|
@@ -109,7 +107,6 @@ class V1UserFeatures(object):
|
|
|
109
107
|
'product_license': 'bool',
|
|
110
108
|
'project_selector': 'bool',
|
|
111
109
|
'publish_pipelines': 'bool',
|
|
112
|
-
'r2_data_connections': 'bool',
|
|
113
110
|
'reserved_machines_tab': 'bool',
|
|
114
111
|
'restartable_jobs': 'bool',
|
|
115
112
|
'runnable_public_studio_page': 'bool',
|
|
@@ -123,7 +120,6 @@ class V1UserFeatures(object):
|
|
|
123
120
|
'studio_sharing_v2': 'bool',
|
|
124
121
|
'studio_version_visibility': 'bool',
|
|
125
122
|
'trainium2': 'bool',
|
|
126
|
-
'use_internal_data_connection_mounts': 'bool',
|
|
127
123
|
'use_rclone_mounts_only': 'bool',
|
|
128
124
|
'vultr': 'bool',
|
|
129
125
|
'weka': 'bool',
|
|
@@ -131,7 +127,6 @@ class V1UserFeatures(object):
|
|
|
131
127
|
}
|
|
132
128
|
|
|
133
129
|
attribute_map = {
|
|
134
|
-
'add_data_v2': 'addDataV2',
|
|
135
130
|
'affiliate_links': 'affiliateLinks',
|
|
136
131
|
'agents_v2': 'agentsV2',
|
|
137
132
|
'ai_hub_monetization': 'aiHubMonetization',
|
|
@@ -165,7 +160,6 @@ class V1UserFeatures(object):
|
|
|
165
160
|
'f241': 'f241',
|
|
166
161
|
'f242': 'f242',
|
|
167
162
|
'f243': 'f243',
|
|
168
|
-
'f244': 'f244',
|
|
169
163
|
'f245': 'f245',
|
|
170
164
|
'fair_share': 'fairShare',
|
|
171
165
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
@@ -199,7 +193,6 @@ class V1UserFeatures(object):
|
|
|
199
193
|
'product_license': 'productLicense',
|
|
200
194
|
'project_selector': 'projectSelector',
|
|
201
195
|
'publish_pipelines': 'publishPipelines',
|
|
202
|
-
'r2_data_connections': 'r2DataConnections',
|
|
203
196
|
'reserved_machines_tab': 'reservedMachinesTab',
|
|
204
197
|
'restartable_jobs': 'restartableJobs',
|
|
205
198
|
'runnable_public_studio_page': 'runnablePublicStudioPage',
|
|
@@ -213,16 +206,14 @@ class V1UserFeatures(object):
|
|
|
213
206
|
'studio_sharing_v2': 'studioSharingV2',
|
|
214
207
|
'studio_version_visibility': 'studioVersionVisibility',
|
|
215
208
|
'trainium2': 'trainium2',
|
|
216
|
-
'use_internal_data_connection_mounts': 'useInternalDataConnectionMounts',
|
|
217
209
|
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
218
210
|
'vultr': 'vultr',
|
|
219
211
|
'weka': 'weka',
|
|
220
212
|
'writable_s3_connections': 'writableS3Connections'
|
|
221
213
|
}
|
|
222
214
|
|
|
223
|
-
def __init__(self,
|
|
215
|
+
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, f237: 'bool' =None, f238: 'bool' =None, f239: 'bool' =None, f240: 'bool' =None, f241: 'bool' =None, f242: 'bool' =None, f243: 'bool' =None, f245: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, gcp_overprovisioning: 'bool' =None, gcs_connections_optimized: 'bool' =None, gcs_folders: '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, onboarding_v2: '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, single_wallet: '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, use_rclone_mounts_only: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None, writable_s3_connections: 'bool' =None): # noqa: E501
|
|
224
216
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
225
|
-
self._add_data_v2 = None
|
|
226
217
|
self._affiliate_links = None
|
|
227
218
|
self._agents_v2 = None
|
|
228
219
|
self._ai_hub_monetization = None
|
|
@@ -256,7 +247,6 @@ class V1UserFeatures(object):
|
|
|
256
247
|
self._f241 = None
|
|
257
248
|
self._f242 = None
|
|
258
249
|
self._f243 = None
|
|
259
|
-
self._f244 = None
|
|
260
250
|
self._f245 = None
|
|
261
251
|
self._fair_share = None
|
|
262
252
|
self._featured_studios_admin = None
|
|
@@ -290,7 +280,6 @@ class V1UserFeatures(object):
|
|
|
290
280
|
self._product_license = None
|
|
291
281
|
self._project_selector = None
|
|
292
282
|
self._publish_pipelines = None
|
|
293
|
-
self._r2_data_connections = None
|
|
294
283
|
self._reserved_machines_tab = None
|
|
295
284
|
self._restartable_jobs = None
|
|
296
285
|
self._runnable_public_studio_page = None
|
|
@@ -304,14 +293,11 @@ class V1UserFeatures(object):
|
|
|
304
293
|
self._studio_sharing_v2 = None
|
|
305
294
|
self._studio_version_visibility = None
|
|
306
295
|
self._trainium2 = None
|
|
307
|
-
self._use_internal_data_connection_mounts = None
|
|
308
296
|
self._use_rclone_mounts_only = None
|
|
309
297
|
self._vultr = None
|
|
310
298
|
self._weka = None
|
|
311
299
|
self._writable_s3_connections = None
|
|
312
300
|
self.discriminator = None
|
|
313
|
-
if add_data_v2 is not None:
|
|
314
|
-
self.add_data_v2 = add_data_v2
|
|
315
301
|
if affiliate_links is not None:
|
|
316
302
|
self.affiliate_links = affiliate_links
|
|
317
303
|
if agents_v2 is not None:
|
|
@@ -378,8 +364,6 @@ class V1UserFeatures(object):
|
|
|
378
364
|
self.f242 = f242
|
|
379
365
|
if f243 is not None:
|
|
380
366
|
self.f243 = f243
|
|
381
|
-
if f244 is not None:
|
|
382
|
-
self.f244 = f244
|
|
383
367
|
if f245 is not None:
|
|
384
368
|
self.f245 = f245
|
|
385
369
|
if fair_share is not None:
|
|
@@ -446,8 +430,6 @@ class V1UserFeatures(object):
|
|
|
446
430
|
self.project_selector = project_selector
|
|
447
431
|
if publish_pipelines is not None:
|
|
448
432
|
self.publish_pipelines = publish_pipelines
|
|
449
|
-
if r2_data_connections is not None:
|
|
450
|
-
self.r2_data_connections = r2_data_connections
|
|
451
433
|
if reserved_machines_tab is not None:
|
|
452
434
|
self.reserved_machines_tab = reserved_machines_tab
|
|
453
435
|
if restartable_jobs is not None:
|
|
@@ -474,8 +456,6 @@ class V1UserFeatures(object):
|
|
|
474
456
|
self.studio_version_visibility = studio_version_visibility
|
|
475
457
|
if trainium2 is not None:
|
|
476
458
|
self.trainium2 = trainium2
|
|
477
|
-
if use_internal_data_connection_mounts is not None:
|
|
478
|
-
self.use_internal_data_connection_mounts = use_internal_data_connection_mounts
|
|
479
459
|
if use_rclone_mounts_only is not None:
|
|
480
460
|
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
481
461
|
if vultr is not None:
|
|
@@ -485,27 +465,6 @@ class V1UserFeatures(object):
|
|
|
485
465
|
if writable_s3_connections is not None:
|
|
486
466
|
self.writable_s3_connections = writable_s3_connections
|
|
487
467
|
|
|
488
|
-
@property
|
|
489
|
-
def add_data_v2(self) -> 'bool':
|
|
490
|
-
"""Gets the add_data_v2 of this V1UserFeatures. # noqa: E501
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
:return: The add_data_v2 of this V1UserFeatures. # noqa: E501
|
|
494
|
-
:rtype: bool
|
|
495
|
-
"""
|
|
496
|
-
return self._add_data_v2
|
|
497
|
-
|
|
498
|
-
@add_data_v2.setter
|
|
499
|
-
def add_data_v2(self, add_data_v2: 'bool'):
|
|
500
|
-
"""Sets the add_data_v2 of this V1UserFeatures.
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
:param add_data_v2: The add_data_v2 of this V1UserFeatures. # noqa: E501
|
|
504
|
-
:type: bool
|
|
505
|
-
"""
|
|
506
|
-
|
|
507
|
-
self._add_data_v2 = add_data_v2
|
|
508
|
-
|
|
509
468
|
@property
|
|
510
469
|
def affiliate_links(self) -> 'bool':
|
|
511
470
|
"""Gets the affiliate_links of this V1UserFeatures. # noqa: E501
|
|
@@ -1199,27 +1158,6 @@ class V1UserFeatures(object):
|
|
|
1199
1158
|
|
|
1200
1159
|
self._f243 = f243
|
|
1201
1160
|
|
|
1202
|
-
@property
|
|
1203
|
-
def f244(self) -> 'bool':
|
|
1204
|
-
"""Gets the f244 of this V1UserFeatures. # noqa: E501
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
:return: The f244 of this V1UserFeatures. # noqa: E501
|
|
1208
|
-
:rtype: bool
|
|
1209
|
-
"""
|
|
1210
|
-
return self._f244
|
|
1211
|
-
|
|
1212
|
-
@f244.setter
|
|
1213
|
-
def f244(self, f244: 'bool'):
|
|
1214
|
-
"""Sets the f244 of this V1UserFeatures.
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
:param f244: The f244 of this V1UserFeatures. # noqa: E501
|
|
1218
|
-
:type: bool
|
|
1219
|
-
"""
|
|
1220
|
-
|
|
1221
|
-
self._f244 = f244
|
|
1222
|
-
|
|
1223
1161
|
@property
|
|
1224
1162
|
def f245(self) -> 'bool':
|
|
1225
1163
|
"""Gets the f245 of this V1UserFeatures. # noqa: E501
|
|
@@ -1913,27 +1851,6 @@ class V1UserFeatures(object):
|
|
|
1913
1851
|
|
|
1914
1852
|
self._publish_pipelines = publish_pipelines
|
|
1915
1853
|
|
|
1916
|
-
@property
|
|
1917
|
-
def r2_data_connections(self) -> 'bool':
|
|
1918
|
-
"""Gets the r2_data_connections of this V1UserFeatures. # noqa: E501
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
:return: The r2_data_connections of this V1UserFeatures. # noqa: E501
|
|
1922
|
-
:rtype: bool
|
|
1923
|
-
"""
|
|
1924
|
-
return self._r2_data_connections
|
|
1925
|
-
|
|
1926
|
-
@r2_data_connections.setter
|
|
1927
|
-
def r2_data_connections(self, r2_data_connections: 'bool'):
|
|
1928
|
-
"""Sets the r2_data_connections of this V1UserFeatures.
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
:param r2_data_connections: The r2_data_connections of this V1UserFeatures. # noqa: E501
|
|
1932
|
-
:type: bool
|
|
1933
|
-
"""
|
|
1934
|
-
|
|
1935
|
-
self._r2_data_connections = r2_data_connections
|
|
1936
|
-
|
|
1937
1854
|
@property
|
|
1938
1855
|
def reserved_machines_tab(self) -> 'bool':
|
|
1939
1856
|
"""Gets the reserved_machines_tab of this V1UserFeatures. # noqa: E501
|
|
@@ -2207,27 +2124,6 @@ class V1UserFeatures(object):
|
|
|
2207
2124
|
|
|
2208
2125
|
self._trainium2 = trainium2
|
|
2209
2126
|
|
|
2210
|
-
@property
|
|
2211
|
-
def use_internal_data_connection_mounts(self) -> 'bool':
|
|
2212
|
-
"""Gets the use_internal_data_connection_mounts of this V1UserFeatures. # noqa: E501
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
:return: The use_internal_data_connection_mounts of this V1UserFeatures. # noqa: E501
|
|
2216
|
-
:rtype: bool
|
|
2217
|
-
"""
|
|
2218
|
-
return self._use_internal_data_connection_mounts
|
|
2219
|
-
|
|
2220
|
-
@use_internal_data_connection_mounts.setter
|
|
2221
|
-
def use_internal_data_connection_mounts(self, use_internal_data_connection_mounts: 'bool'):
|
|
2222
|
-
"""Sets the use_internal_data_connection_mounts of this V1UserFeatures.
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
:param use_internal_data_connection_mounts: The use_internal_data_connection_mounts of this V1UserFeatures. # noqa: E501
|
|
2226
|
-
:type: bool
|
|
2227
|
-
"""
|
|
2228
|
-
|
|
2229
|
-
self._use_internal_data_connection_mounts = use_internal_data_connection_mounts
|
|
2230
|
-
|
|
2231
2127
|
@property
|
|
2232
2128
|
def use_rclone_mounts_only(self) -> 'bool':
|
|
2233
2129
|
"""Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
docs/source/conf.py,sha256=r8yX20eC-4mHhMTd0SbQb5TlSWHhO6wnJ0VJ_FBFpag,13249
|
|
2
|
-
lightning_sdk/__init__.py,sha256=
|
|
2
|
+
lightning_sdk/__init__.py,sha256=5tWz-6f1MLRPtc-voiWA2ZawI8leB9UrVX6p1f6S8v4,1151
|
|
3
3
|
lightning_sdk/agents.py,sha256=ly6Ma1j0ZgGPFyvPvMN28JWiB9dATIstFa5XM8pMi6I,1577
|
|
4
4
|
lightning_sdk/ai_hub.py,sha256=iI1vNhgcz_Ff1c3rN1ogN7dK-r-HXRj6NMtS2cA14UA,6925
|
|
5
5
|
lightning_sdk/base_studio.py,sha256=_Pwwl37R9GRd7t-f2kO5aQXiLNrP4sUtUNht2ZkP8LE,3678
|
|
@@ -30,10 +30,10 @@ lightning_sdk/api/llm_api.py,sha256=HSCpTyPknKAv6j0UYIzasXK2mFYt7FE3KF5TGUYvo2w,
|
|
|
30
30
|
lightning_sdk/api/mmt_api.py,sha256=hIBsGiJ2qn5UjcHDxP5WUyKGT_AIFfpSHrQVwg0afBw,10699
|
|
31
31
|
lightning_sdk/api/org_api.py,sha256=Ze3z_ATVrukobujV5YdC42DKj45Vuwl7X52q_Vr-o3U,803
|
|
32
32
|
lightning_sdk/api/pipeline_api.py,sha256=rJYp_FN7uUjC5xbc6K67l2eRSmVuOkijd5i8Nm5BF7I,4621
|
|
33
|
-
lightning_sdk/api/studio_api.py,sha256=
|
|
33
|
+
lightning_sdk/api/studio_api.py,sha256=COKJlJuZm2XucV5sJaW19ojz9zjDKSpeZMVt3tm06tc,32481
|
|
34
34
|
lightning_sdk/api/teamspace_api.py,sha256=CsaaxmaLmTRIRwu37wtQ3quGYql62HJT3BZJ3Q-1d9c,16854
|
|
35
35
|
lightning_sdk/api/user_api.py,sha256=sL7RIjjtmZmvCZWx7BBZslhj1BeNh4Idn-RVcdmf7M0,2598
|
|
36
|
-
lightning_sdk/api/utils.py,sha256=
|
|
36
|
+
lightning_sdk/api/utils.py,sha256=SyxRa76JcWOJpslyzB-iID6OpVCJi0F0G69h1LmDCDA,27124
|
|
37
37
|
lightning_sdk/cli/__init__.py,sha256=lksw08t_ZIuHOH47LCIqSVHeZ8cUXI2aJWHYhyujYHM,32
|
|
38
38
|
lightning_sdk/cli/entrypoint.py,sha256=85icG0fmUqXuFErkD2v_kOlqnr18veD8oxe7gPBWHE8,4556
|
|
39
39
|
lightning_sdk/cli/groups.py,sha256=sgKG2z4xJG7lJ1LphSez-cSnntJReSJxJgBp3Z8htUc,951
|
|
@@ -100,7 +100,7 @@ lightning_sdk/lightning_cloud/login.py,sha256=29iN6evpk04SAkBQmjUsRbaoKUcj9ynZDX
|
|
|
100
100
|
lightning_sdk/lightning_cloud/rest_client.py,sha256=K2J_QXihpbp5tVzs9PzffgMCQY1NeH5tRpuJBYj27vU,7125
|
|
101
101
|
lightning_sdk/lightning_cloud/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
102
|
lightning_sdk/lightning_cloud/cli/__main__.py,sha256=aHrigVV0qIp74MuYTdN6uO8a9Xp6E1aOwdR8w1fG-7c,688
|
|
103
|
-
lightning_sdk/lightning_cloud/openapi/__init__.py,sha256=
|
|
103
|
+
lightning_sdk/lightning_cloud/openapi/__init__.py,sha256=JeUr4i1rOw91V3I7-FDvcj_Yw0ZASQ8DbZgFQ8qwRnk,111027
|
|
104
104
|
lightning_sdk/lightning_cloud/openapi/api_client.py,sha256=pUTQMNcZmH4BhpnuAXuT7wnegaxaX26bzdEWjdoLeTo,25630
|
|
105
105
|
lightning_sdk/lightning_cloud/openapi/configuration.py,sha256=SkBPJ3WZ9SF1LxxWeGKa4UwbGRsk9p3-yL_Kn7l5CSM,7866
|
|
106
106
|
lightning_sdk/lightning_cloud/openapi/rest.py,sha256=ZPPr6ZkBp6LtuAsiUU7D8Pz8Dt9ECbEM_26Ov74tdpw,13322
|
|
@@ -123,7 +123,7 @@ lightning_sdk/lightning_cloud/openapi/api/experiments_service_api.py,sha256=lYQt
|
|
|
123
123
|
lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py,sha256=CuQjJKp7fS_PtYO8wFk1fM3kmKy9DDC6R1qjvWtI3kg,41970
|
|
124
124
|
lightning_sdk/lightning_cloud/openapi/api/git_credentials_service_api.py,sha256=tz7xhdaeHoR9_KEx8vR0SyFLUsjElrcwl9hBaT_X_mc,19757
|
|
125
125
|
lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py,sha256=o2LsnoNrlqID2Ly5OTHhNHGlsN4r5xG0VfmUaJgs_A8,243070
|
|
126
|
-
lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py,sha256=
|
|
126
|
+
lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py,sha256=Zc_Pfi5y4XT-giZNVL0hpHhkadvH98mk-_J1L3u1QU0,55019
|
|
127
127
|
lightning_sdk/lightning_cloud/openapi/api/lightningapp_instance_service_api.py,sha256=Y9_XweSozZL_a8qCZTOgqW9cwIOx7FTMMU-ZX0eAJqs,77205
|
|
128
128
|
lightning_sdk/lightning_cloud/openapi/api/lightningapp_v2_service_api.py,sha256=hORPARfDsJLtJOgieRzI_OWKMF9wEhET141vl6FPEBs,12909
|
|
129
129
|
lightning_sdk/lightning_cloud/openapi/api/lightningwork_service_api.py,sha256=dXKzbr4I7TDW-PFsqgiaaw4RtYrzB1X6NZB_hxgMnts,43747
|
|
@@ -148,7 +148,7 @@ lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py,sha256=7gbiF09P
|
|
|
148
148
|
lightning_sdk/lightning_cloud/openapi/api/studio_jobs_service_api.py,sha256=VJ7VcSvdmGbPkgmQZhaOSR47olcNPMzRlmT5J5uKsng,27877
|
|
149
149
|
lightning_sdk/lightning_cloud/openapi/api/user_service_api.py,sha256=bUCDZf1P16juI8-J_dpE-MvRt3x8x5HBJpluxix6Vzc,68363
|
|
150
150
|
lightning_sdk/lightning_cloud/openapi/api/volume_service_api.py,sha256=pg1aaSuYJUAlUDKLN07l8wC-poU_HFxZ_98QZHty74I,10344
|
|
151
|
-
lightning_sdk/lightning_cloud/openapi/models/__init__.py,sha256=
|
|
151
|
+
lightning_sdk/lightning_cloud/openapi/models/__init__.py,sha256=KYLeBgLhjIi4XAv43z26p4yuNMriHC_CVGcvcyNRX6E,104935
|
|
152
152
|
lightning_sdk/lightning_cloud/openapi/models/affiliatelinks_id_body.py,sha256=X087AkCafKp2g8E2MR5ghU3pxCNNcoehZJttvuVfdC8,4274
|
|
153
153
|
lightning_sdk/lightning_cloud/openapi/models/agentmanagedendpoints_id_body.py,sha256=5HIzKC2DGqxIJIdZbs6KGh9pnBe9ik8FyxlXGUSc1HQ,10233
|
|
154
154
|
lightning_sdk/lightning_cloud/openapi/models/agents_id_body.py,sha256=jKg8Q5cJ3iY9DpDHvig6rgezR_qYYPIAr5Cez2pSifs,22374
|
|
@@ -207,7 +207,7 @@ lightning_sdk/lightning_cloud/openapi/models/externalv1_user_status.py,sha256=Uw
|
|
|
207
207
|
lightning_sdk/lightning_cloud/openapi/models/get_endpoint_request_endpoint_ref_type.py,sha256=9SvM853B0YVDz67DDWrjQF5pQ41yjGTRS9iMsGhFBjc,3183
|
|
208
208
|
lightning_sdk/lightning_cloud/openapi/models/id_action_body.py,sha256=5N6BqyPRzr0KuA-zMa7hAQTaGFmqBrLbHuAvQdkhnnU,3649
|
|
209
209
|
lightning_sdk/lightning_cloud/openapi/models/id_artifacts_body.py,sha256=9y7wiK2-rqwNV8OOD3CbTC056GHMmkWE4U1l7QP3GII,3671
|
|
210
|
-
lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py,sha256=
|
|
210
|
+
lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py,sha256=5on1EsVOVEDNx_XV177t71pIuRWixES5EIqCvjlUkYU,6521
|
|
211
211
|
lightning_sdk/lightning_cloud/openapi/models/id_collaborate_body.py,sha256=GV-NarlreeEOaS9q6ykh9kBw5fsWHh3YGB7WagQ4ckk,5276
|
|
212
212
|
lightning_sdk/lightning_cloud/openapi/models/id_contactowner_body.py,sha256=rHBQv9-_RCh4BoGgKz2lo9W0AQ-l3CpVRaaVtq6ru7s,4502
|
|
213
213
|
lightning_sdk/lightning_cloud/openapi/models/id_engage_body.py,sha256=QkrMFJfucUoJyoKx-Xk4P7EkB2zpj2JtOUk8JTqpO5s,3601
|
|
@@ -257,7 +257,7 @@ lightning_sdk/lightning_cloud/openapi/models/multimachinejobs_id_body.py,sha256=
|
|
|
257
257
|
lightning_sdk/lightning_cloud/openapi/models/multipartuploads_upload_id_body.py,sha256=i7Vm5bH1oNEVn7TgM0puUcggbW2xt-qDdinOkr-qr8I,3777
|
|
258
258
|
lightning_sdk/lightning_cloud/openapi/models/org_id_memberships_body.py,sha256=C3CjsDE3YAXVGKORQ204pmAZZh6Np1RxoW7ASzXrWBA,5853
|
|
259
259
|
lightning_sdk/lightning_cloud/openapi/models/org_id_roles_body.py,sha256=ptmNRfIdM55ltNny8kImsInnY_D_z4cJaStVl9hWd_c,5013
|
|
260
|
-
lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py,sha256=
|
|
260
|
+
lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py,sha256=GnJc5i8OTfYEA9m9WsUpao25Ni008lpa-tpZYLI2L9Q,37614
|
|
261
261
|
lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body.py,sha256=AJDUSkdkxqXRdLrPBLoVHZPYy156RLCXiKQzY7dOyTI,15953
|
|
262
262
|
lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body1.py,sha256=qWLCMlJyrelWDh1UNK8FRPAMuzMleWEN4j0DVfIQ9Rg,3816
|
|
263
263
|
lightning_sdk/lightning_cloud/openapi/models/pipelinetemplates_id_body.py,sha256=-UlT5txcKCM-M29za4Kcyn_lQBBQsJ4ih5H_DVRFGSs,10165
|
|
@@ -282,7 +282,7 @@ lightning_sdk/lightning_cloud/openapi/models/project_id_projectclustersbindings_
|
|
|
282
282
|
lightning_sdk/lightning_cloud/openapi/models/project_id_schedules_body.py,sha256=U5P-6-kjePcGn1ffHBH-l1vNdg7ijZVyrvyg2Zjwmw8,10443
|
|
283
283
|
lightning_sdk/lightning_cloud/openapi/models/project_id_secrets_body.py,sha256=jV7ztO03VzSC55pGFNGFsjRZEyIMOXvTIBcu4zNFXg8,4981
|
|
284
284
|
lightning_sdk/lightning_cloud/openapi/models/project_id_snowflake_body.py,sha256=GvWXA_I6HvvCszRlKefxVDk29Mbxk1Ka2VbVCVsbgw8,3840
|
|
285
|
-
lightning_sdk/lightning_cloud/openapi/models/project_id_storage_body.py,sha256=
|
|
285
|
+
lightning_sdk/lightning_cloud/openapi/models/project_id_storage_body.py,sha256=VbfbhZRW9XwXT4sowVt9cWzY67VIscv9Uh14PZ_9eIc,6037
|
|
286
286
|
lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py,sha256=plKm1fIxKO7wcG2ZsefHQnJMLaaOX9jBAbRbnAwwDkE,25137
|
|
287
287
|
lightning_sdk/lightning_cloud/openapi/models/projects_project_id_body.py,sha256=9KEoSAXY-v0XckFv6K0Kfk12BkoMK1kObPKQS52bjPE,5139
|
|
288
288
|
lightning_sdk/lightning_cloud/openapi/models/protobuf_any.py,sha256=I4a5W5zqZprIP8eTbU-LdYvIj7b2r2B4qPMNIgSCEwk,7143
|
|
@@ -300,7 +300,7 @@ lightning_sdk/lightning_cloud/openapi/models/slurm_jobs_body.py,sha256=udXUD1dto
|
|
|
300
300
|
lightning_sdk/lightning_cloud/openapi/models/snowflake_export_body.py,sha256=Avax7cvfkHiSez0JtV0Q2sxh8h9bf_xc4KicaguIP9M,8981
|
|
301
301
|
lightning_sdk/lightning_cloud/openapi/models/snowflake_query_body.py,sha256=6_DTSiTjRxxroBaC6gWJbztCVdVF2nYMOcT6lIxZYsI,5249
|
|
302
302
|
lightning_sdk/lightning_cloud/openapi/models/spec_lightningapp_instance_id_works_body.py,sha256=dEI8pgLEkjFn1qy85Wb8cssJLWY6q0ERVbWlU4RvoU4,5432
|
|
303
|
-
lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py,sha256=
|
|
303
|
+
lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py,sha256=52ISuxJjvP5jmM8aroXbvFSoqde4_6g4WYLdkLN0AG0,7731
|
|
304
304
|
lightning_sdk/lightning_cloud/openapi/models/stream_result_of_v1_conversation_response_chunk.py,sha256=4MA1NbHpLqP5uuzHIm8FqwMhzzYbCGGK-QoXrkmH0E4,4808
|
|
305
305
|
lightning_sdk/lightning_cloud/openapi/models/stream_result_of_v1_get_long_running_command_in_cloud_space_response.py,sha256=btVXTDqnRONLLrql3PchTcVU-l6mTPSTPCpBNF4TH6Y,5128
|
|
306
306
|
lightning_sdk/lightning_cloud/openapi/models/studioapp_jobs_body.py,sha256=UY2dYV5XKUmk3xP3uWviA9nWRNgxyU63cG9DCiez0Ic,8045
|
|
@@ -311,7 +311,7 @@ lightning_sdk/lightning_cloud/openapi/models/upload_id_complete_body1.py,sha256=
|
|
|
311
311
|
lightning_sdk/lightning_cloud/openapi/models/upload_id_parts_body.py,sha256=nqRdoRN22wwsYs9a4MCrXgihyC9VSke7IwjLXfqTGbM,4368
|
|
312
312
|
lightning_sdk/lightning_cloud/openapi/models/upload_id_parts_body1.py,sha256=AQc_kzB2rcxLQI-MAXaNcBqbEvjQcGy7swi2egt_3UE,4382
|
|
313
313
|
lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body.py,sha256=n9IzbPQJOXLUmKX3jpp5rzVYcE5vpitAzEeF9yvanpk,4396
|
|
314
|
-
lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py,sha256=
|
|
314
|
+
lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py,sha256=8a3kKmH8B4HXqutn2kjHcFmGTIar0RqJqH1_l6ymV6o,6073
|
|
315
315
|
lightning_sdk/lightning_cloud/openapi/models/usagerestrictions_id_body.py,sha256=ygWyE1I13Rp2x5-IxNfhmQBSF5dSO86V9GuJnQhugV4,6242
|
|
316
316
|
lightning_sdk/lightning_cloud/openapi/models/user_id_affiliatelinks_body.py,sha256=ZRkTVx2a8RTc0D6I1htp6FFZ72m4oByHFcfOWrwtiWk,4330
|
|
317
317
|
lightning_sdk/lightning_cloud/openapi/models/user_id_membershiprolebindings_body.py,sha256=1qu7B4kRkyXXeDda4cCL_pm0V2Gm1vxWC65YJduFNSU,3820
|
|
@@ -406,7 +406,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_cluster_availability.py,sha256=W
|
|
|
406
406
|
lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py,sha256=wzig5b0HGSGuydOc_2Cx-WGEY2wntB7eedzu4J44yJI,17135
|
|
407
407
|
lightning_sdk/lightning_cloud/openapi/models/v1_cluster_deletion_options.py,sha256=68iaqDjJYOpZsvaOzGJCsBVF4ISrFe8K9-o3bwr2tDI,5793
|
|
408
408
|
lightning_sdk/lightning_cloud/openapi/models/v1_cluster_encryption_key.py,sha256=Cf9AIJCmKjQO0Gp7UbXIXq2IXkxLUBgSgK3sGSYzg8U,6681
|
|
409
|
-
lightning_sdk/lightning_cloud/openapi/models/v1_cluster_metrics.py,sha256=
|
|
409
|
+
lightning_sdk/lightning_cloud/openapi/models/v1_cluster_metrics.py,sha256=YMCULbLCzNA2fMxDTJikA7KlXst0rv7657GzwE83MZg,31774
|
|
410
410
|
lightning_sdk/lightning_cloud/openapi/models/v1_cluster_names.py,sha256=Xs3mhVEiuJVbkKwMarY7iB_NwKY9_sK0xGgXDMuo0cs,3637
|
|
411
411
|
lightning_sdk/lightning_cloud/openapi/models/v1_cluster_proxy.py,sha256=4LbHvINs2CwQnuPg_uWw03GNNRT_wdqX42m_Zlqg2dY,5547
|
|
412
412
|
lightning_sdk/lightning_cloud/openapi/models/v1_cluster_resource_tag.py,sha256=U6DfNNAIBZQ8SOF-2RXp2-CgmxaT1XJrNaCnZzaqjHg,4274
|
|
@@ -718,6 +718,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_like_status.py,sha256=YiBPGNzBOf
|
|
|
718
718
|
lightning_sdk/lightning_cloud/openapi/models/v1_list_affiliate_links_response.py,sha256=5TgibtzUcNlVTJ6jr6CI8KzBsya0t5XmIvnyb2Pz13g,3849
|
|
719
719
|
lightning_sdk/lightning_cloud/openapi/models/v1_list_agent_job_artifacts_response.py,sha256=SUeGQPh69QORv0EWoUYEeRSMVZ-0G_kni3SpYn9lUxk,5847
|
|
720
720
|
lightning_sdk/lightning_cloud/openapi/models/v1_list_agent_jobs_response.py,sha256=aOudJXodnAFiPCYxBh8kVYSbX3k2ebLCjiV6NLxauq4,3749
|
|
721
|
+
lightning_sdk/lightning_cloud/openapi/models/v1_list_aggregated_pod_metrics_response.py,sha256=p4hIK-8rWKvRx4Cfwqjx0VK048cxDip-a0Kwhew6Hqw,4010
|
|
721
722
|
lightning_sdk/lightning_cloud/openapi/models/v1_list_assistants_response.py,sha256=_VOXS1qBsESDF-USd5-QYFBGSyKgZCL4hUB9bajTR9w,3885
|
|
722
723
|
lightning_sdk/lightning_cloud/openapi/models/v1_list_blog_posts_response.py,sha256=oYszfCBIwUbsX-Slk6OgZ6wJ0eCoGtYlwQKWNitzi7o,5594
|
|
723
724
|
lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_apps_response.py,sha256=aug--jlYeM5jHEby1WPR7rU55kdgcGXbvvIfRG8y9Mg,3829
|
|
@@ -873,7 +874,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_namespace_user_metrics.py,sha256
|
|
|
873
874
|
lightning_sdk/lightning_cloud/openapi/models/v1_nebius_direct_v1.py,sha256=FXjBRxuNMVlNopuedGI5DV8y6Boy3CKoen6Odg9CnVk,4513
|
|
874
875
|
lightning_sdk/lightning_cloud/openapi/models/v1_network_config.py,sha256=bHDZVIsqgiSi7eBf72RunvrLR-d-4b9S7oDMAZFBvCM,5476
|
|
875
876
|
lightning_sdk/lightning_cloud/openapi/models/v1_new_feature.py,sha256=FMsA5E3T_94-IoZ7Dv-8N3agoZwmP7wTeFO443L_2Jw,10716
|
|
876
|
-
lightning_sdk/lightning_cloud/openapi/models/v1_node_metrics.py,sha256=
|
|
877
|
+
lightning_sdk/lightning_cloud/openapi/models/v1_node_metrics.py,sha256=27PgwAZiDEWuftKAY_YHe4sKzC6VKpBc9SZTkZqyk7Y,15909
|
|
877
878
|
lightning_sdk/lightning_cloud/openapi/models/v1_notification_preference.py,sha256=W46XDkg7j9X8V9uRu1LHcPK1jSPTSzBVVEmbJ4FVofY,6930
|
|
878
879
|
lightning_sdk/lightning_cloud/openapi/models/v1_notification_preferences_request.py,sha256=CHgLj8xQ5S-v5fTqNP6d0YrJbWEvlAQ6HZ3gxsXQ428,6497
|
|
879
880
|
lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py,sha256=QcmpuieixHEW0huOUVcM12cgZXCRdDdRruc56hjTaOY,3311
|
|
@@ -883,7 +884,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_org_member.py,sha256=ZwMdfSpAjNQ
|
|
|
883
884
|
lightning_sdk/lightning_cloud/openapi/models/v1_org_membership.py,sha256=nBSpHsxGUeNilcC4gBCWrfgQ84r3yVncngcGHUcsA_U,7144
|
|
884
885
|
lightning_sdk/lightning_cloud/openapi/models/v1_org_membership_role_binding.py,sha256=akgpLL0td3Vmy2lcFtY7DEEwXplTTsQRU_2bos7clWc,6784
|
|
885
886
|
lightning_sdk/lightning_cloud/openapi/models/v1_org_role.py,sha256=CVX-kpjxs0bpTvI2lfwB8Q3iGeksu8hxuLV_NHWylmM,7576
|
|
886
|
-
lightning_sdk/lightning_cloud/openapi/models/v1_organization.py,sha256=
|
|
887
|
+
lightning_sdk/lightning_cloud/openapi/models/v1_organization.py,sha256=6DKLmjcEdyn6pdrFLvwybG_M_EVOVCjd4YFb6Efvz3E,51219
|
|
887
888
|
lightning_sdk/lightning_cloud/openapi/models/v1_owner_type.py,sha256=DBEz-jE3e3PAt1kWVQ6LKjl3sWCkKEB4FFXyxSXkaZ4,3099
|
|
888
889
|
lightning_sdk/lightning_cloud/openapi/models/v1_package_manager.py,sha256=31gbBiEQjOd_ToQ9gFklCAI_dtyxYl5dWYOS2al5iOs,3143
|
|
889
890
|
lightning_sdk/lightning_cloud/openapi/models/v1_parameterization_spec.py,sha256=zQXkrKilutqMWRTTOi2_r15a9-I0XmVGTtiT0JD6Foc,6783
|
|
@@ -1030,7 +1031,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_update_agent_status_request.py,s
|
|
|
1030
1031
|
lightning_sdk/lightning_cloud/openapi/models/v1_update_agent_status_response.py,sha256=aGOq-0LDz37ZLAI9eRfae22obB4_5JhFJV7z8BI5kRw,3052
|
|
1031
1032
|
lightning_sdk/lightning_cloud/openapi/models/v1_update_billing_subscription_request.py,sha256=nu6D7z0ecStOofD5h_jvdKnrHIO8LmxLqGyucM4j9dw,7360
|
|
1032
1033
|
lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_collab_response.py,sha256=_pSGfjSJBZ6uHIoG__POAnck62JwEWEt3i6XQfvHAi8,4032
|
|
1033
|
-
lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_instance_config_request.py,sha256=
|
|
1034
|
+
lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_instance_config_request.py,sha256=YQsUjO1Hmu8-kVmPuu6mNg0MxP4cOlxuKmhzsY4nu0o,8524
|
|
1034
1035
|
lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_publication_response.py,sha256=ISgYBs-UC571bPtj2AfcBZxd00s2UMsD3rdns7CLoOk,3112
|
|
1035
1036
|
lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_visibility_response.py,sha256=fpIV2My2Kifd1cQ5aY4L9lrhKNpO5KLrBsyDm3X5vUg,3106
|
|
1036
1037
|
lightning_sdk/lightning_cloud/openapi/models/v1_update_cluster_accelerators_request.py,sha256=Hz8tGrb6oRzTbtf3AC9QL7B2TlqSEPLzHqDfhosCiB0,4867
|
|
@@ -1069,7 +1070,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_upstream_open_ai.py,sha256=jt1qQ
|
|
|
1069
1070
|
lightning_sdk/lightning_cloud/openapi/models/v1_usage.py,sha256=ozMzoGD9mfZGYy4J5j50Dps19Y6o8cn-aYW_oRMZMy8,16865
|
|
1070
1071
|
lightning_sdk/lightning_cloud/openapi/models/v1_usage_details.py,sha256=U7qC698Xj5tb3D93ZskG6sDf3lTXE13UTlGeDTvtRU4,14062
|
|
1071
1072
|
lightning_sdk/lightning_cloud/openapi/models/v1_usage_report.py,sha256=k9pDp9UIaOEEWz6bTNWF_KMfcNCOp-F67N-IZ9MO2Rs,8304
|
|
1072
|
-
lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py,sha256=
|
|
1073
|
+
lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py,sha256=xhdIxKsE-ErpTmWrdefTKmVao54_gqgXFokL8z9-AIE,72492
|
|
1073
1074
|
lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py,sha256=0fnZpdhxNRXGNyILHtfm3rVztfHpSF4kXGc5kTt4zls,13960
|
|
1074
1075
|
lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_flow_compute_config.py,sha256=3WpZ-lf7xPwuYyQDMdP7Uc6-dh3vf5TaaUlcMfesfMk,5208
|
|
1075
1076
|
lightning_sdk/lightning_cloud/openapi/models/v1_user_slurm_job_action_response.py,sha256=BdNzXH8Vsf5PHjl9Rd-TVkpAgx1YC9rf8LD0js-ba20,3058
|
|
@@ -1135,9 +1136,9 @@ lightning_sdk/utils/config.py,sha256=DkH5e4ljBLjOVWwEBSHsF6EMBf-akSwFjHAZKHpqVbE
|
|
|
1135
1136
|
lightning_sdk/utils/dynamic.py,sha256=glUTO1JC9APtQ6Gr9SO02a3zr56-sPAXM5C3NrTpgyQ,1959
|
|
1136
1137
|
lightning_sdk/utils/enum.py,sha256=h2JRzqoBcSlUdanFHmkj_j5DleBHAu1esQYUsdNI-hU,4106
|
|
1137
1138
|
lightning_sdk/utils/resolve.py,sha256=r7sh5FvVAqb8Ax_TXED0JR3QJawom6w1wgOjAQFJ-MA,10060
|
|
1138
|
-
lightning_sdk-2025.8.
|
|
1139
|
-
lightning_sdk-2025.8.
|
|
1140
|
-
lightning_sdk-2025.8.
|
|
1141
|
-
lightning_sdk-2025.8.
|
|
1142
|
-
lightning_sdk-2025.8.
|
|
1143
|
-
lightning_sdk-2025.8.
|
|
1139
|
+
lightning_sdk-2025.8.19.post0.dist-info/LICENSE,sha256=uFIuZwj5z-4TeF2UuacPZ1o17HkvKObT8fY50qN84sg,1064
|
|
1140
|
+
lightning_sdk-2025.8.19.post0.dist-info/METADATA,sha256=REZME-3X0MAoethplQ4xNCN5q-nzG3DTVdtMpSE2oPg,4136
|
|
1141
|
+
lightning_sdk-2025.8.19.post0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
1142
|
+
lightning_sdk-2025.8.19.post0.dist-info/entry_points.txt,sha256=msB9PJWIJ784dX-OP8by51d4IbKYH3Fj1vCuA9oXjHY,68
|
|
1143
|
+
lightning_sdk-2025.8.19.post0.dist-info/top_level.txt,sha256=ps8doKILFXmN7F1mHncShmnQoTxKBRPIcchC8TpoBw4,19
|
|
1144
|
+
lightning_sdk-2025.8.19.post0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{lightning_sdk-2025.8.18.post0.dist-info → lightning_sdk-2025.8.19.post0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{lightning_sdk-2025.8.18.post0.dist-info → lightning_sdk-2025.8.19.post0.dist-info}/top_level.txt
RENAMED
|
File without changes
|