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
@@ -42,24 +42,29 @@ class OrgIdMembershipsBody(object):
42
42
  """
43
43
  swagger_types = {
44
44
  'email': 'str',
45
+ 'inviter_id': 'str',
45
46
  'role_ids': 'list[str]',
46
47
  'user_id': 'str'
47
48
  }
48
49
 
49
50
  attribute_map = {
50
51
  'email': 'email',
52
+ 'inviter_id': 'inviterId',
51
53
  'role_ids': 'roleIds',
52
54
  'user_id': 'userId'
53
55
  }
54
56
 
55
- def __init__(self, email: 'str' =None, role_ids: 'list[str]' =None, user_id: 'str' =None): # noqa: E501
57
+ def __init__(self, email: 'str' =None, inviter_id: 'str' =None, role_ids: 'list[str]' =None, user_id: 'str' =None): # noqa: E501
56
58
  """OrgIdMembershipsBody - a model defined in Swagger""" # noqa: E501
57
59
  self._email = None
60
+ self._inviter_id = None
58
61
  self._role_ids = None
59
62
  self._user_id = None
60
63
  self.discriminator = None
61
64
  if email is not None:
62
65
  self.email = email
66
+ if inviter_id is not None:
67
+ self.inviter_id = inviter_id
63
68
  if role_ids is not None:
64
69
  self.role_ids = role_ids
65
70
  if user_id is not None:
@@ -86,6 +91,27 @@ class OrgIdMembershipsBody(object):
86
91
 
87
92
  self._email = email
88
93
 
94
+ @property
95
+ def inviter_id(self) -> 'str':
96
+ """Gets the inviter_id of this OrgIdMembershipsBody. # noqa: E501
97
+
98
+
99
+ :return: The inviter_id of this OrgIdMembershipsBody. # noqa: E501
100
+ :rtype: str
101
+ """
102
+ return self._inviter_id
103
+
104
+ @inviter_id.setter
105
+ def inviter_id(self, inviter_id: 'str'):
106
+ """Sets the inviter_id of this OrgIdMembershipsBody.
107
+
108
+
109
+ :param inviter_id: The inviter_id of this OrgIdMembershipsBody. # noqa: E501
110
+ :type: str
111
+ """
112
+
113
+ self._inviter_id = inviter_id
114
+
89
115
  @property
90
116
  def role_ids(self) -> 'list[str]':
91
117
  """Gets the role_ids of this OrgIdMembershipsBody. # noqa: E501
@@ -41,9 +41,13 @@ class OrgsIdBody(object):
41
41
  and the value is json key in definition.
