lightning-sdk 2025.7.17__py3-none-any.whl → 2025.7.30rc0__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 +3 -2
- lightning_sdk/api/cloud_account_api.py +204 -0
- lightning_sdk/api/deployment_api.py +11 -0
- lightning_sdk/api/job_api.py +82 -10
- lightning_sdk/api/llm_api.py +1 -1
- lightning_sdk/api/mmt_api.py +44 -5
- lightning_sdk/api/pipeline_api.py +4 -3
- lightning_sdk/api/studio_api.py +51 -8
- lightning_sdk/api/utils.py +6 -2
- lightning_sdk/cli/clusters_menu.py +3 -3
- lightning_sdk/cli/create.py +25 -11
- lightning_sdk/cli/deploy/_auth.py +19 -3
- lightning_sdk/cli/deploy/serve.py +21 -5
- lightning_sdk/cli/download.py +25 -1
- lightning_sdk/cli/entrypoint.py +4 -2
- lightning_sdk/cli/list.py +5 -1
- lightning_sdk/cli/run.py +3 -1
- lightning_sdk/cli/start.py +40 -8
- lightning_sdk/cli/switch.py +3 -1
- lightning_sdk/deployment/deployment.py +8 -0
- lightning_sdk/job/base.py +27 -3
- lightning_sdk/job/job.py +28 -4
- lightning_sdk/job/v1.py +10 -1
- lightning_sdk/job/v2.py +22 -2
- lightning_sdk/job/work.py +5 -1
- lightning_sdk/lightning_cloud/openapi/__init__.py +14 -1
- lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +428 -0
- lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +153 -48
- lightning_sdk/lightning_cloud/openapi/api/cloudy_service_api.py +295 -0
- lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +93 -0
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +14 -1
- lightning_sdk/lightning_cloud/openapi/models/agentmanagedendpoints_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/blogposts_id_body.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/conversations_id_body1.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/messages_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/metricsstream_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_schedules_body.py +81 -3
- lightning_sdk/lightning_cloud/openapi/models/schedules_id_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/user_id_upgradetrigger_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/user_user_id_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_billing_subscription.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloudy_settings.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation_response_chunk.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_billing_upgrade_trigger_record_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_blog_post_request.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_checkout_session_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_subscription_checkout_session_request.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_function_call.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_get_clickhouse_assistant_session_daily_aggregated_response.py → v1_get_assistant_session_daily_aggregated_response.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cluster_health_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_like_status.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_published_managed_endpoints_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_endpoint.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +95 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_message.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_quote_subscription_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_resource_visibility.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_response_choice.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_schedule.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_service_health.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1_status.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_tool_call.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_conversation_like_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_conversation_message_like_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +79 -313
- lightning_sdk/lightning_cloud/openapi/models/v1_volume_state.py +1 -0
- lightning_sdk/llm/llm.py +69 -11
- lightning_sdk/llm/public_assistants.json +32 -8
- lightning_sdk/machine.py +151 -43
- lightning_sdk/mmt/base.py +20 -2
- lightning_sdk/mmt/mmt.py +25 -3
- lightning_sdk/mmt/v1.py +7 -1
- lightning_sdk/mmt/v2.py +27 -3
- lightning_sdk/models.py +1 -1
- lightning_sdk/organization.py +4 -0
- lightning_sdk/pipeline/pipeline.py +16 -5
- lightning_sdk/pipeline/printer.py +5 -3
- lightning_sdk/pipeline/schedule.py +844 -1
- lightning_sdk/pipeline/steps.py +19 -4
- lightning_sdk/sandbox.py +4 -1
- lightning_sdk/serve.py +2 -0
- lightning_sdk/studio.py +91 -44
- lightning_sdk/teamspace.py +19 -10
- lightning_sdk/utils/resolve.py +37 -2
- {lightning_sdk-2025.7.17.dist-info → lightning_sdk-2025.7.30rc0.dist-info}/METADATA +7 -5
- {lightning_sdk-2025.7.17.dist-info → lightning_sdk-2025.7.30rc0.dist-info}/RECORD +98 -85
- lightning_sdk/api/cluster_api.py +0 -119
- /lightning_sdk/cli/{inspect.py → inspection.py} +0 -0
- {lightning_sdk-2025.7.17.dist-info → lightning_sdk-2025.7.30rc0.dist-info}/LICENSE +0 -0
- {lightning_sdk-2025.7.17.dist-info → lightning_sdk-2025.7.30rc0.dist-info}/WHEEL +0 -0
- {lightning_sdk-2025.7.17.dist-info → lightning_sdk-2025.7.30rc0.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-2025.7.17.dist-info → lightning_sdk-2025.7.30rc0.dist-info}/top_level.txt +0 -0
|
@@ -56,19 +56,20 @@ class V1UserFeatures(object):
|
|
|
56
56
|
'capacity_reservation_dry_run': 'bool',
|
|
57
57
|
'chat_models': 'bool',
|
|
58
58
|
'cloudspace_schedules': 'bool',
|
|
59
|
-
'cloudy_vibe_code': 'bool',
|
|
60
59
|
'code_tab': 'bool',
|
|
61
60
|
'collab_screen_sharing': 'bool',
|
|
62
61
|
'control_center_monitoring': 'bool',
|
|
63
62
|
'cost_attribution_settings': 'bool',
|
|
64
63
|
'custom_app_domain': 'bool',
|
|
65
|
-
'data_connection_flushing_v2': 'bool',
|
|
66
64
|
'datasets': 'bool',
|
|
67
65
|
'default_one_cluster': 'bool',
|
|
68
66
|
'deployment_persistent_disk': 'bool',
|
|
69
67
|
'drive_v2': 'bool',
|
|
70
68
|
'enterprise_compute_admin': 'bool',
|
|
71
69
|
'f236': 'bool',
|
|
70
|
+
'f237': 'bool',
|
|
71
|
+
'f238': 'bool',
|
|
72
|
+
'f239': 'bool',
|
|
72
73
|
'fair_share': 'bool',
|
|
73
74
|
'featured_studios_admin': 'bool',
|
|
74
75
|
'gcp_overprovisioning': 'bool',
|
|
@@ -79,27 +80,19 @@ class V1UserFeatures(object):
|
|
|
79
80
|
'job_artifacts_v2': 'bool',
|
|
80
81
|
'kubernetes_cluster_ui': 'bool',
|
|
81
82
|
'kubernetes_clusters': 'bool',
|
|
82
|
-
'lambda_labs': 'bool',
|
|
83
|
-
'lambda_labs_studios': 'bool',
|
|
84
83
|
'landing_studios': 'bool',
|
|
85
84
|
'lit_logger': 'bool',
|
|
86
|
-
'machine_selector_v2': 'bool',
|
|
87
85
|
'marketplace': 'bool',
|
|
88
86
|
'mmt_fault_tolerance': 'bool',
|
|
89
87
|
'mmt_strategy_selector': 'bool',
|
|
90
88
|
'model_api_dashboard': 'bool',
|
|
91
89
|
'model_api_dashboard_clickhouse': 'bool',
|
|
92
90
|
'multicloud_folders': 'bool',
|
|
93
|
-
'multicloud_saas': 'bool',
|
|
94
91
|
'multiple_studio_versions': 'bool',
|
|
95
|
-
'nebius': 'bool',
|
|
96
|
-
'nebius_cpu_studios': 'bool',
|
|
97
|
-
'nebius_gpu_studios': 'bool',
|
|
98
92
|
'nerf_fs_nonpaying': 'bool',
|
|
99
93
|
'onboarding_v2': 'bool',
|
|
100
94
|
'org_level_member_permissions': 'bool',
|
|
101
95
|
'org_usage_limits': 'bool',
|
|
102
|
-
'paygo_free_storage_limit_check': 'bool',
|
|
103
96
|
'persistent_disk': 'bool',
|
|
104
97
|
'plugin_distributed': 'bool',
|
|
105
98
|
'plugin_inference': 'bool',
|
|
@@ -130,8 +123,6 @@ class V1UserFeatures(object):
|
|
|
130
123
|
'trainium2': 'bool',
|
|
131
124
|
'use_internal_data_connection_mounts': 'bool',
|
|
132
125
|
'use_rclone_mounts_only': 'bool',
|
|
133
|
-
'voltage_park': 'bool',
|
|
134
|
-
'voltage_park_studios': 'bool',
|
|
135
126
|
'vultr': 'bool',
|
|
136
127
|
'weka': 'bool',
|
|
137
128
|
'writable_s3_connections': 'bool'
|
|
@@ -153,19 +144,20 @@ class V1UserFeatures(object):
|
|
|
153
144
|
'capacity_reservation_dry_run': 'capacityReservationDryRun',
|
|
154
145
|
'chat_models': 'chatModels',
|
|
155
146
|
'cloudspace_schedules': 'cloudspaceSchedules',
|
|
156
|
-
'cloudy_vibe_code': 'cloudyVibeCode',
|
|
157
147
|
'code_tab': 'codeTab',
|
|
158
148
|
'collab_screen_sharing': 'collabScreenSharing',
|
|
159
149
|
'control_center_monitoring': 'controlCenterMonitoring',
|
|
160
150
|
'cost_attribution_settings': 'costAttributionSettings',
|
|
161
151
|
'custom_app_domain': 'customAppDomain',
|
|
162
|
-
'data_connection_flushing_v2': 'dataConnectionFlushingV2',
|
|
163
152
|
'datasets': 'datasets',
|
|
164
153
|
'default_one_cluster': 'defaultOneCluster',
|
|
165
154
|
'deployment_persistent_disk': 'deploymentPersistentDisk',
|
|
166
155
|
'drive_v2': 'driveV2',
|
|
167
156
|
'enterprise_compute_admin': 'enterpriseComputeAdmin',
|
|
168
157
|
'f236': 'f236',
|
|
158
|
+
'f237': 'f237',
|
|
159
|
+
'f238': 'f238',
|
|
160
|
+
'f239': 'f239',
|
|
169
161
|
'fair_share': 'fairShare',
|
|
170
162
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
171
163
|
'gcp_overprovisioning': 'gcpOverprovisioning',
|
|
@@ -176,27 +168,19 @@ class V1UserFeatures(object):
|
|
|
176
168
|
'job_artifacts_v2': 'jobArtifactsV2',
|
|
177
169
|
'kubernetes_cluster_ui': 'kubernetesClusterUi',
|
|
178
170
|
'kubernetes_clusters': 'kubernetesClusters',
|
|
179
|
-
'lambda_labs': 'lambdaLabs',
|
|
180
|
-
'lambda_labs_studios': 'lambdaLabsStudios',
|
|
181
171
|
'landing_studios': 'landingStudios',
|
|
182
172
|
'lit_logger': 'litLogger',
|
|
183
|
-
'machine_selector_v2': 'machineSelectorV2',
|
|
184
173
|
'marketplace': 'marketplace',
|
|
185
174
|
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
186
175
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
187
176
|
'model_api_dashboard': 'modelApiDashboard',
|
|
188
177
|
'model_api_dashboard_clickhouse': 'modelApiDashboardClickhouse',
|
|
189
178
|
'multicloud_folders': 'multicloudFolders',
|
|
190
|
-
'multicloud_saas': 'multicloudSaas',
|
|
191
179
|
'multiple_studio_versions': 'multipleStudioVersions',
|
|
192
|
-
'nebius': 'nebius',
|
|
193
|
-
'nebius_cpu_studios': 'nebiusCpuStudios',
|
|
194
|
-
'nebius_gpu_studios': 'nebiusGpuStudios',
|
|
195
180
|
'nerf_fs_nonpaying': 'nerfFsNonpaying',
|
|
196
181
|
'onboarding_v2': 'onboardingV2',
|
|
197
182
|
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
198
183
|
'org_usage_limits': 'orgUsageLimits',
|
|
199
|
-
'paygo_free_storage_limit_check': 'paygoFreeStorageLimitCheck',
|
|
200
184
|
'persistent_disk': 'persistentDisk',
|
|
201
185
|
'plugin_distributed': 'pluginDistributed',
|
|
202
186
|
'plugin_inference': 'pluginInference',
|
|
@@ -227,14 +211,12 @@ class V1UserFeatures(object):
|
|
|
227
211
|
'trainium2': 'trainium2',
|
|
228
212
|
'use_internal_data_connection_mounts': 'useInternalDataConnectionMounts',
|
|
229
213
|
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
230
|
-
'voltage_park': 'voltagePark',
|
|
231
|
-
'voltage_park_studios': 'voltageParkStudios',
|
|
232
214
|
'vultr': 'vultr',
|
|
233
215
|
'weka': 'weka',
|
|
234
216
|
'writable_s3_connections': 'writableS3Connections'
|
|
235
217
|
}
|
|
236
218
|
|
|
237
|
-
def __init__(self, academic_tier: 'bool' =None, add_data_v2: '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, b2c_experience: 'bool' =None, byo_machine_type: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloudspace_schedules: 'bool' =None,
|
|
219
|
+
def __init__(self, academic_tier: 'bool' =None, add_data_v2: '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, b2c_experience: 'bool' =None, byo_machine_type: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloudspace_schedules: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, control_center_monitoring: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_persistent_disk: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f236: 'bool' =None, f237: 'bool' =None, f238: 'bool' =None, f239: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, gcp_overprovisioning: 'bool' =None, gcs_connections_optimized: 'bool' =None, gcs_folders: 'bool' =None, gcs_fuse: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, kubernetes_cluster_ui: 'bool' =None, kubernetes_clusters: 'bool' =None, landing_studios: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, model_api_dashboard: 'bool' =None, model_api_dashboard_clickhouse: 'bool' =None, multicloud_folders: 'bool' =None, multiple_studio_versions: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, onboarding_v2: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, persistent_disk: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_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, r2_uploads: 'bool' =None, reserved_machines_tab: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, single_wallet: 'bool' =None, slurm: 'bool' =None, specialised_studios: 'bool' =None, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_sharing_v2: 'bool' =None, studio_version_visibility: 'bool' =None, trainium2: 'bool' =None, use_internal_data_connection_mounts: 'bool' =None, use_rclone_mounts_only: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None, writable_s3_connections: 'bool' =None): # noqa: E501
|
|
238
220
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
239
221
|
self._academic_tier = None
|
|
240
222
|
self._add_data_v2 = None
|
|
@@ -251,19 +233,20 @@ class V1UserFeatures(object):
|
|
|
251
233
|
self._capacity_reservation_dry_run = None
|
|
252
234
|
self._chat_models = None
|
|
253
235
|
self._cloudspace_schedules = None
|
|
254
|
-
self._cloudy_vibe_code = None
|
|
255
236
|
self._code_tab = None
|
|
256
237
|
self._collab_screen_sharing = None
|
|
257
238
|
self._control_center_monitoring = None
|
|
258
239
|
self._cost_attribution_settings = None
|
|
259
240
|
self._custom_app_domain = None
|
|
260
|
-
self._data_connection_flushing_v2 = None
|
|
261
241
|
self._datasets = None
|
|
262
242
|
self._default_one_cluster = None
|
|
263
243
|
self._deployment_persistent_disk = None
|
|
264
244
|
self._drive_v2 = None
|
|
265
245
|
self._enterprise_compute_admin = None
|
|
266
246
|
self._f236 = None
|
|
247
|
+
self._f237 = None
|
|
248
|
+
self._f238 = None
|
|
249
|
+
self._f239 = None
|
|
267
250
|
self._fair_share = None
|
|
268
251
|
self._featured_studios_admin = None
|
|
269
252
|
self._gcp_overprovisioning = None
|
|
@@ -274,27 +257,19 @@ class V1UserFeatures(object):
|
|
|
274
257
|
self._job_artifacts_v2 = None
|
|
275
258
|
self._kubernetes_cluster_ui = None
|
|
276
259
|
self._kubernetes_clusters = None
|
|
277
|
-
self._lambda_labs = None
|
|
278
|
-
self._lambda_labs_studios = None
|
|
279
260
|
self._landing_studios = None
|
|
280
261
|
self._lit_logger = None
|
|
281
|
-
self._machine_selector_v2 = None
|
|
282
262
|
self._marketplace = None
|
|
283
263
|
self._mmt_fault_tolerance = None
|
|
284
264
|
self._mmt_strategy_selector = None
|
|
285
265
|
self._model_api_dashboard = None
|
|
286
266
|
self._model_api_dashboard_clickhouse = None
|
|
287
267
|
self._multicloud_folders = None
|
|
288
|
-
self._multicloud_saas = None
|
|
289
268
|
self._multiple_studio_versions = None
|
|
290
|
-
self._nebius = None
|
|
291
|
-
self._nebius_cpu_studios = None
|
|
292
|
-
self._nebius_gpu_studios = None
|
|
293
269
|
self._nerf_fs_nonpaying = None
|
|
294
270
|
self._onboarding_v2 = None
|
|
295
271
|
self._org_level_member_permissions = None
|
|
296
272
|
self._org_usage_limits = None
|
|
297
|
-
self._paygo_free_storage_limit_check = None
|
|
298
273
|
self._persistent_disk = None
|
|
299
274
|
self._plugin_distributed = None
|
|
300
275
|
self._plugin_inference = None
|
|
@@ -325,8 +300,6 @@ class V1UserFeatures(object):
|
|
|
325
300
|
self._trainium2 = None
|
|
326
301
|
self._use_internal_data_connection_mounts = None
|
|
327
302
|
self._use_rclone_mounts_only = None
|
|
328
|
-
self._voltage_park = None
|
|
329
|
-
self._voltage_park_studios = None
|
|
330
303
|
self._vultr = None
|
|
331
304
|
self._weka = None
|
|
332
305
|
self._writable_s3_connections = None
|
|
@@ -361,8 +334,6 @@ class V1UserFeatures(object):
|
|
|
361
334
|
self.chat_models = chat_models
|
|
362
335
|
if cloudspace_schedules is not None:
|
|
363
336
|
self.cloudspace_schedules = cloudspace_schedules
|
|
364
|
-
if cloudy_vibe_code is not None:
|
|
365
|
-
self.cloudy_vibe_code = cloudy_vibe_code
|
|
366
337
|
if code_tab is not None:
|
|
367
338
|
self.code_tab = code_tab
|
|
368
339
|
if collab_screen_sharing is not None:
|
|
@@ -373,8 +344,6 @@ class V1UserFeatures(object):
|
|
|
373
344
|
self.cost_attribution_settings = cost_attribution_settings
|
|
374
345
|
if custom_app_domain is not None:
|
|
375
346
|
self.custom_app_domain = custom_app_domain
|
|
376
|
-
if data_connection_flushing_v2 is not None:
|
|
377
|
-
self.data_connection_flushing_v2 = data_connection_flushing_v2
|
|
378
347
|
if datasets is not None:
|
|
379
348
|
self.datasets = datasets
|
|
380
349
|
if default_one_cluster is not None:
|
|
@@ -387,6 +356,12 @@ class V1UserFeatures(object):
|
|
|
387
356
|
self.enterprise_compute_admin = enterprise_compute_admin
|
|
388
357
|
if f236 is not None:
|
|
389
358
|
self.f236 = f236
|
|
359
|
+
if f237 is not None:
|
|
360
|
+
self.f237 = f237
|
|
361
|
+
if f238 is not None:
|
|
362
|
+
self.f238 = f238
|
|
363
|
+
if f239 is not None:
|
|
364
|
+
self.f239 = f239
|
|
390
365
|
if fair_share is not None:
|
|
391
366
|
self.fair_share = fair_share
|
|
392
367
|
if featured_studios_admin is not None:
|
|
@@ -407,16 +382,10 @@ class V1UserFeatures(object):
|
|
|
407
382
|
self.kubernetes_cluster_ui = kubernetes_cluster_ui
|
|
408
383
|
if kubernetes_clusters is not None:
|
|
409
384
|
self.kubernetes_clusters = kubernetes_clusters
|
|
410
|
-
if lambda_labs is not None:
|
|
411
|
-
self.lambda_labs = lambda_labs
|
|
412
|
-
if lambda_labs_studios is not None:
|
|
413
|
-
self.lambda_labs_studios = lambda_labs_studios
|
|
414
385
|
if landing_studios is not None:
|
|
415
386
|
self.landing_studios = landing_studios
|
|
416
387
|
if lit_logger is not None:
|
|
417
388
|
self.lit_logger = lit_logger
|
|
418
|
-
if machine_selector_v2 is not None:
|
|
419
|
-
self.machine_selector_v2 = machine_selector_v2
|
|
420
389
|
if marketplace is not None:
|
|
421
390
|
self.marketplace = marketplace
|
|
422
391
|
if mmt_fault_tolerance is not None:
|
|
@@ -429,16 +398,8 @@ class V1UserFeatures(object):
|
|
|
429
398
|
self.model_api_dashboard_clickhouse = model_api_dashboard_clickhouse
|
|
430
399
|
if multicloud_folders is not None:
|
|
431
400
|
self.multicloud_folders = multicloud_folders
|
|
432
|
-
if multicloud_saas is not None:
|
|
433
|
-
self.multicloud_saas = multicloud_saas
|
|
434
401
|
if multiple_studio_versions is not None:
|
|
435
402
|
self.multiple_studio_versions = multiple_studio_versions
|
|
436
|
-
if nebius is not None:
|
|
437
|
-
self.nebius = nebius
|
|
438
|
-
if nebius_cpu_studios is not None:
|
|
439
|
-
self.nebius_cpu_studios = nebius_cpu_studios
|
|
440
|
-
if nebius_gpu_studios is not None:
|
|
441
|
-
self.nebius_gpu_studios = nebius_gpu_studios
|
|
442
403
|
if nerf_fs_nonpaying is not None:
|
|
443
404
|
self.nerf_fs_nonpaying = nerf_fs_nonpaying
|
|
444
405
|
if onboarding_v2 is not None:
|
|
@@ -447,8 +408,6 @@ class V1UserFeatures(object):
|
|
|
447
408
|
self.org_level_member_permissions = org_level_member_permissions
|
|
448
409
|
if org_usage_limits is not None:
|
|
449
410
|
self.org_usage_limits = org_usage_limits
|
|
450
|
-
if paygo_free_storage_limit_check is not None:
|
|
451
|
-
self.paygo_free_storage_limit_check = paygo_free_storage_limit_check
|
|
452
411
|
if persistent_disk is not None:
|
|
453
412
|
self.persistent_disk = persistent_disk
|
|
454
413
|
if plugin_distributed is not None:
|
|
@@ -509,10 +468,6 @@ class V1UserFeatures(object):
|
|
|
509
468
|
self.use_internal_data_connection_mounts = use_internal_data_connection_mounts
|
|
510
469
|
if use_rclone_mounts_only is not None:
|
|
511
470
|
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
512
|
-
if voltage_park is not None:
|
|
513
|
-
self.voltage_park = voltage_park
|
|
514
|
-
if voltage_park_studios is not None:
|
|
515
|
-
self.voltage_park_studios = voltage_park_studios
|
|
516
471
|
if vultr is not None:
|
|
517
472
|
self.vultr = vultr
|
|
518
473
|
if weka is not None:
|
|
@@ -835,27 +790,6 @@ class V1UserFeatures(object):
|
|
|
835
790
|
|
|
836
791
|
self._cloudspace_schedules = cloudspace_schedules
|
|
837
792
|
|
|
838
|
-
@property
|
|
839
|
-
def cloudy_vibe_code(self) -> 'bool':
|
|
840
|
-
"""Gets the cloudy_vibe_code of this V1UserFeatures. # noqa: E501
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
:return: The cloudy_vibe_code of this V1UserFeatures. # noqa: E501
|
|
844
|
-
:rtype: bool
|
|
845
|
-
"""
|
|
846
|
-
return self._cloudy_vibe_code
|
|
847
|
-
|
|
848
|
-
@cloudy_vibe_code.setter
|
|
849
|
-
def cloudy_vibe_code(self, cloudy_vibe_code: 'bool'):
|
|
850
|
-
"""Sets the cloudy_vibe_code of this V1UserFeatures.
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
:param cloudy_vibe_code: The cloudy_vibe_code of this V1UserFeatures. # noqa: E501
|
|
854
|
-
:type: bool
|
|
855
|
-
"""
|
|
856
|
-
|
|
857
|
-
self._cloudy_vibe_code = cloudy_vibe_code
|
|
858
|
-
|
|
859
793
|
@property
|
|
860
794
|
def code_tab(self) -> 'bool':
|
|
861
795
|
"""Gets the code_tab of this V1UserFeatures. # noqa: E501
|
|
@@ -961,27 +895,6 @@ class V1UserFeatures(object):
|
|
|
961
895
|
|
|
962
896
|
self._custom_app_domain = custom_app_domain
|
|
963
897
|
|
|
964
|
-
@property
|
|
965
|
-
def data_connection_flushing_v2(self) -> 'bool':
|
|
966
|
-
"""Gets the data_connection_flushing_v2 of this V1UserFeatures. # noqa: E501
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
:return: The data_connection_flushing_v2 of this V1UserFeatures. # noqa: E501
|
|
970
|
-
:rtype: bool
|
|
971
|
-
"""
|
|
972
|
-
return self._data_connection_flushing_v2
|
|
973
|
-
|
|
974
|
-
@data_connection_flushing_v2.setter
|
|
975
|
-
def data_connection_flushing_v2(self, data_connection_flushing_v2: 'bool'):
|
|
976
|
-
"""Sets the data_connection_flushing_v2 of this V1UserFeatures.
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
:param data_connection_flushing_v2: The data_connection_flushing_v2 of this V1UserFeatures. # noqa: E501
|
|
980
|
-
:type: bool
|
|
981
|
-
"""
|
|
982
|
-
|
|
983
|
-
self._data_connection_flushing_v2 = data_connection_flushing_v2
|
|
984
|
-
|
|
985
898
|
@property
|
|
986
899
|
def datasets(self) -> 'bool':
|
|
987
900
|
"""Gets the datasets of this V1UserFeatures. # noqa: E501
|
|
@@ -1108,6 +1021,69 @@ class V1UserFeatures(object):
|
|
|
1108
1021
|
|
|
1109
1022
|
self._f236 = f236
|
|
1110
1023
|
|
|
1024
|
+
@property
|
|
1025
|
+
def f237(self) -> 'bool':
|
|
1026
|
+
"""Gets the f237 of this V1UserFeatures. # noqa: E501
|
|
1027
|
+
|
|
1028
|
+
|
|
1029
|
+
:return: The f237 of this V1UserFeatures. # noqa: E501
|
|
1030
|
+
:rtype: bool
|
|
1031
|
+
"""
|
|
1032
|
+
return self._f237
|
|
1033
|
+
|
|
1034
|
+
@f237.setter
|
|
1035
|
+
def f237(self, f237: 'bool'):
|
|
1036
|
+
"""Sets the f237 of this V1UserFeatures.
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
:param f237: The f237 of this V1UserFeatures. # noqa: E501
|
|
1040
|
+
:type: bool
|
|
1041
|
+
"""
|
|
1042
|
+
|
|
1043
|
+
self._f237 = f237
|
|
1044
|
+
|
|
1045
|
+
@property
|
|
1046
|
+
def f238(self) -> 'bool':
|
|
1047
|
+
"""Gets the f238 of this V1UserFeatures. # noqa: E501
|
|
1048
|
+
|
|
1049
|
+
|
|
1050
|
+
:return: The f238 of this V1UserFeatures. # noqa: E501
|
|
1051
|
+
:rtype: bool
|
|
1052
|
+
"""
|
|
1053
|
+
return self._f238
|
|
1054
|
+
|
|
1055
|
+
@f238.setter
|
|
1056
|
+
def f238(self, f238: 'bool'):
|
|
1057
|
+
"""Sets the f238 of this V1UserFeatures.
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
:param f238: The f238 of this V1UserFeatures. # noqa: E501
|
|
1061
|
+
:type: bool
|
|
1062
|
+
"""
|
|
1063
|
+
|
|
1064
|
+
self._f238 = f238
|
|
1065
|
+
|
|
1066
|
+
@property
|
|
1067
|
+
def f239(self) -> 'bool':
|
|
1068
|
+
"""Gets the f239 of this V1UserFeatures. # noqa: E501
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
:return: The f239 of this V1UserFeatures. # noqa: E501
|
|
1072
|
+
:rtype: bool
|
|
1073
|
+
"""
|
|
1074
|
+
return self._f239
|
|
1075
|
+
|
|
1076
|
+
@f239.setter
|
|
1077
|
+
def f239(self, f239: 'bool'):
|
|
1078
|
+
"""Sets the f239 of this V1UserFeatures.
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
:param f239: The f239 of this V1UserFeatures. # noqa: E501
|
|
1082
|
+
:type: bool
|
|
1083
|
+
"""
|
|
1084
|
+
|
|
1085
|
+
self._f239 = f239
|
|
1086
|
+
|
|
1111
1087
|
@property
|
|
1112
1088
|
def fair_share(self) -> 'bool':
|
|
1113
1089
|
"""Gets the fair_share of this V1UserFeatures. # noqa: E501
|
|
@@ -1318,48 +1294,6 @@ class V1UserFeatures(object):
|
|
|
1318
1294
|
|
|
1319
1295
|
self._kubernetes_clusters = kubernetes_clusters
|
|
1320
1296
|
|
|
1321
|
-
@property
|
|
1322
|
-
def lambda_labs(self) -> 'bool':
|
|
1323
|
-
"""Gets the lambda_labs of this V1UserFeatures. # noqa: E501
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
:return: The lambda_labs of this V1UserFeatures. # noqa: E501
|
|
1327
|
-
:rtype: bool
|
|
1328
|
-
"""
|
|
1329
|
-
return self._lambda_labs
|
|
1330
|
-
|
|
1331
|
-
@lambda_labs.setter
|
|
1332
|
-
def lambda_labs(self, lambda_labs: 'bool'):
|
|
1333
|
-
"""Sets the lambda_labs of this V1UserFeatures.
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
:param lambda_labs: The lambda_labs of this V1UserFeatures. # noqa: E501
|
|
1337
|
-
:type: bool
|
|
1338
|
-
"""
|
|
1339
|
-
|
|
1340
|
-
self._lambda_labs = lambda_labs
|
|
1341
|
-
|
|
1342
|
-
@property
|
|
1343
|
-
def lambda_labs_studios(self) -> 'bool':
|
|
1344
|
-
"""Gets the lambda_labs_studios of this V1UserFeatures. # noqa: E501
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
:return: The lambda_labs_studios of this V1UserFeatures. # noqa: E501
|
|
1348
|
-
:rtype: bool
|
|
1349
|
-
"""
|
|
1350
|
-
return self._lambda_labs_studios
|
|
1351
|
-
|
|
1352
|
-
@lambda_labs_studios.setter
|
|
1353
|
-
def lambda_labs_studios(self, lambda_labs_studios: 'bool'):
|
|
1354
|
-
"""Sets the lambda_labs_studios of this V1UserFeatures.
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
:param lambda_labs_studios: The lambda_labs_studios of this V1UserFeatures. # noqa: E501
|
|
1358
|
-
:type: bool
|
|
1359
|
-
"""
|
|
1360
|
-
|
|
1361
|
-
self._lambda_labs_studios = lambda_labs_studios
|
|
1362
|
-
|
|
1363
1297
|
@property
|
|
1364
1298
|
def landing_studios(self) -> 'bool':
|
|
1365
1299
|
"""Gets the landing_studios of this V1UserFeatures. # noqa: E501
|
|
@@ -1402,27 +1336,6 @@ class V1UserFeatures(object):
|
|
|
1402
1336
|
|
|
1403
1337
|
self._lit_logger = lit_logger
|
|
1404
1338
|
|
|
1405
|
-
@property
|
|
1406
|
-
def machine_selector_v2(self) -> 'bool':
|
|
1407
|
-
"""Gets the machine_selector_v2 of this V1UserFeatures. # noqa: E501
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
:return: The machine_selector_v2 of this V1UserFeatures. # noqa: E501
|
|
1411
|
-
:rtype: bool
|
|
1412
|
-
"""
|
|
1413
|
-
return self._machine_selector_v2
|
|
1414
|
-
|
|
1415
|
-
@machine_selector_v2.setter
|
|
1416
|
-
def machine_selector_v2(self, machine_selector_v2: 'bool'):
|
|
1417
|
-
"""Sets the machine_selector_v2 of this V1UserFeatures.
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
:param machine_selector_v2: The machine_selector_v2 of this V1UserFeatures. # noqa: E501
|
|
1421
|
-
:type: bool
|
|
1422
|
-
"""
|
|
1423
|
-
|
|
1424
|
-
self._machine_selector_v2 = machine_selector_v2
|
|
1425
|
-
|
|
1426
1339
|
@property
|
|
1427
1340
|
def marketplace(self) -> 'bool':
|
|
1428
1341
|
"""Gets the marketplace of this V1UserFeatures. # noqa: E501
|
|
@@ -1549,27 +1462,6 @@ class V1UserFeatures(object):
|
|
|
1549
1462
|
|
|
1550
1463
|
self._multicloud_folders = multicloud_folders
|
|
1551
1464
|
|
|
1552
|
-
@property
|
|
1553
|
-
def multicloud_saas(self) -> 'bool':
|
|
1554
|
-
"""Gets the multicloud_saas of this V1UserFeatures. # noqa: E501
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
:return: The multicloud_saas of this V1UserFeatures. # noqa: E501
|
|
1558
|
-
:rtype: bool
|
|
1559
|
-
"""
|
|
1560
|
-
return self._multicloud_saas
|
|
1561
|
-
|
|
1562
|
-
@multicloud_saas.setter
|
|
1563
|
-
def multicloud_saas(self, multicloud_saas: 'bool'):
|
|
1564
|
-
"""Sets the multicloud_saas of this V1UserFeatures.
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
:param multicloud_saas: The multicloud_saas of this V1UserFeatures. # noqa: E501
|
|
1568
|
-
:type: bool
|
|
1569
|
-
"""
|
|
1570
|
-
|
|
1571
|
-
self._multicloud_saas = multicloud_saas
|
|
1572
|
-
|
|
1573
1465
|
@property
|
|
1574
1466
|
def multiple_studio_versions(self) -> 'bool':
|
|
1575
1467
|
"""Gets the multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
@@ -1591,69 +1483,6 @@ class V1UserFeatures(object):
|
|
|
1591
1483
|
|
|
1592
1484
|
self._multiple_studio_versions = multiple_studio_versions
|
|
1593
1485
|
|
|
1594
|
-
@property
|
|
1595
|
-
def nebius(self) -> 'bool':
|
|
1596
|
-
"""Gets the nebius of this V1UserFeatures. # noqa: E501
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
:return: The nebius of this V1UserFeatures. # noqa: E501
|
|
1600
|
-
:rtype: bool
|
|
1601
|
-
"""
|
|
1602
|
-
return self._nebius
|
|
1603
|
-
|
|
1604
|
-
@nebius.setter
|
|
1605
|
-
def nebius(self, nebius: 'bool'):
|
|
1606
|
-
"""Sets the nebius of this V1UserFeatures.
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
:param nebius: The nebius of this V1UserFeatures. # noqa: E501
|
|
1610
|
-
:type: bool
|
|
1611
|
-
"""
|
|
1612
|
-
|
|
1613
|
-
self._nebius = nebius
|
|
1614
|
-
|
|
1615
|
-
@property
|
|
1616
|
-
def nebius_cpu_studios(self) -> 'bool':
|
|
1617
|
-
"""Gets the nebius_cpu_studios of this V1UserFeatures. # noqa: E501
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
:return: The nebius_cpu_studios of this V1UserFeatures. # noqa: E501
|
|
1621
|
-
:rtype: bool
|
|
1622
|
-
"""
|
|
1623
|
-
return self._nebius_cpu_studios
|
|
1624
|
-
|
|
1625
|
-
@nebius_cpu_studios.setter
|
|
1626
|
-
def nebius_cpu_studios(self, nebius_cpu_studios: 'bool'):
|
|
1627
|
-
"""Sets the nebius_cpu_studios of this V1UserFeatures.
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
:param nebius_cpu_studios: The nebius_cpu_studios of this V1UserFeatures. # noqa: E501
|
|
1631
|
-
:type: bool
|
|
1632
|
-
"""
|
|
1633
|
-
|
|
1634
|
-
self._nebius_cpu_studios = nebius_cpu_studios
|
|
1635
|
-
|
|
1636
|
-
@property
|
|
1637
|
-
def nebius_gpu_studios(self) -> 'bool':
|
|
1638
|
-
"""Gets the nebius_gpu_studios of this V1UserFeatures. # noqa: E501
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
:return: The nebius_gpu_studios of this V1UserFeatures. # noqa: E501
|
|
1642
|
-
:rtype: bool
|
|
1643
|
-
"""
|
|
1644
|
-
return self._nebius_gpu_studios
|
|
1645
|
-
|
|
1646
|
-
@nebius_gpu_studios.setter
|
|
1647
|
-
def nebius_gpu_studios(self, nebius_gpu_studios: 'bool'):
|
|
1648
|
-
"""Sets the nebius_gpu_studios of this V1UserFeatures.
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
:param nebius_gpu_studios: The nebius_gpu_studios of this V1UserFeatures. # noqa: E501
|
|
1652
|
-
:type: bool
|
|
1653
|
-
"""
|
|
1654
|
-
|
|
1655
|
-
self._nebius_gpu_studios = nebius_gpu_studios
|
|
1656
|
-
|
|
1657
1486
|
@property
|
|
1658
1487
|
def nerf_fs_nonpaying(self) -> 'bool':
|
|
1659
1488
|
"""Gets the nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
|
|
@@ -1738,27 +1567,6 @@ class V1UserFeatures(object):
|
|
|
1738
1567
|
|
|
1739
1568
|
self._org_usage_limits = org_usage_limits
|
|
1740
1569
|
|
|
1741
|
-
@property
|
|
1742
|
-
def paygo_free_storage_limit_check(self) -> 'bool':
|
|
1743
|
-
"""Gets the paygo_free_storage_limit_check of this V1UserFeatures. # noqa: E501
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
:return: The paygo_free_storage_limit_check of this V1UserFeatures. # noqa: E501
|
|
1747
|
-
:rtype: bool
|
|
1748
|
-
"""
|
|
1749
|
-
return self._paygo_free_storage_limit_check
|
|
1750
|
-
|
|
1751
|
-
@paygo_free_storage_limit_check.setter
|
|
1752
|
-
def paygo_free_storage_limit_check(self, paygo_free_storage_limit_check: 'bool'):
|
|
1753
|
-
"""Sets the paygo_free_storage_limit_check of this V1UserFeatures.
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
:param paygo_free_storage_limit_check: The paygo_free_storage_limit_check of this V1UserFeatures. # noqa: E501
|
|
1757
|
-
:type: bool
|
|
1758
|
-
"""
|
|
1759
|
-
|
|
1760
|
-
self._paygo_free_storage_limit_check = paygo_free_storage_limit_check
|
|
1761
|
-
|
|
1762
1570
|
@property
|
|
1763
1571
|
def persistent_disk(self) -> 'bool':
|
|
1764
1572
|
"""Gets the persistent_disk of this V1UserFeatures. # noqa: E501
|
|
@@ -2389,48 +2197,6 @@ class V1UserFeatures(object):
|
|
|
2389
2197
|
|
|
2390
2198
|
self._use_rclone_mounts_only = use_rclone_mounts_only
|
|
2391
2199
|
|
|
2392
|
-
@property
|
|
2393
|
-
def voltage_park(self) -> 'bool':
|
|
2394
|
-
"""Gets the voltage_park of this V1UserFeatures. # noqa: E501
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
:return: The voltage_park of this V1UserFeatures. # noqa: E501
|
|
2398
|
-
:rtype: bool
|
|
2399
|
-
"""
|
|
2400
|
-
return self._voltage_park
|
|
2401
|
-
|
|
2402
|
-
@voltage_park.setter
|
|
2403
|
-
def voltage_park(self, voltage_park: 'bool'):
|
|
2404
|
-
"""Sets the voltage_park of this V1UserFeatures.
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
:param voltage_park: The voltage_park of this V1UserFeatures. # noqa: E501
|
|
2408
|
-
:type: bool
|
|
2409
|
-
"""
|
|
2410
|
-
|
|
2411
|
-
self._voltage_park = voltage_park
|
|
2412
|
-
|
|
2413
|
-
@property
|
|
2414
|
-
def voltage_park_studios(self) -> 'bool':
|
|
2415
|
-
"""Gets the voltage_park_studios of this V1UserFeatures. # noqa: E501
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
:return: The voltage_park_studios of this V1UserFeatures. # noqa: E501
|
|
2419
|
-
:rtype: bool
|
|
2420
|
-
"""
|
|
2421
|
-
return self._voltage_park_studios
|
|
2422
|
-
|
|
2423
|
-
@voltage_park_studios.setter
|
|
2424
|
-
def voltage_park_studios(self, voltage_park_studios: 'bool'):
|
|
2425
|
-
"""Sets the voltage_park_studios of this V1UserFeatures.
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
:param voltage_park_studios: The voltage_park_studios of this V1UserFeatures. # noqa: E501
|
|
2429
|
-
:type: bool
|
|
2430
|
-
"""
|
|
2431
|
-
|
|
2432
|
-
self._voltage_park_studios = voltage_park_studios
|
|
2433
|
-
|
|
2434
2200
|
@property
|
|
2435
2201
|
def vultr(self) -> 'bool':
|
|
2436
2202
|
"""Gets the vultr of this V1UserFeatures. # noqa: E501
|
|
@@ -40,6 +40,7 @@ class V1VolumeState(object):
|
|
|
40
40
|
UNSPECIFIED = "VOLUME_STATE_UNSPECIFIED"
|
|
41
41
|
ATTACHED = "VOLUME_STATE_ATTACHED"
|
|
42
42
|
DETACHED = "VOLUME_STATE_DETACHED"
|
|
43
|
+
OVERPROVISIONED = "VOLUME_STATE_OVERPROVISIONED"
|
|
43
44
|
"""
|
|
44
45
|
Attributes:
|
|
45
46
|
swagger_types (dict): The key is attribute name
|