lightning-sdk 0.2.19__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 +28 -6
- 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/cli/deploy/_auth.py +11 -19
- lightning_sdk/cli/entrypoint.py +20 -2
- lightning_sdk/deployment/deployment.py +17 -3
- lightning_sdk/lightning_cloud/login.py +2 -2
- lightning_sdk/lightning_cloud/openapi/__init__.py +2 -3
- 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/jobs_service_api.py +121 -0
- lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +0 -85
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +2 -3
- lightning_sdk/lightning_cloud/openapi/models/alertingevents_id_body.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/update.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_author.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +27 -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 +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_project_request.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_organization_storage_metadata_response.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_message.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_routing_telemetry.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +27 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +79 -443
- lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +499 -31
- lightning_sdk/lightning_cloud/rest_client.py +13 -11
- lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +8 -3
- lightning_sdk/llm/llm.py +52 -1
- lightning_sdk/pipeline/pipeline.py +1 -1
- lightning_sdk/services/license.py +78 -22
- lightning_sdk/services/utilities.py +15 -1
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21.dist-info}/METADATA +1 -1
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21.dist-info}/RECORD +59 -60
- lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +0 -279
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_response.py +0 -201
- lightning_sdk/lightning_cloud/openapi/models/v1_reservation_billing_session.py +0 -279
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21.dist-info}/WHEEL +0 -0
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.2.19.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',
|
|
@@ -62,45 +60,40 @@ class V1UserFeatures(object):
|
|
|
62
60
|
'code_tab': 'bool',
|
|
63
61
|
'collab_screen_sharing': 'bool',
|
|
64
62
|
'concurrent_gpu_limit': 'bool',
|
|
63
|
+
'control_center_monitoring': 'bool',
|
|
65
64
|
'cost_attribution_settings': 'bool',
|
|
66
65
|
'custom_app_domain': 'bool',
|
|
67
66
|
'datasets': 'bool',
|
|
68
67
|
'default_one_cluster': 'bool',
|
|
69
|
-
'deployment_alerts': 'bool',
|
|
70
68
|
'deployment_persistent_disk': 'bool',
|
|
71
|
-
'deployment_requests_tab': 'bool',
|
|
72
|
-
'dgx_cloud': 'bool',
|
|
73
69
|
'docs_agent': 'bool',
|
|
74
|
-
'down_switch_machine': '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',
|
|
102
94
|
'paygo_free_storage_limit_check': 'bool',
|
|
103
95
|
'pipelines': 'bool',
|
|
96
|
+
'plg_control_center': 'bool',
|
|
104
97
|
'plugin_distributed': 'bool',
|
|
105
98
|
'plugin_inference': 'bool',
|
|
106
99
|
'plugin_label_studio': 'bool',
|
|
@@ -118,20 +111,13 @@ class V1UserFeatures(object):
|
|
|
118
111
|
'restartable_jobs': 'bool',
|
|
119
112
|
'runnable_public_studio_page': 'bool',
|
|
120
113
|
'security_docs': 'bool',
|
|
121
|
-
'seoul_aws_region': 'bool',
|
|
122
114
|
'show_dev_admin': 'bool',
|
|
123
115
|
'single_wallet': 'bool',
|
|
124
116
|
'slurm': 'bool',
|
|
125
|
-
'slurm_machine_selector': 'bool',
|
|
126
|
-
'stop_ide_container_on_shutdown': 'bool',
|
|
127
117
|
'storage_overuse_deletion': 'bool',
|
|
128
118
|
'studio_config': 'bool',
|
|
129
119
|
'studio_version_visibility': 'bool',
|
|
130
|
-
'studios_dashboard': 'bool',
|
|
131
|
-
'studios_dashboard_system_metrics': 'bool',
|
|
132
|
-
'teamspace_storage_tab': 'bool',
|
|
133
120
|
'trainium2': 'bool',
|
|
134
|
-
'transfer_studios': 'bool',
|
|
135
121
|
'use_rclone_mounts_only': 'bool',
|
|
136
122
|
'voltage_park': 'bool',
|
|
137
123
|
'voltage_park_studios': 'bool',
|
|
@@ -149,8 +135,6 @@ class V1UserFeatures(object):
|
|
|
149
135
|
'auto_top_up': 'autoTopUp',
|
|
150
136
|
'auto_top_up_teamspace': 'autoTopUpTeamspace',
|
|
151
137
|
'b2c_experience': 'b2cExperience',
|
|
152
|
-
'blog_route': 'blogRoute',
|
|
153
|
-
'byoc_litcr': 'byocLitcr',
|
|
154
138
|
'cap_add': 'capAdd',
|
|
155
139
|
'cap_drop': 'capDrop',
|
|
156
140
|
'capacity_reservation_byoc': 'capacityReservationByoc',
|
|
@@ -161,45 +145,40 @@ class V1UserFeatures(object):
|
|
|
161
145
|
'code_tab': 'codeTab',
|
|
162
146
|
'collab_screen_sharing': 'collabScreenSharing',
|
|
163
147
|
'concurrent_gpu_limit': 'concurrentGpuLimit',
|
|
148
|
+
'control_center_monitoring': 'controlCenterMonitoring',
|
|
164
149
|
'cost_attribution_settings': 'costAttributionSettings',
|
|
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
|
-
'down_switch_machine': 'downSwitchMachine',
|
|
174
155
|
'drive_v2': 'driveV2',
|
|
175
|
-
'enable_storage_limits': 'enableStorageLimits',
|
|
176
156
|
'enterprise_compute_admin': 'enterpriseComputeAdmin',
|
|
177
157
|
'fair_share': 'fairShare',
|
|
178
158
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
179
|
-
'filestore': 'filestore',
|
|
180
159
|
'gcs_folders': 'gcsFolders',
|
|
181
160
|
'instant_capacity_reservation': 'instantCapacityReservation',
|
|
182
161
|
'job_artifacts_v2': 'jobArtifactsV2',
|
|
183
162
|
'lambda_labs': 'lambdaLabs',
|
|
184
163
|
'lambda_labs_studios': 'lambdaLabsStudios',
|
|
185
164
|
'landing_studios': 'landingStudios',
|
|
186
|
-
'lightning_cloud': 'lightningCloud',
|
|
187
165
|
'lit_logger': 'litLogger',
|
|
188
166
|
'marketplace': 'marketplace',
|
|
189
167
|
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
190
168
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
169
|
+
'model_api_dashboard': 'modelApiDashboard',
|
|
191
170
|
'multicloud_folders': 'multicloudFolders',
|
|
192
171
|
'multicloud_saas': 'multicloudSaas',
|
|
193
172
|
'multiple_studio_versions': 'multipleStudioVersions',
|
|
194
173
|
'nebius': 'nebius',
|
|
195
174
|
'nebius_cpu_studios': 'nebiusCpuStudios',
|
|
196
175
|
'nebius_gpu_studios': 'nebiusGpuStudios',
|
|
197
|
-
'neocloud_studios': 'neocloudStudios',
|
|
198
176
|
'nerf_fs_nonpaying': 'nerfFsNonpaying',
|
|
199
177
|
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
200
178
|
'org_usage_limits': 'orgUsageLimits',
|
|
201
179
|
'paygo_free_storage_limit_check': 'paygoFreeStorageLimitCheck',
|
|
202
180
|
'pipelines': 'pipelines',
|
|
181
|
+
'plg_control_center': 'plgControlCenter',
|
|
203
182
|
'plugin_distributed': 'pluginDistributed',
|
|
204
183
|
'plugin_inference': 'pluginInference',
|
|
205
184
|
'plugin_label_studio': 'pluginLabelStudio',
|
|
@@ -217,20 +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
|
-
'studios_dashboard': 'studiosDashboard',
|
|
230
|
-
'studios_dashboard_system_metrics': 'studiosDashboardSystemMetrics',
|
|
231
|
-
'teamspace_storage_tab': 'teamspaceStorageTab',
|
|
232
205
|
'trainium2': 'trainium2',
|
|
233
|
-
'transfer_studios': 'transferStudios',
|
|
234
206
|
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
235
207
|
'voltage_park': 'voltagePark',
|
|
236
208
|
'voltage_park_studios': 'voltageParkStudios',
|
|
@@ -238,7 +210,7 @@ class V1UserFeatures(object):
|
|
|
238
210
|
'weka': 'weka'
|
|
239
211
|
}
|
|
240
212
|
|
|
241
|
-
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
|
|
242
214
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
243
215
|
self._accurate_billing = None
|
|
244
216
|
self._affiliate_links = None
|
|
@@ -249,8 +221,6 @@ class V1UserFeatures(object):
|
|
|
249
221
|
self._auto_top_up = None
|
|
250
222
|
self._auto_top_up_teamspace = None
|
|
251
223
|
self._b2c_experience = None
|
|
252
|
-
self._blog_route = None
|
|
253
|
-
self._byoc_litcr = None
|
|
254
224
|
self._cap_add = None
|
|
255
225
|
self._cap_drop = None
|
|
256
226
|
self._capacity_reservation_byoc = None
|
|
@@ -261,45 +231,40 @@ class V1UserFeatures(object):
|
|
|
261
231
|
self._code_tab = None
|
|
262
232
|
self._collab_screen_sharing = None
|
|
263
233
|
self._concurrent_gpu_limit = None
|
|
234
|
+
self._control_center_monitoring = None
|
|
264
235
|
self._cost_attribution_settings = None
|
|
265
236
|
self._custom_app_domain = None
|
|
266
237
|
self._datasets = None
|
|
267
238
|
self._default_one_cluster = None
|
|
268
|
-
self._deployment_alerts = None
|
|
269
239
|
self._deployment_persistent_disk = None
|
|
270
|
-
self._deployment_requests_tab = None
|
|
271
|
-
self._dgx_cloud = None
|
|
272
240
|
self._docs_agent = None
|
|
273
|
-
self._down_switch_machine = None
|
|
274
241
|
self._drive_v2 = None
|
|
275
|
-
self._enable_storage_limits = None
|
|
276
242
|
self._enterprise_compute_admin = None
|
|
277
243
|
self._fair_share = None
|
|
278
244
|
self._featured_studios_admin = None
|
|
279
|
-
self._filestore = None
|
|
280
245
|
self._gcs_folders = None
|
|
281
246
|
self._instant_capacity_reservation = None
|
|
282
247
|
self._job_artifacts_v2 = None
|
|
283
248
|
self._lambda_labs = None
|
|
284
249
|
self._lambda_labs_studios = None
|
|
285
250
|
self._landing_studios = None
|
|
286
|
-
self._lightning_cloud = None
|
|
287
251
|
self._lit_logger = None
|
|
288
252
|
self._marketplace = None
|
|
289
253
|
self._mmt_fault_tolerance = None
|
|
290
254
|
self._mmt_strategy_selector = None
|
|
255
|
+
self._model_api_dashboard = None
|
|
291
256
|
self._multicloud_folders = None
|
|
292
257
|
self._multicloud_saas = None
|
|
293
258
|
self._multiple_studio_versions = None
|
|
294
259
|
self._nebius = None
|
|
295
260
|
self._nebius_cpu_studios = None
|
|
296
261
|
self._nebius_gpu_studios = None
|
|
297
|
-
self._neocloud_studios = None
|
|
298
262
|
self._nerf_fs_nonpaying = None
|
|
299
263
|
self._org_level_member_permissions = None
|
|
300
264
|
self._org_usage_limits = None
|
|
301
265
|
self._paygo_free_storage_limit_check = None
|
|
302
266
|
self._pipelines = None
|
|
267
|
+
self._plg_control_center = None
|
|
303
268
|
self._plugin_distributed = None
|
|
304
269
|
self._plugin_inference = None
|
|
305
270
|
self._plugin_label_studio = None
|
|
@@ -317,20 +282,13 @@ class V1UserFeatures(object):
|
|
|
317
282
|
self._restartable_jobs = None
|
|
318
283
|
self._runnable_public_studio_page = None
|
|
319
284
|
self._security_docs = None
|
|
320
|
-
self._seoul_aws_region = None
|
|
321
285
|
self._show_dev_admin = None
|
|
322
286
|
self._single_wallet = None
|
|
323
287
|
self._slurm = None
|
|
324
|
-
self._slurm_machine_selector = None
|
|
325
|
-
self._stop_ide_container_on_shutdown = None
|
|
326
288
|
self._storage_overuse_deletion = None
|
|
327
289
|
self._studio_config = None
|
|
328
290
|
self._studio_version_visibility = None
|
|
329
|
-
self._studios_dashboard = None
|
|
330
|
-
self._studios_dashboard_system_metrics = None
|
|
331
|
-
self._teamspace_storage_tab = None
|
|
332
291
|
self._trainium2 = None
|
|
333
|
-
self._transfer_studios = None
|
|
334
292
|
self._use_rclone_mounts_only = None
|
|
335
293
|
self._voltage_park = None
|
|
336
294
|
self._voltage_park_studios = None
|
|
@@ -355,10 +313,6 @@ class V1UserFeatures(object):
|
|
|
355
313
|
self.auto_top_up_teamspace = auto_top_up_teamspace
|
|
356
314
|
if b2c_experience is not None:
|
|
357
315
|
self.b2c_experience = b2c_experience
|
|
358
|
-
if blog_route is not None:
|
|
359
|
-
self.blog_route = blog_route
|
|
360
|
-
if byoc_litcr is not None:
|
|
361
|
-
self.byoc_litcr = byoc_litcr
|
|
362
316
|
if cap_add is not None:
|
|
363
317
|
self.cap_add = cap_add
|
|
364
318
|
if cap_drop is not None:
|
|
@@ -379,6 +333,8 @@ class V1UserFeatures(object):
|
|
|
379
333
|
self.collab_screen_sharing = collab_screen_sharing
|
|
380
334
|
if concurrent_gpu_limit is not None:
|
|
381
335
|
self.concurrent_gpu_limit = concurrent_gpu_limit
|
|
336
|
+
if control_center_monitoring is not None:
|
|
337
|
+
self.control_center_monitoring = control_center_monitoring
|
|
382
338
|
if cost_attribution_settings is not None:
|
|
383
339
|
self.cost_attribution_settings = cost_attribution_settings
|
|
384
340
|
if custom_app_domain is not None:
|
|
@@ -387,30 +343,18 @@ class V1UserFeatures(object):
|
|
|
387
343
|
self.datasets = datasets
|
|
388
344
|
if default_one_cluster is not None:
|
|
389
345
|
self.default_one_cluster = default_one_cluster
|
|
390
|
-
if deployment_alerts is not None:
|
|
391
|
-
self.deployment_alerts = deployment_alerts
|
|
392
346
|
if deployment_persistent_disk is not None:
|
|
393
347
|
self.deployment_persistent_disk = deployment_persistent_disk
|
|
394
|
-
if deployment_requests_tab is not None:
|
|
395
|
-
self.deployment_requests_tab = deployment_requests_tab
|
|
396
|
-
if dgx_cloud is not None:
|
|
397
|
-
self.dgx_cloud = dgx_cloud
|
|
398
348
|
if docs_agent is not None:
|
|
399
349
|
self.docs_agent = docs_agent
|
|
400
|
-
if down_switch_machine is not None:
|
|
401
|
-
self.down_switch_machine = down_switch_machine
|
|
402
350
|
if drive_v2 is not None:
|
|
403
351
|
self.drive_v2 = drive_v2
|
|
404
|
-
if enable_storage_limits is not None:
|
|
405
|
-
self.enable_storage_limits = enable_storage_limits
|
|
406
352
|
if enterprise_compute_admin is not None:
|
|
407
353
|
self.enterprise_compute_admin = enterprise_compute_admin
|
|
408
354
|
if fair_share is not None:
|
|
409
355
|
self.fair_share = fair_share
|
|
410
356
|
if featured_studios_admin is not None:
|
|
411
357
|
self.featured_studios_admin = featured_studios_admin
|
|
412
|
-
if filestore is not None:
|
|
413
|
-
self.filestore = filestore
|
|
414
358
|
if gcs_folders is not None:
|
|
415
359
|
self.gcs_folders = gcs_folders
|
|
416
360
|
if instant_capacity_reservation is not None:
|
|
@@ -423,8 +367,6 @@ class V1UserFeatures(object):
|
|
|
423
367
|
self.lambda_labs_studios = lambda_labs_studios
|
|
424
368
|
if landing_studios is not None:
|
|
425
369
|
self.landing_studios = landing_studios
|
|
426
|
-
if lightning_cloud is not None:
|
|
427
|
-
self.lightning_cloud = lightning_cloud
|
|
428
370
|
if lit_logger is not None:
|
|
429
371
|
self.lit_logger = lit_logger
|
|
430
372
|
if marketplace is not None:
|
|
@@ -433,6 +375,8 @@ class V1UserFeatures(object):
|
|
|
433
375
|
self.mmt_fault_tolerance = mmt_fault_tolerance
|
|
434
376
|
if mmt_strategy_selector is not None:
|
|
435
377
|
self.mmt_strategy_selector = mmt_strategy_selector
|
|
378
|
+
if model_api_dashboard is not None:
|
|
379
|
+
self.model_api_dashboard = model_api_dashboard
|
|
436
380
|
if multicloud_folders is not None:
|
|
437
381
|
self.multicloud_folders = multicloud_folders
|
|
438
382
|
if multicloud_saas is not None:
|
|
@@ -445,8 +389,6 @@ class V1UserFeatures(object):
|
|
|
445
389
|
self.nebius_cpu_studios = nebius_cpu_studios
|
|
446
390
|
if nebius_gpu_studios is not None:
|
|
447
391
|
self.nebius_gpu_studios = nebius_gpu_studios
|
|
448
|
-
if neocloud_studios is not None:
|
|
449
|
-
self.neocloud_studios = neocloud_studios
|
|
450
392
|
if nerf_fs_nonpaying is not None:
|
|
451
393
|
self.nerf_fs_nonpaying = nerf_fs_nonpaying
|
|
452
394
|
if org_level_member_permissions is not None:
|
|
@@ -457,6 +399,8 @@ class V1UserFeatures(object):
|
|
|
457
399
|
self.paygo_free_storage_limit_check = paygo_free_storage_limit_check
|
|
458
400
|
if pipelines is not None:
|
|
459
401
|
self.pipelines = pipelines
|
|
402
|
+
if plg_control_center is not None:
|
|
403
|
+
self.plg_control_center = plg_control_center
|
|
460
404
|
if plugin_distributed is not None:
|
|
461
405
|
self.plugin_distributed = plugin_distributed
|
|
462
406
|
if plugin_inference is not None:
|
|
@@ -491,34 +435,20 @@ class V1UserFeatures(object):
|
|
|
491
435
|
self.runnable_public_studio_page = runnable_public_studio_page
|
|
492
436
|
if security_docs is not None:
|
|
493
437
|
self.security_docs = security_docs
|
|
494
|
-
if seoul_aws_region is not None:
|
|
495
|
-
self.seoul_aws_region = seoul_aws_region
|
|
496
438
|
if show_dev_admin is not None:
|
|
497
439
|
self.show_dev_admin = show_dev_admin
|
|
498
440
|
if single_wallet is not None:
|
|
499
441
|
self.single_wallet = single_wallet
|
|
500
442
|
if slurm is not None:
|
|
501
443
|
self.slurm = slurm
|
|
502
|
-
if slurm_machine_selector is not None:
|
|
503
|
-
self.slurm_machine_selector = slurm_machine_selector
|
|
504
|
-
if stop_ide_container_on_shutdown is not None:
|
|
505
|
-
self.stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
|
|
506
444
|
if storage_overuse_deletion is not None:
|
|
507
445
|
self.storage_overuse_deletion = storage_overuse_deletion
|
|
508
446
|
if studio_config is not None:
|
|
509
447
|
self.studio_config = studio_config
|
|
510
448
|
if studio_version_visibility is not None:
|
|
511
449
|
self.studio_version_visibility = studio_version_visibility
|
|
512
|
-
if studios_dashboard is not None:
|
|
513
|
-
self.studios_dashboard = studios_dashboard
|
|
514
|
-
if studios_dashboard_system_metrics is not None:
|
|
515
|
-
self.studios_dashboard_system_metrics = studios_dashboard_system_metrics
|
|
516
|
-
if teamspace_storage_tab is not None:
|
|
517
|
-
self.teamspace_storage_tab = teamspace_storage_tab
|
|
518
450
|
if trainium2 is not None:
|
|
519
451
|
self.trainium2 = trainium2
|
|
520
|
-
if transfer_studios is not None:
|
|
521
|
-
self.transfer_studios = transfer_studios
|
|
522
452
|
if use_rclone_mounts_only is not None:
|
|
523
453
|
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
524
454
|
if voltage_park is not None:
|
|
@@ -719,48 +649,6 @@ class V1UserFeatures(object):
|
|
|
719
649
|
|
|
720
650
|
self._b2c_experience = b2c_experience
|
|
721
651
|
|
|
722
|
-
@property
|
|
723
|
-
def blog_route(self) -> 'bool':
|
|
724
|
-
"""Gets the blog_route of this V1UserFeatures. # noqa: E501
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
:return: The blog_route of this V1UserFeatures. # noqa: E501
|
|
728
|
-
:rtype: bool
|
|
729
|
-
"""
|
|
730
|
-
return self._blog_route
|
|
731
|
-
|
|
732
|
-
@blog_route.setter
|
|
733
|
-
def blog_route(self, blog_route: 'bool'):
|
|
734
|
-
"""Sets the blog_route of this V1UserFeatures.
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
:param blog_route: The blog_route of this V1UserFeatures. # noqa: E501
|
|
738
|
-
:type: bool
|
|
739
|
-
"""
|
|
740
|
-
|
|
741
|
-
self._blog_route = blog_route
|
|
742
|
-
|
|
743
|
-
@property
|
|
744
|
-
def byoc_litcr(self) -> 'bool':
|
|
745
|
-
"""Gets the byoc_litcr of this V1UserFeatures. # noqa: E501
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
:return: The byoc_litcr of this V1UserFeatures. # noqa: E501
|
|
749
|
-
:rtype: bool
|
|
750
|
-
"""
|
|
751
|
-
return self._byoc_litcr
|
|
752
|
-
|
|
753
|
-
@byoc_litcr.setter
|
|
754
|
-
def byoc_litcr(self, byoc_litcr: 'bool'):
|
|
755
|
-
"""Sets the byoc_litcr of this V1UserFeatures.
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
:param byoc_litcr: The byoc_litcr of this V1UserFeatures. # noqa: E501
|
|
759
|
-
:type: bool
|
|
760
|
-
"""
|
|
761
|
-
|
|
762
|
-
self._byoc_litcr = byoc_litcr
|
|
763
|
-
|
|
764
652
|
@property
|
|
765
653
|
def cap_add(self) -> 'list[str]':
|
|
766
654
|
"""Gets the cap_add of this V1UserFeatures. # noqa: E501
|
|
@@ -971,6 +859,27 @@ class V1UserFeatures(object):
|
|
|
971
859
|
|
|
972
860
|
self._concurrent_gpu_limit = concurrent_gpu_limit
|
|
973
861
|
|
|
862
|
+
@property
|
|
863
|
+
def control_center_monitoring(self) -> 'bool':
|
|
864
|
+
"""Gets the control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
:return: The control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
868
|
+
:rtype: bool
|
|
869
|
+
"""
|
|
870
|
+
return self._control_center_monitoring
|
|
871
|
+
|
|
872
|
+
@control_center_monitoring.setter
|
|
873
|
+
def control_center_monitoring(self, control_center_monitoring: 'bool'):
|
|
874
|
+
"""Sets the control_center_monitoring of this V1UserFeatures.
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
:param control_center_monitoring: The control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
878
|
+
:type: bool
|
|
879
|
+
"""
|
|
880
|
+
|
|
881
|
+
self._control_center_monitoring = control_center_monitoring
|
|
882
|
+
|
|
974
883
|
@property
|
|
975
884
|
def cost_attribution_settings(self) -> 'bool':
|
|
976
885
|
"""Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
@@ -1055,27 +964,6 @@ class V1UserFeatures(object):
|
|
|
1055
964
|
|
|
1056
965
|
self._default_one_cluster = default_one_cluster
|
|
1057
966
|
|
|
1058
|
-
@property
|
|
1059
|
-
def deployment_alerts(self) -> 'bool':
|
|
1060
|
-
"""Gets the deployment_alerts of this V1UserFeatures. # noqa: E501
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
:return: The deployment_alerts of this V1UserFeatures. # noqa: E501
|
|
1064
|
-
:rtype: bool
|
|
1065
|
-
"""
|
|
1066
|
-
return self._deployment_alerts
|
|
1067
|
-
|
|
1068
|
-
@deployment_alerts.setter
|
|
1069
|
-
def deployment_alerts(self, deployment_alerts: 'bool'):
|
|
1070
|
-
"""Sets the deployment_alerts of this V1UserFeatures.
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
:param deployment_alerts: The deployment_alerts of this V1UserFeatures. # noqa: E501
|
|
1074
|
-
:type: bool
|
|
1075
|
-
"""
|
|
1076
|
-
|
|
1077
|
-
self._deployment_alerts = deployment_alerts
|
|
1078
|
-
|
|
1079
967
|
@property
|
|
1080
968
|
def deployment_persistent_disk(self) -> 'bool':
|
|
1081
969
|
"""Gets the deployment_persistent_disk of this V1UserFeatures. # noqa: E501
|
|
@@ -1097,48 +985,6 @@ class V1UserFeatures(object):
|
|
|
1097
985
|
|
|
1098
986
|
self._deployment_persistent_disk = deployment_persistent_disk
|
|
1099
987
|
|
|
1100
|
-
@property
|
|
1101
|
-
def deployment_requests_tab(self) -> 'bool':
|
|
1102
|
-
"""Gets the deployment_requests_tab of this V1UserFeatures. # noqa: E501
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
:return: The deployment_requests_tab of this V1UserFeatures. # noqa: E501
|
|
1106
|
-
:rtype: bool
|
|
1107
|
-
"""
|
|
1108
|
-
return self._deployment_requests_tab
|
|
1109
|
-
|
|
1110
|
-
@deployment_requests_tab.setter
|
|
1111
|
-
def deployment_requests_tab(self, deployment_requests_tab: 'bool'):
|
|
1112
|
-
"""Sets the deployment_requests_tab of this V1UserFeatures.
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
:param deployment_requests_tab: The deployment_requests_tab of this V1UserFeatures. # noqa: E501
|
|
1116
|
-
:type: bool
|
|
1117
|
-
"""
|
|
1118
|
-
|
|
1119
|
-
self._deployment_requests_tab = deployment_requests_tab
|
|
1120
|
-
|
|
1121
|
-
@property
|
|
1122
|
-
def dgx_cloud(self) -> 'bool':
|
|
1123
|
-
"""Gets the dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
:return: The dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
1127
|
-
:rtype: bool
|
|
1128
|
-
"""
|
|
1129
|
-
return self._dgx_cloud
|
|
1130
|
-
|
|
1131
|
-
@dgx_cloud.setter
|
|
1132
|
-
def dgx_cloud(self, dgx_cloud: 'bool'):
|
|
1133
|
-
"""Sets the dgx_cloud of this V1UserFeatures.
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
:param dgx_cloud: The dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
1137
|
-
:type: bool
|
|
1138
|
-
"""
|
|
1139
|
-
|
|
1140
|
-
self._dgx_cloud = dgx_cloud
|
|
1141
|
-
|
|
1142
988
|
@property
|
|
1143
989
|
def docs_agent(self) -> 'bool':
|
|
1144
990
|
"""Gets the docs_agent of this V1UserFeatures. # noqa: E501
|
|
@@ -1160,27 +1006,6 @@ class V1UserFeatures(object):
|
|
|
1160
1006
|
|
|
1161
1007
|
self._docs_agent = docs_agent
|
|
1162
1008
|
|
|
1163
|
-
@property
|
|
1164
|
-
def down_switch_machine(self) -> 'bool':
|
|
1165
|
-
"""Gets the down_switch_machine of this V1UserFeatures. # noqa: E501
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
:return: The down_switch_machine of this V1UserFeatures. # noqa: E501
|
|
1169
|
-
:rtype: bool
|
|
1170
|
-
"""
|
|
1171
|
-
return self._down_switch_machine
|
|
1172
|
-
|
|
1173
|
-
@down_switch_machine.setter
|
|
1174
|
-
def down_switch_machine(self, down_switch_machine: 'bool'):
|
|
1175
|
-
"""Sets the down_switch_machine of this V1UserFeatures.
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
:param down_switch_machine: The down_switch_machine of this V1UserFeatures. # noqa: E501
|
|
1179
|
-
:type: bool
|
|
1180
|
-
"""
|
|
1181
|
-
|
|
1182
|
-
self._down_switch_machine = down_switch_machine
|
|
1183
|
-
|
|
1184
1009
|
@property
|
|
1185
1010
|
def drive_v2(self) -> 'bool':
|
|
1186
1011
|
"""Gets the drive_v2 of this V1UserFeatures. # noqa: E501
|
|
@@ -1202,27 +1027,6 @@ class V1UserFeatures(object):
|
|
|
1202
1027
|
|
|
1203
1028
|
self._drive_v2 = drive_v2
|
|
1204
1029
|
|
|
1205
|
-
@property
|
|
1206
|
-
def enable_storage_limits(self) -> 'bool':
|
|
1207
|
-
"""Gets the enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
:return: The enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1211
|
-
:rtype: bool
|
|
1212
|
-
"""
|
|
1213
|
-
return self._enable_storage_limits
|
|
1214
|
-
|
|
1215
|
-
@enable_storage_limits.setter
|
|
1216
|
-
def enable_storage_limits(self, enable_storage_limits: 'bool'):
|
|
1217
|
-
"""Sets the enable_storage_limits of this V1UserFeatures.
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
:param enable_storage_limits: The enable_storage_limits of this V1UserFeatures. # noqa: E501
|
|
1221
|
-
:type: bool
|
|
1222
|
-
"""
|
|
1223
|
-
|
|
1224
|
-
self._enable_storage_limits = enable_storage_limits
|
|
1225
|
-
|
|
1226
1030
|
@property
|
|
1227
1031
|
def enterprise_compute_admin(self) -> 'bool':
|
|
1228
1032
|
"""Gets the enterprise_compute_admin of this V1UserFeatures. # noqa: E501
|
|
@@ -1286,27 +1090,6 @@ class V1UserFeatures(object):
|
|
|
1286
1090
|
|
|
1287
1091
|
self._featured_studios_admin = featured_studios_admin
|
|
1288
1092
|
|
|
1289
|
-
@property
|
|
1290
|
-
def filestore(self) -> 'bool':
|
|
1291
|
-
"""Gets the filestore of this V1UserFeatures. # noqa: E501
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
:return: The filestore of this V1UserFeatures. # noqa: E501
|
|
1295
|
-
:rtype: bool
|
|
1296
|
-
"""
|
|
1297
|
-
return self._filestore
|
|
1298
|
-
|
|
1299
|
-
@filestore.setter
|
|
1300
|
-
def filestore(self, filestore: 'bool'):
|
|
1301
|
-
"""Sets the filestore of this V1UserFeatures.
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
:param filestore: The filestore of this V1UserFeatures. # noqa: E501
|
|
1305
|
-
:type: bool
|
|
1306
|
-
"""
|
|
1307
|
-
|
|
1308
|
-
self._filestore = filestore
|
|
1309
|
-
|
|
1310
1093
|
@property
|
|
1311
1094
|
def gcs_folders(self) -> 'bool':
|
|
1312
1095
|
"""Gets the gcs_folders of this V1UserFeatures. # noqa: E501
|
|
@@ -1433,27 +1216,6 @@ class V1UserFeatures(object):
|
|
|
1433
1216
|
|
|
1434
1217
|
self._landing_studios = landing_studios
|
|
1435
1218
|
|
|
1436
|
-
@property
|
|
1437
|
-
def lightning_cloud(self) -> 'bool':
|
|
1438
|
-
"""Gets the lightning_cloud of this V1UserFeatures. # noqa: E501
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
:return: The lightning_cloud of this V1UserFeatures. # noqa: E501
|
|
1442
|
-
:rtype: bool
|
|
1443
|
-
"""
|
|
1444
|
-
return self._lightning_cloud
|
|
1445
|
-
|
|
1446
|
-
@lightning_cloud.setter
|
|
1447
|
-
def lightning_cloud(self, lightning_cloud: 'bool'):
|
|
1448
|
-
"""Sets the lightning_cloud of this V1UserFeatures.
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
:param lightning_cloud: The lightning_cloud of this V1UserFeatures. # noqa: E501
|
|
1452
|
-
:type: bool
|
|
1453
|
-
"""
|
|
1454
|
-
|
|
1455
|
-
self._lightning_cloud = lightning_cloud
|
|
1456
|
-
|
|
1457
1219
|
@property
|
|
1458
1220
|
def lit_logger(self) -> 'bool':
|
|
1459
1221
|
"""Gets the lit_logger of this V1UserFeatures. # noqa: E501
|
|
@@ -1538,6 +1300,27 @@ class V1UserFeatures(object):
|
|
|
1538
1300
|
|
|
1539
1301
|
self._mmt_strategy_selector = mmt_strategy_selector
|
|
1540
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
|
+
|
|
1541
1324
|
@property
|
|
1542
1325
|
def multicloud_folders(self) -> 'bool':
|
|
1543
1326
|
"""Gets the multicloud_folders of this V1UserFeatures. # noqa: E501
|
|
@@ -1664,27 +1447,6 @@ class V1UserFeatures(object):
|
|
|
1664
1447
|
|
|
1665
1448
|
self._nebius_gpu_studios = nebius_gpu_studios
|
|
1666
1449
|
|
|
1667
|
-
@property
|
|
1668
|
-
def neocloud_studios(self) -> 'bool':
|
|
1669
|
-
"""Gets the neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
:return: The neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
1673
|
-
:rtype: bool
|
|
1674
|
-
"""
|
|
1675
|
-
return self._neocloud_studios
|
|
1676
|
-
|
|
1677
|
-
@neocloud_studios.setter
|
|
1678
|
-
def neocloud_studios(self, neocloud_studios: 'bool'):
|
|
1679
|
-
"""Sets the neocloud_studios of this V1UserFeatures.
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
:param neocloud_studios: The neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
1683
|
-
:type: bool
|
|
1684
|
-
"""
|
|
1685
|
-
|
|
1686
|
-
self._neocloud_studios = neocloud_studios
|
|
1687
|
-
|
|
1688
1450
|
@property
|
|
1689
1451
|
def nerf_fs_nonpaying(self) -> 'bool':
|
|
1690
1452
|
"""Gets the nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
|
|
@@ -1790,6 +1552,27 @@ class V1UserFeatures(object):
|
|
|
1790
1552
|
|
|
1791
1553
|
self._pipelines = pipelines
|
|
1792
1554
|
|
|
1555
|
+
@property
|
|
1556
|
+
def plg_control_center(self) -> 'bool':
|
|
1557
|
+
"""Gets the plg_control_center of this V1UserFeatures. # noqa: E501
|
|
1558
|
+
|
|
1559
|
+
|
|
1560
|
+
:return: The plg_control_center of this V1UserFeatures. # noqa: E501
|
|
1561
|
+
:rtype: bool
|
|
1562
|
+
"""
|
|
1563
|
+
return self._plg_control_center
|
|
1564
|
+
|
|
1565
|
+
@plg_control_center.setter
|
|
1566
|
+
def plg_control_center(self, plg_control_center: 'bool'):
|
|
1567
|
+
"""Sets the plg_control_center of this V1UserFeatures.
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
:param plg_control_center: The plg_control_center of this V1UserFeatures. # noqa: E501
|
|
1571
|
+
:type: bool
|
|
1572
|
+
"""
|
|
1573
|
+
|
|
1574
|
+
self._plg_control_center = plg_control_center
|
|
1575
|
+
|
|
1793
1576
|
@property
|
|
1794
1577
|
def plugin_distributed(self) -> 'bool':
|
|
1795
1578
|
"""Gets the plugin_distributed of this V1UserFeatures. # noqa: E501
|
|
@@ -2147,27 +1930,6 @@ class V1UserFeatures(object):
|
|
|
2147
1930
|
|
|
2148
1931
|
self._security_docs = security_docs
|
|
2149
1932
|
|
|
2150
|
-
@property
|
|
2151
|
-
def seoul_aws_region(self) -> 'bool':
|
|
2152
|
-
"""Gets the seoul_aws_region of this V1UserFeatures. # noqa: E501
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
:return: The seoul_aws_region of this V1UserFeatures. # noqa: E501
|
|
2156
|
-
:rtype: bool
|
|
2157
|
-
"""
|
|
2158
|
-
return self._seoul_aws_region
|
|
2159
|
-
|
|
2160
|
-
@seoul_aws_region.setter
|
|
2161
|
-
def seoul_aws_region(self, seoul_aws_region: 'bool'):
|
|
2162
|
-
"""Sets the seoul_aws_region of this V1UserFeatures.
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
:param seoul_aws_region: The seoul_aws_region of this V1UserFeatures. # noqa: E501
|
|
2166
|
-
:type: bool
|
|
2167
|
-
"""
|
|
2168
|
-
|
|
2169
|
-
self._seoul_aws_region = seoul_aws_region
|
|
2170
|
-
|
|
2171
1933
|
@property
|
|
2172
1934
|
def show_dev_admin(self) -> 'bool':
|
|
2173
1935
|
"""Gets the show_dev_admin of this V1UserFeatures. # noqa: E501
|
|
@@ -2231,48 +1993,6 @@ class V1UserFeatures(object):
|
|
|
2231
1993
|
|
|
2232
1994
|
self._slurm = slurm
|
|
2233
1995
|
|
|
2234
|
-
@property
|
|
2235
|
-
def slurm_machine_selector(self) -> 'bool':
|
|
2236
|
-
"""Gets the slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
:return: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
2240
|
-
:rtype: bool
|
|
2241
|
-
"""
|
|
2242
|
-
return self._slurm_machine_selector
|
|
2243
|
-
|
|
2244
|
-
@slurm_machine_selector.setter
|
|
2245
|
-
def slurm_machine_selector(self, slurm_machine_selector: 'bool'):
|
|
2246
|
-
"""Sets the slurm_machine_selector of this V1UserFeatures.
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
:param slurm_machine_selector: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
2250
|
-
:type: bool
|
|
2251
|
-
"""
|
|
2252
|
-
|
|
2253
|
-
self._slurm_machine_selector = slurm_machine_selector
|
|
2254
|
-
|
|
2255
|
-
@property
|
|
2256
|
-
def stop_ide_container_on_shutdown(self) -> 'bool':
|
|
2257
|
-
"""Gets the stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
:return: The stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
|
|
2261
|
-
:rtype: bool
|
|
2262
|
-
"""
|
|
2263
|
-
return self._stop_ide_container_on_shutdown
|
|
2264
|
-
|
|
2265
|
-
@stop_ide_container_on_shutdown.setter
|
|
2266
|
-
def stop_ide_container_on_shutdown(self, stop_ide_container_on_shutdown: 'bool'):
|
|
2267
|
-
"""Sets the stop_ide_container_on_shutdown of this V1UserFeatures.
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
:param stop_ide_container_on_shutdown: The stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
|
|
2271
|
-
:type: bool
|
|
2272
|
-
"""
|
|
2273
|
-
|
|
2274
|
-
self._stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
|
|
2275
|
-
|
|
2276
1996
|
@property
|
|
2277
1997
|
def storage_overuse_deletion(self) -> 'bool':
|
|
2278
1998
|
"""Gets the storage_overuse_deletion of this V1UserFeatures. # noqa: E501
|
|
@@ -2336,69 +2056,6 @@ class V1UserFeatures(object):
|
|
|
2336
2056
|
|
|
2337
2057
|
self._studio_version_visibility = studio_version_visibility
|
|
2338
2058
|
|
|
2339
|
-
@property
|
|
2340
|
-
def studios_dashboard(self) -> 'bool':
|
|
2341
|
-
"""Gets the studios_dashboard of this V1UserFeatures. # noqa: E501
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
:return: The studios_dashboard of this V1UserFeatures. # noqa: E501
|
|
2345
|
-
:rtype: bool
|
|
2346
|
-
"""
|
|
2347
|
-
return self._studios_dashboard
|
|
2348
|
-
|
|
2349
|
-
@studios_dashboard.setter
|
|
2350
|
-
def studios_dashboard(self, studios_dashboard: 'bool'):
|
|
2351
|
-
"""Sets the studios_dashboard of this V1UserFeatures.
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
:param studios_dashboard: The studios_dashboard of this V1UserFeatures. # noqa: E501
|
|
2355
|
-
:type: bool
|
|
2356
|
-
"""
|
|
2357
|
-
|
|
2358
|
-
self._studios_dashboard = studios_dashboard
|
|
2359
|
-
|
|
2360
|
-
@property
|
|
2361
|
-
def studios_dashboard_system_metrics(self) -> 'bool':
|
|
2362
|
-
"""Gets the studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
:return: The studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
2366
|
-
:rtype: bool
|
|
2367
|
-
"""
|
|
2368
|
-
return self._studios_dashboard_system_metrics
|
|
2369
|
-
|
|
2370
|
-
@studios_dashboard_system_metrics.setter
|
|
2371
|
-
def studios_dashboard_system_metrics(self, studios_dashboard_system_metrics: 'bool'):
|
|
2372
|
-
"""Sets the studios_dashboard_system_metrics of this V1UserFeatures.
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
:param studios_dashboard_system_metrics: The studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
2376
|
-
:type: bool
|
|
2377
|
-
"""
|
|
2378
|
-
|
|
2379
|
-
self._studios_dashboard_system_metrics = studios_dashboard_system_metrics
|
|
2380
|
-
|
|
2381
|
-
@property
|
|
2382
|
-
def teamspace_storage_tab(self) -> 'bool':
|
|
2383
|
-
"""Gets the teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
:return: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2387
|
-
:rtype: bool
|
|
2388
|
-
"""
|
|
2389
|
-
return self._teamspace_storage_tab
|
|
2390
|
-
|
|
2391
|
-
@teamspace_storage_tab.setter
|
|
2392
|
-
def teamspace_storage_tab(self, teamspace_storage_tab: 'bool'):
|
|
2393
|
-
"""Sets the teamspace_storage_tab of this V1UserFeatures.
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
:param teamspace_storage_tab: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2397
|
-
:type: bool
|
|
2398
|
-
"""
|
|
2399
|
-
|
|
2400
|
-
self._teamspace_storage_tab = teamspace_storage_tab
|
|
2401
|
-
|
|
2402
2059
|
@property
|
|
2403
2060
|
def trainium2(self) -> 'bool':
|
|
2404
2061
|
"""Gets the trainium2 of this V1UserFeatures. # noqa: E501
|
|
@@ -2420,27 +2077,6 @@ class V1UserFeatures(object):
|
|
|
2420
2077
|
|
|
2421
2078
|
self._trainium2 = trainium2
|
|
2422
2079
|
|
|
2423
|
-
@property
|
|
2424
|
-
def transfer_studios(self) -> 'bool':
|
|
2425
|
-
"""Gets the transfer_studios of this V1UserFeatures. # noqa: E501
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
:return: The transfer_studios of this V1UserFeatures. # noqa: E501
|
|
2429
|
-
:rtype: bool
|
|
2430
|
-
"""
|
|
2431
|
-
return self._transfer_studios
|
|
2432
|
-
|
|
2433
|
-
@transfer_studios.setter
|
|
2434
|
-
def transfer_studios(self, transfer_studios: 'bool'):
|
|
2435
|
-
"""Sets the transfer_studios of this V1UserFeatures.
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
:param transfer_studios: The transfer_studios of this V1UserFeatures. # noqa: E501
|
|
2439
|
-
:type: bool
|
|
2440
|
-
"""
|
|
2441
|
-
|
|
2442
|
-
self._transfer_studios = transfer_studios
|
|
2443
|
-
|
|
2444
2080
|
@property
|
|
2445
2081
|
def use_rclone_mounts_only(self) -> 'bool':
|
|
2446
2082
|
"""Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|