42
42
  """
43
43
  swagger_types = {
44
+ 'allow_aws_saas': 'bool',
45
+ 'allow_gcp_saas': 'bool',
44
46
  'allow_guest': 'bool',
47
+ 'allow_lambda_saas': 'bool',
45
48
  'allow_member_invitations': 'bool',
46
49
  'allow_member_teamspace_creation': 'bool',
50
+ 'allow_vultr_saas': 'bool',
47
51
  'auto_invite_by_domain': 'bool',
48
52
  'auto_join_domains': 'list[str]',
49
53
  'description': 'str',
@@ -53,15 +57,21 @@ class OrgsIdBody(object):
53
57
  'featured_gallery': 'bool',
54
58
  'location': 'str',
55
59
  'preferred_cluster': 'str',
60
+ 'preferred_deployment_provider': 'str',
61
+ 'preferred_studio_provider': 'str',
56
62
  'start_studios_on_spot_instance': 'bool',
57
63
  'teamspace_default_credits': 'float',
58
64
  'twitter_username': 'str'
59
65
  }
60
66
 
61
67
  attribute_map = {
68
+ 'allow_aws_saas': 'allowAwsSaas',
69
+ 'allow_gcp_saas': 'allowGcpSaas',
62
70
  'allow_guest': 'allowGuest',
71
+ 'allow_lambda_saas': 'allowLambdaSaas',
63
72
  'allow_member_invitations': 'allowMemberInvitations',
64
73
  'allow_member_teamspace_creation': 'allowMemberTeamspaceCreation',
74
+ 'allow_vultr_saas': 'allowVultrSaas',
65
75
  'auto_invite_by_domain': 'autoInviteByDomain',
66
76
  'auto_join_domains': 'autoJoinDomains',
67
77
  'description': 'description',
@@ -71,16 +81,22 @@ class OrgsIdBody(object):
71
81
  'featured_gallery': 'featuredGallery',
72
82
  'location': 'location',
73
83
  'preferred_cluster': 'preferredCluster',
84
+ 'preferred_deployment_provider': 'preferredDeploymentProvider',
85
+ 'preferred_studio_provider': 'preferredStudioProvider',
74
86
  'start_studios_on_spot_instance': 'startStudiosOnSpotInstance',
75
87
  'teamspace_default_credits': 'teamspaceDefaultCredits',
76
88
  'twitter_username': 'twitterUsername'
77
89
  }
78
90
 
79
- def __init__(self, allow_guest: 'bool' =None, allow_member_invitations: 'bool' =None, allow_member_teamspace_creation: 'bool' =None, auto_invite_by_domain: 'bool' =None, auto_join_domains: 'list[str]' =None, description: 'str' =None, display_name: 'str' =None, domain: 'str' =None, email: 'str' =None, featured_gallery: 'bool' =None, location: 'str' =None, preferred_cluster: 'str' =None, start_studios_on_spot_instance: 'bool' =None, teamspace_default_credits: 'float' =None, twitter_username: 'str' =None): # noqa: E501
91
+ def __init__(self, allow_aws_saas: 'bool' =None, allow_gcp_saas: 'bool' =None, allow_guest: 'bool' =None, allow_lambda_saas: 'bool' =None, allow_member_invitations: 'bool' =None, allow_member_teamspace_creation: 'bool' =None, allow_vultr_saas: 'bool' =None, auto_invite_by_domain: 'bool' =None, auto_join_domains: 'list[str]' =None, description: 'str' =None, display_name: 'str' =None, domain: 'str' =None, email: 'str' =None, featured_gallery: 'bool' =None, location: 'str' =None, preferred_cluster: 'str' =None, preferred_deployment_provider: 'str' =None, preferred_studio_provider: 'str' =None, start_studios_on_spot_instance: 'bool' =None, teamspace_default_credits: 'float' =None, twitter_username: 'str' =None): # noqa: E501
80
92
  """OrgsIdBody - a model defined in Swagger""" # noqa: E501
93
+ self._allow_aws_saas = None
94
+ self._allow_gcp_saas = None
81
95
  self._allow_guest = None
96
+ self._allow_lambda_saas = None
82
97
  self._allow_member_invitations = None
83
98
  self._allow_member_teamspace_creation = None
99
+ self._allow_vultr_saas = None
84
100
  self._auto_invite_by_domain = None
85
101
  self._auto_join_domains = None
86
102
  self._description = None
@@ -90,16 +106,26 @@ class OrgsIdBody(object):
90
106
  self._featured_gallery = None
91
107
  self._location = None
92
108
  self._preferred_cluster = None
109
+ self._preferred_deployment_provider = None
110
+ self._preferred_studio_provider = None
93
111
  self._start_studios_on_spot_instance = None
94
112
  self._teamspace_default_credits = None
95
113
  self._twitter_username = None
96
114
  self.discriminator = None
115
+ if allow_aws_saas is not None:
116
+ self.allow_aws_saas = allow_aws_saas
117
+ if allow_gcp_saas is not None:
118
+ self.allow_gcp_saas = allow_gcp_saas
97
119
  if allow_guest is not None:
98
120
  self.allow_guest = allow_guest
121
+ if allow_lambda_saas is not None:
122
+ self.allow_lambda_saas = allow_lambda_saas
99
123
  if allow_member_invitations is not None:
100
124
  self.allow_member_invitations = allow_member_invitations
101
125
  if allow_member_teamspace_creation is not None:
102
126
  self.allow_member_teamspace_creation = allow_member_teamspace_creation
127
+ if allow_vultr_saas is not None:
128
+ self.allow_vultr_saas = allow_vultr_saas
103
129
  if auto_invite_by_domain is not None:
104
130
  self.auto_invite_by_domain = auto_invite_by_domain
105
131
  if auto_join_domains is not None:
@@ -118,6 +144,10 @@ class OrgsIdBody(object):
118
144
  self.location = location
119
145
  if preferred_cluster is not None:
120
146
  self.preferred_cluster = preferred_cluster
147
+ if preferred_deployment_provider is not None:
148
+ self.preferred_deployment_provider = preferred_deployment_provider
149
+ if preferred_studio_provider is not None:
150
+ self.preferred_studio_provider = preferred_studio_provider
121
151
  if start_studios_on_spot_instance is not None:
122
152
  self.start_studios_on_spot_instance = start_studios_on_spot_instance
123
153
  if teamspace_default_credits is not None:
@@ -125,6 +155,48 @@ class OrgsIdBody(object):
125
155
  if twitter_username is not None:
126
156
  self.twitter_username = twitter_username
127
157
 
158
+ @property
159
+ def allow_aws_saas(self) -> 'bool':
160
+ """Gets the allow_aws_saas of this OrgsIdBody. # noqa: E501
161
+
162
+
163
+ :return: The allow_aws_saas of this OrgsIdBody. # noqa: E501
164
+ :rtype: bool
165
+ """
166
+ return self._allow_aws_saas
167
+
168
+ @allow_aws_saas.setter
169
+ def allow_aws_saas(self, allow_aws_saas: 'bool'):
170
+ """Sets the allow_aws_saas of this OrgsIdBody.
171
+
172
+
173
+ :param allow_aws_saas: The allow_aws_saas of this OrgsIdBody. # noqa: E501
174
+ :type: bool
175
+ """
176
+
177
+ self._allow_aws_saas = allow_aws_saas
178
+
179
+ @property
180
+ def allow_gcp_saas(self) -> 'bool':
181
+ """Gets the allow_gcp_saas of this OrgsIdBody. # noqa: E501
182
+
183
+
184
+ :return: The allow_gcp_saas of this OrgsIdBody. # noqa: E501
185
+ :rtype: bool
186
+ """
187
+ return self._allow_gcp_saas
188
+
189
+ @allow_gcp_saas.setter
190
+ def allow_gcp_saas(self, allow_gcp_saas: 'bool'):
191
+ """Sets the allow_gcp_saas of this OrgsIdBody.
192
+
193
+
194
+ :param allow_gcp_saas: The allow_gcp_saas of this OrgsIdBody. # noqa: E501
195
+ :type: bool
196
+ """
197
+
198
+ self._allow_gcp_saas = allow_gcp_saas
199
+
128
200
  @property
129
201
  def allow_guest(self) -> 'bool':
130
202
  """Gets the allow_guest of this OrgsIdBody. # noqa: E501
