lightning-sdk 0.1.58__py3-none-any.whl → 0.2.1__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.
Files changed (121) hide show
  1. lightning_sdk/__init__.py +5 -3
  2. lightning_sdk/api/deployment_api.py +23 -11
  3. lightning_sdk/api/job_api.py +42 -7
  4. lightning_sdk/api/lit_container_api.py +23 -3
  5. lightning_sdk/api/mmt_api.py +46 -8
  6. lightning_sdk/api/pipeline_api.py +50 -0
  7. lightning_sdk/api/teamspace_api.py +2 -2
  8. lightning_sdk/api/utils.py +15 -5
  9. lightning_sdk/cli/ai_hub.py +30 -65
  10. lightning_sdk/cli/coloring.py +60 -0
  11. lightning_sdk/cli/configure.py +25 -40
  12. lightning_sdk/cli/connect.py +7 -20
  13. lightning_sdk/cli/create.py +83 -0
  14. lightning_sdk/cli/delete.py +72 -75
  15. lightning_sdk/cli/docker.py +22 -0
  16. lightning_sdk/cli/download.py +78 -113
  17. lightning_sdk/cli/entrypoint.py +44 -65
  18. lightning_sdk/cli/generate.py +28 -43
  19. lightning_sdk/cli/inspect.py +22 -50
  20. lightning_sdk/cli/list.py +281 -222
  21. lightning_sdk/cli/mmts_menu.py +1 -1
  22. lightning_sdk/cli/open.py +62 -0
  23. lightning_sdk/cli/run.py +430 -263
  24. lightning_sdk/cli/serve.py +128 -191
  25. lightning_sdk/cli/start.py +55 -36
  26. lightning_sdk/cli/stop.py +97 -55
  27. lightning_sdk/cli/switch.py +53 -36
  28. lightning_sdk/cli/upload.py +318 -255
  29. lightning_sdk/deployment/__init__.py +2 -0
  30. lightning_sdk/deployment/deployment.py +33 -8
  31. lightning_sdk/lightning_cloud/openapi/__init__.py +23 -0
  32. lightning_sdk/lightning_cloud/openapi/api/__init__.py +1 -0
  33. lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +10 -6
  34. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +355 -4
  35. lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +4 -4
  36. lightning_sdk/lightning_cloud/openapi/api/lit_registry_service_api.py +14 -2
  37. lightning_sdk/lightning_cloud/openapi/api/pipelines_service_api.py +674 -0
  38. lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +303 -4
  39. lightning_sdk/lightning_cloud/openapi/models/__init__.py +22 -0
  40. lightning_sdk/lightning_cloud/openapi/models/agents_id_body.py +17 -69
  41. lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityreservations_body.py +27 -1
  42. lightning_sdk/lightning_cloud/openapi/models/create.py +27 -1
  43. lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py +53 -1
  44. lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +105 -1
  45. lightning_sdk/lightning_cloud/openapi/models/id_visibility_body1.py +1 -27
  46. lightning_sdk/lightning_cloud/openapi/models/id_visibility_body2.py +149 -0
  47. lightning_sdk/lightning_cloud/openapi/models/org_id_memberships_body.py +27 -1
  48. lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +157 -1
  49. lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body.py +461 -0
  50. lightning_sdk/lightning_cloud/openapi/models/project_id_pipelines_body.py +227 -0
  51. lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +157 -1
  52. lightning_sdk/lightning_cloud/openapi/models/slurm_jobs_body.py +79 -1
  53. lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body.py +1 -27
  54. lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py +175 -0
  55. lightning_sdk/lightning_cloud/openapi/models/v1_agent_job.py +79 -1
  56. lightning_sdk/lightning_cloud/openapi/models/v1_assistant.py +17 -69
  57. lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py +27 -1
  58. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_artifact_event_type.py +1 -1
  59. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +131 -1
  60. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +79 -1
  61. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +27 -1
  62. lightning_sdk/lightning_cloud/openapi/models/v1_complete_upload_temporary_artifact_request.py +175 -0
  63. lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_request.py +461 -0
  64. lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_template_request.py +27 -1
  65. lightning_sdk/lightning_cloud/openapi/models/v1_create_job_request.py +201 -0
  66. lightning_sdk/lightning_cloud/openapi/models/v1_create_managed_endpoint_response.py +149 -0
  67. lightning_sdk/lightning_cloud/openapi/models/v1_create_multi_machine_job_request.py +253 -0
  68. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +27 -1
  69. lightning_sdk/lightning_cloud/openapi/models/v1_delete_pipeline_response.py +149 -0
  70. lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +105 -1
  71. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_details.py +175 -0
  72. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template.py +53 -1
  73. lightning_sdk/lightning_cloud/openapi/models/v1_filestore_data_connection.py +201 -0
  74. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_job.py +53 -1
  75. lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_mmt.py +53 -1
  76. lightning_sdk/lightning_cloud/openapi/models/v1_find_capacity_block_offering_response.py +29 -3
  77. lightning_sdk/lightning_cloud/openapi/models/v1_job.py +133 -3
  78. lightning_sdk/lightning_cloud/openapi/models/v1_job_artifacts_type.py +103 -0
  79. lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +53 -1
  80. lightning_sdk/lightning_cloud/openapi/models/v1_job_timing.py +27 -1
  81. lightning_sdk/lightning_cloud/openapi/models/v1_list_pipelines_response.py +123 -0
  82. lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_artifact.py +27 -1
  83. lightning_sdk/lightning_cloud/openapi/models/v1_lit_repository.py +29 -1
  84. lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +27 -1
  85. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job.py +27 -1
  86. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_state.py +2 -0
  87. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +209 -1
  88. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline.py +513 -0
  89. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_schedule.py +149 -0
  90. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step.py +253 -0
  91. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_status.py +331 -0
  92. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_type.py +104 -0
  93. lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +157 -1
  94. lightning_sdk/lightning_cloud/openapi/models/v1_restart_timing.py +27 -1
  95. lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +1 -0
  96. lightning_sdk/lightning_cloud/openapi/models/v1_shared_filesystem.py +201 -0
  97. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_job.py +27 -1
  98. lightning_sdk/lightning_cloud/openapi/models/v1_update_job_visibility_response.py +97 -0
  99. lightning_sdk/lightning_cloud/openapi/models/v1_upload_temporary_artifact_request.py +123 -0
  100. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +95 -355
  101. lightning_sdk/lightning_cloud/openapi/models/validate.py +27 -1
  102. lightning_sdk/lightning_cloud/rest_client.py +4 -2
  103. lightning_sdk/machine.py +25 -1
  104. lightning_sdk/models.py +18 -12
  105. lightning_sdk/pipeline/__init__.py +4 -0
  106. lightning_sdk/pipeline/pipeline.py +109 -0
  107. lightning_sdk/pipeline/types.py +268 -0
  108. lightning_sdk/pipeline/utils.py +69 -0
  109. lightning_sdk/plugin.py +9 -10
  110. lightning_sdk/serve.py +134 -0
  111. lightning_sdk/services/utilities.py +2 -2
  112. lightning_sdk/studio.py +5 -1
  113. lightning_sdk/teamspace.py +1 -1
  114. lightning_sdk/utils/resolve.py +12 -1
  115. {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/METADATA +6 -8
  116. {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/RECORD +120 -88
  117. lightning_sdk/cli/legacy.py +0 -135
  118. {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/LICENSE +0 -0
  119. {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/WHEEL +0 -0
  120. {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/entry_points.txt +0 -0
  121. {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/top_level.txt +0 -0
@@ -41,7 +41,6 @@ class V1UserFeatures(object):
41
41
  and the value is json key in definition.
42
42
  """
43
43
  swagger_types = {
44
- 'advanced_deployment_autoscaling': 'bool',
45
44
  'affiliate_links': 'bool',
46
45
  'agents_v2': 'bool',
47
46
  'ai_hub_monetization': 'bool',
@@ -52,6 +51,7 @@ class V1UserFeatures(object):
52
51
  'cap_drop': 'list[str]',
53
52
  'capacity_reservation_byoc': 'bool',
54
53
  'capacity_reservation_dry_run': 'bool',
54
+ 'chat_models': 'bool',
55
55
  'code_tab': 'bool',
56
56
  'collab_screen_sharing': 'bool',
57
57
  'cost_attribution_settings': 'bool',
@@ -59,36 +59,27 @@ class V1UserFeatures(object):
59
59
  'custom_instance_types': 'bool',
60
60
  'default_one_cluster': 'bool',
61
61
  'deployment_alerts': 'bool',
62
- 'deployment_customize_api': 'bool',
63
- 'deployment_data_path': 'bool',
64
- 'deployment_multi_servers': 'bool',
65
62
  'deployment_persistent_disk': 'bool',
66
63
  'deployment_reservations': 'bool',
67
- 'deployment_version_upgrade': 'bool',
68
- 'deployment_version_visibility': 'bool',
69
64
  'docs_agent': 'bool',
70
65
  'drive_v2': 'bool',
71
66
  'enable_crypto_crackdown': 'bool',
72
- 'enable_efs': 'bool',
73
67
  'enable_storage_limits': 'bool',
74
68
  'fair_share': 'bool',
75
69
  'featured_studios_admin': 'bool',
76
- 'filesystem_optimisation': 'bool',
77
- 'inference_job_deployment_plugin': 'bool',
70
+ 'filestore': 'bool',
78
71
  'instant_capacity_reservation': 'bool',
79
72
  'job_artifacts_v2': 'bool',
80
- 'jobs_init': 'bool',
81
73
  'jobs_v2': 'bool',
82
74
  'lambda_labs': 'bool',
83
75
  'landing_studios': 'bool',
84
- 'lightning_registry': 'bool',
85
76
  'lit_logger': 'bool',
86
- 'lit_logger_storage_v2': 'bool',
87
77
  'mmt_fault_tolerance': 'bool',
88
78
  'mmt_strategy_selector': 'bool',
89
79
  'mmt_v2': 'bool',
90
80
  'multicloud_saas': 'bool',
91
81
  'multiple_studio_versions': 'bool',
82
+ 'open_api_in_studio': 'bool',
92
83
  'org_level_member_permissions': 'bool',
93
84
  'pipelines': 'bool',
94
85
  'plugin_biz_chat': 'bool',
@@ -109,7 +100,6 @@ class V1UserFeatures(object):
109
100
  'pricing_updates': 'bool',
110
101
  'product_generator': 'bool',
111
102
  'project_selector': 'bool',
112
- 'restart_ide_on_hang': 'bool',
113
103
  'restartable_jobs': 'bool',
114
104
  'runnable_public_studio_page': 'bool',
115
105
  'security_docs': 'bool',
@@ -118,18 +108,17 @@ class V1UserFeatures(object):
118
108
  'slurm_machine_selector': 'bool',
119
109
  'snapshotter_service': 'bool',
120
110
  'snowflake_connection': 'bool',
111
+ 'stop_ide_container_on_shutdown': 'bool',
121
112
  'studio_config': 'bool',
122
113
  'studio_on_stop': 'bool',
123
114
  'studio_version_visibility': 'bool',
124
115
  'teamspace_storage_tab': 'bool',
125
116
  'trainium2': 'bool',
126
117
  'use_rclone_mounts_only': 'bool',
127
- 'vultr': 'bool',
128
- 'writable_data_connections': 'bool'
118
+ 'vultr': 'bool'
129
119
  }
130
120
 
131
121
  attribute_map = {
132
- 'advanced_deployment_autoscaling': 'advancedDeploymentAutoscaling',
133
122
  'affiliate_links': 'affiliateLinks',
134
123
  'agents_v2': 'agentsV2',
135
124
  'ai_hub_monetization': 'aiHubMonetization',
@@ -140,6 +129,7 @@ class V1UserFeatures(object):
140
129
  'cap_drop': 'capDrop',
141
130
  'capacity_reservation_byoc': 'capacityReservationByoc',
142
131
  'capacity_reservation_dry_run': 'capacityReservationDryRun',
132
+ 'chat_models': 'chatModels',
143
133
  'code_tab': 'codeTab',
144
134
  'collab_screen_sharing': 'collabScreenSharing',
145
135
  'cost_attribution_settings': 'costAttributionSettings',
@@ -147,36 +137,27 @@ class V1UserFeatures(object):
147
137
  'custom_instance_types': 'customInstanceTypes',
148
138
  'default_one_cluster': 'defaultOneCluster',
149
139
  'deployment_alerts': 'deploymentAlerts',
150
- 'deployment_customize_api': 'deploymentCustomizeApi',
151
- 'deployment_data_path': 'deploymentDataPath',
152
- 'deployment_multi_servers': 'deploymentMultiServers',
153
140
  'deployment_persistent_disk': 'deploymentPersistentDisk',
154
141
  'deployment_reservations': 'deploymentReservations',
155
- 'deployment_version_upgrade': 'deploymentVersionUpgrade',
156
- 'deployment_version_visibility': 'deploymentVersionVisibility',
157
142
  'docs_agent': 'docsAgent',
158
143
  'drive_v2': 'driveV2',
159
144
  'enable_crypto_crackdown': 'enableCryptoCrackdown',
160
- 'enable_efs': 'enableEfs',
161
145
  'enable_storage_limits': 'enableStorageLimits',
162
146
  'fair_share': 'fairShare',
163
147
  'featured_studios_admin': 'featuredStudiosAdmin',
164
- 'filesystem_optimisation': 'filesystemOptimisation',
165
- 'inference_job_deployment_plugin': 'inferenceJobDeploymentPlugin',
148
+ 'filestore': 'filestore',
166
149
  'instant_capacity_reservation': 'instantCapacityReservation',
167
150
  'job_artifacts_v2': 'jobArtifactsV2',
168
- 'jobs_init': 'jobsInit',
169
151
  'jobs_v2': 'jobsV2',
170
152
  'lambda_labs': 'lambdaLabs',
171
153
  'landing_studios': 'landingStudios',
172
- 'lightning_registry': 'lightningRegistry',
173
154
  'lit_logger': 'litLogger',
174
- 'lit_logger_storage_v2': 'litLoggerStorageV2',
175
155
  'mmt_fault_tolerance': 'mmtFaultTolerance',
176
156
  'mmt_strategy_selector': 'mmtStrategySelector',
177
157
  'mmt_v2': 'mmtV2',
178
158
  'multicloud_saas': 'multicloudSaas',
179
159
  'multiple_studio_versions': 'multipleStudioVersions',
160
+ 'open_api_in_studio': 'openApiInStudio',
180
161
  'org_level_member_permissions': 'orgLevelMemberPermissions',
181
162
  'pipelines': 'pipelines',
182
163
  'plugin_biz_chat': 'pluginBizChat',
@@ -197,7 +178,6 @@ class V1UserFeatures(object):
197
178
  'pricing_updates': 'pricingUpdates',
198
179
  'product_generator': 'productGenerator',
199
180
  'project_selector': 'projectSelector',
200
- 'restart_ide_on_hang': 'restartIdeOnHang',
201
181
  'restartable_jobs': 'restartableJobs',
202
182
  'runnable_public_studio_page': 'runnablePublicStudioPage',
203
183
  'security_docs': 'securityDocs',
@@ -206,19 +186,18 @@ class V1UserFeatures(object):
206
186
  'slurm_machine_selector': 'slurmMachineSelector',
207
187
  'snapshotter_service': 'snapshotterService',
208
188
  'snowflake_connection': 'snowflakeConnection',
189
+ 'stop_ide_container_on_shutdown': 'stopIdeContainerOnShutdown',
209
190
  'studio_config': 'studioConfig',
210
191
  'studio_on_stop': 'studioOnStop',
211
192
  'studio_version_visibility': 'studioVersionVisibility',
212
193
  'teamspace_storage_tab': 'teamspaceStorageTab',
213
194
  'trainium2': 'trainium2',
214
195
  'use_rclone_mounts_only': 'useRcloneMountsOnly',
215
- 'vultr': 'vultr',
216
- 'writable_data_connections': 'writableDataConnections'
196
+ 'vultr': 'vultr'
217
197
  }
218
198
 
219
- def __init__(self, advanced_deployment_autoscaling: '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, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, custom_instance_types: 'bool' =None, default_one_cluster: 'bool' =None, deployment_alerts: 'bool' =None, deployment_customize_api: 'bool' =None, deployment_data_path: 'bool' =None, deployment_multi_servers: 'bool' =None, deployment_persistent_disk: 'bool' =None, deployment_reservations: 'bool' =None, deployment_version_upgrade: 'bool' =None, deployment_version_visibility: 'bool' =None, docs_agent: 'bool' =None, drive_v2: 'bool' =None, enable_crypto_crackdown: 'bool' =None, enable_efs: 'bool' =None, enable_storage_limits: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, filesystem_optimisation: 'bool' =None, inference_job_deployment_plugin: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, jobs_init: 'bool' =None, jobs_v2: 'bool' =None, lambda_labs: 'bool' =None, landing_studios: 'bool' =None, lightning_registry: 'bool' =None, lit_logger: 'bool' =None, lit_logger_storage_v2: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, mmt_v2: 'bool' =None, multicloud_saas: 'bool' =None, multiple_studio_versions: 'bool' =None, org_level_member_permissions: 'bool' =None, pipelines: 'bool' =None, plugin_biz_chat: 'bool' =None, plugin_distributed: 'bool' =None, plugin_fiftyone: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_lightning_apps: 'bool' =None, plugin_lightning_apps_distributed: 'bool' =None, plugin_mage_ai: 'bool' =None, plugin_milvus: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_react: 'bool' =None, plugin_service: 'bool' =None, plugin_sweeps: 'bool' =None, plugin_weviate: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, project_selector: 'bool' =None, restart_ide_on_hang: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, snapshotter_service: 'bool' =None, snowflake_connection: 'bool' =None, studio_config: 'bool' =None, studio_on_stop: 'bool' =None, studio_version_visibility: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, vultr: 'bool' =None, writable_data_connections: 'bool' =None): # noqa: E501
199
+ def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, b2c_experience: 'bool' =None, 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, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, cost_attribution_settings: 'bool' =None, custom_app_domain: 'bool' =None, custom_instance_types: 'bool' =None, default_one_cluster: 'bool' =None, deployment_alerts: 'bool' =None, deployment_persistent_disk: 'bool' =None, deployment_reservations: 'bool' =None, docs_agent: 'bool' =None, drive_v2: 'bool' =None, enable_crypto_crackdown: 'bool' =None, enable_storage_limits: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, filestore: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, jobs_v2: 'bool' =None, lambda_labs: 'bool' =None, landing_studios: 'bool' =None, lit_logger: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, mmt_v2: 'bool' =None, multicloud_saas: 'bool' =None, multiple_studio_versions: 'bool' =None, open_api_in_studio: 'bool' =None, org_level_member_permissions: 'bool' =None, pipelines: 'bool' =None, plugin_biz_chat: 'bool' =None, plugin_distributed: 'bool' =None, plugin_fiftyone: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_lightning_apps: 'bool' =None, plugin_lightning_apps_distributed: 'bool' =None, plugin_mage_ai: 'bool' =None, plugin_milvus: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_react: 'bool' =None, plugin_service: 'bool' =None, plugin_sweeps: 'bool' =None, plugin_weviate: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, project_selector: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, snapshotter_service: 'bool' =None, snowflake_connection: 'bool' =None, stop_ide_container_on_shutdown: 'bool' =None, studio_config: 'bool' =None, studio_on_stop: 'bool' =None, studio_version_visibility: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, use_rclone_mounts_only: 'bool' =None, vultr: 'bool' =None): # noqa: E501
220
200
  """V1UserFeatures - a model defined in Swagger""" # noqa: E501
221
- self._advanced_deployment_autoscaling = None
222
201
  self._affiliate_links = None
223
202
  self._agents_v2 = None
224
203
  self._ai_hub_monetization = None
@@ -229,6 +208,7 @@ class V1UserFeatures(object):
229
208
  self._cap_drop = None
230
209
  self._capacity_reservation_byoc = None
231
210
  self._capacity_reservation_dry_run = None
211
+ self._chat_models = None
232
212
  self._code_tab = None
233
213
  self._collab_screen_sharing = None
234
214
  self._cost_attribution_settings = None
@@ -236,36 +216,27 @@ class V1UserFeatures(object):
236
216
  self._custom_instance_types = None
237
217
  self._default_one_cluster = None
238
218
  self._deployment_alerts = None
239
- self._deployment_customize_api = None
240
- self._deployment_data_path = None
241
- self._deployment_multi_servers = None
242
219
  self._deployment_persistent_disk = None
243
220
  self._deployment_reservations = None
244
- self._deployment_version_upgrade = None
245
- self._deployment_version_visibility = None
246
221
  self._docs_agent = None
247
222
  self._drive_v2 = None
248
223
  self._enable_crypto_crackdown = None
249
- self._enable_efs = None
250
224
  self._enable_storage_limits = None
251
225
  self._fair_share = None
252
226
  self._featured_studios_admin = None
253
- self._filesystem_optimisation = None
254
- self._inference_job_deployment_plugin = None
227
+ self._filestore = None
255
228
  self._instant_capacity_reservation = None
256
229
  self._job_artifacts_v2 = None
257
- self._jobs_init = None
258
230
  self._jobs_v2 = None
259
231
  self._lambda_labs = None
260
232
  self._landing_studios = None
261
- self._lightning_registry = None
262
233
  self._lit_logger = None
263
- self._lit_logger_storage_v2 = None
264
234
  self._mmt_fault_tolerance = None
265
235
  self._mmt_strategy_selector = None
266
236
  self._mmt_v2 = None
267
237
  self._multicloud_saas = None
268
238
  self._multiple_studio_versions = None
239
+ self._open_api_in_studio = None
269
240
  self._org_level_member_permissions = None
270
241
  self._pipelines = None
271
242
  self._plugin_biz_chat = None
@@ -286,7 +257,6 @@ class V1UserFeatures(object):
286
257
  self._pricing_updates = None
287
258
  self._product_generator = None
288
259
  self._project_selector = None
289
- self._restart_ide_on_hang = None
290
260
  self._restartable_jobs = None
291
261
  self._runnable_public_studio_page = None
292
262
  self._security_docs = None
@@ -295,6 +265,7 @@ class V1UserFeatures(object):
295
265
  self._slurm_machine_selector = None
296
266
  self._snapshotter_service = None
297
267
  self._snowflake_connection = None
268
+ self._stop_ide_container_on_shutdown = None
298
269
  self._studio_config = None
299
270
  self._studio_on_stop = None
300
271
  self._studio_version_visibility = None
@@ -302,10 +273,7 @@ class V1UserFeatures(object):
302
273
  self._trainium2 = None
303
274
  self._use_rclone_mounts_only = None
304
275
  self._vultr = None
305
- self._writable_data_connections = None
306
276
  self.discriminator = None
307
- if advanced_deployment_autoscaling is not None:
308
- self.advanced_deployment_autoscaling = advanced_deployment_autoscaling
309
277
  if affiliate_links is not None:
310
278
  self.affiliate_links = affiliate_links
311
279
  if agents_v2 is not None:
@@ -326,6 +294,8 @@ class V1UserFeatures(object):
326
294
  self.capacity_reservation_byoc = capacity_reservation_byoc
327
295
  if capacity_reservation_dry_run is not None:
328
296
  self.capacity_reservation_dry_run = capacity_reservation_dry_run
297
+ if chat_models is not None:
298
+ self.chat_models = chat_models
329
299
  if code_tab is not None:
330
300
  self.code_tab = code_tab
331
301
  if collab_screen_sharing is not None:
@@ -340,56 +310,36 @@ class V1UserFeatures(object):
340
310
  self.default_one_cluster = default_one_cluster
341
311
  if deployment_alerts is not None:
342
312
  self.deployment_alerts = deployment_alerts
343
- if deployment_customize_api is not None:
344
- self.deployment_customize_api = deployment_customize_api
345
- if deployment_data_path is not None:
346
- self.deployment_data_path = deployment_data_path
347
- if deployment_multi_servers is not None:
348
- self.deployment_multi_servers = deployment_multi_servers
349
313
  if deployment_persistent_disk is not None:
350
314
  self.deployment_persistent_disk = deployment_persistent_disk
351
315
  if deployment_reservations is not None:
352
316
  self.deployment_reservations = deployment_reservations
353
- if deployment_version_upgrade is not None:
354
- self.deployment_version_upgrade = deployment_version_upgrade
355
- if deployment_version_visibility is not None:
356
- self.deployment_version_visibility = deployment_version_visibility
357
317
  if docs_agent is not None:
358
318
  self.docs_agent = docs_agent
359
319
  if drive_v2 is not None:
360
320
  self.drive_v2 = drive_v2
361
321
  if enable_crypto_crackdown is not None:
362
322
  self.enable_crypto_crackdown = enable_crypto_crackdown
363
- if enable_efs is not None:
364
- self.enable_efs = enable_efs
365
323
  if enable_storage_limits is not None:
366
324
  self.enable_storage_limits = enable_storage_limits
367
325
  if fair_share is not None:
368
326
  self.fair_share = fair_share
369
327
  if featured_studios_admin is not None:
370
328
  self.featured_studios_admin = featured_studios_admin
371
- if filesystem_optimisation is not None:
372
- self.filesystem_optimisation = filesystem_optimisation
373
- if inference_job_deployment_plugin is not None:
374
- self.inference_job_deployment_plugin = inference_job_deployment_plugin
329
+ if filestore is not None:
330
+ self.filestore = filestore
375
331
  if instant_capacity_reservation is not None:
376
332
  self.instant_capacity_reservation = instant_capacity_reservation
377
333
  if job_artifacts_v2 is not None:
378
334
  self.job_artifacts_v2 = job_artifacts_v2
379
- if jobs_init is not None:
380
- self.jobs_init = jobs_init
381
335
  if jobs_v2 is not None:
382
336
  self.jobs_v2 = jobs_v2
383
337
  if lambda_labs is not None:
384
338
  self.lambda_labs = lambda_labs
385
339
  if landing_studios is not None:
386
340
  self.landing_studios = landing_studios
387
- if lightning_registry is not None:
388
- self.lightning_registry = lightning_registry
389
341
  if lit_logger is not None:
390
342
  self.lit_logger = lit_logger
391
- if lit_logger_storage_v2 is not None:
392
- self.lit_logger_storage_v2 = lit_logger_storage_v2
393
343
  if mmt_fault_tolerance is not None:
394
344
  self.mmt_fault_tolerance = mmt_fault_tolerance
395
345
  if mmt_strategy_selector is not None:
@@ -400,6 +350,8 @@ class V1UserFeatures(object):
400
350
  self.multicloud_saas = multicloud_saas
401
351
  if multiple_studio_versions is not None:
402
352
  self.multiple_studio_versions = multiple_studio_versions
353
+ if open_api_in_studio is not None:
354
+ self.open_api_in_studio = open_api_in_studio
403
355
  if org_level_member_permissions is not None:
404
356
  self.org_level_member_permissions = org_level_member_permissions
405
357
  if pipelines is not None:
@@ -440,8 +392,6 @@ class V1UserFeatures(object):
440
392
  self.product_generator = product_generator
441
393
  if project_selector is not None:
442
394
  self.project_selector = project_selector
443
- if restart_ide_on_hang is not None:
444
- self.restart_ide_on_hang = restart_ide_on_hang
445
395
  if restartable_jobs is not None:
446
396
  self.restartable_jobs = restartable_jobs
447
397
  if runnable_public_studio_page is not None:
@@ -458,6 +408,8 @@ class V1UserFeatures(object):
458
408
  self.snapshotter_service = snapshotter_service
459
409
  if snowflake_connection is not None:
460
410
  self.snowflake_connection = snowflake_connection
411
+ if stop_ide_container_on_shutdown is not None:
412
+ self.stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
461
413
  if studio_config is not None:
462
414
  self.studio_config = studio_config
463
415
  if studio_on_stop is not None:
@@ -472,29 +424,6 @@ class V1UserFeatures(object):
472
424
  self.use_rclone_mounts_only = use_rclone_mounts_only
473
425
  if vultr is not None:
474
426
  self.vultr = vultr
475
- if writable_data_connections is not None:
476
- self.writable_data_connections = writable_data_connections
477
-
478
- @property
479
- def advanced_deployment_autoscaling(self) -> 'bool':
480
- """Gets the advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
481
-
482
-
483
- :return: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
484
- :rtype: bool
485
- """
486
- return self._advanced_deployment_autoscaling
487
-
488
- @advanced_deployment_autoscaling.setter
489
- def advanced_deployment_autoscaling(self, advanced_deployment_autoscaling: 'bool'):
490
- """Sets the advanced_deployment_autoscaling of this V1UserFeatures.
491
-
492
-
493
- :param advanced_deployment_autoscaling: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
494
- :type: bool
495
- """
496
-
497
- self._advanced_deployment_autoscaling = advanced_deployment_autoscaling
498
427
 
499
428
  @property
500
429
  def affiliate_links(self) -> 'bool':
@@ -706,6 +635,27 @@ class V1UserFeatures(object):
706
635
 
707
636
  self._capacity_reservation_dry_run = capacity_reservation_dry_run
708
637
 
638
+ @property
639
+ def chat_models(self) -> 'bool':
640
+ """Gets the chat_models of this V1UserFeatures. # noqa: E501
641
+
642
+
643
+ :return: The chat_models of this V1UserFeatures. # noqa: E501
644
+ :rtype: bool
645
+ """
646
+ return self._chat_models
647
+
648
+ @chat_models.setter
649
+ def chat_models(self, chat_models: 'bool'):
650
+ """Sets the chat_models of this V1UserFeatures.
651
+
652
+
653
+ :param chat_models: The chat_models of this V1UserFeatures. # noqa: E501
654
+ :type: bool
655
+ """
656
+
657
+ self._chat_models = chat_models
658
+
709
659
  @property
710
660
  def code_tab(self) -> 'bool':
711
661
  """Gets the code_tab of this V1UserFeatures. # noqa: E501
@@ -853,69 +803,6 @@ class V1UserFeatures(object):
853
803
 
854
804
  self._deployment_alerts = deployment_alerts
855
805
 
856
- @property
857
- def deployment_customize_api(self) -> 'bool':
858
- """Gets the deployment_customize_api of this V1UserFeatures. # noqa: E501
859
-
860
-
861
- :return: The deployment_customize_api of this V1UserFeatures. # noqa: E501
862
- :rtype: bool
863
- """
864
- return self._deployment_customize_api
865
-
866
- @deployment_customize_api.setter
867
- def deployment_customize_api(self, deployment_customize_api: 'bool'):
868
- """Sets the deployment_customize_api of this V1UserFeatures.
869
-
870
-
871
- :param deployment_customize_api: The deployment_customize_api of this V1UserFeatures. # noqa: E501
872
- :type: bool
873
- """
874
-
875
- self._deployment_customize_api = deployment_customize_api
876
-
877
- @property
878
- def deployment_data_path(self) -> 'bool':
879
- """Gets the deployment_data_path of this V1UserFeatures. # noqa: E501
880
-
881
-
882
- :return: The deployment_data_path of this V1UserFeatures. # noqa: E501
883
- :rtype: bool
884
- """
885
- return self._deployment_data_path
886
-
887
- @deployment_data_path.setter
888
- def deployment_data_path(self, deployment_data_path: 'bool'):
889
- """Sets the deployment_data_path of this V1UserFeatures.
890
-
891
-
892
- :param deployment_data_path: The deployment_data_path of this V1UserFeatures. # noqa: E501
893
- :type: bool
894
- """
895
-
896
- self._deployment_data_path = deployment_data_path
897
-
898
- @property
899
- def deployment_multi_servers(self) -> 'bool':
900
- """Gets the deployment_multi_servers of this V1UserFeatures. # noqa: E501
901
-
902
-
903
- :return: The deployment_multi_servers of this V1UserFeatures. # noqa: E501
904
- :rtype: bool
905
- """
906
- return self._deployment_multi_servers
907
-
908
- @deployment_multi_servers.setter
909
- def deployment_multi_servers(self, deployment_multi_servers: 'bool'):
910
- """Sets the deployment_multi_servers of this V1UserFeatures.
911
-
912
-
913
- :param deployment_multi_servers: The deployment_multi_servers of this V1UserFeatures. # noqa: E501
914
- :type: bool
915
- """
916
-
917
- self._deployment_multi_servers = deployment_multi_servers
918
-
919
806
  @property
920
807
  def deployment_persistent_disk(self) -> 'bool':
921
808
  """Gets the deployment_persistent_disk of this V1UserFeatures. # noqa: E501
@@ -958,48 +845,6 @@ class V1UserFeatures(object):
958
845
 
959
846
  self._deployment_reservations = deployment_reservations
960
847
 
961
- @property
962
- def deployment_version_upgrade(self) -> 'bool':
963
- """Gets the deployment_version_upgrade of this V1UserFeatures. # noqa: E501
964
-
965
-
966
- :return: The deployment_version_upgrade of this V1UserFeatures. # noqa: E501
967
- :rtype: bool
968
- """
969
- return self._deployment_version_upgrade
970
-
971
- @deployment_version_upgrade.setter
972
- def deployment_version_upgrade(self, deployment_version_upgrade: 'bool'):
973
- """Sets the deployment_version_upgrade of this V1UserFeatures.
974
-
975
-
976
- :param deployment_version_upgrade: The deployment_version_upgrade of this V1UserFeatures. # noqa: E501
977
- :type: bool
978
- """
979
-
980
- self._deployment_version_upgrade = deployment_version_upgrade
981
-
982
- @property
983
- def deployment_version_visibility(self) -> 'bool':
984
- """Gets the deployment_version_visibility of this V1UserFeatures. # noqa: E501
985
-
986
-
987
- :return: The deployment_version_visibility of this V1UserFeatures. # noqa: E501
988
- :rtype: bool
989
- """
990
- return self._deployment_version_visibility
991
-
992
- @deployment_version_visibility.setter
993
- def deployment_version_visibility(self, deployment_version_visibility: 'bool'):
994
- """Sets the deployment_version_visibility of this V1UserFeatures.
995
-
996
-
997
- :param deployment_version_visibility: The deployment_version_visibility of this V1UserFeatures. # noqa: E501
998
- :type: bool
999
- """
1000
-
1001
- self._deployment_version_visibility = deployment_version_visibility
1002
-
1003
848
  @property
1004
849
  def docs_agent(self) -> 'bool':
1005
850
  """Gets the docs_agent of this V1UserFeatures. # noqa: E501
@@ -1063,27 +908,6 @@ class V1UserFeatures(object):
1063
908
 
1064
909
  self._enable_crypto_crackdown = enable_crypto_crackdown
1065
910
 
1066
- @property
1067
- def enable_efs(self) -> 'bool':
1068
- """Gets the enable_efs of this V1UserFeatures. # noqa: E501
1069
-
1070
-
1071
- :return: The enable_efs of this V1UserFeatures. # noqa: E501
1072
- :rtype: bool
1073
- """
1074
- return self._enable_efs
1075
-
1076
- @enable_efs.setter
1077
- def enable_efs(self, enable_efs: 'bool'):
1078
- """Sets the enable_efs of this V1UserFeatures.
1079
-
1080
-
1081
- :param enable_efs: The enable_efs of this V1UserFeatures. # noqa: E501
1082
- :type: bool
1083
- """
1084
-
1085
- self._enable_efs = enable_efs
1086
-
1087
911
  @property
1088
912
  def enable_storage_limits(self) -> 'bool':
1089
913
  """Gets the enable_storage_limits of this V1UserFeatures. # noqa: E501
@@ -1148,46 +972,25 @@ class V1UserFeatures(object):
1148
972
  self._featured_studios_admin = featured_studios_admin
1149
973
 
1150
974
  @property
1151
- def filesystem_optimisation(self) -> 'bool':
1152
- """Gets the filesystem_optimisation of this V1UserFeatures. # noqa: E501
975
+ def filestore(self) -> 'bool':
976
+ """Gets the filestore of this V1UserFeatures. # noqa: E501
1153
977
 
1154
978
 
1155
- :return: The filesystem_optimisation of this V1UserFeatures. # noqa: E501
979
+ :return: The filestore of this V1UserFeatures. # noqa: E501
1156
980
  :rtype: bool
1157
981
  """
1158
- return self._filesystem_optimisation
982
+ return self._filestore
1159
983
 
1160
- @filesystem_optimisation.setter
1161
- def filesystem_optimisation(self, filesystem_optimisation: 'bool'):
1162
- """Sets the filesystem_optimisation of this V1UserFeatures.
984
+ @filestore.setter
985
+ def filestore(self, filestore: 'bool'):
986
+ """Sets the filestore of this V1UserFeatures.
1163
987
 
1164
988
 
1165
- :param filesystem_optimisation: The filesystem_optimisation of this V1UserFeatures. # noqa: E501
989
+ :param filestore: The filestore of this V1UserFeatures. # noqa: E501
1166
990
  :type: bool
1167
991
  """
1168
992
 
1169
- self._filesystem_optimisation = filesystem_optimisation
1170
-
1171
- @property
1172
- def inference_job_deployment_plugin(self) -> 'bool':
1173
- """Gets the inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
1174
-
1175
-
1176
- :return: The inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
1177
- :rtype: bool
1178
- """
1179
- return self._inference_job_deployment_plugin
1180
-
1181
- @inference_job_deployment_plugin.setter
1182
- def inference_job_deployment_plugin(self, inference_job_deployment_plugin: 'bool'):
1183
- """Sets the inference_job_deployment_plugin of this V1UserFeatures.
1184
-
1185
-
1186
- :param inference_job_deployment_plugin: The inference_job_deployment_plugin of this V1UserFeatures. # noqa: E501
1187
- :type: bool
1188
- """
1189
-
1190
- self._inference_job_deployment_plugin = inference_job_deployment_plugin
993
+ self._filestore = filestore
1191
994
 
1192
995
  @property
1193
996
  def instant_capacity_reservation(self) -> 'bool':
@@ -1231,27 +1034,6 @@ class V1UserFeatures(object):
1231
1034
 
1232
1035
  self._job_artifacts_v2 = job_artifacts_v2
1233
1036
 
1234
- @property
1235
- def jobs_init(self) -> 'bool':
1236
- """Gets the jobs_init of this V1UserFeatures. # noqa: E501
1237
-
1238
-
1239
- :return: The jobs_init of this V1UserFeatures. # noqa: E501
1240
- :rtype: bool
1241
- """
1242
- return self._jobs_init
1243
-
1244
- @jobs_init.setter
1245
- def jobs_init(self, jobs_init: 'bool'):
1246
- """Sets the jobs_init of this V1UserFeatures.
1247
-
1248
-
1249
- :param jobs_init: The jobs_init of this V1UserFeatures. # noqa: E501
1250
- :type: bool
1251
- """
1252
-
1253
- self._jobs_init = jobs_init
1254
-
1255
1037
  @property
1256
1038
  def jobs_v2(self) -> 'bool':
1257
1039
  """Gets the jobs_v2 of this V1UserFeatures. # noqa: E501
@@ -1315,27 +1097,6 @@ class V1UserFeatures(object):
1315
1097
 
1316
1098
  self._landing_studios = landing_studios
1317
1099
 
1318
- @property
1319
- def lightning_registry(self) -> 'bool':
1320
- """Gets the lightning_registry of this V1UserFeatures. # noqa: E501
1321
-
1322
-
1323
- :return: The lightning_registry of this V1UserFeatures. # noqa: E501
1324
- :rtype: bool
1325
- """
1326
- return self._lightning_registry
1327
-
1328
- @lightning_registry.setter
1329
- def lightning_registry(self, lightning_registry: 'bool'):
1330
- """Sets the lightning_registry of this V1UserFeatures.
1331
-
1332
-
1333
- :param lightning_registry: The lightning_registry of this V1UserFeatures. # noqa: E501
1334
- :type: bool
1335
- """
1336
-
1337
- self._lightning_registry = lightning_registry
1338
-
1339
1100
  @property
1340
1101
  def lit_logger(self) -> 'bool':
1341
1102
  """Gets the lit_logger of this V1UserFeatures. # noqa: E501
@@ -1357,27 +1118,6 @@ class V1UserFeatures(object):
1357
1118
 
1358
1119
  self._lit_logger = lit_logger
1359
1120
 
1360
- @property
1361
- def lit_logger_storage_v2(self) -> 'bool':
1362
- """Gets the lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
1363
-
1364
-
1365
- :return: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
1366
- :rtype: bool
1367
- """
1368
- return self._lit_logger_storage_v2
1369
-
1370
- @lit_logger_storage_v2.setter
1371
- def lit_logger_storage_v2(self, lit_logger_storage_v2: 'bool'):
1372
- """Sets the lit_logger_storage_v2 of this V1UserFeatures.
1373
-
1374
-
1375
- :param lit_logger_storage_v2: The lit_logger_storage_v2 of this V1UserFeatures. # noqa: E501
1376
- :type: bool
1377
- """
1378
-
1379
- self._lit_logger_storage_v2 = lit_logger_storage_v2
1380
-
1381
1121
  @property
1382
1122
  def mmt_fault_tolerance(self) -> 'bool':
1383
1123
  """Gets the mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
@@ -1483,6 +1223,27 @@ class V1UserFeatures(object):
1483
1223
 
1484
1224
  self._multiple_studio_versions = multiple_studio_versions
1485
1225
 
1226
+ @property
1227
+ def open_api_in_studio(self) -> 'bool':
1228
+ """Gets the open_api_in_studio of this V1UserFeatures. # noqa: E501
1229
+
1230
+
1231
+ :return: The open_api_in_studio of this V1UserFeatures. # noqa: E501
1232
+ :rtype: bool
1233
+ """
1234
+ return self._open_api_in_studio
1235
+
1236
+ @open_api_in_studio.setter
1237
+ def open_api_in_studio(self, open_api_in_studio: 'bool'):
1238
+ """Sets the open_api_in_studio of this V1UserFeatures.
1239
+
1240
+
1241
+ :param open_api_in_studio: The open_api_in_studio of this V1UserFeatures. # noqa: E501
1242
+ :type: bool
1243
+ """
1244
+
1245
+ self._open_api_in_studio = open_api_in_studio
1246
+
1486
1247
  @property
1487
1248
  def org_level_member_permissions(self) -> 'bool':
1488
1249
  """Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
@@ -1903,27 +1664,6 @@ class V1UserFeatures(object):
1903
1664
 
1904
1665
  self._project_selector = project_selector
1905
1666
 
1906
- @property
1907
- def restart_ide_on_hang(self) -> 'bool':
1908
- """Gets the restart_ide_on_hang of this V1UserFeatures. # noqa: E501
1909
-
1910
-
1911
- :return: The restart_ide_on_hang of this V1UserFeatures. # noqa: E501
1912
- :rtype: bool
1913
- """
1914
- return self._restart_ide_on_hang
1915
-
1916
- @restart_ide_on_hang.setter
1917
- def restart_ide_on_hang(self, restart_ide_on_hang: 'bool'):
1918
- """Sets the restart_ide_on_hang of this V1UserFeatures.
1919
-
1920
-
1921
- :param restart_ide_on_hang: The restart_ide_on_hang of this V1UserFeatures. # noqa: E501
1922
- :type: bool
1923
- """
1924
-
1925
- self._restart_ide_on_hang = restart_ide_on_hang
1926
-
1927
1667
  @property
1928
1668
  def restartable_jobs(self) -> 'bool':
1929
1669
  """Gets the restartable_jobs of this V1UserFeatures. # noqa: E501
@@ -2092,6 +1832,27 @@ class V1UserFeatures(object):
2092
1832
 
2093
1833
  self._snowflake_connection = snowflake_connection
2094
1834
 
1835
+ @property
1836
+ def stop_ide_container_on_shutdown(self) -> 'bool':
1837
+ """Gets the stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
1838
+
1839
+
1840
+ :return: The stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
1841
+ :rtype: bool
1842
+ """
1843
+ return self._stop_ide_container_on_shutdown
1844
+
1845
+ @stop_ide_container_on_shutdown.setter
1846
+ def stop_ide_container_on_shutdown(self, stop_ide_container_on_shutdown: 'bool'):
1847
+ """Sets the stop_ide_container_on_shutdown of this V1UserFeatures.
1848
+
1849
+
1850
+ :param stop_ide_container_on_shutdown: The stop_ide_container_on_shutdown of this V1UserFeatures. # noqa: E501
1851
+ :type: bool
1852
+ """
1853
+
1854
+ self._stop_ide_container_on_shutdown = stop_ide_container_on_shutdown
1855
+
2095
1856
  @property
2096
1857
  def studio_config(self) -> 'bool':
2097
1858
  """Gets the studio_config of this V1UserFeatures. # noqa: E501
@@ -2239,27 +2000,6 @@ class V1UserFeatures(object):
2239
2000
 
2240
2001
  self._vultr = vultr
2241
2002
 
2242
- @property
2243
- def writable_data_connections(self) -> 'bool':
2244
- """Gets the writable_data_connections of this V1UserFeatures. # noqa: E501
2245
-
2246
-
2247
- :return: The writable_data_connections of this V1UserFeatures. # noqa: E501
2248
- :rtype: bool
2249
- """
2250
- return self._writable_data_connections
2251
-
2252
- @writable_data_connections.setter
2253
- def writable_data_connections(self, writable_data_connections: 'bool'):
2254
- """Sets the writable_data_connections of this V1UserFeatures.
2255
-
2256
-
2257
- :param writable_data_connections: The writable_data_connections of this V1UserFeatures. # noqa: E501
2258
- :type: bool
2259
- """
2260
-
2261
- self._writable_data_connections = writable_data_connections
2262
-
2263
2003
  def to_dict(self) -> dict:
2264
2004
  """Returns the model properties as a dict"""
2265
2005
  result = {}