lightning-sdk 0.2.8__py3-none-any.whl → 0.2.10__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/cluster_api.py +22 -0
- lightning_sdk/api/deployment_api.py +1 -0
- lightning_sdk/api/lit_container_api.py +24 -5
- lightning_sdk/api/teamspace_api.py +22 -17
- lightning_sdk/api/utils.py +1 -1
- lightning_sdk/cli/clusters_menu.py +46 -0
- lightning_sdk/cli/entrypoint.py +2 -2
- lightning_sdk/cli/list.py +25 -5
- lightning_sdk/cli/serve.py +232 -24
- lightning_sdk/cli/upload.py +4 -1
- lightning_sdk/deployment/deployment.py +5 -2
- lightning_sdk/lightning_cloud/openapi/__init__.py +10 -0
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +303 -0
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +10 -0
- lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_systemmetrics_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityreservations_body.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/create.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/update.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_billing_tier.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_cold_start_metrics.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_cold_start_metrics_stats.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cloudflare_v1.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_capacity_reservation_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_gcp_direct_vpc.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_cold_start_metrics_stats_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_instance_system_metrics_aggregate_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +43 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_project_cluster_binding.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_r2_data_connection.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_report_cloud_space_instance_system_metrics_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_phase.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_system_metrics_aggregated.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +104 -208
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_data_connection_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_weka_data_connection.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/validate.py +27 -1
- lightning_sdk/lit_container.py +25 -7
- lightning_sdk/models.py +26 -8
- lightning_sdk/serve.py +3 -20
- lightning_sdk/teamspace.py +21 -4
- lightning_sdk/utils/resolve.py +11 -4
- {lightning_sdk-0.2.8.dist-info → lightning_sdk-0.2.10.dist-info}/METADATA +1 -1
- {lightning_sdk-0.2.8.dist-info → lightning_sdk-0.2.10.dist-info}/RECORD +60 -48
- {lightning_sdk-0.2.8.dist-info → lightning_sdk-0.2.10.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.2.8.dist-info → lightning_sdk-0.2.10.dist-info}/WHEEL +0 -0
- {lightning_sdk-0.2.8.dist-info → lightning_sdk-0.2.10.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.2.8.dist-info → lightning_sdk-0.2.10.dist-info}/top_level.txt +0 -0
|
@@ -63,11 +63,10 @@ class V1UserFeatures(object):
|
|
|
63
63
|
'default_one_cluster': 'bool',
|
|
64
64
|
'deployment_alerts': 'bool',
|
|
65
65
|
'deployment_persistent_disk': 'bool',
|
|
66
|
-
'deployment_reservations': 'bool',
|
|
67
66
|
'dgx_cloud': 'bool',
|
|
67
|
+
'doc_helper_chat': 'bool',
|
|
68
68
|
'docs_agent': 'bool',
|
|
69
69
|
'drive_v2': 'bool',
|
|
70
|
-
'enable_crypto_crackdown': 'bool',
|
|
71
70
|
'enable_storage_limits': 'bool',
|
|
72
71
|
'enterprise_compute_admin': 'bool',
|
|
73
72
|
'fair_share': 'bool',
|
|
@@ -79,7 +78,6 @@ class V1UserFeatures(object):
|
|
|
79
78
|
'lambda_labs': 'bool',
|
|
80
79
|
'landing_studios': 'bool',
|
|
81
80
|
'lit_logger': 'bool',
|
|
82
|
-
'manage_default_studio_machine': 'bool',
|
|
83
81
|
'marketplace': 'bool',
|
|
84
82
|
'mmt_fault_tolerance': 'bool',
|
|
85
83
|
'mmt_strategy_selector': 'bool',
|
|
@@ -87,19 +85,15 @@ class V1UserFeatures(object):
|
|
|
87
85
|
'multiple_studio_versions': 'bool',
|
|
88
86
|
'org_admin_alerts': 'bool',
|
|
89
87
|
'org_level_member_permissions': 'bool',
|
|
88
|
+
'org_usage_limits': 'bool',
|
|
90
89
|
'pipelines': 'bool',
|
|
91
90
|
'plugin_distributed': 'bool',
|
|
92
91
|
'plugin_inference': 'bool',
|
|
93
92
|
'plugin_label_studio': 'bool',
|
|
94
93
|
'plugin_langflow': 'bool',
|
|
95
|
-
'plugin_lightning_apps': 'bool',
|
|
96
|
-
'plugin_lightning_apps_distributed': 'bool',
|
|
97
|
-
'plugin_milvus': 'bool',
|
|
98
94
|
'plugin_python_profiler': 'bool',
|
|
99
|
-
'plugin_react': 'bool',
|
|
100
95
|
'plugin_service': 'bool',
|
|
101
96
|
'plugin_sweeps': 'bool',
|
|
102
|
-
'plugin_weviate': 'bool',
|
|
103
97
|
'pricing_updates': 'bool',
|
|
104
98
|
'product_generator': 'bool',
|
|
105
99
|
'project_selector': 'bool',
|
|
@@ -116,10 +110,12 @@ class V1UserFeatures(object):
|
|
|
116
110
|
'studio_on_stop': 'bool',
|
|
117
111
|
'studio_version_visibility': 'bool',
|
|
118
112
|
'studios_dashboard': 'bool',
|
|
113
|
+
'studios_dashboard_system_metrics': 'bool',
|
|
119
114
|
'teamspace_storage_tab': 'bool',
|
|
120
115
|
'trainium2': 'bool',
|
|
121
116
|
'use_rclone_mounts_only': 'bool',
|
|
122
|
-
'vultr': 'bool'
|
|
117
|
+
'vultr': 'bool',
|
|
118
|
+
'weka': 'bool'
|
|
123
119
|
}
|
|
124
120
|
|
|
125
121
|
attribute_map = {
|
|
@@ -145,11 +141,10 @@ class V1UserFeatures(object):
|
|
|
145
141
|
'default_one_cluster': 'defaultOneCluster',
|
|
146
142
|
'deployment_alerts': 'deploymentAlerts',
|
|
147
143
|
'deployment_persistent_disk': 'deploymentPersistentDisk',
|
|
148
|
-
'deployment_reservations': 'deploymentReservations',
|
|
149
144
|
'dgx_cloud': 'dgxCloud',
|
|
145
|
+
'doc_helper_chat': 'docHelperChat',
|
|
150
146
|
'docs_agent': 'docsAgent',
|
|
151
147
|
'drive_v2': 'driveV2',
|
|
152
|
-
'enable_crypto_crackdown': 'enableCryptoCrackdown',
|
|
153
148
|
'enable_storage_limits': 'enableStorageLimits',
|
|
154
149
|
'enterprise_compute_admin': 'enterpriseComputeAdmin',
|
|
155
150
|
'fair_share': 'fairShare',
|
|
@@ -161,7 +156,6 @@ class V1UserFeatures(object):
|
|
|
161
156
|
'lambda_labs': 'lambdaLabs',
|
|
162
157
|
'landing_studios': 'landingStudios',
|
|
163
158
|
'lit_logger': 'litLogger',
|
|
164
|
-
'manage_default_studio_machine': 'manageDefaultStudioMachine',
|
|
165
159
|
'marketplace': 'marketplace',
|
|
166
160
|
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
167
161
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
@@ -169,19 +163,15 @@ class V1UserFeatures(object):
|
|
|
169
163
|
'multiple_studio_versions': 'multipleStudioVersions',
|
|
170
164
|
'org_admin_alerts': 'orgAdminAlerts',
|
|
171
165
|
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
166
|
+
'org_usage_limits': 'orgUsageLimits',
|
|
172
167
|
'pipelines': 'pipelines',
|
|
173
168
|
'plugin_distributed': 'pluginDistributed',
|
|
174
169
|
'plugin_inference': 'pluginInference',
|
|
175
170
|
'plugin_label_studio': 'pluginLabelStudio',
|
|
176
171
|
'plugin_langflow': 'pluginLangflow',
|
|
177
|
-
'plugin_lightning_apps': 'pluginLightningApps',
|
|
178
|
-
'plugin_lightning_apps_distributed': 'pluginLightningAppsDistributed',
|
|
179
|
-
'plugin_milvus': 'pluginMilvus',
|
|
180
172
|
'plugin_python_profiler': 'pluginPythonProfiler',
|
|
181
|
-
'plugin_react': 'pluginReact',
|
|
182
173
|
'plugin_service': 'pluginService',
|
|
183
174
|
'plugin_sweeps': 'pluginSweeps',
|
|
184
|
-
'plugin_weviate': 'pluginWeviate',
|
|
185
175
|
'pricing_updates': 'pricingUpdates',
|
|
186
176
|
'product_generator': 'productGenerator',
|
|
187
177
|
'project_selector': 'projectSelector',
|
|
@@ -198,13 +188,15 @@ class V1UserFeatures(object):
|
|
|
198
188
|
'studio_on_stop': 'studioOnStop',
|
|
199
189
|
'studio_version_visibility': 'studioVersionVisibility',
|
|
200
190
|
'studios_dashboard': 'studiosDashboard',
|
|
191
|
+
'studios_dashboard_system_metrics': 'studiosDashboardSystemMetrics',
|
|
201
192
|
'teamspace_storage_tab': 'teamspaceStorageTab',
|
|
202
193
|
'trainium2': 'trainium2',
|
|
203
194
|
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
204
|
-
'vultr': 'vultr'
|
|
195
|
+
'vultr': 'vultr',
|
|
196
|
+
'weka': 'weka'
|
|
205
197
|
}
|
|
206
198
|
|
|
207
|
-
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, byoc_litcr: '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, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, custom_instance_types: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_alerts: 'bool' =None, deployment_persistent_disk: 'bool' =None,
|
|
199
|
+
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, byoc_litcr: '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, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, custom_instance_types: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_alerts: 'bool' =None, deployment_persistent_disk: 'bool' =None, dgx_cloud: 'bool' =None, doc_helper_chat: 'bool' =None, docs_agent: 'bool' =None, drive_v2: 'bool' =None, enable_storage_limits: 'bool' =None, enterprise_compute_admin: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, filestore: 'bool' =None, inactive_notify_delete: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, lambda_labs: 'bool' =None, landing_studios: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multicloud_saas: 'bool' =None, multiple_studio_versions: 'bool' =None, org_admin_alerts: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, pipelines: '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, project_selector: 'bool' =None, publish_pipelines: '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, slurm_machine_selector: 'bool' =None, stop_ide_container_on_shutdown: 'bool' =None, studio_config: 'bool' =None, studio_on_stop: 'bool' =None, studio_version_visibility: 'bool' =None, studios_dashboard: 'bool' =None, studios_dashboard_system_metrics: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
|
|
208
200
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
209
201
|
self._affiliate_links = None
|
|
210
202
|
self._agents_v2 = None
|
|
@@ -228,11 +220,10 @@ class V1UserFeatures(object):
|
|
|
228
220
|
self._default_one_cluster = None
|
|
229
221
|
self._deployment_alerts = None
|
|
230
222
|
self._deployment_persistent_disk = None
|
|
231
|
-
self._deployment_reservations = None
|
|
232
223
|
self._dgx_cloud = None
|
|
224
|
+
self._doc_helper_chat = None
|
|
233
225
|
self._docs_agent = None
|
|
234
226
|
self._drive_v2 = None
|
|
235
|
-
self._enable_crypto_crackdown = None
|
|
236
227
|
self._enable_storage_limits = None
|
|
237
228
|
self._enterprise_compute_admin = None
|
|
238
229
|
self._fair_share = None
|
|
@@ -244,7 +235,6 @@ class V1UserFeatures(object):
|
|
|
244
235
|
self._lambda_labs = None
|
|
245
236
|
self._landing_studios = None
|
|
246
237
|
self._lit_logger = None
|
|
247
|
-
self._manage_default_studio_machine = None
|
|
248
238
|
self._marketplace = None
|
|
249
239
|
self._mmt_fault_tolerance = None
|
|
250
240
|
self._mmt_strategy_selector = None
|
|
@@ -252,19 +242,15 @@ class V1UserFeatures(object):
|
|
|
252
242
|
self._multiple_studio_versions = None
|
|
253
243
|
self._org_admin_alerts = None
|
|
254
244
|
self._org_level_member_permissions = None
|
|
245
|
+
self._org_usage_limits = None
|
|
255
246
|
self._pipelines = None
|
|
256
247
|
self._plugin_distributed = None
|
|
257
248
|
self._plugin_inference = None
|
|
258
249
|
self._plugin_label_studio = None
|
|
259
250
|
self._plugin_langflow = None
|
|
260
|
-
self._plugin_lightning_apps = None
|
|
261
|
-
self._plugin_lightning_apps_distributed = None
|
|
262
|
-
self._plugin_milvus = None
|
|
263
251
|
self._plugin_python_profiler = None
|
|
264
|
-
self._plugin_react = None
|
|
265
252
|
self._plugin_service = None
|
|
266
253
|
self._plugin_sweeps = None
|
|
267
|
-
self._plugin_weviate = None
|
|
268
254
|
self._pricing_updates = None
|
|
269
255
|
self._product_generator = None
|
|
270
256
|
self._project_selector = None
|
|
@@ -281,10 +267,12 @@ class V1UserFeatures(object):
|
|
|
281
267
|
self._studio_on_stop = None
|
|
282
268
|
self._studio_version_visibility = None
|
|
283
269
|
self._studios_dashboard = None
|
|
270
|
+
self._studios_dashboard_system_metrics = None
|
|
284
271
|
self._teamspace_storage_tab = None
|
|
285
272
|
self._trainium2 = None
|
|
286
273
|
self._use_rclone_mounts_only = None
|
|
287
274
|
self._vultr = None
|
|
275
|
+
self._weka = None
|
|
288
276
|
self.discriminator = None
|
|
289
277
|
if affiliate_links is not None:
|
|
290
278
|
self.affiliate_links = affiliate_links
|
|
@@ -330,16 +318,14 @@ class V1UserFeatures(object):
|
|
|
330
318
|
self.deployment_alerts = deployment_alerts
|
|
331
319
|
if deployment_persistent_disk is not None:
|
|
332
320
|
self.deployment_persistent_disk = deployment_persistent_disk
|
|
333
|
-
if deployment_reservations is not None:
|
|
334
|
-
self.deployment_reservations = deployment_reservations
|
|
335
321
|
if dgx_cloud is not None:
|
|
336
322
|
self.dgx_cloud = dgx_cloud
|
|
323
|
+
if doc_helper_chat is not None:
|
|
324
|
+
self.doc_helper_chat = doc_helper_chat
|
|
337
325
|
if docs_agent is not None:
|
|
338
326
|
self.docs_agent = docs_agent
|
|
339
327
|
if drive_v2 is not None:
|
|
340
328
|
self.drive_v2 = drive_v2
|
|
341
|
-
if enable_crypto_crackdown is not None:
|
|
342
|
-
self.enable_crypto_crackdown = enable_crypto_crackdown
|
|
343
329
|
if enable_storage_limits is not None:
|
|
344
330
|
self.enable_storage_limits = enable_storage_limits
|
|
345
331
|
if enterprise_compute_admin is not None:
|
|
@@ -362,8 +348,6 @@ class V1UserFeatures(object):
|
|
|
362
348
|
self.landing_studios = landing_studios
|
|
363
349
|
if lit_logger is not None:
|
|
364
350
|
self.lit_logger = lit_logger
|
|
365
|
-
if manage_default_studio_machine is not None:
|
|
366
|
-
self.manage_default_studio_machine = manage_default_studio_machine
|
|
367
351
|
if marketplace is not None:
|
|
368
352
|
self.marketplace = marketplace
|
|
369
353
|
if mmt_fault_tolerance is not None:
|
|
@@ -378,6 +362,8 @@ class V1UserFeatures(object):
|
|
|
378
362
|
self.org_admin_alerts = org_admin_alerts
|
|
379
363
|
if org_level_member_permissions is not None:
|
|
380
364
|
self.org_level_member_permissions = org_level_member_permissions
|
|
365
|
+
if org_usage_limits is not None:
|
|
366
|
+
self.org_usage_limits = org_usage_limits
|
|
381
367
|
if pipelines is not None:
|
|
382
368
|
self.pipelines = pipelines
|
|
383
369
|
if plugin_distributed is not None:
|
|
@@ -388,22 +374,12 @@ class V1UserFeatures(object):
|
|
|
388
374
|
self.plugin_label_studio = plugin_label_studio
|
|
389
375
|
if plugin_langflow is not None:
|
|
390
376
|
self.plugin_langflow = plugin_langflow
|
|
391
|
-
if plugin_lightning_apps is not None:
|
|
392
|
-
self.plugin_lightning_apps = plugin_lightning_apps
|
|
393
|
-
if plugin_lightning_apps_distributed is not None:
|
|
394
|
-
self.plugin_lightning_apps_distributed = plugin_lightning_apps_distributed
|
|
395
|
-
if plugin_milvus is not None:
|
|
396
|
-
self.plugin_milvus = plugin_milvus
|
|
397
377
|
if plugin_python_profiler is not None:
|
|
398
378
|
self.plugin_python_profiler = plugin_python_profiler
|
|
399
|
-
if plugin_react is not None:
|
|
400
|
-
self.plugin_react = plugin_react
|
|
401
379
|
if plugin_service is not None:
|
|
402
380
|
self.plugin_service = plugin_service
|
|
403
381
|
if plugin_sweeps is not None:
|
|
404
382
|
self.plugin_sweeps = plugin_sweeps
|
|
405
|
-
if plugin_weviate is not None:
|
|
406
|
-
self.plugin_weviate = plugin_weviate
|
|
407
383
|
if pricing_updates is not None:
|
|
408
384
|
self.pricing_updates = pricing_updates
|
|
409
385
|
if product_generator is not None:
|
|
@@ -436,6 +412,8 @@ class V1UserFeatures(object):
|
|
|
436
412
|
self.studio_version_visibility = studio_version_visibility
|
|
437
413
|
if studios_dashboard is not None:
|
|
438
414
|
self.studios_dashboard = studios_dashboard
|
|
415
|
+
if studios_dashboard_system_metrics is not None:
|
|
416
|
+
self.studios_dashboard_system_metrics = studios_dashboard_system_metrics
|
|
439
417
|
if teamspace_storage_tab is not None:
|
|
440
418
|
self.teamspace_storage_tab = teamspace_storage_tab
|
|
441
419
|
if trainium2 is not None:
|
|
@@ -444,6 +422,8 @@ class V1UserFeatures(object):
|
|
|
444
422
|
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
445
423
|
if vultr is not None:
|
|
446
424
|
self.vultr = vultr
|
|
425
|
+
if weka is not None:
|
|
426
|
+
self.weka = weka
|
|
447
427
|
|
|
448
428
|
@property
|
|
449
429
|
def affiliate_links(self) -> 'bool':
|
|
@@ -908,46 +888,46 @@ class V1UserFeatures(object):
|
|
|
908
888
|
self._deployment_persistent_disk = deployment_persistent_disk
|
|
909
889
|
|
|
910
890
|
@property
|
|
911
|
-
def
|
|
912
|
-
"""Gets the
|
|
891
|
+
def dgx_cloud(self) -> 'bool':
|
|
892
|
+
"""Gets the dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
913
893
|
|
|
914
894
|
|
|
915
|
-
:return: The
|
|
895
|
+
:return: The dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
916
896
|
:rtype: bool
|
|
917
897
|
"""
|
|
918
|
-
return self.
|
|
898
|
+
return self._dgx_cloud
|
|
919
899
|
|
|
920
|
-
@
|
|
921
|
-
def
|
|
922
|
-
"""Sets the
|
|
900
|
+
@dgx_cloud.setter
|
|
901
|
+
def dgx_cloud(self, dgx_cloud: 'bool'):
|
|
902
|
+
"""Sets the dgx_cloud of this V1UserFeatures.
|
|
923
903
|
|
|
924
904
|
|
|
925
|
-
:param
|
|
905
|
+
:param dgx_cloud: The dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
926
906
|
:type: bool
|
|
927
907
|
"""
|
|
928
908
|
|
|
929
|
-
self.
|
|
909
|
+
self._dgx_cloud = dgx_cloud
|
|
930
910
|
|
|
931
911
|
@property
|
|
932
|
-
def
|
|
933
|
-
"""Gets the
|
|
912
|
+
def doc_helper_chat(self) -> 'bool':
|
|
913
|
+
"""Gets the doc_helper_chat of this V1UserFeatures. # noqa: E501
|
|
934
914
|
|
|
935
915
|
|
|
936
|
-
:return: The
|
|
916
|
+
:return: The doc_helper_chat of this V1UserFeatures. # noqa: E501
|
|
937
917
|
:rtype: bool
|
|
938
918
|
"""
|
|
939
|
-
return self.
|
|
919
|
+
return self._doc_helper_chat
|
|
940
920
|
|
|
941
|
-
@
|
|
942
|
-
def
|
|
943
|
-
"""Sets the
|
|
921
|
+
@doc_helper_chat.setter
|
|
922
|
+
def doc_helper_chat(self, doc_helper_chat: 'bool'):
|
|
923
|
+
"""Sets the doc_helper_chat of this V1UserFeatures.
|
|
944
924
|
|
|
945
925
|
|
|
946
|
-
:param
|
|
926
|
+
:param doc_helper_chat: The doc_helper_chat of this V1UserFeatures. # noqa: E501
|
|
947
927
|
:type: bool
|
|
948
928
|
"""
|
|
949
929
|
|
|
950
|
-
self.
|
|
930
|
+
self._doc_helper_chat = doc_helper_chat
|
|
951
931
|
|
|
952
932
|
@property
|
|
953
933
|
def docs_agent(self) -> 'bool':
|
|
@@ -991,27 +971,6 @@ class V1UserFeatures(object):
|
|
|
991
971
|
|
|
992
972
|
self._drive_v2 = drive_v2
|
|
993
973
|
|
|
994
|
-
@property
|
|
995
|
-
def enable_crypto_crackdown(self) -> 'bool':
|
|
996
|
-
"""Gets the enable_crypto_crackdown of this V1UserFeatures. # noqa: E501
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
:return: The enable_crypto_crackdown of this V1UserFeatures. # noqa: E501
|
|
1000
|
-
:rtype: bool
|
|
1001
|
-
"""
|
|
1002
|
-
return self._enable_crypto_crackdown
|
|
1003
|
-
|
|
1004
|
-
@enable_crypto_crackdown.setter
|
|
1005
|
-
def enable_crypto_crackdown(self, enable_crypto_crackdown: 'bool'):
|
|
1006
|
-
"""Sets the enable_crypto_crackdown of this V1UserFeatures.
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
:param enable_crypto_crackdown: The enable_crypto_crackdown of this V1UserFeatures. # noqa: E501
|
|
1010
|
-
:type: bool
|
|
1011
|
-
"""
|
|
1012
|
-
|
|
1013
|
-
self._enable_crypto_crackdown = enable_crypto_crackdown
|
|
1014
|
-
|
|
1015
974
|
@property
|
|
1016
975
|
def enable_storage_limits(self) -> 'bool':
|
|
1017
976
|
"""Gets the enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
@@ -1243,27 +1202,6 @@ class V1UserFeatures(object):
|
|
|
1243
1202
|
|
|
1244
1203
|
self._lit_logger = lit_logger
|
|
1245
1204
|
|
|
1246
|
-
@property
|
|
1247
|
-
def manage_default_studio_machine(self) -> 'bool':
|
|
1248
|
-
"""Gets the manage_default_studio_machine of this V1UserFeatures. # noqa: E501
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
:return: The manage_default_studio_machine of this V1UserFeatures. # noqa: E501
|
|
1252
|
-
:rtype: bool
|
|
1253
|
-
"""
|
|
1254
|
-
return self._manage_default_studio_machine
|
|
1255
|
-
|
|
1256
|
-
@manage_default_studio_machine.setter
|
|
1257
|
-
def manage_default_studio_machine(self, manage_default_studio_machine: 'bool'):
|
|
1258
|
-
"""Sets the manage_default_studio_machine of this V1UserFeatures.
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
:param manage_default_studio_machine: The manage_default_studio_machine of this V1UserFeatures. # noqa: E501
|
|
1262
|
-
:type: bool
|
|
1263
|
-
"""
|
|
1264
|
-
|
|
1265
|
-
self._manage_default_studio_machine = manage_default_studio_machine
|
|
1266
|
-
|
|
1267
1205
|
@property
|
|
1268
1206
|
def marketplace(self) -> 'bool':
|
|
1269
1207
|
"""Gets the marketplace of this V1UserFeatures. # noqa: E501
|
|
@@ -1411,6 +1349,27 @@ class V1UserFeatures(object):
|
|
|
1411
1349
|
|
|
1412
1350
|
self._org_level_member_permissions = org_level_member_permissions
|
|
1413
1351
|
|
|
1352
|
+
@property
|
|
1353
|
+
def org_usage_limits(self) -> 'bool':
|
|
1354
|
+
"""Gets the org_usage_limits of this V1UserFeatures. # noqa: E501
|
|
1355
|
+
|
|
1356
|
+
|
|
1357
|
+
:return: The org_usage_limits of this V1UserFeatures. # noqa: E501
|
|
1358
|
+
:rtype: bool
|
|
1359
|
+
"""
|
|
1360
|
+
return self._org_usage_limits
|
|
1361
|
+
|
|
1362
|
+
@org_usage_limits.setter
|
|
1363
|
+
def org_usage_limits(self, org_usage_limits: 'bool'):
|
|
1364
|
+
"""Sets the org_usage_limits of this V1UserFeatures.
|
|
1365
|
+
|
|
1366
|
+
|
|
1367
|
+
:param org_usage_limits: The org_usage_limits of this V1UserFeatures. # noqa: E501
|
|
1368
|
+
:type: bool
|
|
1369
|
+
"""
|
|
1370
|
+
|
|
1371
|
+
self._org_usage_limits = org_usage_limits
|
|
1372
|
+
|
|
1414
1373
|
@property
|
|
1415
1374
|
def pipelines(self) -> 'bool':
|
|
1416
1375
|
"""Gets the pipelines of this V1UserFeatures. # noqa: E501
|
|
@@ -1516,69 +1475,6 @@ class V1UserFeatures(object):
|
|
|
1516
1475
|
|
|
1517
1476
|
self._plugin_langflow = plugin_langflow
|
|
1518
1477
|
|
|
1519
|
-
@property
|
|
1520
|
-
def plugin_lightning_apps(self) -> 'bool':
|
|
1521
|
-
"""Gets the plugin_lightning_apps of this V1UserFeatures. # noqa: E501
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
:return: The plugin_lightning_apps of this V1UserFeatures. # noqa: E501
|
|
1525
|
-
:rtype: bool
|
|
1526
|
-
"""
|
|
1527
|
-
return self._plugin_lightning_apps
|
|
1528
|
-
|
|
1529
|
-
@plugin_lightning_apps.setter
|
|
1530
|
-
def plugin_lightning_apps(self, plugin_lightning_apps: 'bool'):
|
|
1531
|
-
"""Sets the plugin_lightning_apps of this V1UserFeatures.
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
:param plugin_lightning_apps: The plugin_lightning_apps of this V1UserFeatures. # noqa: E501
|
|
1535
|
-
:type: bool
|
|
1536
|
-
"""
|
|
1537
|
-
|
|
1538
|
-
self._plugin_lightning_apps = plugin_lightning_apps
|
|
1539
|
-
|
|
1540
|
-
@property
|
|
1541
|
-
def plugin_lightning_apps_distributed(self) -> 'bool':
|
|
1542
|
-
"""Gets the plugin_lightning_apps_distributed of this V1UserFeatures. # noqa: E501
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
:return: The plugin_lightning_apps_distributed of this V1UserFeatures. # noqa: E501
|
|
1546
|
-
:rtype: bool
|
|
1547
|
-
"""
|
|
1548
|
-
return self._plugin_lightning_apps_distributed
|
|
1549
|
-
|
|
1550
|
-
@plugin_lightning_apps_distributed.setter
|
|
1551
|
-
def plugin_lightning_apps_distributed(self, plugin_lightning_apps_distributed: 'bool'):
|
|
1552
|
-
"""Sets the plugin_lightning_apps_distributed of this V1UserFeatures.
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
:param plugin_lightning_apps_distributed: The plugin_lightning_apps_distributed of this V1UserFeatures. # noqa: E501
|
|
1556
|
-
:type: bool
|
|
1557
|
-
"""
|
|
1558
|
-
|
|
1559
|
-
self._plugin_lightning_apps_distributed = plugin_lightning_apps_distributed
|
|
1560
|
-
|
|
1561
|
-
@property
|
|
1562
|
-
def plugin_milvus(self) -> 'bool':
|
|
1563
|
-
"""Gets the plugin_milvus of this V1UserFeatures. # noqa: E501
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
:return: The plugin_milvus of this V1UserFeatures. # noqa: E501
|
|
1567
|
-
:rtype: bool
|
|
1568
|
-
"""
|
|
1569
|
-
return self._plugin_milvus
|
|
1570
|
-
|
|
1571
|
-
@plugin_milvus.setter
|
|
1572
|
-
def plugin_milvus(self, plugin_milvus: 'bool'):
|
|
1573
|
-
"""Sets the plugin_milvus of this V1UserFeatures.
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
:param plugin_milvus: The plugin_milvus of this V1UserFeatures. # noqa: E501
|
|
1577
|
-
:type: bool
|
|
1578
|
-
"""
|
|
1579
|
-
|
|
1580
|
-
self._plugin_milvus = plugin_milvus
|
|
1581
|
-
|
|
1582
1478
|
@property
|
|
1583
1479
|
def plugin_python_profiler(self) -> 'bool':
|
|
1584
1480
|
"""Gets the plugin_python_profiler of this V1UserFeatures. # noqa: E501
|
|
@@ -1600,27 +1496,6 @@ class V1UserFeatures(object):
|
|
|
1600
1496
|
|
|
1601
1497
|
self._plugin_python_profiler = plugin_python_profiler
|
|
1602
1498
|
|
|
1603
|
-
@property
|
|
1604
|
-
def plugin_react(self) -> 'bool':
|
|
1605
|
-
"""Gets the plugin_react of this V1UserFeatures. # noqa: E501
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
:return: The plugin_react of this V1UserFeatures. # noqa: E501
|
|
1609
|
-
:rtype: bool
|
|
1610
|
-
"""
|
|
1611
|
-
return self._plugin_react
|
|
1612
|
-
|
|
1613
|
-
@plugin_react.setter
|
|
1614
|
-
def plugin_react(self, plugin_react: 'bool'):
|
|
1615
|
-
"""Sets the plugin_react of this V1UserFeatures.
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
:param plugin_react: The plugin_react of this V1UserFeatures. # noqa: E501
|
|
1619
|
-
:type: bool
|
|
1620
|
-
"""
|
|
1621
|
-
|
|
1622
|
-
self._plugin_react = plugin_react
|
|
1623
|
-
|
|
1624
1499
|
@property
|
|
1625
1500
|
def plugin_service(self) -> 'bool':
|
|
1626
1501
|
"""Gets the plugin_service of this V1UserFeatures. # noqa: E501
|
|
@@ -1663,27 +1538,6 @@ class V1UserFeatures(object):
|
|
|
1663
1538
|
|
|
1664
1539
|
self._plugin_sweeps = plugin_sweeps
|
|
1665
1540
|
|
|
1666
|
-
@property
|
|
1667
|
-
def plugin_weviate(self) -> 'bool':
|
|
1668
|
-
"""Gets the plugin_weviate of this V1UserFeatures. # noqa: E501
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
:return: The plugin_weviate of this V1UserFeatures. # noqa: E501
|
|
1672
|
-
:rtype: bool
|
|
1673
|
-
"""
|
|
1674
|
-
return self._plugin_weviate
|
|
1675
|
-
|
|
1676
|
-
@plugin_weviate.setter
|
|
1677
|
-
def plugin_weviate(self, plugin_weviate: 'bool'):
|
|
1678
|
-
"""Sets the plugin_weviate of this V1UserFeatures.
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
:param plugin_weviate: The plugin_weviate of this V1UserFeatures. # noqa: E501
|
|
1682
|
-
:type: bool
|
|
1683
|
-
"""
|
|
1684
|
-
|
|
1685
|
-
self._plugin_weviate = plugin_weviate
|
|
1686
|
-
|
|
1687
1541
|
@property
|
|
1688
1542
|
def pricing_updates(self) -> 'bool':
|
|
1689
1543
|
"""Gets the pricing_updates of this V1UserFeatures. # noqa: E501
|
|
@@ -2020,6 +1874,27 @@ class V1UserFeatures(object):
|
|
|
2020
1874
|
|
|
2021
1875
|
self._studios_dashboard = studios_dashboard
|
|
2022
1876
|
|
|
1877
|
+
@property
|
|
1878
|
+
def studios_dashboard_system_metrics(self) -> 'bool':
|
|
1879
|
+
"""Gets the studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
1880
|
+
|
|
1881
|
+
|
|
1882
|
+
:return: The studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
1883
|
+
:rtype: bool
|
|
1884
|
+
"""
|
|
1885
|
+
return self._studios_dashboard_system_metrics
|
|
1886
|
+
|
|
1887
|
+
@studios_dashboard_system_metrics.setter
|
|
1888
|
+
def studios_dashboard_system_metrics(self, studios_dashboard_system_metrics: 'bool'):
|
|
1889
|
+
"""Sets the studios_dashboard_system_metrics of this V1UserFeatures.
|
|
1890
|
+
|
|
1891
|
+
|
|
1892
|
+
:param studios_dashboard_system_metrics: The studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
1893
|
+
:type: bool
|
|
1894
|
+
"""
|
|
1895
|
+
|
|
1896
|
+
self._studios_dashboard_system_metrics = studios_dashboard_system_metrics
|
|
1897
|
+
|
|
2023
1898
|
@property
|
|
2024
1899
|
def teamspace_storage_tab(self) -> 'bool':
|
|
2025
1900
|
"""Gets the teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
@@ -2104,6 +1979,27 @@ class V1UserFeatures(object):
|
|
|
2104
1979
|
|
|
2105
1980
|
self._vultr = vultr
|
|
2106
1981
|
|
|
1982
|
+
@property
|
|
1983
|
+
def weka(self) -> 'bool':
|
|
1984
|
+
"""Gets the weka of this V1UserFeatures. # noqa: E501
|
|
1985
|
+
|
|
1986
|
+
|
|
1987
|
+
:return: The weka of this V1UserFeatures. # noqa: E501
|
|
1988
|
+
:rtype: bool
|
|
1989
|
+
"""
|
|
1990
|
+
return self._weka
|
|
1991
|
+
|
|
1992
|
+
@weka.setter
|
|
1993
|
+
def weka(self, weka: 'bool'):
|
|
1994
|
+
"""Sets the weka of this V1UserFeatures.
|
|
1995
|
+
|
|
1996
|
+
|
|
1997
|
+
:param weka: The weka of this V1UserFeatures. # noqa: E501
|
|
1998
|
+
:type: bool
|
|
1999
|
+
"""
|
|
2000
|
+
|
|
2001
|
+
self._weka = weka
|
|
2002
|
+
|
|
2107
2003
|
def to_dict(self) -> dict:
|
|
2108
2004
|
"""Returns the model properties as a dict"""
|
|
2109
2005
|
result = {}
|
|
@@ -45,6 +45,7 @@ class V1ValidateDataConnectionResponse(object):
|
|
|
45
45
|
'efs': 'V1EfsConfig',
|
|
46
46
|
'gcp': 'V1GcpDataConnection',
|
|
47
47
|
'gcs_folder': 'V1GCSFolderDataConnection',
|
|
48
|
+
'r2': 'V1R2DataConnection',
|
|
48
49
|
's3_folder': 'V1S3FolderDataConnection'
|
|
49
50
|
}
|
|
50
51
|
|
|
@@ -53,15 +54,17 @@ class V1ValidateDataConnectionResponse(object):
|
|
|
53
54
|
'efs': 'efs',
|
|
54
55
|
'gcp': 'gcp',
|
|
55
56
|
'gcs_folder': 'gcsFolder',
|
|
57
|
+
'r2': 'r2',
|
|
56
58
|
's3_folder': 's3Folder'
|
|
57
59
|
}
|
|
58
60
|
|
|
59
|
-
def __init__(self, aws: 'V1AwsDataConnection' =None, efs: 'V1EfsConfig' =None, gcp: 'V1GcpDataConnection' =None, gcs_folder: 'V1GCSFolderDataConnection' =None, s3_folder: 'V1S3FolderDataConnection' =None): # noqa: E501
|
|
61
|
+
def __init__(self, aws: 'V1AwsDataConnection' =None, efs: 'V1EfsConfig' =None, gcp: 'V1GcpDataConnection' =None, gcs_folder: 'V1GCSFolderDataConnection' =None, r2: 'V1R2DataConnection' =None, s3_folder: 'V1S3FolderDataConnection' =None): # noqa: E501
|
|
60
62
|
"""V1ValidateDataConnectionResponse - a model defined in Swagger""" # noqa: E501
|
|
61
63
|
self._aws = None
|
|
62
64
|
self._efs = None
|
|
63
65
|
self._gcp = None
|
|
64
66
|
self._gcs_folder = None
|
|
67
|
+
self._r2 = None
|
|
65
68
|
self._s3_folder = None
|
|
66
69
|
self.discriminator = None
|
|
67
70
|
if aws is not None:
|
|
@@ -72,6 +75,8 @@ class V1ValidateDataConnectionResponse(object):
|
|
|
72
75
|
self.gcp = gcp
|
|
73
76
|
if gcs_folder is not None:
|
|
74
77
|
self.gcs_folder = gcs_folder
|
|
78
|
+
if r2 is not None:
|
|
79
|
+
self.r2 = r2
|
|
75
80
|
if s3_folder is not None:
|
|
76
81
|
self.s3_folder = s3_folder
|
|
77
82
|
|
|
@@ -159,6 +164,27 @@ class V1ValidateDataConnectionResponse(object):
|
|
|
159
164
|
|
|
160
165
|
self._gcs_folder = gcs_folder
|
|
161
166
|
|
|
167
|
+
@property
|
|
168
|
+
def r2(self) -> 'V1R2DataConnection':
|
|
169
|
+
"""Gets the r2 of this V1ValidateDataConnectionResponse. # noqa: E501
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
:return: The r2 of this V1ValidateDataConnectionResponse. # noqa: E501
|
|
173
|
+
:rtype: V1R2DataConnection
|
|
174
|
+
"""
|
|
175
|
+
return self._r2
|
|
176
|
+
|
|
177
|
+
@r2.setter
|
|
178
|
+
def r2(self, r2: 'V1R2DataConnection'):
|
|
179
|
+
"""Sets the r2 of this V1ValidateDataConnectionResponse.
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
:param r2: The r2 of this V1ValidateDataConnectionResponse. # noqa: E501
|
|
183
|
+
:type: V1R2DataConnection
|
|
184
|
+
"""
|
|
185
|
+
|
|
186
|
+
self._r2 = r2
|
|
187
|
+
|
|
162
188
|
@property
|
|
163
189
|
def s3_folder(self) -> 'V1S3FolderDataConnection':
|
|
164
190
|
"""Gets the s3_folder of this V1ValidateDataConnectionResponse. # noqa: E501
|