@@ -146,6 +218,27 @@ class OrgsIdBody(object):
146
218
 
147
219
  self._allow_guest = allow_guest
148
220
 
221
+ @property
222
+ def allow_lambda_saas(self) -> 'bool':
223
+ """Gets the allow_lambda_saas of this OrgsIdBody. # noqa: E501
224
+
225
+
226
+ :return: The allow_lambda_saas of this OrgsIdBody. # noqa: E501
227
+ :rtype: bool
228
+ """
229
+ return self._allow_lambda_saas
230
+
231
+ @allow_lambda_saas.setter
232
+ def allow_lambda_saas(self, allow_lambda_saas: 'bool'):
233
+ """Sets the allow_lambda_saas of this OrgsIdBody.
234
+
235
+
236
+ :param allow_lambda_saas: The allow_lambda_saas of this OrgsIdBody. # noqa: E501
237
+ :type: bool
238
+ """
239
+
240
+ self._allow_lambda_saas = allow_lambda_saas
241
+
149
242
  @property
150
243
  def allow_member_invitations(self) -> 'bool':
151
244
  """Gets the allow_member_invitations of this OrgsIdBody. # noqa: E501
@@ -188,6 +281,27 @@ class OrgsIdBody(object):
188
281
 
189
282
  self._allow_member_teamspace_creation = allow_member_teamspace_creation
190
283
 
284
+ @property
285
+ def allow_vultr_saas(self) -> 'bool':
286
+ """Gets the allow_vultr_saas of this OrgsIdBody. # noqa: E501
287
+
288
+
289
+ :return: The allow_vultr_saas of this OrgsIdBody. # noqa: E501
290
+ :rtype: bool
291
+ """
292
+ return self._allow_vultr_saas
293
+
294
+ @allow_vultr_saas.setter
295
+ def allow_vultr_saas(self, allow_vultr_saas: 'bool'):
296
+ """Sets the allow_vultr_saas of this OrgsIdBody.
297
+
298
+
299
+ :param allow_vultr_saas: The allow_vultr_saas of this OrgsIdBody. # noqa: E501
300
+ :type: bool
301
+ """
302
+
303
+ self._allow_vultr_saas = allow_vultr_saas
304
+
191
305
  @property
192
306
  def auto_invite_by_domain(self) -> 'bool':
193
307
  """Gets the auto_invite_by_domain of this OrgsIdBody. # noqa: E501
