lightning-sdk 0.2.20__py3-none-any.whl → 0.2.21__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/deployment_api.py +7 -2
- lightning_sdk/api/license_api.py +3 -3
- lightning_sdk/api/llm_api.py +118 -26
- lightning_sdk/api/studio_api.py +5 -0
- lightning_sdk/cli/configure.py +34 -27
- lightning_sdk/cli/connect.py +2 -2
- lightning_sdk/deployment/deployment.py +17 -3
- lightning_sdk/lightning_cloud/openapi/__init__.py +0 -1
- lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +1 -5
- lightning_sdk/lightning_cloud/openapi/api/endpoint_service_api.py +11 -1
- lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +0 -85
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +0 -1
- lightning_sdk/lightning_cloud/openapi/models/update.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_deletion_options.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_project_request.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_message.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_routing_telemetry.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +27 -365
- lightning_sdk/llm/llm.py +52 -1
- lightning_sdk/pipeline/pipeline.py +1 -1
- lightning_sdk/services/utilities.py +15 -1
- {lightning_sdk-0.2.20.dist-info → lightning_sdk-0.2.21.dist-info}/METADATA +1 -1
- {lightning_sdk-0.2.20.dist-info → lightning_sdk-0.2.21.dist-info}/RECORD +33 -34
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_response.py +0 -201
- {lightning_sdk-0.2.20.dist-info → lightning_sdk-0.2.21.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.2.20.dist-info → lightning_sdk-0.2.21.dist-info}/WHEEL +0 -0
- {lightning_sdk-0.2.20.dist-info → lightning_sdk-0.2.21.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.2.20.dist-info → lightning_sdk-0.2.21.dist-info}/top_level.txt +0 -0
|
@@ -50,8 +50,6 @@ class V1UserFeatures(object):
|
|
|
50
50
|
'auto_top_up': 'bool',
|
|
51
51
|
'auto_top_up_teamspace': 'bool',
|
|
52
52
|
'b2c_experience': 'bool',
|
|
53
|
-
'blog_route': 'bool',
|
|
54
|
-
'byoc_litcr': 'bool',
|
|
55
53
|
'cap_add': 'list[str]',
|
|
56
54
|
'cap_drop': 'list[str]',
|
|
57
55
|
'capacity_reservation_byoc': 'bool',
|
|
@@ -67,35 +65,29 @@ class V1UserFeatures(object):
|
|
|
67
65
|
'custom_app_domain': 'bool',
|
|
68
66
|
'datasets': 'bool',
|
|
69
67
|
'default_one_cluster': 'bool',
|
|
70
|
-
'deployment_alerts': 'bool',
|
|
71
68
|
'deployment_persistent_disk': 'bool',
|
|
72
|
-
'deployment_requests_tab': 'bool',
|
|
73
|
-
'dgx_cloud': 'bool',
|
|
74
69
|
'docs_agent': 'bool',
|
|
75
70
|
'drive_v2': 'bool',
|
|
76
|
-
'enable_storage_limits': 'bool',
|
|
77
71
|
'enterprise_compute_admin': 'bool',
|
|
78
72
|
'fair_share': 'bool',
|
|
79
73
|
'featured_studios_admin': 'bool',
|
|
80
|
-
'filestore': 'bool',
|
|
81
74
|
'gcs_folders': 'bool',
|
|
82
75
|
'instant_capacity_reservation': 'bool',
|
|
83
76
|
'job_artifacts_v2': 'bool',
|
|
84
77
|
'lambda_labs': 'bool',
|
|
85
78
|
'lambda_labs_studios': 'bool',
|
|
86
79
|
'landing_studios': 'bool',
|
|
87
|
-
'lightning_cloud': 'bool',
|
|
88
80
|
'lit_logger': 'bool',
|
|
89
81
|
'marketplace': 'bool',
|
|
90
82
|
'mmt_fault_tolerance': 'bool',
|
|
91
83
|
'mmt_strategy_selector': 'bool',
|
|
84
|
+
'model_api_dashboard': 'bool',
|
|
92
85
|
'multicloud_folders': 'bool',
|
|
93
86
|
'multicloud_saas': 'bool',
|
|
94
87
|
'multiple_studio_versions': 'bool',
|
|
95
88
|
'nebius': 'bool',
|
|
96
89
|
'nebius_cpu_studios': 'bool',
|
|
97
90
|
'nebius_gpu_studios': 'bool',
|
|
98
|
-
'neocloud_studios': 'bool',
|
|
99
91
|
'nerf_fs_nonpaying': 'bool',
|
|
100
92
|
'org_level_member_permissions': 'bool',
|
|
101
93
|
'org_usage_limits': 'bool',
|
|
@@ -119,18 +111,13 @@ class V1UserFeatures(object):
|
|
|
119
111
|
'restartable_jobs': 'bool',
|
|
120
112
|
'runnable_public_studio_page': 'bool',
|
|
121
113
|
'security_docs': 'bool',
|
|
122
|
-
'seoul_aws_region': 'bool',
|
|
123
114
|
'show_dev_admin': 'bool',
|
|
124
115
|
'single_wallet': 'bool',
|
|
125
116
|
'slurm': 'bool',
|
|
126
|
-
'slurm_machine_selector': 'bool',
|
|
127
|
-
'stop_ide_container_on_shutdown': 'bool',
|
|
128
117
|
'storage_overuse_deletion': 'bool',
|
|
129
118
|
'studio_config': 'bool',
|
|
130
119
|
'studio_version_visibility': 'bool',
|
|
131
|
-
'teamspace_storage_tab': 'bool',
|
|
132
120
|
'trainium2': 'bool',
|
|
133
|
-
'transfer_studios': 'bool',
|
|
134
121
|
'use_rclone_mounts_only': 'bool',
|
|
135
122
|
'voltage_park': 'bool',
|
|
136
123
|
'voltage_park_studios': 'bool',
|
|
@@ -148,8 +135,6 @@ class V1UserFeatures(object):
|
|
|
148
135
|
'auto_top_up': 'autoTopUp',
|
|
149
136
|
'auto_top_up_teamspace': 'autoTopUpTeamspace',
|
|
150
137
|
'b2c_experience': 'b2cExperience',
|
|
151
|
-
'blog_route': 'blogRoute',
|
|
152
|
-
'byoc_litcr': 'byocLitcr',
|
|
153
138
|
'cap_add': 'capAdd',
|
|
154
139
|
'cap_drop': 'capDrop',
|
|
155
140
|
'capacity_reservation_byoc': 'capacityReservationByoc',
|
|
@@ -165,35 +150,29 @@ class V1UserFeatures(object):
|
|
|
165
150
|
'custom_app_domain': 'customAppDomain',
|
|
166
151
|
'datasets': 'datasets',
|
|
167
152
|
'default_one_cluster': 'defaultOneCluster',
|
|
168
|
-
'deployment_alerts': 'deploymentAlerts',
|
|
169
153
|
'deployment_persistent_disk': 'deploymentPersistentDisk',
|
|
170
|
-
'deployment_requests_tab': 'deploymentRequestsTab',
|
|
171
|
-
'dgx_cloud': 'dgxCloud',
|
|
172
154
|
'docs_agent': 'docsAgent',
|
|
173
155
|
'drive_v2': 'driveV2',
|
|
174
|
-
'enable_storage_limits': 'enableStorageLimits',
|
|
175
156
|
'enterprise_compute_admin': 'enterpriseComputeAdmin',
|
|
176
157
|
'fair_share': 'fairShare',
|
|
177
158
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
178
|
-
'filestore': 'filestore',
|
|
179
159
|
'gcs_folders': 'gcsFolders',
|
|
180
160
|
'instant_capacity_reservation': 'instantCapacityReservation',
|
|
181
161
|
'job_artifacts_v2': 'jobArtifactsV2',
|
|
182
162
|
'lambda_labs': 'lambdaLabs',
|
|
183
163
|
'lambda_labs_studios': 'lambdaLabsStudios',
|
|
184
164
|
'landing_studios': 'landingStudios',
|
|
185
|
-
'lightning_cloud': 'lightningCloud',
|
|
186
165
|
'lit_logger': 'litLogger',
|
|
187
166
|
'marketplace': 'marketplace',
|
|
188
167
|
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
189
168
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
169
|
+
'model_api_dashboard': 'modelApiDashboard',
|
|
190
170
|
'multicloud_folders': 'multicloudFolders',
|
|
191
171
|
'multicloud_saas': 'multicloudSaas',
|
|
192
172
|
'multiple_studio_versions': 'multipleStudioVersions',
|
|
193
173
|
'nebius': 'nebius',
|
|
194
174
|
'nebius_cpu_studios': 'nebiusCpuStudios',
|
|
195
175
|
'nebius_gpu_studios': 'nebiusGpuStudios',
|
|
196
|
-
'neocloud_studios': 'neocloudStudios',
|
|
197
176
|
'nerf_fs_nonpaying': 'nerfFsNonpaying',
|
|
198
177
|
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
199
178
|
'org_usage_limits': 'orgUsageLimits',
|
|
@@ -217,18 +196,13 @@ class V1UserFeatures(object):
|
|
|
217
196
|
'restartable_jobs': 'restartableJobs',
|
|
218
197
|
'runnable_public_studio_page': 'runnablePublicStudioPage',
|
|
219
198
|
'security_docs': 'securityDocs',
|
|
220
|
-
'seoul_aws_region': 'seoulAwsRegion',
|
|
221
199
|
'show_dev_admin': 'showDevAdmin',
|
|
222
200
|
'single_wallet': 'singleWallet',
|
|
223
201
|
'slurm': 'slurm',
|
|
224
|
-
'slurm_machine_selector': 'slurmMachineSelector',
|
|
225
|
-
'stop_ide_container_on_shutdown': 'stopIdeContainerOnShutdown',
|
|
226
202
|
'storage_overuse_deletion': 'storageOveruseDeletion',
|
|
227
203
|
'studio_config': 'studioConfig',
|
|
228
204
|
'studio_version_visibility': 'studioVersionVisibility',
|
|
229
|
-
'teamspace_storage_tab': 'teamspaceStorageTab',
|
|
230
205
|
'trainium2': 'trainium2',
|
|
231
|
-
'transfer_studios': 'transferStudios',
|
|
232
206
|
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
233
207
|
'voltage_park': 'voltagePark',
|
|
234
208
|
'voltage_park_studios': 'voltageParkStudios',
|
|
@@ -236,7 +210,7 @@ class V1UserFeatures(object):
|
|
|
236
210
|
'weka': 'weka'
|
|
237
211
|
}
|
|
238
212
|
|
|
239
|
-
def __init__(self, accurate_billing: 'bool' =None, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, auto_top_up: 'bool' =None, auto_top_up_teamspace: 'bool' =None, b2c_experience: 'bool' =None,
|
|
213
|
+
def __init__(self, accurate_billing: 'bool' =None, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, auto_top_up: 'bool' =None, auto_top_up_teamspace: 'bool' =None, b2c_experience: '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, cloud_space_environment_templates: 'bool' =None, cloudy_vibe_code: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, concurrent_gpu_limit: '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, docs_agent: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, gcs_folders: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, lambda_labs: 'bool' =None, lambda_labs_studios: '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, multicloud_folders: 'bool' =None, multicloud_saas: 'bool' =None, multiple_studio_versions: 'bool' =None, nebius: 'bool' =None, nebius_cpu_studios: 'bool' =None, nebius_gpu_studios: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, paygo_free_storage_limit_check: 'bool' =None, pipelines: 'bool' =None, plg_control_center: '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_service: '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, r2_data_connections: '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, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_version_visibility: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, voltage_park: 'bool' =None, voltage_park_studios: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
|
|
240
214
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
241
215
|
self._accurate_billing = None
|
|
242
216
|
self._affiliate_links = None
|
|
@@ -247,8 +221,6 @@ class V1UserFeatures(object):
|
|
|
247
221
|
self._auto_top_up = None
|
|
248
222
|
self._auto_top_up_teamspace = None
|
|
249
223
|
self._b2c_experience = None
|
|
250
|
-
self._blog_route = None
|
|
251
|
-
self._byoc_litcr = None
|
|
252
224
|
self._cap_add = None
|
|
253
225
|
self._cap_drop = None
|
|
254
226
|
self._capacity_reservation_byoc = None
|
|
@@ -264,35 +236,29 @@ class V1UserFeatures(object):
|
|
|
264
236
|
self._custom_app_domain = None
|
|
265
237
|
self._datasets = None
|
|
266
238
|
self._default_one_cluster = None
|
|
267
|
-
self._deployment_alerts = None
|
|
268
239
|
self._deployment_persistent_disk = None
|
|
269
|
-
self._deployment_requests_tab = None
|
|
270
|
-
self._dgx_cloud = None
|
|
271
240
|
self._docs_agent = None
|
|
272
241
|
self._drive_v2 = None
|
|
273
|
-
self._enable_storage_limits = None
|
|
274
242
|
self._enterprise_compute_admin = None
|
|
275
243
|
self._fair_share = None
|
|
276
244
|
self._featured_studios_admin = None
|
|
277
|
-
self._filestore = None
|
|
278
245
|
self._gcs_folders = None
|
|
279
246
|
self._instant_capacity_reservation = None
|
|
280
247
|
self._job_artifacts_v2 = None
|
|
281
248
|
self._lambda_labs = None
|
|
282
249
|
self._lambda_labs_studios = None
|
|
283
250
|
self._landing_studios = None
|
|
284
|
-
self._lightning_cloud = None
|
|
285
251
|
self._lit_logger = None
|
|
286
252
|
self._marketplace = None
|
|
287
253
|
self._mmt_fault_tolerance = None
|
|
288
254
|
self._mmt_strategy_selector = None
|
|
255
|
+
self._model_api_dashboard = None
|
|
289
256
|
self._multicloud_folders = None
|
|
290
257
|
self._multicloud_saas = None
|
|
291
258
|
self._multiple_studio_versions = None
|
|
292
259
|
self._nebius = None
|
|
293
260
|
self._nebius_cpu_studios = None
|
|
294
261
|
self._nebius_gpu_studios = None
|
|
295
|
-
self._neocloud_studios = None
|
|
296
262
|
self._nerf_fs_nonpaying = None
|
|
297
263
|
self._org_level_member_permissions = None
|
|
298
264
|
self._org_usage_limits = None
|
|
@@ -316,18 +282,13 @@ class V1UserFeatures(object):
|
|
|
316
282
|
self._restartable_jobs = None
|
|
317
283
|
self._runnable_public_studio_page = None
|
|
318
284
|
self._security_docs = None
|
|
319
|
-
self._seoul_aws_region = None
|
|
320
285
|
self._show_dev_admin = None
|
|
321
286
|
self._single_wallet = None
|
|
322
287
|
self._slurm = None
|
|
323
|
-
self._slurm_machine_selector = None
|
|
324
|
-
self._stop_ide_container_on_shutdown = None
|
|
325
288
|
self._storage_overuse_deletion = None
|
|
326
289
|
self._studio_config = None
|
|
327
290
|
self._studio_version_visibility = None
|
|
328
|
-
self._teamspace_storage_tab = None
|
|
329
291
|
self._trainium2 = None
|
|
330
|
-
self._transfer_studios = None
|
|
331
292
|
self._use_rclone_mounts_only = None
|
|
332
293
|
self._voltage_park = None
|
|
333
294
|
self._voltage_park_studios = None
|
|
@@ -352,10 +313,6 @@ class V1UserFeatures(object):
|
|
|
352
313
|
self.auto_top_up_teamspace = auto_top_up_teamspace
|
|
353
314
|
if b2c_experience is not None:
|
|
354
315
|
self.b2c_experience = b2c_experience
|
|
355
|
-
if blog_route is not None:
|
|
356
|
-
self.blog_route = blog_route
|
|
357
|
-
if byoc_litcr is not None:
|
|
358
|
-
self.byoc_litcr = byoc_litcr
|
|
359
316
|
if cap_add is not None:
|
|
360
317
|
self.cap_add = cap_add
|
|
361
318
|
if cap_drop is not None:
|
|
@@ -386,28 +343,18 @@ class V1UserFeatures(object):
|
|
|
386
343
|
self.datasets = datasets
|
|
387
344
|
if default_one_cluster is not None:
|
|
388
345
|
self.default_one_cluster = default_one_cluster
|
|
389
|
-
if deployment_alerts is not None:
|
|
390
|
-
self.deployment_alerts = deployment_alerts
|
|
391
346
|
if deployment_persistent_disk is not None:
|
|
392
347
|
self.deployment_persistent_disk = deployment_persistent_disk
|
|
393
|
-
if deployment_requests_tab is not None:
|
|
394
|
-
self.deployment_requests_tab = deployment_requests_tab
|
|
395
|
-
if dgx_cloud is not None:
|
|
396
|
-
self.dgx_cloud = dgx_cloud
|
|
397
348
|
if docs_agent is not None:
|
|
398
349
|
self.docs_agent = docs_agent
|
|
399
350
|
if drive_v2 is not None:
|
|
400
351
|
self.drive_v2 = drive_v2
|
|
401
|
-
if enable_storage_limits is not None:
|
|
402
|
-
self.enable_storage_limits = enable_storage_limits
|
|
403
352
|
if enterprise_compute_admin is not None:
|
|
404
353
|
self.enterprise_compute_admin = enterprise_compute_admin
|
|
405
354
|
if fair_share is not None:
|
|
406
355
|
self.fair_share = fair_share
|
|
407
356
|
if featured_studios_admin is not None:
|
|
408
357
|
self.featured_studios_admin = featured_studios_admin
|
|
409
|
-
if filestore is not None:
|
|
410
|
-
self.filestore = filestore
|
|
411
358
|
if gcs_folders is not None:
|
|
412
359
|
self.gcs_folders = gcs_folders
|
|
413
360
|
if instant_capacity_reservation is not None:
|
|
@@ -420,8 +367,6 @@ class V1UserFeatures(object):
|
|
|
420
367
|
self.lambda_labs_studios = lambda_labs_studios
|
|
421
368
|
if landing_studios is not None:
|
|
422
369
|
self.landing_studios = landing_studios
|
|
423
|
-
if lightning_cloud is not None:
|
|
424
|
-
self.lightning_cloud = lightning_cloud
|
|
425
370
|
if lit_logger is not None:
|
|
426
371
|
self.lit_logger = lit_logger
|
|
427
372
|
if marketplace is not None:
|
|
@@ -430,6 +375,8 @@ class V1UserFeatures(object):
|
|
|
430
375
|
self.mmt_fault_tolerance = mmt_fault_tolerance
|
|
431
376
|
if mmt_strategy_selector is not None:
|
|
432
377
|
self.mmt_strategy_selector = mmt_strategy_selector
|
|
378
|
+
if model_api_dashboard is not None:
|
|
379
|
+
self.model_api_dashboard = model_api_dashboard
|
|
433
380
|
if multicloud_folders is not None:
|
|
434
381
|
self.multicloud_folders = multicloud_folders
|
|
435
382
|
if multicloud_saas is not None:
|
|
@@ -442,8 +389,6 @@ class V1UserFeatures(object):
|
|
|
442
389
|
self.nebius_cpu_studios = nebius_cpu_studios
|
|
443
390
|
if nebius_gpu_studios is not None:
|
|
444
391
|
self.nebius_gpu_studios = nebius_gpu_studios
|
|
445
|
-
if neocloud_studios is not None:
|
|
446
|
-
self.neocloud_studios = neocloud_studios
|
|
447
392
|
if nerf_fs_nonpaying is not None:
|
|
448
393
|
self.nerf_fs_nonpaying = nerf_fs_nonpaying
|
|
449
394
|
if org_level_member_permissions is not None:
|
|
@@ -490,30 +435,20 @@ class V1UserFeatures(object):
|
|
|
490
435
|
self.runnable_public_studio_page = runnable_public_studio_page
|
|
491
436
|
if security_docs is not None:
|
|
492
437
|
self.security_docs = security_docs
|
|
493
|
-
if seoul_aws_region is not None:
|
|
494
|
-
self.seoul_aws_region = seoul_aws_region
|
|
495
438
|
if show_dev_admin is not None:
|
|
496
439
|
self.show_dev_admin = show_dev_admin
|
|
497
440
|
if single_wallet is not None:
|
|
498
441
|
self.single_wallet = single_wallet
|
|
499
442
|
if slurm is not None:
|
|
500
443
|
self.slurm = slurm
|
|
501
|
-
if slurm_machine_selector is not None:
|
|
502
|
-
self.slurm_machine_selector = slurm_machine_selector
|
|
503
|
-
if stop_ide_container_on_shutdown is not None:
|
|
504
|
-
self.stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
|
|
505
444
|
if storage_overuse_deletion is not None:
|
|
506
445
|
self.storage_overuse_deletion = storage_overuse_deletion
|
|
507
446
|
if studio_config is not None:
|
|
508
447
|
self.studio_config = studio_config
|
|
509
448
|
if studio_version_visibility is not None:
|
|
510
449
|
self.studio_version_visibility = studio_version_visibility
|
|
511
|
-
if teamspace_storage_tab is not None:
|
|
512
|
-
self.teamspace_storage_tab = teamspace_storage_tab
|
|
513
450
|
if trainium2 is not None:
|
|
514
451
|
self.trainium2 = trainium2
|
|
515
|
-
if transfer_studios is not None:
|
|
516
|
-
self.transfer_studios = transfer_studios
|
|
517
452
|
if use_rclone_mounts_only is not None:
|
|
518
453
|
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
519
454
|
if voltage_park is not None:
|
|
@@ -714,48 +649,6 @@ class V1UserFeatures(object):
|
|
|
714
649
|
|
|
715
650
|
self._b2c_experience = b2c_experience
|
|
716
651
|
|
|
717
|
-
@property
|
|
718
|
-
def blog_route(self) -> 'bool':
|
|
719
|
-
"""Gets the blog_route of this V1UserFeatures. # noqa: E501
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
:return: The blog_route of this V1UserFeatures. # noqa: E501
|
|
723
|
-
:rtype: bool
|
|
724
|
-
"""
|
|
725
|
-
return self._blog_route
|
|
726
|
-
|
|
727
|
-
@blog_route.setter
|
|
728
|
-
def blog_route(self, blog_route: 'bool'):
|
|
729
|
-
"""Sets the blog_route of this V1UserFeatures.
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
:param blog_route: The blog_route of this V1UserFeatures. # noqa: E501
|
|
733
|
-
:type: bool
|
|
734
|
-
"""
|
|
735
|
-
|
|
736
|
-
self._blog_route = blog_route
|
|
737
|
-
|
|
738
|
-
@property
|
|
739
|
-
def byoc_litcr(self) -> 'bool':
|
|
740
|
-
"""Gets the byoc_litcr of this V1UserFeatures. # noqa: E501
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
:return: The byoc_litcr of this V1UserFeatures. # noqa: E501
|
|
744
|
-
:rtype: bool
|
|
745
|
-
"""
|
|
746
|
-
return self._byoc_litcr
|
|
747
|
-
|
|
748
|
-
@byoc_litcr.setter
|
|
749
|
-
def byoc_litcr(self, byoc_litcr: 'bool'):
|
|
750
|
-
"""Sets the byoc_litcr of this V1UserFeatures.
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
:param byoc_litcr: The byoc_litcr of this V1UserFeatures. # noqa: E501
|
|
754
|
-
:type: bool
|
|
755
|
-
"""
|
|
756
|
-
|
|
757
|
-
self._byoc_litcr = byoc_litcr
|
|
758
|
-
|
|
759
652
|
@property
|
|
760
653
|
def cap_add(self) -> 'list[str]':
|
|
761
654
|
"""Gets the cap_add of this V1UserFeatures. # noqa: E501
|
|
@@ -1071,27 +964,6 @@ class V1UserFeatures(object):
|
|
|
1071
964
|
|
|
1072
965
|
self._default_one_cluster = default_one_cluster
|
|
1073
966
|
|
|
1074
|
-
@property
|
|
1075
|
-
def deployment_alerts(self) -> 'bool':
|
|
1076
|
-
"""Gets the deployment_alerts of this V1UserFeatures. # noqa: E501
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
:return: The deployment_alerts of this V1UserFeatures. # noqa: E501
|
|
1080
|
-
:rtype: bool
|
|
1081
|
-
"""
|
|
1082
|
-
return self._deployment_alerts
|
|
1083
|
-
|
|
1084
|
-
@deployment_alerts.setter
|
|
1085
|
-
def deployment_alerts(self, deployment_alerts: 'bool'):
|
|
1086
|
-
"""Sets the deployment_alerts of this V1UserFeatures.
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
:param deployment_alerts: The deployment_alerts of this V1UserFeatures. # noqa: E501
|
|
1090
|
-
:type: bool
|
|
1091
|
-
"""
|
|
1092
|
-
|
|
1093
|
-
self._deployment_alerts = deployment_alerts
|
|
1094
|
-
|
|
1095
967
|
@property
|
|
1096
968
|
def deployment_persistent_disk(self) -> 'bool':
|
|
1097
969
|
"""Gets the deployment_persistent_disk of this V1UserFeatures. # noqa: E501
|
|
@@ -1113,48 +985,6 @@ class V1UserFeatures(object):
|
|
|
1113
985
|
|
|
1114
986
|
self._deployment_persistent_disk = deployment_persistent_disk
|
|
1115
987
|
|
|
1116
|
-
@property
|
|
1117
|
-
def deployment_requests_tab(self) -> 'bool':
|
|
1118
|
-
"""Gets the deployment_requests_tab of this V1UserFeatures. # noqa: E501
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
:return: The deployment_requests_tab of this V1UserFeatures. # noqa: E501
|
|
1122
|
-
:rtype: bool
|
|
1123
|
-
"""
|
|
1124
|
-
return self._deployment_requests_tab
|
|
1125
|
-
|
|
1126
|
-
@deployment_requests_tab.setter
|
|
1127
|
-
def deployment_requests_tab(self, deployment_requests_tab: 'bool'):
|
|
1128
|
-
"""Sets the deployment_requests_tab of this V1UserFeatures.
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
:param deployment_requests_tab: The deployment_requests_tab of this V1UserFeatures. # noqa: E501
|
|
1132
|
-
:type: bool
|
|
1133
|
-
"""
|
|
1134
|
-
|
|
1135
|
-
self._deployment_requests_tab = deployment_requests_tab
|
|
1136
|
-
|
|
1137
|
-
@property
|
|
1138
|
-
def dgx_cloud(self) -> 'bool':
|
|
1139
|
-
"""Gets the dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
:return: The dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
1143
|
-
:rtype: bool
|
|
1144
|
-
"""
|
|
1145
|
-
return self._dgx_cloud
|
|
1146
|
-
|
|
1147
|
-
@dgx_cloud.setter
|
|
1148
|
-
def dgx_cloud(self, dgx_cloud: 'bool'):
|
|
1149
|
-
"""Sets the dgx_cloud of this V1UserFeatures.
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
:param dgx_cloud: The dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
1153
|
-
:type: bool
|
|
1154
|
-
"""
|
|
1155
|
-
|
|
1156
|
-
self._dgx_cloud = dgx_cloud
|
|
1157
|
-
|
|
1158
988
|
@property
|
|
1159
989
|
def docs_agent(self) -> 'bool':
|
|
1160
990
|
"""Gets the docs_agent of this V1UserFeatures. # noqa: E501
|
|
@@ -1197,27 +1027,6 @@ class V1UserFeatures(object):
|
|
|
1197
1027
|
|
|
1198
1028
|
self._drive_v2 = drive_v2
|
|
1199
1029
|
|
|
1200
|
-
@property
|
|
1201
|
-
def enable_storage_limits(self) -> 'bool':
|
|
1202
|
-
"""Gets the enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
:return: The enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1206
|
-
:rtype: bool
|
|
1207
|
-
"""
|
|
1208
|
-
return self._enable_storage_limits
|
|
1209
|
-
|
|
1210
|
-
@enable_storage_limits.setter
|
|
1211
|
-
def enable_storage_limits(self, enable_storage_limits: 'bool'):
|
|
1212
|
-
"""Sets the enable_storage_limits of this V1UserFeatures.
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
:param enable_storage_limits: The enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1216
|
-
:type: bool
|
|
1217
|
-
"""
|
|
1218
|
-
|
|
1219
|
-
self._enable_storage_limits = enable_storage_limits
|
|
1220
|
-
|
|
1221
1030
|
@property
|
|
1222
1031
|
def enterprise_compute_admin(self) -> 'bool':
|
|
1223
1032
|
"""Gets the enterprise_compute_admin of this V1UserFeatures. # noqa: E501
|
|
@@ -1281,27 +1090,6 @@ class V1UserFeatures(object):
|
|
|
1281
1090
|
|
|
1282
1091
|
self._featured_studios_admin = featured_studios_admin
|
|
1283
1092
|
|
|
1284
|
-
@property
|
|
1285
|
-
def filestore(self) -> 'bool':
|
|
1286
|
-
"""Gets the filestore of this V1UserFeatures. # noqa: E501
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
:return: The filestore of this V1UserFeatures. # noqa: E501
|
|
1290
|
-
:rtype: bool
|
|
1291
|
-
"""
|
|
1292
|
-
return self._filestore
|
|
1293
|
-
|
|
1294
|
-
@filestore.setter
|
|
1295
|
-
def filestore(self, filestore: 'bool'):
|
|
1296
|
-
"""Sets the filestore of this V1UserFeatures.
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
:param filestore: The filestore of this V1UserFeatures. # noqa: E501
|
|
1300
|
-
:type: bool
|
|
1301
|
-
"""
|
|
1302
|
-
|
|
1303
|
-
self._filestore = filestore
|
|
1304
|
-
|
|
1305
1093
|
@property
|
|
1306
1094
|
def gcs_folders(self) -> 'bool':
|
|
1307
1095
|
"""Gets the gcs_folders of this V1UserFeatures. # noqa: E501
|
|
@@ -1428,27 +1216,6 @@ class V1UserFeatures(object):
|
|
|
1428
1216
|
|
|
1429
1217
|
self._landing_studios = landing_studios
|
|
1430
1218
|
|
|
1431
|
-
@property
|
|
1432
|
-
def lightning_cloud(self) -> 'bool':
|
|
1433
|
-
"""Gets the lightning_cloud of this V1UserFeatures. # noqa: E501
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
:return: The lightning_cloud of this V1UserFeatures. # noqa: E501
|
|
1437
|
-
:rtype: bool
|
|
1438
|
-
"""
|
|
1439
|
-
return self._lightning_cloud
|
|
1440
|
-
|
|
1441
|
-
@lightning_cloud.setter
|
|
1442
|
-
def lightning_cloud(self, lightning_cloud: 'bool'):
|
|
1443
|
-
"""Sets the lightning_cloud of this V1UserFeatures.
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
:param lightning_cloud: The lightning_cloud of this V1UserFeatures. # noqa: E501
|
|
1447
|
-
:type: bool
|
|
1448
|
-
"""
|
|
1449
|
-
|
|
1450
|
-
self._lightning_cloud = lightning_cloud
|
|
1451
|
-
|
|
1452
1219
|
@property
|
|
1453
1220
|
def lit_logger(self) -> 'bool':
|
|
1454
1221
|
"""Gets the lit_logger of this V1UserFeatures. # noqa: E501
|
|
@@ -1533,6 +1300,27 @@ class V1UserFeatures(object):
|
|
|
1533
1300
|
|
|
1534
1301
|
self._mmt_strategy_selector = mmt_strategy_selector
|
|
1535
1302
|
|
|
1303
|
+
@property
|
|
1304
|
+
def model_api_dashboard(self) -> 'bool':
|
|
1305
|
+
"""Gets the model_api_dashboard of this V1UserFeatures. # noqa: E501
|
|
1306
|
+
|
|
1307
|
+
|
|
1308
|
+
:return: The model_api_dashboard of this V1UserFeatures. # noqa: E501
|
|
1309
|
+
:rtype: bool
|
|
1310
|
+
"""
|
|
1311
|
+
return self._model_api_dashboard
|
|
1312
|
+
|
|
1313
|
+
@model_api_dashboard.setter
|
|
1314
|
+
def model_api_dashboard(self, model_api_dashboard: 'bool'):
|
|
1315
|
+
"""Sets the model_api_dashboard of this V1UserFeatures.
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
:param model_api_dashboard: The model_api_dashboard of this V1UserFeatures. # noqa: E501
|
|
1319
|
+
:type: bool
|
|
1320
|
+
"""
|
|
1321
|
+
|
|
1322
|
+
self._model_api_dashboard = model_api_dashboard
|
|
1323
|
+
|
|
1536
1324
|
@property
|
|
1537
1325
|
def multicloud_folders(self) -> 'bool':
|
|
1538
1326
|
"""Gets the multicloud_folders of this V1UserFeatures. # noqa: E501
|
|
@@ -1659,27 +1447,6 @@ class V1UserFeatures(object):
|
|
|
1659
1447
|
|
|
1660
1448
|
self._nebius_gpu_studios = nebius_gpu_studios
|
|
1661
1449
|
|
|
1662
|
-
@property
|
|
1663
|
-
def neocloud_studios(self) -> 'bool':
|
|
1664
|
-
"""Gets the neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
:return: The neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
1668
|
-
:rtype: bool
|
|
1669
|
-
"""
|
|
1670
|
-
return self._neocloud_studios
|
|
1671
|
-
|
|
1672
|
-
@neocloud_studios.setter
|
|
1673
|
-
def neocloud_studios(self, neocloud_studios: 'bool'):
|
|
1674
|
-
"""Sets the neocloud_studios of this V1UserFeatures.
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
:param neocloud_studios: The neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
1678
|
-
:type: bool
|
|
1679
|
-
"""
|
|
1680
|
-
|
|
1681
|
-
self._neocloud_studios = neocloud_studios
|
|
1682
|
-
|
|
1683
1450
|
@property
|
|
1684
1451
|
def nerf_fs_nonpaying(self) -> 'bool':
|
|
1685
1452
|
"""Gets the nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
|
|
@@ -2163,27 +1930,6 @@ class V1UserFeatures(object):
|
|
|
2163
1930
|
|
|
2164
1931
|
self._security_docs = security_docs
|
|
2165
1932
|
|
|
2166
|
-
@property
|
|
2167
|
-
def seoul_aws_region(self) -> 'bool':
|
|
2168
|
-
"""Gets the seoul_aws_region of this V1UserFeatures. # noqa: E501
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
:return: The seoul_aws_region of this V1UserFeatures. # noqa: E501
|
|
2172
|
-
:rtype: bool
|
|
2173
|
-
"""
|
|
2174
|
-
return self._seoul_aws_region
|
|
2175
|
-
|
|
2176
|
-
@seoul_aws_region.setter
|
|
2177
|
-
def seoul_aws_region(self, seoul_aws_region: 'bool'):
|
|
2178
|
-
"""Sets the seoul_aws_region of this V1UserFeatures.
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
:param seoul_aws_region: The seoul_aws_region of this V1UserFeatures. # noqa: E501
|
|
2182
|
-
:type: bool
|
|
2183
|
-
"""
|
|
2184
|
-
|
|
2185
|
-
self._seoul_aws_region = seoul_aws_region
|
|
2186
|
-
|
|
2187
1933
|
@property
|
|
2188
1934
|
def show_dev_admin(self) -> 'bool':
|
|
2189
1935
|
"""Gets the show_dev_admin of this V1UserFeatures. # noqa: E501
|
|
@@ -2247,48 +1993,6 @@ class V1UserFeatures(object):
|
|
|
2247
1993
|
|
|
2248
1994
|
self._slurm = slurm
|
|
2249
1995
|
|
|
2250
|
-
@property
|
|
2251
|
-
def slurm_machine_selector(self) -> 'bool':
|
|
2252
|
-
"""Gets the slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
:return: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
2256
|
-
:rtype: bool
|
|
2257
|
-
"""
|
|
2258
|
-
return self._slurm_machine_selector
|
|
2259
|
-
|
|
2260
|
-
@slurm_machine_selector.setter
|
|
2261
|
-
def slurm_machine_selector(self, slurm_machine_selector: 'bool'):
|
|
2262
|
-
"""Sets the slurm_machine_selector of this V1UserFeatures.
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
:param slurm_machine_selector: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
2266
|
-
:type: bool
|
|
2267
|
-
"""
|
|
2268
|
-
|
|
2269
|
-
self._slurm_machine_selector = slurm_machine_selector
|
|
2270
|
-
|
|
2271
|
-
@property
|
|
2272
|
-
def stop_ide_container_on_shutdown(self) -> 'bool':
|
|
2273
|
-
"""Gets the stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
:return: The stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
|
|
2277
|
-
:rtype: bool
|
|
2278
|
-
"""
|
|
2279
|
-
return self._stop_ide_container_on_shutdown
|
|
2280
|
-
|
|
2281
|
-
@stop_ide_container_on_shutdown.setter
|
|
2282
|
-
def stop_ide_container_on_shutdown(self, stop_ide_container_on_shutdown: 'bool'):
|
|
2283
|
-
"""Sets the stop_ide_container_on_shutdown of this V1UserFeatures.
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
:param stop_ide_container_on_shutdown: The stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
|
|
2287
|
-
:type: bool
|
|
2288
|
-
"""
|
|
2289
|
-
|
|
2290
|
-
self._stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
|
|
2291
|
-
|
|
2292
1996
|
@property
|
|
2293
1997
|
def storage_overuse_deletion(self) -> 'bool':
|
|
2294
1998
|
"""Gets the storage_overuse_deletion of this V1UserFeatures. # noqa: E501
|
|
@@ -2352,27 +2056,6 @@ class V1UserFeatures(object):
|
|
|
2352
2056
|
|
|
2353
2057
|
self._studio_version_visibility = studio_version_visibility
|
|
2354
2058
|
|
|
2355
|
-
@property
|
|
2356
|
-
def teamspace_storage_tab(self) -> 'bool':
|
|
2357
|
-
"""Gets the teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
:return: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2361
|
-
:rtype: bool
|
|
2362
|
-
"""
|
|
2363
|
-
return self._teamspace_storage_tab
|
|
2364
|
-
|
|
2365
|
-
@teamspace_storage_tab.setter
|
|
2366
|
-
def teamspace_storage_tab(self, teamspace_storage_tab: 'bool'):
|
|
2367
|
-
"""Sets the teamspace_storage_tab of this V1UserFeatures.
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
:param teamspace_storage_tab: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2371
|
-
:type: bool
|
|
2372
|
-
"""
|
|
2373
|
-
|
|
2374
|
-
self._teamspace_storage_tab = teamspace_storage_tab
|
|
2375
|
-
|
|
2376
2059
|
@property
|
|
2377
2060
|
def trainium2(self) -> 'bool':
|
|
2378
2061
|
"""Gets the trainium2 of this V1UserFeatures. # noqa: E501
|
|
@@ -2394,27 +2077,6 @@ class V1UserFeatures(object):
|
|
|
2394
2077
|
|
|
2395
2078
|
self._trainium2 = trainium2
|
|
2396
2079
|
|
|
2397
|
-
@property
|
|
2398
|
-
def transfer_studios(self) -> 'bool':
|
|
2399
|
-
"""Gets the transfer_studios of this V1UserFeatures. # noqa: E501
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
:return: The transfer_studios of this V1UserFeatures. # noqa: E501
|
|
2403
|
-
:rtype: bool
|
|
2404
|
-
"""
|
|
2405
|
-
return self._transfer_studios
|
|
2406
|
-
|
|
2407
|
-
@transfer_studios.setter
|
|
2408
|
-
def transfer_studios(self, transfer_studios: 'bool'):
|
|
2409
|
-
"""Sets the transfer_studios of this V1UserFeatures.
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
:param transfer_studios: The transfer_studios of this V1UserFeatures. # noqa: E501
|
|
2413
|
-
:type: bool
|
|
2414
|
-
"""
|
|
2415
|
-
|
|
2416
|
-
self._transfer_studios = transfer_studios
|
|
2417
|
-
|
|
2418
2080
|
@property
|
|
2419
2081
|
def use_rclone_mounts_only(self) -> 'bool':
|
|
2420
2082
|
"""Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|