lightning-sdk 0.2.14__py3-none-any.whl → 0.2.15__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/base_studio_api.py +73 -0
- lightning_sdk/api/license_api.py +48 -0
- lightning_sdk/api/llm_api.py +50 -8
- lightning_sdk/api/studio_api.py +47 -1
- lightning_sdk/base_studio.py +70 -0
- lightning_sdk/cli/delete.py +6 -8
- lightning_sdk/cli/download.py +25 -0
- lightning_sdk/cli/serve.py +82 -30
- lightning_sdk/cli/teamspace_menu.py +9 -1
- lightning_sdk/cli/upload.py +0 -1
- lightning_sdk/lightning_cloud/openapi/__init__.py +11 -0
- lightning_sdk/lightning_cloud/openapi/api/__init__.py +1 -0
- lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +9 -1
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +121 -0
- lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +178 -0
- lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +243 -2
- lightning_sdk/lightning_cloud/openapi/api/product_license_service_api.py +525 -0
- lightning_sdk/lightning_cloud/openapi/configuration.py +1 -1
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +10 -0
- lightning_sdk/lightning_cloud/openapi/models/assistant_id_conversations_body.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/endpoints_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/model_id_versions_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body.py +6 -6
- lightning_sdk/lightning_cloud/openapi/models/project_id_storage_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/update.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_aws_direct_v1.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_provider.py +3 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_config.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloudflare_v1.py +66 -66
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_upload.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_upload.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_api.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_state.py +4 -4
- lightning_sdk/lightning_cloud/openapi/models/v1_endpoint.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_ge_list_deployment_routing_telemetry_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_job_stats_response.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_balance_response.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_job_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_product_licenses_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +17 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_modify_filesystem_volume_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline.py +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_state.py +111 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_presigned_url.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_product_license.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_product_license_check_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +17 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_r2_data_connection.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_trigger_filesystem_upgrade_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_upload_project_artifact_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_usage_report.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +295 -113
- lightning_sdk/lightning_cloud/rest_client.py +4 -0
- lightning_sdk/llm/llm.py +88 -40
- lightning_sdk/services/__init__.py +1 -1
- lightning_sdk/services/license.py +236 -0
- lightning_sdk/studio.py +30 -0
- {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.15.dist-info}/METADATA +1 -1
- {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.15.dist-info}/RECORD +83 -68
- /lightning_sdk/services/{finetune/__init__.py → finetune_llm.py} +0 -0
- {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.15.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.15.dist-info}/WHEEL +0 -0
- {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.15.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.2.14.dist-info → lightning_sdk-0.2.15.dist-info}/top_level.txt +0 -0
|
@@ -46,6 +46,7 @@ class V1UserFeatures(object):
|
|
|
46
46
|
'ai_hub_monetization': 'bool',
|
|
47
47
|
'auto_fast_load': 'bool',
|
|
48
48
|
'auto_join_orgs': 'bool',
|
|
49
|
+
'auto_top_up': 'bool',
|
|
49
50
|
'b2c_experience': 'bool',
|
|
50
51
|
'byoc_litcr': 'bool',
|
|
51
52
|
'cap_add': 'list[str]',
|
|
@@ -54,18 +55,18 @@ class V1UserFeatures(object):
|
|
|
54
55
|
'capacity_reservation_dry_run': 'bool',
|
|
55
56
|
'chat_models': 'bool',
|
|
56
57
|
'cloud_space_environment_templates': 'bool',
|
|
58
|
+
'cloudy_vibe_code': 'bool',
|
|
57
59
|
'code_tab': 'bool',
|
|
58
60
|
'collab_screen_sharing': 'bool',
|
|
59
61
|
'concurrent_gpu_limit': 'bool',
|
|
60
62
|
'cost_attribution_settings': 'bool',
|
|
61
63
|
'custom_app_domain': 'bool',
|
|
62
|
-
'custom_instance_types': 'bool',
|
|
63
64
|
'datasets': 'bool',
|
|
64
65
|
'default_one_cluster': 'bool',
|
|
65
66
|
'deployment_alerts': 'bool',
|
|
66
67
|
'deployment_persistent_disk': 'bool',
|
|
68
|
+
'deployment_requests_tab': 'bool',
|
|
67
69
|
'dgx_cloud': 'bool',
|
|
68
|
-
'doc_helper_chat': 'bool',
|
|
69
70
|
'docs_agent': 'bool',
|
|
70
71
|
'drive_v2': 'bool',
|
|
71
72
|
'enable_storage_limits': 'bool',
|
|
@@ -73,22 +74,27 @@ class V1UserFeatures(object):
|
|
|
73
74
|
'fair_share': 'bool',
|
|
74
75
|
'featured_studios_admin': 'bool',
|
|
75
76
|
'filestore': 'bool',
|
|
76
|
-
'
|
|
77
|
+
'gcs_folders': 'bool',
|
|
77
78
|
'inactive_notify_delete': 'bool',
|
|
78
79
|
'instant_capacity_reservation': 'bool',
|
|
79
80
|
'job_artifacts_v2': 'bool',
|
|
80
81
|
'lambda_labs': 'bool',
|
|
81
82
|
'landing_studios': 'bool',
|
|
83
|
+
'lightning_cloud': 'bool',
|
|
82
84
|
'lit_logger': 'bool',
|
|
85
|
+
'manage_storage_costs': 'bool',
|
|
83
86
|
'marketplace': 'bool',
|
|
84
87
|
'mmt_fault_tolerance': 'bool',
|
|
85
88
|
'mmt_strategy_selector': 'bool',
|
|
89
|
+
'multicloud_folders': 'bool',
|
|
86
90
|
'multicloud_saas': 'bool',
|
|
87
91
|
'multiple_studio_versions': 'bool',
|
|
92
|
+
'nebius': 'bool',
|
|
93
|
+
'neocloud_studios': 'bool',
|
|
88
94
|
'nerf_fs_nonpaying': 'bool',
|
|
89
|
-
'org_admin_alerts': 'bool',
|
|
90
95
|
'org_level_member_permissions': 'bool',
|
|
91
96
|
'org_usage_limits': 'bool',
|
|
97
|
+
'paygo_free_storage_limit_check': 'bool',
|
|
92
98
|
'pipelines': 'bool',
|
|
93
99
|
'plugin_distributed': 'bool',
|
|
94
100
|
'plugin_inference': 'bool',
|
|
@@ -99,6 +105,7 @@ class V1UserFeatures(object):
|
|
|
99
105
|
'plugin_sweeps': 'bool',
|
|
100
106
|
'pricing_updates': 'bool',
|
|
101
107
|
'product_generator': 'bool',
|
|
108
|
+
'product_license': 'bool',
|
|
102
109
|
'project_selector': 'bool',
|
|
103
110
|
'publish_pipelines': 'bool',
|
|
104
111
|
'r2_data_connections': 'bool',
|
|
@@ -109,9 +116,9 @@ class V1UserFeatures(object):
|
|
|
109
116
|
'single_wallet': 'bool',
|
|
110
117
|
'slurm': 'bool',
|
|
111
118
|
'slurm_machine_selector': 'bool',
|
|
119
|
+
'stable_vscode_server': 'bool',
|
|
112
120
|
'stop_ide_container_on_shutdown': 'bool',
|
|
113
121
|
'studio_config': 'bool',
|
|
114
|
-
'studio_deployment': 'bool',
|
|
115
122
|
'studio_on_stop': 'bool',
|
|
116
123
|
'studio_version_visibility': 'bool',
|
|
117
124
|
'studios_dashboard': 'bool',
|
|
@@ -130,6 +137,7 @@ class V1UserFeatures(object):
|
|
|
130
137
|
'ai_hub_monetization': 'aiHubMonetization',
|
|
131
138
|
'auto_fast_load': 'autoFastLoad',
|
|
132
139
|
'auto_join_orgs': 'autoJoinOrgs',
|
|
140
|
+
'auto_top_up': 'autoTopUp',
|
|
133
141
|
'b2c_experience': 'b2cExperience',
|
|
134
142
|
'byoc_litcr': 'byocLitcr',
|
|
135
143
|
'cap_add': 'capAdd',
|
|
@@ -138,18 +146,18 @@ class V1UserFeatures(object):
|
|
|
138
146
|
'capacity_reservation_dry_run': 'capacityReservationDryRun',
|
|
139
147
|
'chat_models': 'chatModels',
|
|
140
148
|
'cloud_space_environment_templates': 'cloudSpaceEnvironmentTemplates',
|
|
149
|
+
'cloudy_vibe_code': 'cloudyVibeCode',
|
|
141
150
|
'code_tab': 'codeTab',
|
|
142
151
|
'collab_screen_sharing': 'collabScreenSharing',
|
|
143
152
|
'concurrent_gpu_limit': 'concurrentGpuLimit',
|
|
144
153
|
'cost_attribution_settings': 'costAttributionSettings',
|
|
145
154
|
'custom_app_domain': 'customAppDomain',
|
|
146
|
-
'custom_instance_types': 'customInstanceTypes',
|
|
147
155
|
'datasets': 'datasets',
|
|
148
156
|
'default_one_cluster': 'defaultOneCluster',
|
|
149
157
|
'deployment_alerts': 'deploymentAlerts',
|
|
150
158
|
'deployment_persistent_disk': 'deploymentPersistentDisk',
|
|
159
|
+
'deployment_requests_tab': 'deploymentRequestsTab',
|
|
151
160
|
'dgx_cloud': 'dgxCloud',
|
|
152
|
-
'doc_helper_chat': 'docHelperChat',
|
|
153
161
|
'docs_agent': 'docsAgent',
|
|
154
162
|
'drive_v2': 'driveV2',
|
|
155
163
|
'enable_storage_limits': 'enableStorageLimits',
|
|
@@ -157,22 +165,27 @@ class V1UserFeatures(object):
|
|
|
157
165
|
'fair_share': 'fairShare',
|
|
158
166
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
159
167
|
'filestore': 'filestore',
|
|
160
|
-
'
|
|
168
|
+
'gcs_folders': 'gcsFolders',
|
|
161
169
|
'inactive_notify_delete': 'inactiveNotifyDelete',
|
|
162
170
|
'instant_capacity_reservation': 'instantCapacityReservation',
|
|
163
171
|
'job_artifacts_v2': 'jobArtifactsV2',
|
|
164
172
|
'lambda_labs': 'lambdaLabs',
|
|
165
173
|
'landing_studios': 'landingStudios',
|
|
174
|
+
'lightning_cloud': 'lightningCloud',
|
|
166
175
|
'lit_logger': 'litLogger',
|
|
176
|
+
'manage_storage_costs': 'manageStorageCosts',
|
|
167
177
|
'marketplace': 'marketplace',
|
|
168
178
|
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
169
179
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
180
|
+
'multicloud_folders': 'multicloudFolders',
|
|
170
181
|
'multicloud_saas': 'multicloudSaas',
|
|
171
182
|
'multiple_studio_versions': 'multipleStudioVersions',
|
|
183
|
+
'nebius': 'nebius',
|
|
184
|
+
'neocloud_studios': 'neocloudStudios',
|
|
172
185
|
'nerf_fs_nonpaying': 'nerfFsNonpaying',
|
|
173
|
-
'org_admin_alerts': 'orgAdminAlerts',
|
|
174
186
|
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
175
187
|
'org_usage_limits': 'orgUsageLimits',
|
|
188
|
+
'paygo_free_storage_limit_check': 'paygoFreeStorageLimitCheck',
|
|
176
189
|
'pipelines': 'pipelines',
|
|
177
190
|
'plugin_distributed': 'pluginDistributed',
|
|
178
191
|
'plugin_inference': 'pluginInference',
|
|
@@ -183,6 +196,7 @@ class V1UserFeatures(object):
|
|
|
183
196
|
'plugin_sweeps': 'pluginSweeps',
|
|
184
197
|
'pricing_updates': 'pricingUpdates',
|
|
185
198
|
'product_generator': 'productGenerator',
|
|
199
|
+
'product_license': 'productLicense',
|
|
186
200
|
'project_selector': 'projectSelector',
|
|
187
201
|
'publish_pipelines': 'publishPipelines',
|
|
188
202
|
'r2_data_connections': 'r2DataConnections',
|
|
@@ -193,9 +207,9 @@ class V1UserFeatures(object):
|
|
|
193
207
|
'single_wallet': 'singleWallet',
|
|
194
208
|
'slurm': 'slurm',
|
|
195
209
|
'slurm_machine_selector': 'slurmMachineSelector',
|
|
210
|
+
'stable_vscode_server': 'stableVscodeServer',
|
|
196
211
|
'stop_ide_container_on_shutdown': 'stopIdeContainerOnShutdown',
|
|
197
212
|
'studio_config': 'studioConfig',
|
|
198
|
-
'studio_deployment': 'studioDeployment',
|
|
199
213
|
'studio_on_stop': 'studioOnStop',
|
|
200
214
|
'studio_version_visibility': 'studioVersionVisibility',
|
|
201
215
|
'studios_dashboard': 'studiosDashboard',
|
|
@@ -208,13 +222,14 @@ class V1UserFeatures(object):
|
|
|
208
222
|
'weka': 'weka'
|
|
209
223
|
}
|
|
210
224
|
|
|
211
|
-
def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, b2c_experience: 'bool' =None, byoc_litcr: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloud_space_environment_templates: 'bool' =None,
|
|
225
|
+
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, b2c_experience: 'bool' =None, byoc_litcr: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloud_space_environment_templates: 'bool' =None, cloudy_vibe_code: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, concurrent_gpu_limit: '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, inactive_notify_delete: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, lambda_labs: 'bool' =None, landing_studios: 'bool' =None, lightning_cloud: 'bool' =None, lit_logger: 'bool' =None, manage_storage_costs: '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, 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, 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, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, single_wallet: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, stable_vscode_server: 'bool' =None, stop_ide_container_on_shutdown: 'bool' =None, studio_config: 'bool' =None, studio_on_stop: 'bool' =None, studio_version_visibility: 'bool' =None, studios_dashboard: 'bool' =None, studios_dashboard_system_metrics: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, voltage_park: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
|
|
212
226
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
213
227
|
self._affiliate_links = None
|
|
214
228
|
self._agents_v2 = None
|
|
215
229
|
self._ai_hub_monetization = None
|
|
216
230
|
self._auto_fast_load = None
|
|
217
231
|
self._auto_join_orgs = None
|
|
232
|
+
self._auto_top_up = None
|
|
218
233
|
self._b2c_experience = None
|
|
219
234
|
self._byoc_litcr = None
|
|
220
235
|
self._cap_add = None
|
|
@@ -223,18 +238,18 @@ class V1UserFeatures(object):
|
|
|
223
238
|
self._capacity_reservation_dry_run = None
|
|
224
239
|
self._chat_models = None
|
|
225
240
|
self._cloud_space_environment_templates = None
|
|
241
|
+
self._cloudy_vibe_code = None
|
|
226
242
|
self._code_tab = None
|
|
227
243
|
self._collab_screen_sharing = None
|
|
228
244
|
self._concurrent_gpu_limit = None
|
|
229
245
|
self._cost_attribution_settings = None
|
|
230
246
|
self._custom_app_domain = None
|
|
231
|
-
self._custom_instance_types = None
|
|
232
247
|
self._datasets = None
|
|
233
248
|
self._default_one_cluster = None
|
|
234
249
|
self._deployment_alerts = None
|
|
235
250
|
self._deployment_persistent_disk = None
|
|
251
|
+
self._deployment_requests_tab = None
|
|
236
252
|
self._dgx_cloud = None
|
|
237
|
-
self._doc_helper_chat = None
|
|
238
253
|
self._docs_agent = None
|
|
239
254
|
self._drive_v2 = None
|
|
240
255
|
self._enable_storage_limits = None
|
|
@@ -242,22 +257,27 @@ class V1UserFeatures(object):
|
|
|
242
257
|
self._fair_share = None
|
|
243
258
|
self._featured_studios_admin = None
|
|
244
259
|
self._filestore = None
|
|
245
|
-
self.
|
|
260
|
+
self._gcs_folders = None
|
|
246
261
|
self._inactive_notify_delete = None
|
|
247
262
|
self._instant_capacity_reservation = None
|
|
248
263
|
self._job_artifacts_v2 = None
|
|
249
264
|
self._lambda_labs = None
|
|
250
265
|
self._landing_studios = None
|
|
266
|
+
self._lightning_cloud = None
|
|
251
267
|
self._lit_logger = None
|
|
268
|
+
self._manage_storage_costs = None
|
|
252
269
|
self._marketplace = None
|
|
253
270
|
self._mmt_fault_tolerance = None
|
|
254
271
|
self._mmt_strategy_selector = None
|
|
272
|
+
self._multicloud_folders = None
|
|
255
273
|
self._multicloud_saas = None
|
|
256
274
|
self._multiple_studio_versions = None
|
|
275
|
+
self._nebius = None
|
|
276
|
+
self._neocloud_studios = None
|
|
257
277
|
self._nerf_fs_nonpaying = None
|
|
258
|
-
self._org_admin_alerts = None
|
|
259
278
|
self._org_level_member_permissions = None
|
|
260
279
|
self._org_usage_limits = None
|
|
280
|
+
self._paygo_free_storage_limit_check = None
|
|
261
281
|
self._pipelines = None
|
|
262
282
|
self._plugin_distributed = None
|
|
263
283
|
self._plugin_inference = None
|
|
@@ -268,6 +288,7 @@ class V1UserFeatures(object):
|
|
|
268
288
|
self._plugin_sweeps = None
|
|
269
289
|
self._pricing_updates = None
|
|
270
290
|
self._product_generator = None
|
|
291
|
+
self._product_license = None
|
|
271
292
|
self._project_selector = None
|
|
272
293
|
self._publish_pipelines = None
|
|
273
294
|
self._r2_data_connections = None
|
|
@@ -278,9 +299,9 @@ class V1UserFeatures(object):
|
|
|
278
299
|
self._single_wallet = None
|
|
279
300
|
self._slurm = None
|
|
280
301
|
self._slurm_machine_selector = None
|
|
302
|
+
self._stable_vscode_server = None
|
|
281
303
|
self._stop_ide_container_on_shutdown = None
|
|
282
304
|
self._studio_config = None
|
|
283
|
-
self._studio_deployment = None
|
|
284
305
|
self._studio_on_stop = None
|
|
285
306
|
self._studio_version_visibility = None
|
|
286
307
|
self._studios_dashboard = None
|
|
@@ -302,6 +323,8 @@ class V1UserFeatures(object):
|
|
|
302
323
|
self.auto_fast_load = auto_fast_load
|
|
303
324
|
if auto_join_orgs is not None:
|
|
304
325
|
self.auto_join_orgs = auto_join_orgs
|
|
326
|
+
if auto_top_up is not None:
|
|
327
|
+
self.auto_top_up = auto_top_up
|
|
305
328
|
if b2c_experience is not None:
|
|
306
329
|
self.b2c_experience = b2c_experience
|
|
307
330
|
if byoc_litcr is not None:
|
|
@@ -318,6 +341,8 @@ class V1UserFeatures(object):
|
|
|
318
341
|
self.chat_models = chat_models
|
|
319
342
|
if cloud_space_environment_templates is not None:
|
|
320
343
|
self.cloud_space_environment_templates = cloud_space_environment_templates
|
|
344
|
+
if cloudy_vibe_code is not None:
|
|
345
|
+
self.cloudy_vibe_code = cloudy_vibe_code
|
|
321
346
|
if code_tab is not None:
|
|
322
347
|
self.code_tab = code_tab
|
|
323
348
|
if collab_screen_sharing is not None:
|
|
@@ -328,8 +353,6 @@ class V1UserFeatures(object):
|
|
|
328
353
|
self.cost_attribution_settings = cost_attribution_settings
|
|
329
354
|
if custom_app_domain is not None:
|
|
330
355
|
self.custom_app_domain = custom_app_domain
|
|
331
|
-
if custom_instance_types is not None:
|
|
332
|
-
self.custom_instance_types = custom_instance_types
|
|
333
356
|
if datasets is not None:
|
|
334
357
|
self.datasets = datasets
|
|
335
358
|
if default_one_cluster is not None:
|
|
@@ -338,10 +361,10 @@ class V1UserFeatures(object):
|
|
|
338
361
|
self.deployment_alerts = deployment_alerts
|
|
339
362
|
if deployment_persistent_disk is not None:
|
|
340
363
|
self.deployment_persistent_disk = deployment_persistent_disk
|
|
364
|
+
if deployment_requests_tab is not None:
|
|
365
|
+
self.deployment_requests_tab = deployment_requests_tab
|
|
341
366
|
if dgx_cloud is not None:
|
|
342
367
|
self.dgx_cloud = dgx_cloud
|
|
343
|
-
if doc_helper_chat is not None:
|
|
344
|
-
self.doc_helper_chat = doc_helper_chat
|
|
345
368
|
if docs_agent is not None:
|
|
346
369
|
self.docs_agent = docs_agent
|
|
347
370
|
if drive_v2 is not None:
|
|
@@ -356,8 +379,8 @@ class V1UserFeatures(object):
|
|
|
356
379
|
self.featured_studios_admin = featured_studios_admin
|
|
357
380
|
if filestore is not None:
|
|
358
381
|
self.filestore = filestore
|
|
359
|
-
if
|
|
360
|
-
self.
|
|
382
|
+
if gcs_folders is not None:
|
|
383
|
+
self.gcs_folders = gcs_folders
|
|
361
384
|
if inactive_notify_delete is not None:
|
|
362
385
|
self.inactive_notify_delete = inactive_notify_delete
|
|
363
386
|
if instant_capacity_reservation is not None:
|
|
@@ -368,26 +391,36 @@ class V1UserFeatures(object):
|
|
|
368
391
|
self.lambda_labs = lambda_labs
|
|
369
392
|
if landing_studios is not None:
|
|
370
393
|
self.landing_studios = landing_studios
|
|
394
|
+
if lightning_cloud is not None:
|
|
395
|
+
self.lightning_cloud = lightning_cloud
|
|
371
396
|
if lit_logger is not None:
|
|
372
397
|
self.lit_logger = lit_logger
|
|
398
|
+
if manage_storage_costs is not None:
|
|
399
|
+
self.manage_storage_costs = manage_storage_costs
|
|
373
400
|
if marketplace is not None:
|
|
374
401
|
self.marketplace = marketplace
|
|
375
402
|
if mmt_fault_tolerance is not None:
|
|
376
403
|
self.mmt_fault_tolerance = mmt_fault_tolerance
|
|
377
404
|
if mmt_strategy_selector is not None:
|
|
378
405
|
self.mmt_strategy_selector = mmt_strategy_selector
|
|
406
|
+
if multicloud_folders is not None:
|
|
407
|
+
self.multicloud_folders = multicloud_folders
|
|
379
408
|
if multicloud_saas is not None:
|
|
380
409
|
self.multicloud_saas = multicloud_saas
|
|
381
410
|
if multiple_studio_versions is not None:
|
|
382
411
|
self.multiple_studio_versions = multiple_studio_versions
|
|
412
|
+
if nebius is not None:
|
|
413
|
+
self.nebius = nebius
|
|
414
|
+
if neocloud_studios is not None:
|
|
415
|
+
self.neocloud_studios = neocloud_studios
|
|
383
416
|
if nerf_fs_nonpaying is not None:
|
|
384
417
|
self.nerf_fs_nonpaying = nerf_fs_nonpaying
|
|
385
|
-
if org_admin_alerts is not None:
|
|
386
|
-
self.org_admin_alerts = org_admin_alerts
|
|
387
418
|
if org_level_member_permissions is not None:
|
|
388
419
|
self.org_level_member_permissions = org_level_member_permissions
|
|
389
420
|
if org_usage_limits is not None:
|
|
390
421
|
self.org_usage_limits = org_usage_limits
|
|
422
|
+
if paygo_free_storage_limit_check is not None:
|
|
423
|
+
self.paygo_free_storage_limit_check = paygo_free_storage_limit_check
|
|
391
424
|
if pipelines is not None:
|
|
392
425
|
self.pipelines = pipelines
|
|
393
426
|
if plugin_distributed is not None:
|
|
@@ -408,6 +441,8 @@ class V1UserFeatures(object):
|
|
|
408
441
|
self.pricing_updates = pricing_updates
|
|
409
442
|
if product_generator is not None:
|
|
410
443
|
self.product_generator = product_generator
|
|
444
|
+
if product_license is not None:
|
|
445
|
+
self.product_license = product_license
|
|
411
446
|
if project_selector is not None:
|
|
412
447
|
self.project_selector = project_selector
|
|
413
448
|
if publish_pipelines is not None:
|
|
@@ -428,12 +463,12 @@ class V1UserFeatures(object):
|
|
|
428
463
|
self.slurm = slurm
|
|
429
464
|
if slurm_machine_selector is not None:
|
|
430
465
|
self.slurm_machine_selector = slurm_machine_selector
|
|
466
|
+
if stable_vscode_server is not None:
|
|
467
|
+
self.stable_vscode_server = stable_vscode_server
|
|
431
468
|
if stop_ide_container_on_shutdown is not None:
|
|
432
469
|
self.stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
|
|
433
470
|
if studio_config is not None:
|
|
434
471
|
self.studio_config = studio_config
|
|
435
|
-
if studio_deployment is not None:
|
|
436
|
-
self.studio_deployment = studio_deployment
|
|
437
472
|
if studio_on_stop is not None:
|
|
438
473
|
self.studio_on_stop = studio_on_stop
|
|
439
474
|
if studio_version_visibility is not None:
|
|
@@ -560,6 +595,27 @@ class V1UserFeatures(object):
|
|
|
560
595
|
|
|
561
596
|
self._auto_join_orgs = auto_join_orgs
|
|
562
597
|
|
|
598
|
+
@property
|
|
599
|
+
def auto_top_up(self) -> 'bool':
|
|
600
|
+
"""Gets the auto_top_up of this V1UserFeatures. # noqa: E501
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
:return: The auto_top_up of this V1UserFeatures. # noqa: E501
|
|
604
|
+
:rtype: bool
|
|
605
|
+
"""
|
|
606
|
+
return self._auto_top_up
|
|
607
|
+
|
|
608
|
+
@auto_top_up.setter
|
|
609
|
+
def auto_top_up(self, auto_top_up: 'bool'):
|
|
610
|
+
"""Sets the auto_top_up of this V1UserFeatures.
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
:param auto_top_up: The auto_top_up of this V1UserFeatures. # noqa: E501
|
|
614
|
+
:type: bool
|
|
615
|
+
"""
|
|
616
|
+
|
|
617
|
+
self._auto_top_up = auto_top_up
|
|
618
|
+
|
|
563
619
|
@property
|
|
564
620
|
def b2c_experience(self) -> 'bool':
|
|
565
621
|
"""Gets the b2c_experience of this V1UserFeatures. # noqa: E501
|
|
@@ -728,6 +784,27 @@ class V1UserFeatures(object):
|
|
|
728
784
|
|
|
729
785
|
self._cloud_space_environment_templates = cloud_space_environment_templates
|
|
730
786
|
|
|
787
|
+
@property
|
|
788
|
+
def cloudy_vibe_code(self) -> 'bool':
|
|
789
|
+
"""Gets the cloudy_vibe_code of this V1UserFeatures. # noqa: E501
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
:return: The cloudy_vibe_code of this V1UserFeatures. # noqa: E501
|
|
793
|
+
:rtype: bool
|
|
794
|
+
"""
|
|
795
|
+
return self._cloudy_vibe_code
|
|
796
|
+
|
|
797
|
+
@cloudy_vibe_code.setter
|
|
798
|
+
def cloudy_vibe_code(self, cloudy_vibe_code: 'bool'):
|
|
799
|
+
"""Sets the cloudy_vibe_code of this V1UserFeatures.
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
:param cloudy_vibe_code: The cloudy_vibe_code of this V1UserFeatures. # noqa: E501
|
|
803
|
+
:type: bool
|
|
804
|
+
"""
|
|
805
|
+
|
|
806
|
+
self._cloudy_vibe_code = cloudy_vibe_code
|
|
807
|
+
|
|
731
808
|
@property
|
|
732
809
|
def code_tab(self) -> 'bool':
|
|
733
810
|
"""Gets the code_tab of this V1UserFeatures. # noqa: E501
|
|
@@ -833,27 +910,6 @@ class V1UserFeatures(object):
|
|
|
833
910
|
|
|
834
911
|
self._custom_app_domain = custom_app_domain
|
|
835
912
|
|
|
836
|
-
@property
|
|
837
|
-
def custom_instance_types(self) -> 'bool':
|
|
838
|
-
"""Gets the custom_instance_types of this V1UserFeatures. # noqa: E501
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
:return: The custom_instance_types of this V1UserFeatures. # noqa: E501
|
|
842
|
-
:rtype: bool
|
|
843
|
-
"""
|
|
844
|
-
return self._custom_instance_types
|
|
845
|
-
|
|
846
|
-
@custom_instance_types.setter
|
|
847
|
-
def custom_instance_types(self, custom_instance_types: 'bool'):
|
|
848
|
-
"""Sets the custom_instance_types of this V1UserFeatures.
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
:param custom_instance_types: The custom_instance_types of this V1UserFeatures. # noqa: E501
|
|
852
|
-
:type: bool
|
|
853
|
-
"""
|
|
854
|
-
|
|
855
|
-
self._custom_instance_types = custom_instance_types
|
|
856
|
-
|
|
857
913
|
@property
|
|
858
914
|
def datasets(self) -> 'bool':
|
|
859
915
|
"""Gets the datasets of this V1UserFeatures. # noqa: E501
|
|
@@ -939,46 +995,46 @@ class V1UserFeatures(object):
|
|
|
939
995
|
self._deployment_persistent_disk = deployment_persistent_disk
|
|
940
996
|
|
|
941
997
|
@property
|
|
942
|
-
def
|
|
943
|
-
"""Gets the
|
|
998
|
+
def deployment_requests_tab(self) -> 'bool':
|
|
999
|
+
"""Gets the deployment_requests_tab of this V1UserFeatures. # noqa: E501
|
|
944
1000
|
|
|
945
1001
|
|
|
946
|
-
:return: The
|
|
1002
|
+
:return: The deployment_requests_tab of this V1UserFeatures. # noqa: E501
|
|
947
1003
|
:rtype: bool
|
|
948
1004
|
"""
|
|
949
|
-
return self.
|
|
1005
|
+
return self._deployment_requests_tab
|
|
950
1006
|
|
|
951
|
-
@
|
|
952
|
-
def
|
|
953
|
-
"""Sets the
|
|
1007
|
+
@deployment_requests_tab.setter
|
|
1008
|
+
def deployment_requests_tab(self, deployment_requests_tab: 'bool'):
|
|
1009
|
+
"""Sets the deployment_requests_tab of this V1UserFeatures.
|
|
954
1010
|
|
|
955
1011
|
|
|
956
|
-
:param
|
|
1012
|
+
:param deployment_requests_tab: The deployment_requests_tab of this V1UserFeatures. # noqa: E501
|
|
957
1013
|
:type: bool
|
|
958
1014
|
"""
|
|
959
1015
|
|
|
960
|
-
self.
|
|
1016
|
+
self._deployment_requests_tab = deployment_requests_tab
|
|
961
1017
|
|
|
962
1018
|
@property
|
|
963
|
-
def
|
|
964
|
-
"""Gets the
|
|
1019
|
+
def dgx_cloud(self) -> 'bool':
|
|
1020
|
+
"""Gets the dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
965
1021
|
|
|
966
1022
|
|
|
967
|
-
:return: The
|
|
1023
|
+
:return: The dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
968
1024
|
:rtype: bool
|
|
969
1025
|
"""
|
|
970
|
-
return self.
|
|
1026
|
+
return self._dgx_cloud
|
|
971
1027
|
|
|
972
|
-
@
|
|
973
|
-
def
|
|
974
|
-
"""Sets the
|
|
1028
|
+
@dgx_cloud.setter
|
|
1029
|
+
def dgx_cloud(self, dgx_cloud: 'bool'):
|
|
1030
|
+
"""Sets the dgx_cloud of this V1UserFeatures.
|
|
975
1031
|
|
|
976
1032
|
|
|
977
|
-
:param
|
|
1033
|
+
:param dgx_cloud: The dgx_cloud of this V1UserFeatures. # noqa: E501
|
|
978
1034
|
:type: bool
|
|
979
1035
|
"""
|
|
980
1036
|
|
|
981
|
-
self.
|
|
1037
|
+
self._dgx_cloud = dgx_cloud
|
|
982
1038
|
|
|
983
1039
|
@property
|
|
984
1040
|
def docs_agent(self) -> 'bool':
|
|
@@ -1128,25 +1184,25 @@ class V1UserFeatures(object):
|
|
|
1128
1184
|
self._filestore = filestore
|
|
1129
1185
|
|
|
1130
1186
|
@property
|
|
1131
|
-
def
|
|
1132
|
-
"""Gets the
|
|
1187
|
+
def gcs_folders(self) -> 'bool':
|
|
1188
|
+
"""Gets the gcs_folders of this V1UserFeatures. # noqa: E501
|
|
1133
1189
|
|
|
1134
1190
|
|
|
1135
|
-
:return: The
|
|
1191
|
+
:return: The gcs_folders of this V1UserFeatures. # noqa: E501
|
|
1136
1192
|
:rtype: bool
|
|
1137
1193
|
"""
|
|
1138
|
-
return self.
|
|
1194
|
+
return self._gcs_folders
|
|
1139
1195
|
|
|
1140
|
-
@
|
|
1141
|
-
def
|
|
1142
|
-
"""Sets the
|
|
1196
|
+
@gcs_folders.setter
|
|
1197
|
+
def gcs_folders(self, gcs_folders: 'bool'):
|
|
1198
|
+
"""Sets the gcs_folders of this V1UserFeatures.
|
|
1143
1199
|
|
|
1144
1200
|
|
|
1145
|
-
:param
|
|
1201
|
+
:param gcs_folders: The gcs_folders of this V1UserFeatures. # noqa: E501
|
|
1146
1202
|
:type: bool
|
|
1147
1203
|
"""
|
|
1148
1204
|
|
|
1149
|
-
self.
|
|
1205
|
+
self._gcs_folders = gcs_folders
|
|
1150
1206
|
|
|
1151
1207
|
@property
|
|
1152
1208
|
def inactive_notify_delete(self) -> 'bool':
|
|
@@ -1253,6 +1309,27 @@ class V1UserFeatures(object):
|
|
|
1253
1309
|
|
|
1254
1310
|
self._landing_studios = landing_studios
|
|
1255
1311
|
|
|
1312
|
+
@property
|
|
1313
|
+
def lightning_cloud(self) -> 'bool':
|
|
1314
|
+
"""Gets the lightning_cloud of this V1UserFeatures. # noqa: E501
|
|
1315
|
+
|
|
1316
|
+
|
|
1317
|
+
:return: The lightning_cloud of this V1UserFeatures. # noqa: E501
|
|
1318
|
+
:rtype: bool
|
|
1319
|
+
"""
|
|
1320
|
+
return self._lightning_cloud
|
|
1321
|
+
|
|
1322
|
+
@lightning_cloud.setter
|
|
1323
|
+
def lightning_cloud(self, lightning_cloud: 'bool'):
|
|
1324
|
+
"""Sets the lightning_cloud of this V1UserFeatures.
|
|
1325
|
+
|
|
1326
|
+
|
|
1327
|
+
:param lightning_cloud: The lightning_cloud of this V1UserFeatures. # noqa: E501
|
|
1328
|
+
:type: bool
|
|
1329
|
+
"""
|
|
1330
|
+
|
|
1331
|
+
self._lightning_cloud = lightning_cloud
|
|
1332
|
+
|
|
1256
1333
|
@property
|
|
1257
1334
|
def lit_logger(self) -> 'bool':
|
|
1258
1335
|
"""Gets the lit_logger of this V1UserFeatures. # noqa: E501
|
|
@@ -1274,6 +1351,27 @@ class V1UserFeatures(object):
|
|
|
1274
1351
|
|
|
1275
1352
|
self._lit_logger = lit_logger
|
|
1276
1353
|
|
|
1354
|
+
@property
|
|
1355
|
+
def manage_storage_costs(self) -> 'bool':
|
|
1356
|
+
"""Gets the manage_storage_costs of this V1UserFeatures. # noqa: E501
|
|
1357
|
+
|
|
1358
|
+
|
|
1359
|
+
:return: The manage_storage_costs of this V1UserFeatures. # noqa: E501
|
|
1360
|
+
:rtype: bool
|
|
1361
|
+
"""
|
|
1362
|
+
return self._manage_storage_costs
|
|
1363
|
+
|
|
1364
|
+
@manage_storage_costs.setter
|
|
1365
|
+
def manage_storage_costs(self, manage_storage_costs: 'bool'):
|
|
1366
|
+
"""Sets the manage_storage_costs of this V1UserFeatures.
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
:param manage_storage_costs: The manage_storage_costs of this V1UserFeatures. # noqa: E501
|
|
1370
|
+
:type: bool
|
|
1371
|
+
"""
|
|
1372
|
+
|
|
1373
|
+
self._manage_storage_costs = manage_storage_costs
|
|
1374
|
+
|
|
1277
1375
|
@property
|
|
1278
1376
|
def marketplace(self) -> 'bool':
|
|
1279
1377
|
"""Gets the marketplace of this V1UserFeatures. # noqa: E501
|
|
@@ -1337,6 +1435,27 @@ class V1UserFeatures(object):
|
|
|
1337
1435
|
|
|
1338
1436
|
self._mmt_strategy_selector = mmt_strategy_selector
|
|
1339
1437
|
|
|
1438
|
+
@property
|
|
1439
|
+
def multicloud_folders(self) -> 'bool':
|
|
1440
|
+
"""Gets the multicloud_folders of this V1UserFeatures. # noqa: E501
|
|
1441
|
+
|
|
1442
|
+
|
|
1443
|
+
:return: The multicloud_folders of this V1UserFeatures. # noqa: E501
|
|
1444
|
+
:rtype: bool
|
|
1445
|
+
"""
|
|
1446
|
+
return self._multicloud_folders
|
|
1447
|
+
|
|
1448
|
+
@multicloud_folders.setter
|
|
1449
|
+
def multicloud_folders(self, multicloud_folders: 'bool'):
|
|
1450
|
+
"""Sets the multicloud_folders of this V1UserFeatures.
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
:param multicloud_folders: The multicloud_folders of this V1UserFeatures. # noqa: E501
|
|
1454
|
+
:type: bool
|
|
1455
|
+
"""
|
|
1456
|
+
|
|
1457
|
+
self._multicloud_folders = multicloud_folders
|
|
1458
|
+
|
|
1340
1459
|
@property
|
|
1341
1460
|
def multicloud_saas(self) -> 'bool':
|
|
1342
1461
|
"""Gets the multicloud_saas of this V1UserFeatures. # noqa: E501
|
|
@@ -1380,46 +1499,67 @@ class V1UserFeatures(object):
|
|
|
1380
1499
|
self._multiple_studio_versions = multiple_studio_versions
|
|
1381
1500
|
|
|
1382
1501
|
@property
|
|
1383
|
-
def
|
|
1384
|
-
"""Gets the
|
|
1502
|
+
def nebius(self) -> 'bool':
|
|
1503
|
+
"""Gets the nebius of this V1UserFeatures. # noqa: E501
|
|
1385
1504
|
|
|
1386
1505
|
|
|
1387
|
-
:return: The
|
|
1506
|
+
:return: The nebius of this V1UserFeatures. # noqa: E501
|
|
1388
1507
|
:rtype: bool
|
|
1389
1508
|
"""
|
|
1390
|
-
return self.
|
|
1509
|
+
return self._nebius
|
|
1391
1510
|
|
|
1392
|
-
@
|
|
1393
|
-
def
|
|
1394
|
-
"""Sets the
|
|
1511
|
+
@nebius.setter
|
|
1512
|
+
def nebius(self, nebius: 'bool'):
|
|
1513
|
+
"""Sets the nebius of this V1UserFeatures.
|
|
1395
1514
|
|
|
1396
1515
|
|
|
1397
|
-
:param
|
|
1516
|
+
:param nebius: The nebius of this V1UserFeatures. # noqa: E501
|
|
1398
1517
|
:type: bool
|
|
1399
1518
|
"""
|
|
1400
1519
|
|
|
1401
|
-
self.
|
|
1520
|
+
self._nebius = nebius
|
|
1521
|
+
|
|
1522
|
+
@property
|
|
1523
|
+
def neocloud_studios(self) -> 'bool':
|
|
1524
|
+
"""Gets the neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
1525
|
+
|
|
1526
|
+
|
|
1527
|
+
:return: The neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
1528
|
+
:rtype: bool
|
|
1529
|
+
"""
|
|
1530
|
+
return self._neocloud_studios
|
|
1531
|
+
|
|
1532
|
+
@neocloud_studios.setter
|
|
1533
|
+
def neocloud_studios(self, neocloud_studios: 'bool'):
|
|
1534
|
+
"""Sets the neocloud_studios of this V1UserFeatures.
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
:param neocloud_studios: The neocloud_studios of this V1UserFeatures. # noqa: E501
|
|
1538
|
+
:type: bool
|
|
1539
|
+
"""
|
|
1540
|
+
|
|
1541
|
+
self._neocloud_studios = neocloud_studios
|
|
1402
1542
|
|
|
1403
1543
|
@property
|
|
1404
|
-
def
|
|
1405
|
-
"""Gets the
|
|
1544
|
+
def nerf_fs_nonpaying(self) -> 'bool':
|
|
1545
|
+
"""Gets the nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
|
|
1406
1546
|
|
|
1407
1547
|
|
|
1408
|
-
:return: The
|
|
1548
|
+
:return: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
|
|
1409
1549
|
:rtype: bool
|
|
1410
1550
|
"""
|
|
1411
|
-
return self.
|
|
1551
|
+
return self._nerf_fs_nonpaying
|
|
1412
1552
|
|
|
1413
|
-
@
|
|
1414
|
-
def
|
|
1415
|
-
"""Sets the
|
|
1553
|
+
@nerf_fs_nonpaying.setter
|
|
1554
|
+
def nerf_fs_nonpaying(self, nerf_fs_nonpaying: 'bool'):
|
|
1555
|
+
"""Sets the nerf_fs_nonpaying of this V1UserFeatures.
|
|
1416
1556
|
|
|
1417
1557
|
|
|
1418
|
-
:param
|
|
1558
|
+
:param nerf_fs_nonpaying: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
|
|
1419
1559
|
:type: bool
|
|
1420
1560
|
"""
|
|
1421
1561
|
|
|
1422
|
-
self.
|
|
1562
|
+
self._nerf_fs_nonpaying = nerf_fs_nonpaying
|
|
1423
1563
|
|
|
1424
1564
|
@property
|
|
1425
1565
|
def org_level_member_permissions(self) -> 'bool':
|
|
@@ -1463,6 +1603,27 @@ class V1UserFeatures(object):
|
|
|
1463
1603
|
|
|
1464
1604
|
self._org_usage_limits = org_usage_limits
|
|
1465
1605
|
|
|
1606
|
+
@property
|
|
1607
|
+
def paygo_free_storage_limit_check(self) -> 'bool':
|
|
1608
|
+
"""Gets the paygo_free_storage_limit_check of this V1UserFeatures. # noqa: E501
|
|
1609
|
+
|
|
1610
|
+
|
|
1611
|
+
:return: The paygo_free_storage_limit_check of this V1UserFeatures. # noqa: E501
|
|
1612
|
+
:rtype: bool
|
|
1613
|
+
"""
|
|
1614
|
+
return self._paygo_free_storage_limit_check
|
|
1615
|
+
|
|
1616
|
+
@paygo_free_storage_limit_check.setter
|
|
1617
|
+
def paygo_free_storage_limit_check(self, paygo_free_storage_limit_check: 'bool'):
|
|
1618
|
+
"""Sets the paygo_free_storage_limit_check of this V1UserFeatures.
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
:param paygo_free_storage_limit_check: The paygo_free_storage_limit_check of this V1UserFeatures. # noqa: E501
|
|
1622
|
+
:type: bool
|
|
1623
|
+
"""
|
|
1624
|
+
|
|
1625
|
+
self._paygo_free_storage_limit_check = paygo_free_storage_limit_check
|
|
1626
|
+
|
|
1466
1627
|
@property
|
|
1467
1628
|
def pipelines(self) -> 'bool':
|
|
1468
1629
|
"""Gets the pipelines of this V1UserFeatures. # noqa: E501
|
|
@@ -1673,6 +1834,27 @@ class V1UserFeatures(object):
|
|
|
1673
1834
|
|
|
1674
1835
|
self._product_generator = product_generator
|
|
1675
1836
|
|
|
1837
|
+
@property
|
|
1838
|
+
def product_license(self) -> 'bool':
|
|
1839
|
+
"""Gets the product_license of this V1UserFeatures. # noqa: E501
|
|
1840
|
+
|
|
1841
|
+
|
|
1842
|
+
:return: The product_license of this V1UserFeatures. # noqa: E501
|
|
1843
|
+
:rtype: bool
|
|
1844
|
+
"""
|
|
1845
|
+
return self._product_license
|
|
1846
|
+
|
|
1847
|
+
@product_license.setter
|
|
1848
|
+
def product_license(self, product_license: 'bool'):
|
|
1849
|
+
"""Sets the product_license of this V1UserFeatures.
|
|
1850
|
+
|
|
1851
|
+
|
|
1852
|
+
:param product_license: The product_license of this V1UserFeatures. # noqa: E501
|
|
1853
|
+
:type: bool
|
|
1854
|
+
"""
|
|
1855
|
+
|
|
1856
|
+
self._product_license = product_license
|
|
1857
|
+
|
|
1676
1858
|
@property
|
|
1677
1859
|
def project_selector(self) -> 'bool':
|
|
1678
1860
|
"""Gets the project_selector of this V1UserFeatures. # noqa: E501
|
|
@@ -1883,6 +2065,27 @@ class V1UserFeatures(object):
|
|
|
1883
2065
|
|
|
1884
2066
|
self._slurm_machine_selector = slurm_machine_selector
|
|
1885
2067
|
|
|
2068
|
+
@property
|
|
2069
|
+
def stable_vscode_server(self) -> 'bool':
|
|
2070
|
+
"""Gets the stable_vscode_server of this V1UserFeatures. # noqa: E501
|
|
2071
|
+
|
|
2072
|
+
|
|
2073
|
+
:return: The stable_vscode_server of this V1UserFeatures. # noqa: E501
|
|
2074
|
+
:rtype: bool
|
|
2075
|
+
"""
|
|
2076
|
+
return self._stable_vscode_server
|
|
2077
|
+
|
|
2078
|
+
@stable_vscode_server.setter
|
|
2079
|
+
def stable_vscode_server(self, stable_vscode_server: 'bool'):
|
|
2080
|
+
"""Sets the stable_vscode_server of this V1UserFeatures.
|
|
2081
|
+
|
|
2082
|
+
|
|
2083
|
+
:param stable_vscode_server: The stable_vscode_server of this V1UserFeatures. # noqa: E501
|
|
2084
|
+
:type: bool
|
|
2085
|
+
"""
|
|
2086
|
+
|
|
2087
|
+
self._stable_vscode_server = stable_vscode_server
|
|
2088
|
+
|
|
1886
2089
|
@property
|
|
1887
2090
|
def stop_ide_container_on_shutdown(self) -> 'bool':
|
|
1888
2091
|
"""Gets the stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
|
|
@@ -1925,27 +2128,6 @@ class V1UserFeatures(object):
|
|
|
1925
2128
|
|
|
1926
2129
|
self._studio_config = studio_config
|
|
1927
2130
|
|
|
1928
|
-
@property
|
|
1929
|
-
def studio_deployment(self) -> 'bool':
|
|
1930
|
-
"""Gets the studio_deployment of this V1UserFeatures. # noqa: E501
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
:return: The studio_deployment of this V1UserFeatures. # noqa: E501
|
|
1934
|
-
:rtype: bool
|
|
1935
|
-
"""
|
|
1936
|
-
return self._studio_deployment
|
|
1937
|
-
|
|
1938
|
-
@studio_deployment.setter
|
|
1939
|
-
def studio_deployment(self, studio_deployment: 'bool'):
|
|
1940
|
-
"""Sets the studio_deployment of this V1UserFeatures.
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
:param studio_deployment: The studio_deployment of this V1UserFeatures. # noqa: E501
|
|
1944
|
-
:type: bool
|
|
1945
|
-
"""
|
|
1946
|
-
|
|
1947
|
-
self._studio_deployment = studio_deployment
|
|
1948
|
-
|
|
1949
2131
|
@property
|
|
1950
2132
|
def studio_on_stop(self) -> 'bool':
|
|
1951
2133
|
"""Gets the studio_on_stop of this V1UserFeatures. # noqa: E501
|