@@ -377,6 +491,48 @@ class OrgsIdBody(object):
377
491
 
378
492
  self._preferred_cluster = preferred_cluster
379
493
 
494
+ @property
495
+ def preferred_deployment_provider(self) -> 'str':
496
+ """Gets the preferred_deployment_provider of this OrgsIdBody. # noqa: E501
497
+
498
+
499
+ :return: The preferred_deployment_provider of this OrgsIdBody. # noqa: E501
500
+ :rtype: str
501
+ """
502
+ return self._preferred_deployment_provider
503
+
504
+ @preferred_deployment_provider.setter
505
+ def preferred_deployment_provider(self, preferred_deployment_provider: 'str'):
506
+ """Sets the preferred_deployment_provider of this OrgsIdBody.
507
+
508
+
509
+ :param preferred_deployment_provider: The preferred_deployment_provider of this OrgsIdBody. # noqa: E501
510
+ :type: str
511
+ """
512
+
513
+ self._preferred_deployment_provider = preferred_deployment_provider
514
+
515
+ @property
516
+ def preferred_studio_provider(self) -> 'str':
517
+ """Gets the preferred_studio_provider of this OrgsIdBody. # noqa: E501
518
+
519
+
520
+ :return: The preferred_studio_provider of this OrgsIdBody. # noqa: E501
521
+ :rtype: str
522
+ """
523
+ return self._preferred_studio_provider
524
+
525
+ @preferred_studio_provider.setter
526
+ def preferred_studio_provider(self, preferred_studio_provider: 'str'):
527
+ """Sets the preferred_studio_provider of this OrgsIdBody.
528
+
529
+
530
+ :param preferred_studio_provider: The preferred_studio_provider of this OrgsIdBody. # noqa: E501
531
+ :type: str
532
+ """
533
+
534
+ self._preferred_studio_provider = preferred_studio_provider
535
+
380
536
  @property
381
537
  def start_studios_on_spot_instance(self) -> 'bool':
382
538
  """Gets the start_studios_on_spot_instance of this OrgsIdBody. # noqa: E501