lightning-sdk 0.2.18__py3-none-any.whl → 0.2.20__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 +2 -0
- lightning_sdk/api/license_api.py +28 -6
- lightning_sdk/cli/deploy/_auth.py +11 -19
- lightning_sdk/cli/entrypoint.py +20 -2
- lightning_sdk/deployment/deployment.py +2 -0
- lightning_sdk/lightning_cloud/login.py +2 -2
- lightning_sdk/lightning_cloud/openapi/__init__.py +10 -2
- lightning_sdk/lightning_cloud/openapi/api/__init__.py +1 -0
- lightning_sdk/lightning_cloud/openapi/api/blog_posts_service_api.py +533 -0
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +113 -0
- lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +121 -0
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +9 -2
- lightning_sdk/lightning_cloud/openapi/models/alertingevents_id_body.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/blogposts_id_body.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/id_transfer_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +157 -157
- lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/update.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_author.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_state.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_blog_post_request.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_daily_usage.py +81 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_blog_post_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +27 -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 +157 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +237 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_list_blog_posts_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_message.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +261 -157
- lightning_sdk/lightning_cloud/openapi/models/v1_product_license.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +199 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +4 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_transfer_cloud_space_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +105 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +249 -145
- 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/serve.py +1 -0
- lightning_sdk/services/license.py +148 -27
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/METADATA +1 -1
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/RECORD +66 -58
- lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +0 -279
- lightning_sdk/lightning_cloud/openapi/models/v1_reservation_billing_session.py +0 -279
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/WHEEL +0 -0
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/top_level.txt +0 -0
|
@@ -41,6 +41,7 @@ class V1UserFeatures(object):
|
|
|
41
41
|
and the value is json key in definition.
|
|
42
42
|
"""
|
|
43
43
|
swagger_types = {
|
|
44
|
+
'accurate_billing': 'bool',
|
|
44
45
|
'affiliate_links': 'bool',
|
|
45
46
|
'agents_v2': 'bool',
|
|
46
47
|
'ai_hub_monetization': 'bool',
|
|
@@ -49,7 +50,7 @@ class V1UserFeatures(object):
|
|
|
49
50
|
'auto_top_up': 'bool',
|
|
50
51
|
'auto_top_up_teamspace': 'bool',
|
|
51
52
|
'b2c_experience': 'bool',
|
|
52
|
-
'
|
|
53
|
+
'blog_route': 'bool',
|
|
53
54
|
'byoc_litcr': 'bool',
|
|
54
55
|
'cap_add': 'list[str]',
|
|
55
56
|
'cap_drop': 'list[str]',
|
|
@@ -61,6 +62,7 @@ class V1UserFeatures(object):
|
|
|
61
62
|
'code_tab': 'bool',
|
|
62
63
|
'collab_screen_sharing': 'bool',
|
|
63
64
|
'concurrent_gpu_limit': 'bool',
|
|
65
|
+
'control_center_monitoring': 'bool',
|
|
64
66
|
'cost_attribution_settings': 'bool',
|
|
65
67
|
'custom_app_domain': 'bool',
|
|
66
68
|
'datasets': 'bool',
|
|
@@ -70,7 +72,6 @@ class V1UserFeatures(object):
|
|
|
70
72
|
'deployment_requests_tab': 'bool',
|
|
71
73
|
'dgx_cloud': 'bool',
|
|
72
74
|
'docs_agent': 'bool',
|
|
73
|
-
'down_switch_machine': 'bool',
|
|
74
75
|
'drive_v2': 'bool',
|
|
75
76
|
'enable_storage_limits': 'bool',
|
|
76
77
|
'enterprise_compute_admin': 'bool',
|
|
@@ -78,14 +79,13 @@ class V1UserFeatures(object):
|
|
|
78
79
|
'featured_studios_admin': 'bool',
|
|
79
80
|
'filestore': 'bool',
|
|
80
81
|
'gcs_folders': 'bool',
|
|
81
|
-
'inactive_notify_delete': 'bool',
|
|
82
82
|
'instant_capacity_reservation': 'bool',
|
|
83
83
|
'job_artifacts_v2': 'bool',
|
|
84
84
|
'lambda_labs': 'bool',
|
|
85
|
+
'lambda_labs_studios': 'bool',
|
|
85
86
|
'landing_studios': 'bool',
|
|
86
87
|
'lightning_cloud': 'bool',
|
|
87
88
|
'lit_logger': 'bool',
|
|
88
|
-
'manage_storage_costs': 'bool',
|
|
89
89
|
'marketplace': 'bool',
|
|
90
90
|
'mmt_fault_tolerance': 'bool',
|
|
91
91
|
'mmt_strategy_selector': 'bool',
|
|
@@ -93,12 +93,15 @@ class V1UserFeatures(object):
|
|
|
93
93
|
'multicloud_saas': 'bool',
|
|
94
94
|
'multiple_studio_versions': 'bool',
|
|
95
95
|
'nebius': 'bool',
|
|
96
|
+
'nebius_cpu_studios': 'bool',
|
|
97
|
+
'nebius_gpu_studios': 'bool',
|
|
96
98
|
'neocloud_studios': 'bool',
|
|
97
99
|
'nerf_fs_nonpaying': 'bool',
|
|
98
100
|
'org_level_member_permissions': 'bool',
|
|
99
101
|
'org_usage_limits': 'bool',
|
|
100
102
|
'paygo_free_storage_limit_check': 'bool',
|
|
101
103
|
'pipelines': 'bool',
|
|
104
|
+
'plg_control_center': 'bool',
|
|
102
105
|
'plugin_distributed': 'bool',
|
|
103
106
|
'plugin_inference': 'bool',
|
|
104
107
|
'plugin_label_studio': 'bool',
|
|
@@ -122,19 +125,21 @@ class V1UserFeatures(object):
|
|
|
122
125
|
'slurm': 'bool',
|
|
123
126
|
'slurm_machine_selector': 'bool',
|
|
124
127
|
'stop_ide_container_on_shutdown': 'bool',
|
|
128
|
+
'storage_overuse_deletion': 'bool',
|
|
125
129
|
'studio_config': 'bool',
|
|
126
130
|
'studio_version_visibility': 'bool',
|
|
127
|
-
'studios_dashboard': 'bool',
|
|
128
|
-
'studios_dashboard_system_metrics': 'bool',
|
|
129
131
|
'teamspace_storage_tab': 'bool',
|
|
130
132
|
'trainium2': 'bool',
|
|
133
|
+
'transfer_studios': 'bool',
|
|
131
134
|
'use_rclone_mounts_only': 'bool',
|
|
132
135
|
'voltage_park': 'bool',
|
|
136
|
+
'voltage_park_studios': 'bool',
|
|
133
137
|
'vultr': 'bool',
|
|
134
138
|
'weka': 'bool'
|
|
135
139
|
}
|
|
136
140
|
|
|
137
141
|
attribute_map = {
|
|
142
|
+
'accurate_billing': 'accurateBilling',
|
|
138
143
|
'affiliate_links': 'affiliateLinks',
|
|
139
144
|
'agents_v2': 'agentsV2',
|
|
140
145
|
'ai_hub_monetization': 'aiHubMonetization',
|
|
@@ -143,7 +148,7 @@ class V1UserFeatures(object):
|
|
|
143
148
|
'auto_top_up': 'autoTopUp',
|
|
144
149
|
'auto_top_up_teamspace': 'autoTopUpTeamspace',
|
|
145
150
|
'b2c_experience': 'b2cExperience',
|
|
146
|
-
'
|
|
151
|
+
'blog_route': 'blogRoute',
|
|
147
152
|
'byoc_litcr': 'byocLitcr',
|
|
148
153
|
'cap_add': 'capAdd',
|
|
149
154
|
'cap_drop': 'capDrop',
|
|
@@ -155,6 +160,7 @@ class V1UserFeatures(object):
|
|
|
155
160
|
'code_tab': 'codeTab',
|
|
156
161
|
'collab_screen_sharing': 'collabScreenSharing',
|
|
157
162
|
'concurrent_gpu_limit': 'concurrentGpuLimit',
|
|
163
|
+
'control_center_monitoring': 'controlCenterMonitoring',
|
|
158
164
|
'cost_attribution_settings': 'costAttributionSettings',
|
|
159
165
|
'custom_app_domain': 'customAppDomain',
|
|
160
166
|
'datasets': 'datasets',
|
|
@@ -164,7 +170,6 @@ class V1UserFeatures(object):
|
|
|
164
170
|
'deployment_requests_tab': 'deploymentRequestsTab',
|
|
165
171
|
'dgx_cloud': 'dgxCloud',
|
|
166
172
|
'docs_agent': 'docsAgent',
|
|
167
|
-
'down_switch_machine': 'downSwitchMachine',
|
|
168
173
|
'drive_v2': 'driveV2',
|
|
169
174
|
'enable_storage_limits': 'enableStorageLimits',
|
|
170
175
|
'enterprise_compute_admin': 'enterpriseComputeAdmin',
|
|
@@ -172,14 +177,13 @@ class V1UserFeatures(object):
|
|
|
172
177
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
173
178
|
'filestore': 'filestore',
|
|
174
179
|
'gcs_folders': 'gcsFolders',
|
|
175
|
-
'inactive_notify_delete': 'inactiveNotifyDelete',
|
|
176
180
|
'instant_capacity_reservation': 'instantCapacityReservation',
|
|
177
181
|
'job_artifacts_v2': 'jobArtifactsV2',
|
|
178
182
|
'lambda_labs': 'lambdaLabs',
|
|
183
|
+
'lambda_labs_studios': 'lambdaLabsStudios',
|
|
179
184
|
'landing_studios': 'landingStudios',
|
|
180
185
|
'lightning_cloud': 'lightningCloud',
|
|
181
186
|
'lit_logger': 'litLogger',
|
|
182
|
-
'manage_storage_costs': 'manageStorageCosts',
|
|
183
187
|
'marketplace': 'marketplace',
|
|
184
188
|
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
185
189
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
@@ -187,12 +191,15 @@ class V1UserFeatures(object):
|
|
|
187
191
|
'multicloud_saas': 'multicloudSaas',
|
|
188
192
|
'multiple_studio_versions': 'multipleStudioVersions',
|
|
189
193
|
'nebius': 'nebius',
|
|
194
|
+
'nebius_cpu_studios': 'nebiusCpuStudios',
|
|
195
|
+
'nebius_gpu_studios': 'nebiusGpuStudios',
|
|
190
196
|
'neocloud_studios': 'neocloudStudios',
|
|
191
197
|
'nerf_fs_nonpaying': 'nerfFsNonpaying',
|
|
192
198
|
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
193
199
|
'org_usage_limits': 'orgUsageLimits',
|
|
194
200
|
'paygo_free_storage_limit_check': 'paygoFreeStorageLimitCheck',
|
|
195
201
|
'pipelines': 'pipelines',
|
|
202
|
+
'plg_control_center': 'plgControlCenter',
|
|
196
203
|
'plugin_distributed': 'pluginDistributed',
|
|
197
204
|
'plugin_inference': 'pluginInference',
|
|
198
205
|
'plugin_label_studio': 'pluginLabelStudio',
|
|
@@ -216,20 +223,22 @@ class V1UserFeatures(object):
|
|
|
216
223
|
'slurm': 'slurm',
|
|
217
224
|
'slurm_machine_selector': 'slurmMachineSelector',
|
|
218
225
|
'stop_ide_container_on_shutdown': 'stopIdeContainerOnShutdown',
|
|
226
|
+
'storage_overuse_deletion': 'storageOveruseDeletion',
|
|
219
227
|
'studio_config': 'studioConfig',
|
|
220
228
|
'studio_version_visibility': 'studioVersionVisibility',
|
|
221
|
-
'studios_dashboard': 'studiosDashboard',
|
|
222
|
-
'studios_dashboard_system_metrics': 'studiosDashboardSystemMetrics',
|
|
223
229
|
'teamspace_storage_tab': 'teamspaceStorageTab',
|
|
224
230
|
'trainium2': 'trainium2',
|
|
231
|
+
'transfer_studios': 'transferStudios',
|
|
225
232
|
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
226
233
|
'voltage_park': 'voltagePark',
|
|
234
|
+
'voltage_park_studios': 'voltageParkStudios',
|
|
227
235
|
'vultr': 'vultr',
|
|
228
236
|
'weka': 'weka'
|
|
229
237
|
}
|
|
230
238
|
|
|
231
|
-
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, auto_top_up: 'bool' =None, auto_top_up_teamspace: 'bool' =None, b2c_experience: 'bool' =None,
|
|
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, blog_route: '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, 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_alerts: 'bool' =None, deployment_persistent_disk: 'bool' =None, deployment_requests_tab: 'bool' =None, dgx_cloud: '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, 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, lightning_cloud: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: '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, neocloud_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, seoul_aws_region: '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, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_version_visibility: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, transfer_studios: '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
|
|
232
240
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
241
|
+
self._accurate_billing = None
|
|
233
242
|
self._affiliate_links = None
|
|
234
243
|
self._agents_v2 = None
|
|
235
244
|
self._ai_hub_monetization = None
|
|
@@ -238,7 +247,7 @@ class V1UserFeatures(object):
|
|
|
238
247
|
self._auto_top_up = None
|
|
239
248
|
self._auto_top_up_teamspace = None
|
|
240
249
|
self._b2c_experience = None
|
|
241
|
-
self.
|
|
250
|
+
self._blog_route = None
|
|
242
251
|
self._byoc_litcr = None
|
|
243
252
|
self._cap_add = None
|
|
244
253
|
self._cap_drop = None
|
|
@@ -250,6 +259,7 @@ class V1UserFeatures(object):
|
|
|
250
259
|
self._code_tab = None
|
|
251
260
|
self._collab_screen_sharing = None
|
|
252
261
|
self._concurrent_gpu_limit = None
|
|
262
|
+
self._control_center_monitoring = None
|
|
253
263
|
self._cost_attribution_settings = None
|
|
254
264
|
self._custom_app_domain = None
|
|
255
265
|
self._datasets = None
|
|
@@ -259,7 +269,6 @@ class V1UserFeatures(object):
|
|
|
259
269
|
self._deployment_requests_tab = None
|
|
260
270
|
self._dgx_cloud = None
|
|
261
271
|
self._docs_agent = None
|
|
262
|
-
self._down_switch_machine = None
|
|
263
272
|
self._drive_v2 = None
|
|
264
273
|
self._enable_storage_limits = None
|
|
265
274
|
self._enterprise_compute_admin = None
|
|
@@ -267,14 +276,13 @@ class V1UserFeatures(object):
|
|
|
267
276
|
self._featured_studios_admin = None
|
|
268
277
|
self._filestore = None
|
|
269
278
|
self._gcs_folders = None
|
|
270
|
-
self._inactive_notify_delete = None
|
|
271
279
|
self._instant_capacity_reservation = None
|
|
272
280
|
self._job_artifacts_v2 = None
|
|
273
281
|
self._lambda_labs = None
|
|
282
|
+
self._lambda_labs_studios = None
|
|
274
283
|
self._landing_studios = None
|
|
275
284
|
self._lightning_cloud = None
|
|
276
285
|
self._lit_logger = None
|
|
277
|
-
self._manage_storage_costs = None
|
|
278
286
|
self._marketplace = None
|
|
279
287
|
self._mmt_fault_tolerance = None
|
|
280
288
|
self._mmt_strategy_selector = None
|
|
@@ -282,12 +290,15 @@ class V1UserFeatures(object):
|
|
|
282
290
|
self._multicloud_saas = None
|
|
283
291
|
self._multiple_studio_versions = None
|
|
284
292
|
self._nebius = None
|
|
293
|
+
self._nebius_cpu_studios = None
|
|
294
|
+
self._nebius_gpu_studios = None
|
|
285
295
|
self._neocloud_studios = None
|
|
286
296
|
self._nerf_fs_nonpaying = None
|
|
287
297
|
self._org_level_member_permissions = None
|
|
288
298
|
self._org_usage_limits = None
|
|
289
299
|
self._paygo_free_storage_limit_check = None
|
|
290
300
|
self._pipelines = None
|
|
301
|
+
self._plg_control_center = None
|
|
291
302
|
self._plugin_distributed = None
|
|
292
303
|
self._plugin_inference = None
|
|
293
304
|
self._plugin_label_studio = None
|
|
@@ -311,17 +322,20 @@ class V1UserFeatures(object):
|
|
|
311
322
|
self._slurm = None
|
|
312
323
|
self._slurm_machine_selector = None
|
|
313
324
|
self._stop_ide_container_on_shutdown = None
|
|
325
|
+
self._storage_overuse_deletion = None
|
|
314
326
|
self._studio_config = None
|
|
315
327
|
self._studio_version_visibility = None
|
|
316
|
-
self._studios_dashboard = None
|
|
317
|
-
self._studios_dashboard_system_metrics = None
|
|
318
328
|
self._teamspace_storage_tab = None
|
|
319
329
|
self._trainium2 = None
|
|
330
|
+
self._transfer_studios = None
|
|
320
331
|
self._use_rclone_mounts_only = None
|
|
321
332
|
self._voltage_park = None
|
|
333
|
+
self._voltage_park_studios = None
|
|
322
334
|
self._vultr = None
|
|
323
335
|
self._weka = None
|
|
324
336
|
self.discriminator = None
|
|
337
|
+
if accurate_billing is not None:
|
|
338
|
+
self.accurate_billing = accurate_billing
|
|
325
339
|
if affiliate_links is not None:
|
|
326
340
|
self.affiliate_links = affiliate_links
|
|
327
341
|
if agents_v2 is not None:
|
|
@@ -338,8 +352,8 @@ class V1UserFeatures(object):
|
|
|
338
352
|
self.auto_top_up_teamspace = auto_top_up_teamspace
|
|
339
353
|
if b2c_experience is not None:
|
|
340
354
|
self.b2c_experience = b2c_experience
|
|
341
|
-
if
|
|
342
|
-
self.
|
|
355
|
+
if blog_route is not None:
|
|
356
|
+
self.blog_route = blog_route
|
|
343
357
|
if byoc_litcr is not None:
|
|
344
358
|
self.byoc_litcr = byoc_litcr
|
|
345
359
|
if cap_add is not None:
|
|
@@ -362,6 +376,8 @@ class V1UserFeatures(object):
|
|
|
362
376
|
self.collab_screen_sharing = collab_screen_sharing
|
|
363
377
|
if concurrent_gpu_limit is not None:
|
|
364
378
|
self.concurrent_gpu_limit = concurrent_gpu_limit
|
|
379
|
+
if control_center_monitoring is not None:
|
|
380
|
+
self.control_center_monitoring = control_center_monitoring
|
|
365
381
|
if cost_attribution_settings is not None:
|
|
366
382
|
self.cost_attribution_settings = cost_attribution_settings
|
|
367
383
|
if custom_app_domain is not None:
|
|
@@ -380,8 +396,6 @@ class V1UserFeatures(object):
|
|
|
380
396
|
self.dgx_cloud = dgx_cloud
|
|
381
397
|
if docs_agent is not None:
|
|
382
398
|
self.docs_agent = docs_agent
|
|
383
|
-
if down_switch_machine is not None:
|
|
384
|
-
self.down_switch_machine = down_switch_machine
|
|
385
399
|
if drive_v2 is not None:
|
|
386
400
|
self.drive_v2 = drive_v2
|
|
387
401
|
if enable_storage_limits is not None:
|
|
@@ -396,22 +410,20 @@ class V1UserFeatures(object):
|
|
|
396
410
|
self.filestore = filestore
|
|
397
411
|
if gcs_folders is not None:
|
|
398
412
|
self.gcs_folders = gcs_folders
|
|
399
|
-
if inactive_notify_delete is not None:
|
|
400
|
-
self.inactive_notify_delete = inactive_notify_delete
|
|
401
413
|
if instant_capacity_reservation is not None:
|
|
402
414
|
self.instant_capacity_reservation = instant_capacity_reservation
|
|
403
415
|
if job_artifacts_v2 is not None:
|
|
404
416
|
self.job_artifacts_v2 = job_artifacts_v2
|
|
405
417
|
if lambda_labs is not None:
|
|
406
418
|
self.lambda_labs = lambda_labs
|
|
419
|
+
if lambda_labs_studios is not None:
|
|
420
|
+
self.lambda_labs_studios = lambda_labs_studios
|
|
407
421
|
if landing_studios is not None:
|
|
408
422
|
self.landing_studios = landing_studios
|
|
409
423
|
if lightning_cloud is not None:
|
|
410
424
|
self.lightning_cloud = lightning_cloud
|
|
411
425
|
if lit_logger is not None:
|
|
412
426
|
self.lit_logger = lit_logger
|
|
413
|
-
if manage_storage_costs is not None:
|
|
414
|
-
self.manage_storage_costs = manage_storage_costs
|
|
415
427
|
if marketplace is not None:
|
|
416
428
|
self.marketplace = marketplace
|
|
417
429
|
if mmt_fault_tolerance is not None:
|
|
@@ -426,6 +438,10 @@ class V1UserFeatures(object):
|
|
|
426
438
|
self.multiple_studio_versions = multiple_studio_versions
|
|
427
439
|
if nebius is not None:
|
|
428
440
|
self.nebius = nebius
|
|
441
|
+
if nebius_cpu_studios is not None:
|
|
442
|
+
self.nebius_cpu_studios = nebius_cpu_studios
|
|
443
|
+
if nebius_gpu_studios is not None:
|
|
444
|
+
self.nebius_gpu_studios = nebius_gpu_studios
|
|
429
445
|
if neocloud_studios is not None:
|
|
430
446
|
self.neocloud_studios = neocloud_studios
|
|
431
447
|
if nerf_fs_nonpaying is not None:
|
|
@@ -438,6 +454,8 @@ class V1UserFeatures(object):
|
|
|
438
454
|
self.paygo_free_storage_limit_check = paygo_free_storage_limit_check
|
|
439
455
|
if pipelines is not None:
|
|
440
456
|
self.pipelines = pipelines
|
|
457
|
+
if plg_control_center is not None:
|
|
458
|
+
self.plg_control_center = plg_control_center
|
|
441
459
|
if plugin_distributed is not None:
|
|
442
460
|
self.plugin_distributed = plugin_distributed
|
|
443
461
|
if plugin_inference is not None:
|
|
@@ -484,27 +502,50 @@ class V1UserFeatures(object):
|
|
|
484
502
|
self.slurm_machine_selector = slurm_machine_selector
|
|
485
503
|
if stop_ide_container_on_shutdown is not None:
|
|
486
504
|
self.stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
|
|
505
|
+
if storage_overuse_deletion is not None:
|
|
506
|
+
self.storage_overuse_deletion = storage_overuse_deletion
|
|
487
507
|
if studio_config is not None:
|
|
488
508
|
self.studio_config = studio_config
|
|
489
509
|
if studio_version_visibility is not None:
|
|
490
510
|
self.studio_version_visibility = studio_version_visibility
|
|
491
|
-
if studios_dashboard is not None:
|
|
492
|
-
self.studios_dashboard = studios_dashboard
|
|
493
|
-
if studios_dashboard_system_metrics is not None:
|
|
494
|
-
self.studios_dashboard_system_metrics = studios_dashboard_system_metrics
|
|
495
511
|
if teamspace_storage_tab is not None:
|
|
496
512
|
self.teamspace_storage_tab = teamspace_storage_tab
|
|
497
513
|
if trainium2 is not None:
|
|
498
514
|
self.trainium2 = trainium2
|
|
515
|
+
if transfer_studios is not None:
|
|
516
|
+
self.transfer_studios = transfer_studios
|
|
499
517
|
if use_rclone_mounts_only is not None:
|
|
500
518
|
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
501
519
|
if voltage_park is not None:
|
|
502
520
|
self.voltage_park = voltage_park
|
|
521
|
+
if voltage_park_studios is not None:
|
|
522
|
+
self.voltage_park_studios = voltage_park_studios
|
|
503
523
|
if vultr is not None:
|
|
504
524
|
self.vultr = vultr
|
|
505
525
|
if weka is not None:
|
|
506
526
|
self.weka = weka
|
|
507
527
|
|
|
528
|
+
@property
|
|
529
|
+
def accurate_billing(self) -> 'bool':
|
|
530
|
+
"""Gets the accurate_billing of this V1UserFeatures. # noqa: E501
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
:return: The accurate_billing of this V1UserFeatures. # noqa: E501
|
|
534
|
+
:rtype: bool
|
|
535
|
+
"""
|
|
536
|
+
return self._accurate_billing
|
|
537
|
+
|
|
538
|
+
@accurate_billing.setter
|
|
539
|
+
def accurate_billing(self, accurate_billing: 'bool'):
|
|
540
|
+
"""Sets the accurate_billing of this V1UserFeatures.
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
:param accurate_billing: The accurate_billing of this V1UserFeatures. # noqa: E501
|
|
544
|
+
:type: bool
|
|
545
|
+
"""
|
|
546
|
+
|
|
547
|
+
self._accurate_billing = accurate_billing
|
|
548
|
+
|
|
508
549
|
@property
|
|
509
550
|
def affiliate_links(self) -> 'bool':
|
|
510
551
|
"""Gets the affiliate_links of this V1UserFeatures. # noqa: E501
|
|
@@ -674,25 +715,25 @@ class V1UserFeatures(object):
|
|
|
674
715
|
self._b2c_experience = b2c_experience
|
|
675
716
|
|
|
676
717
|
@property
|
|
677
|
-
def
|
|
678
|
-
"""Gets the
|
|
718
|
+
def blog_route(self) -> 'bool':
|
|
719
|
+
"""Gets the blog_route of this V1UserFeatures. # noqa: E501
|
|
679
720
|
|
|
680
721
|
|
|
681
|
-
:return: The
|
|
722
|
+
:return: The blog_route of this V1UserFeatures. # noqa: E501
|
|
682
723
|
:rtype: bool
|
|
683
724
|
"""
|
|
684
|
-
return self.
|
|
725
|
+
return self._blog_route
|
|
685
726
|
|
|
686
|
-
@
|
|
687
|
-
def
|
|
688
|
-
"""Sets the
|
|
727
|
+
@blog_route.setter
|
|
728
|
+
def blog_route(self, blog_route: 'bool'):
|
|
729
|
+
"""Sets the blog_route of this V1UserFeatures.
|
|
689
730
|
|
|
690
731
|
|
|
691
|
-
:param
|
|
732
|
+
:param blog_route: The blog_route of this V1UserFeatures. # noqa: E501
|
|
692
733
|
:type: bool
|
|
693
734
|
"""
|
|
694
735
|
|
|
695
|
-
self.
|
|
736
|
+
self._blog_route = blog_route
|
|
696
737
|
|
|
697
738
|
@property
|
|
698
739
|
def byoc_litcr(self) -> 'bool':
|
|
@@ -925,6 +966,27 @@ class V1UserFeatures(object):
|
|
|
925
966
|
|
|
926
967
|
self._concurrent_gpu_limit = concurrent_gpu_limit
|
|
927
968
|
|
|
969
|
+
@property
|
|
970
|
+
def control_center_monitoring(self) -> 'bool':
|
|
971
|
+
"""Gets the control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
:return: The control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
975
|
+
:rtype: bool
|
|
976
|
+
"""
|
|
977
|
+
return self._control_center_monitoring
|
|
978
|
+
|
|
979
|
+
@control_center_monitoring.setter
|
|
980
|
+
def control_center_monitoring(self, control_center_monitoring: 'bool'):
|
|
981
|
+
"""Sets the control_center_monitoring of this V1UserFeatures.
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
:param control_center_monitoring: The control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
985
|
+
:type: bool
|
|
986
|
+
"""
|
|
987
|
+
|
|
988
|
+
self._control_center_monitoring = control_center_monitoring
|
|
989
|
+
|
|
928
990
|
@property
|
|
929
991
|
def cost_attribution_settings(self) -> 'bool':
|
|
930
992
|
"""Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
@@ -1114,27 +1176,6 @@ class V1UserFeatures(object):
|
|
|
1114
1176
|
|
|
1115
1177
|
self._docs_agent = docs_agent
|
|
1116
1178
|
|
|
1117
|
-
@property
|
|
1118
|
-
def down_switch_machine(self) -> 'bool':
|
|
1119
|
-
"""Gets the down_switch_machine of this V1UserFeatures. # noqa: E501
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
:return: The down_switch_machine of this V1UserFeatures. # noqa: E501
|
|
1123
|
-
:rtype: bool
|
|
1124
|
-
"""
|
|
1125
|
-
return self._down_switch_machine
|
|
1126
|
-
|
|
1127
|
-
@down_switch_machine.setter
|
|
1128
|
-
def down_switch_machine(self, down_switch_machine: 'bool'):
|
|
1129
|
-
"""Sets the down_switch_machine of this V1UserFeatures.
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
:param down_switch_machine: The down_switch_machine of this V1UserFeatures. # noqa: E501
|
|
1133
|
-
:type: bool
|
|
1134
|
-
"""
|
|
1135
|
-
|
|
1136
|
-
self._down_switch_machine = down_switch_machine
|
|
1137
|
-
|
|
1138
1179
|
@property
|
|
1139
1180
|
def drive_v2(self) -> 'bool':
|
|
1140
1181
|
"""Gets the drive_v2 of this V1UserFeatures. # noqa: E501
|
|
@@ -1282,27 +1323,6 @@ class V1UserFeatures(object):
|
|
|
1282
1323
|
|
|
1283
1324
|
self._gcs_folders = gcs_folders
|
|
1284
1325
|
|
|
1285
|
-
@property
|
|
1286
|
-
def inactive_notify_delete(self) -> 'bool':
|
|
1287
|
-
"""Gets the inactive_notify_delete of this V1UserFeatures. # noqa: E501
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
:return: The inactive_notify_delete of this V1UserFeatures. # noqa: E501
|
|
1291
|
-
:rtype: bool
|
|
1292
|
-
"""
|
|
1293
|
-
return self._inactive_notify_delete
|
|
1294
|
-
|
|
1295
|
-
@inactive_notify_delete.setter
|
|
1296
|
-
def inactive_notify_delete(self, inactive_notify_delete: 'bool'):
|
|
1297
|
-
"""Sets the inactive_notify_delete of this V1UserFeatures.
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
:param inactive_notify_delete: The inactive_notify_delete of this V1UserFeatures. # noqa: E501
|
|
1301
|
-
:type: bool
|
|
1302
|
-
"""
|
|
1303
|
-
|
|
1304
|
-
self._inactive_notify_delete = inactive_notify_delete
|
|
1305
|
-
|
|
1306
1326
|
@property
|
|
1307
1327
|
def instant_capacity_reservation(self) -> 'bool':
|
|
1308
1328
|
"""Gets the instant_capacity_reservation of this V1UserFeatures. # noqa: E501
|
|
@@ -1366,6 +1386,27 @@ class V1UserFeatures(object):
|
|
|
1366
1386
|
|
|
1367
1387
|
self._lambda_labs = lambda_labs
|
|
1368
1388
|
|
|
1389
|
+
@property
|
|
1390
|
+
def lambda_labs_studios(self) -> 'bool':
|
|
1391
|
+
"""Gets the lambda_labs_studios of this V1UserFeatures. # noqa: E501
|
|
1392
|
+
|
|
1393
|
+
|
|
1394
|
+
:return: The lambda_labs_studios of this V1UserFeatures. # noqa: E501
|
|
1395
|
+
:rtype: bool
|
|
1396
|
+
"""
|
|
1397
|
+
return self._lambda_labs_studios
|
|
1398
|
+
|
|
1399
|
+
@lambda_labs_studios.setter
|
|
1400
|
+
def lambda_labs_studios(self, lambda_labs_studios: 'bool'):
|
|
1401
|
+
"""Sets the lambda_labs_studios of this V1UserFeatures.
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
:param lambda_labs_studios: The lambda_labs_studios of this V1UserFeatures. # noqa: E501
|
|
1405
|
+
:type: bool
|
|
1406
|
+
"""
|
|
1407
|
+
|
|
1408
|
+
self._lambda_labs_studios = lambda_labs_studios
|
|
1409
|
+
|
|
1369
1410
|
@property
|
|
1370
1411
|
def landing_studios(self) -> 'bool':
|
|
1371
1412
|
"""Gets the landing_studios of this V1UserFeatures. # noqa: E501
|
|
@@ -1429,27 +1470,6 @@ class V1UserFeatures(object):
|
|
|
1429
1470
|
|
|
1430
1471
|
self._lit_logger = lit_logger
|
|
1431
1472
|
|
|
1432
|
-
@property
|
|
1433
|
-
def manage_storage_costs(self) -> 'bool':
|
|
1434
|
-
"""Gets the manage_storage_costs of this V1UserFeatures. # noqa: E501
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
:return: The manage_storage_costs of this V1UserFeatures. # noqa: E501
|
|
1438
|
-
:rtype: bool
|
|
1439
|
-
"""
|
|
1440
|
-
return self._manage_storage_costs
|
|
1441
|
-
|
|
1442
|
-
@manage_storage_costs.setter
|
|
1443
|
-
def manage_storage_costs(self, manage_storage_costs: 'bool'):
|
|
1444
|
-
"""Sets the manage_storage_costs of this V1UserFeatures.
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
:param manage_storage_costs: The manage_storage_costs of this V1UserFeatures. # noqa: E501
|
|
1448
|
-
:type: bool
|
|
1449
|
-
"""
|
|
1450
|
-
|
|
1451
|
-
self._manage_storage_costs = manage_storage_costs
|
|
1452
|
-
|
|
1453
1473
|
@property
|
|
1454
1474
|
def marketplace(self) -> 'bool':
|
|
1455
1475
|
"""Gets the marketplace of this V1UserFeatures. # noqa: E501
|
|
@@ -1597,6 +1617,48 @@ class V1UserFeatures(object):
|
|
|
1597
1617
|
|
|
1598
1618
|
self._nebius = nebius
|
|
1599
1619
|
|
|
1620
|
+
@property
|
|
1621
|
+
def nebius_cpu_studios(self) -> 'bool':
|
|
1622
|
+
"""Gets the nebius_cpu_studios of this V1UserFeatures. # noqa: E501
|
|
1623
|
+
|
|
1624
|
+
|
|
1625
|
+
:return: The nebius_cpu_studios of this V1UserFeatures. # noqa: E501
|
|
1626
|
+
:rtype: bool
|
|
1627
|
+
"""
|
|
1628
|
+
return self._nebius_cpu_studios
|
|
1629
|
+
|
|
1630
|
+
@nebius_cpu_studios.setter
|
|
1631
|
+
def nebius_cpu_studios(self, nebius_cpu_studios: 'bool'):
|
|
1632
|
+
"""Sets the nebius_cpu_studios of this V1UserFeatures.
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
:param nebius_cpu_studios: The nebius_cpu_studios of this V1UserFeatures. # noqa: E501
|
|
1636
|
+
:type: bool
|
|
1637
|
+
"""
|
|
1638
|
+
|
|
1639
|
+
self._nebius_cpu_studios = nebius_cpu_studios
|
|
1640
|
+
|
|
1641
|
+
@property
|
|
1642
|
+
def nebius_gpu_studios(self) -> 'bool':
|
|
1643
|
+
"""Gets the nebius_gpu_studios of this V1UserFeatures. # noqa: E501
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
|
+
:return: The nebius_gpu_studios of this V1UserFeatures. # noqa: E501
|
|
1647
|
+
:rtype: bool
|
|
1648
|
+
"""
|
|
1649
|
+
return self._nebius_gpu_studios
|
|
1650
|
+
|
|
1651
|
+
@nebius_gpu_studios.setter
|
|
1652
|
+
def nebius_gpu_studios(self, nebius_gpu_studios: 'bool'):
|
|
1653
|
+
"""Sets the nebius_gpu_studios of this V1UserFeatures.
|
|
1654
|
+
|
|
1655
|
+
|
|
1656
|
+
:param nebius_gpu_studios: The nebius_gpu_studios of this V1UserFeatures. # noqa: E501
|
|
1657
|
+
:type: bool
|
|
1658
|
+
"""
|
|
1659
|
+
|
|
1660
|
+
self._nebius_gpu_studios = nebius_gpu_studios
|
|
1661
|
+
|
|
1600
1662
|
@property
|
|
1601
1663
|
def neocloud_studios(self) -> 'bool':
|
|
1602
1664
|
"""Gets the neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
@@ -1723,6 +1785,27 @@ class V1UserFeatures(object):
|
|
|
1723
1785
|
|
|
1724
1786
|
self._pipelines = pipelines
|
|
1725
1787
|
|
|
1788
|
+
@property
|
|
1789
|
+
def plg_control_center(self) -> 'bool':
|
|
1790
|
+
"""Gets the plg_control_center of this V1UserFeatures. # noqa: E501
|
|
1791
|
+
|
|
1792
|
+
|
|
1793
|
+
:return: The plg_control_center of this V1UserFeatures. # noqa: E501
|
|
1794
|
+
:rtype: bool
|
|
1795
|
+
"""
|
|
1796
|
+
return self._plg_control_center
|
|
1797
|
+
|
|
1798
|
+
@plg_control_center.setter
|
|
1799
|
+
def plg_control_center(self, plg_control_center: 'bool'):
|
|
1800
|
+
"""Sets the plg_control_center of this V1UserFeatures.
|
|
1801
|
+
|
|
1802
|
+
|
|
1803
|
+
:param plg_control_center: The plg_control_center of this V1UserFeatures. # noqa: E501
|
|
1804
|
+
:type: bool
|
|
1805
|
+
"""
|
|
1806
|
+
|
|
1807
|
+
self._plg_control_center = plg_control_center
|
|
1808
|
+
|
|
1726
1809
|
@property
|
|
1727
1810
|
def plugin_distributed(self) -> 'bool':
|
|
1728
1811
|
"""Gets the plugin_distributed of this V1UserFeatures. # noqa: E501
|
|
@@ -2206,6 +2289,27 @@ class V1UserFeatures(object):
|
|
|
2206
2289
|
|
|
2207
2290
|
self._stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
|
|
2208
2291
|
|
|
2292
|
+
@property
|
|
2293
|
+
def storage_overuse_deletion(self) -> 'bool':
|
|
2294
|
+
"""Gets the storage_overuse_deletion of this V1UserFeatures. # noqa: E501
|
|
2295
|
+
|
|
2296
|
+
|
|
2297
|
+
:return: The storage_overuse_deletion of this V1UserFeatures. # noqa: E501
|
|
2298
|
+
:rtype: bool
|
|
2299
|
+
"""
|
|
2300
|
+
return self._storage_overuse_deletion
|
|
2301
|
+
|
|
2302
|
+
@storage_overuse_deletion.setter
|
|
2303
|
+
def storage_overuse_deletion(self, storage_overuse_deletion: 'bool'):
|
|
2304
|
+
"""Sets the storage_overuse_deletion of this V1UserFeatures.
|
|
2305
|
+
|
|
2306
|
+
|
|
2307
|
+
:param storage_overuse_deletion: The storage_overuse_deletion of this V1UserFeatures. # noqa: E501
|
|
2308
|
+
:type: bool
|
|
2309
|
+
"""
|
|
2310
|
+
|
|
2311
|
+
self._storage_overuse_deletion = storage_overuse_deletion
|
|
2312
|
+
|
|
2209
2313
|
@property
|
|
2210
2314
|
def studio_config(self) -> 'bool':
|
|
2211
2315
|
"""Gets the studio_config of this V1UserFeatures. # noqa: E501
|
|
@@ -2248,48 +2352,6 @@ class V1UserFeatures(object):
|
|
|
2248
2352
|
|
|
2249
2353
|
self._studio_version_visibility = studio_version_visibility
|
|
2250
2354
|
|
|
2251
|
-
@property
|
|
2252
|
-
def studios_dashboard(self) -> 'bool':
|
|
2253
|
-
"""Gets the studios_dashboard of this V1UserFeatures. # noqa: E501
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
:return: The studios_dashboard of this V1UserFeatures. # noqa: E501
|
|
2257
|
-
:rtype: bool
|
|
2258
|
-
"""
|
|
2259
|
-
return self._studios_dashboard
|
|
2260
|
-
|
|
2261
|
-
@studios_dashboard.setter
|
|
2262
|
-
def studios_dashboard(self, studios_dashboard: 'bool'):
|
|
2263
|
-
"""Sets the studios_dashboard of this V1UserFeatures.
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
:param studios_dashboard: The studios_dashboard of this V1UserFeatures. # noqa: E501
|
|
2267
|
-
:type: bool
|
|
2268
|
-
"""
|
|
2269
|
-
|
|
2270
|
-
self._studios_dashboard = studios_dashboard
|
|
2271
|
-
|
|
2272
|
-
@property
|
|
2273
|
-
def studios_dashboard_system_metrics(self) -> 'bool':
|
|
2274
|
-
"""Gets the studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
:return: The studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
2278
|
-
:rtype: bool
|
|
2279
|
-
"""
|
|
2280
|
-
return self._studios_dashboard_system_metrics
|
|
2281
|
-
|
|
2282
|
-
@studios_dashboard_system_metrics.setter
|
|
2283
|
-
def studios_dashboard_system_metrics(self, studios_dashboard_system_metrics: 'bool'):
|
|
2284
|
-
"""Sets the studios_dashboard_system_metrics of this V1UserFeatures.
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
:param studios_dashboard_system_metrics: The studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
2288
|
-
:type: bool
|
|
2289
|
-
"""
|
|
2290
|
-
|
|
2291
|
-
self._studios_dashboard_system_metrics = studios_dashboard_system_metrics
|
|
2292
|
-
|
|
2293
2355
|
@property
|
|
2294
2356
|
def teamspace_storage_tab(self) -> 'bool':
|
|
2295
2357
|
"""Gets the teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
@@ -2332,6 +2394,27 @@ class V1UserFeatures(object):
|
|
|
2332
2394
|
|
|
2333
2395
|
self._trainium2 = trainium2
|
|
2334
2396
|
|
|
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
|
+
|
|
2335
2418
|
@property
|
|
2336
2419
|
def use_rclone_mounts_only(self) -> 'bool':
|
|
2337
2420
|
"""Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
@@ -2374,6 +2457,27 @@ class V1UserFeatures(object):
|
|
|
2374
2457
|
|
|
2375
2458
|
self._voltage_park = voltage_park
|
|
2376
2459
|
|
|
2460
|
+
@property
|
|
2461
|
+
def voltage_park_studios(self) -> 'bool':
|
|
2462
|
+
"""Gets the voltage_park_studios of this V1UserFeatures. # noqa: E501
|
|
2463
|
+
|
|
2464
|
+
|
|
2465
|
+
:return: The voltage_park_studios of this V1UserFeatures. # noqa: E501
|
|
2466
|
+
:rtype: bool
|
|
2467
|
+
"""
|
|
2468
|
+
return self._voltage_park_studios
|
|
2469
|
+
|
|
2470
|
+
@voltage_park_studios.setter
|
|
2471
|
+
def voltage_park_studios(self, voltage_park_studios: 'bool'):
|
|
2472
|
+
"""Sets the voltage_park_studios of this V1UserFeatures.
|
|
2473
|
+
|
|
2474
|
+
|
|
2475
|
+
:param voltage_park_studios: The voltage_park_studios of this V1UserFeatures. # noqa: E501
|
|
2476
|
+
:type: bool
|
|
2477
|
+
"""
|
|
2478
|
+
|
|
2479
|
+
self._voltage_park_studios = voltage_park_studios
|
|
2480
|
+
|
|
2377
2481
|
@property
|
|
2378
2482
|
def vultr(self) -> 'bool':
|
|
2379
2483
|
"""Gets the vultr of this V1UserFeatures. # noqa: E501
|