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.
- lightning_sdk/__init__.py +5 -3
- lightning_sdk/api/deployment_api.py +23 -11
- lightning_sdk/api/job_api.py +42 -7
- lightning_sdk/api/lit_container_api.py +23 -3
- lightning_sdk/api/mmt_api.py +46 -8
- lightning_sdk/api/pipeline_api.py +50 -0
- lightning_sdk/api/teamspace_api.py +2 -2
- lightning_sdk/api/utils.py +15 -5
- lightning_sdk/cli/ai_hub.py +30 -65
- lightning_sdk/cli/coloring.py +60 -0
- lightning_sdk/cli/configure.py +25 -40
- lightning_sdk/cli/connect.py +7 -20
- lightning_sdk/cli/create.py +83 -0
- lightning_sdk/cli/delete.py +72 -75
- lightning_sdk/cli/docker.py +22 -0
- lightning_sdk/cli/download.py +78 -113
- lightning_sdk/cli/entrypoint.py +44 -65
- lightning_sdk/cli/generate.py +28 -43
- lightning_sdk/cli/inspect.py +22 -50
- lightning_sdk/cli/list.py +281 -222
- lightning_sdk/cli/mmts_menu.py +1 -1
- lightning_sdk/cli/open.py +62 -0
- lightning_sdk/cli/run.py +430 -263
- lightning_sdk/cli/serve.py +128 -191
- lightning_sdk/cli/start.py +55 -36
- lightning_sdk/cli/stop.py +97 -55
- lightning_sdk/cli/switch.py +53 -36
- lightning_sdk/cli/upload.py +318 -255
- lightning_sdk/deployment/__init__.py +2 -0
- lightning_sdk/deployment/deployment.py +33 -8
- lightning_sdk/lightning_cloud/openapi/__init__.py +23 -0
- lightning_sdk/lightning_cloud/openapi/api/__init__.py +1 -0
- lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +10 -6
- lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +355 -4
- lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +4 -4
- lightning_sdk/lightning_cloud/openapi/api/lit_registry_service_api.py +14 -2
- lightning_sdk/lightning_cloud/openapi/api/pipelines_service_api.py +674 -0
- lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +303 -4
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +22 -0
- lightning_sdk/lightning_cloud/openapi/models/agents_id_body.py +17 -69
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityreservations_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/create.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/id_visibility_body1.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/id_visibility_body2.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/org_id_memberships_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +157 -1
- lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body.py +461 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_pipelines_body.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +157 -1
- lightning_sdk/lightning_cloud/openapi/models/slurm_jobs_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_agent_job.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant.py +17 -69
- lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_artifact_event_type.py +1 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_upload_temporary_artifact_request.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_request.py +461 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_template_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_job_request.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_managed_endpoint_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_multi_machine_job_request.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_pipeline_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_details.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_filestore_data_connection.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_job.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_mmt.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_find_capacity_block_offering_response.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_job.py +133 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_job_artifacts_type.py +103 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_job_timing.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_list_pipelines_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_artifact.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_repository.py +29 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_state.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +209 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline.py +513 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_schedule.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_status.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +157 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_restart_timing.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_shared_filesystem.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_job.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_job_visibility_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_upload_temporary_artifact_request.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +95 -355
- lightning_sdk/lightning_cloud/openapi/models/validate.py +27 -1
- lightning_sdk/lightning_cloud/rest_client.py +4 -2
- lightning_sdk/machine.py +25 -1
- lightning_sdk/models.py +18 -12
- lightning_sdk/pipeline/__init__.py +4 -0
- lightning_sdk/pipeline/pipeline.py +109 -0
- lightning_sdk/pipeline/types.py +268 -0
- lightning_sdk/pipeline/utils.py +69 -0
- lightning_sdk/plugin.py +9 -10
- lightning_sdk/serve.py +134 -0
- lightning_sdk/services/utilities.py +2 -2
- lightning_sdk/studio.py +5 -1
- lightning_sdk/teamspace.py +1 -1
- lightning_sdk/utils/resolve.py +12 -1
- {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/METADATA +6 -8
- {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/RECORD +120 -88
- lightning_sdk/cli/legacy.py +0 -135
- {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/WHEEL +0 -0
- {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.1.58.dist-info → lightning_sdk-0.2.1.dist-info}/top_level.txt +0 -0
|
@@ -41,9 +41,13 @@ class V1Organization(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_domain_validations': 'dict(str, V1AutoJoinDomainValidation)',
|
|
49
53
|
'auto_join_domains': 'list[str]',
|
|
@@ -53,10 +57,14 @@ class V1Organization(object):
|
|
|
53
57
|
'domain': 'str',
|
|
54
58
|
'email': 'str',
|
|
55
59
|
'featured_gallery': 'bool',
|
|
60
|
+
'full_story_end_date': 'datetime',
|
|
61
|
+
'full_story_start_date': 'datetime',
|
|
56
62
|
'id': 'str',
|
|
57
63
|
'location': 'str',
|
|
58
64
|
'name': 'str',
|
|
59
65
|
'preferred_cluster': 'str',
|
|
66
|
+
'preferred_deployment_provider': 'str',
|
|
67
|
+
'preferred_studio_provider': 'str',
|
|
60
68
|
'start_studios_on_spot_instance': 'bool',
|
|
61
69
|
'teamspace_default_credits': 'float',
|
|
62
70
|
'twitter_username': 'str',
|
|
@@ -64,9 +72,13 @@ class V1Organization(object):
|
|
|
64
72
|
}
|
|
65
73
|
|
|
66
74
|
attribute_map = {
|
|
75
|
+
'allow_aws_saas': 'allowAwsSaas',
|
|
76
|
+
'allow_gcp_saas': 'allowGcpSaas',
|
|
67
77
|
'allow_guest': 'allowGuest',
|
|
78
|
+
'allow_lambda_saas': 'allowLambdaSaas',
|
|
68
79
|
'allow_member_invitations': 'allowMemberInvitations',
|
|
69
80
|
'allow_member_teamspace_creation': 'allowMemberTeamspaceCreation',
|
|
81
|
+
'allow_vultr_saas': 'allowVultrSaas',
|
|
70
82
|
'auto_invite_by_domain': 'autoInviteByDomain',
|
|
71
83
|
'auto_join_domain_validations': 'autoJoinDomainValidations',
|
|
72
84
|
'auto_join_domains': 'autoJoinDomains',
|
|
@@ -76,21 +88,29 @@ class V1Organization(object):
|
|
|
76
88
|
'domain': 'domain',
|
|
77
89
|
'email': 'email',
|
|
78
90
|
'featured_gallery': 'featuredGallery',
|
|
91
|
+
'full_story_end_date': 'fullStoryEndDate',
|
|
92
|
+
'full_story_start_date': 'fullStoryStartDate',
|
|
79
93
|
'id': 'id',
|
|
80
94
|
'location': 'location',
|
|
81
95
|
'name': 'name',
|
|
82
96
|
'preferred_cluster': 'preferredCluster',
|
|
97
|
+
'preferred_deployment_provider': 'preferredDeploymentProvider',
|
|
98
|
+
'preferred_studio_provider': 'preferredStudioProvider',
|
|
83
99
|
'start_studios_on_spot_instance': 'startStudiosOnSpotInstance',
|
|
84
100
|
'teamspace_default_credits': 'teamspaceDefaultCredits',
|
|
85
101
|
'twitter_username': 'twitterUsername',
|
|
86
102
|
'updated_at': 'updatedAt'
|
|
87
103
|
}
|
|
88
104
|
|
|
89
|
-
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_domain_validations: 'dict(str, V1AutoJoinDomainValidation)' =None, auto_join_domains: 'list[str]' =None, created_at: 'datetime' =None, description: 'str' =None, display_name: 'str' =None, domain: 'str' =None, email: 'str' =None, featured_gallery: 'bool' =None, id: 'str' =None, location: 'str' =None, name: 'str' =None, preferred_cluster: 'str' =None, start_studios_on_spot_instance: 'bool' =None, teamspace_default_credits: 'float' =None, twitter_username: 'str' =None, updated_at: 'datetime' =None): # noqa: E501
|
|
105
|
+
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_domain_validations: 'dict(str, V1AutoJoinDomainValidation)' =None, auto_join_domains: 'list[str]' =None, created_at: 'datetime' =None, description: 'str' =None, display_name: 'str' =None, domain: 'str' =None, email: 'str' =None, featured_gallery: 'bool' =None, full_story_end_date: 'datetime' =None, full_story_start_date: 'datetime' =None, id: 'str' =None, location: 'str' =None, name: '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, updated_at: 'datetime' =None): # noqa: E501
|
|
90
106
|
"""V1Organization - a model defined in Swagger""" # noqa: E501
|
|
107
|
+
self._allow_aws_saas = None
|
|
108
|
+
self._allow_gcp_saas = None
|
|
91
109
|
self._allow_guest = None
|
|
110
|
+
self._allow_lambda_saas = None
|
|
92
111
|
self._allow_member_invitations = None
|
|
93
112
|
self._allow_member_teamspace_creation = None
|
|
113
|
+
self._allow_vultr_saas = None
|
|
94
114
|
self._auto_invite_by_domain = None
|
|
95
115
|
self._auto_join_domain_validations = None
|
|
96
116
|
self._auto_join_domains = None
|
|
@@ -100,21 +120,33 @@ class V1Organization(object):
|
|
|
100
120
|
self._domain = None
|
|
101
121
|
self._email = None
|
|
102
122
|
self._featured_gallery = None
|
|
123
|
+
self._full_story_end_date = None
|
|
124
|
+
self._full_story_start_date = None
|
|
103
125
|
self._id = None
|
|
104
126
|
self._location = None
|
|
105
127
|
self._name = None
|
|
106
128
|
self._preferred_cluster = None
|
|
129
|
+
self._preferred_deployment_provider = None
|
|
130
|
+
self._preferred_studio_provider = None
|
|
107
131
|
self._start_studios_on_spot_instance = None
|
|
108
132
|
self._teamspace_default_credits = None
|
|
109
133
|
self._twitter_username = None
|
|
110
134
|
self._updated_at = None
|
|
111
135
|
self.discriminator = None
|
|
136
|
+
if allow_aws_saas is not None:
|
|
137
|
+
self.allow_aws_saas = allow_aws_saas
|
|
138
|
+
if allow_gcp_saas is not None:
|
|
139
|
+
self.allow_gcp_saas = allow_gcp_saas
|
|
112
140
|
if allow_guest is not None:
|
|
113
141
|
self.allow_guest = allow_guest
|
|
142
|
+
if allow_lambda_saas is not None:
|
|
143
|
+
self.allow_lambda_saas = allow_lambda_saas
|
|
114
144
|
if allow_member_invitations is not None:
|
|
115
145
|
self.allow_member_invitations = allow_member_invitations
|
|
116
146
|
if allow_member_teamspace_creation is not None:
|
|
117
147
|
self.allow_member_teamspace_creation = allow_member_teamspace_creation
|
|
148
|
+
if allow_vultr_saas is not None:
|
|
149
|
+
self.allow_vultr_saas = allow_vultr_saas
|
|
118
150
|
if auto_invite_by_domain is not None:
|
|
119
151
|
self.auto_invite_by_domain = auto_invite_by_domain
|
|
120
152
|
if auto_join_domain_validations is not None:
|
|
@@ -133,6 +165,10 @@ class V1Organization(object):
|
|
|
133
165
|
self.email = email
|
|
134
166
|
if featured_gallery is not None:
|
|
135
167
|
self.featured_gallery = featured_gallery
|
|
168
|
+
if full_story_end_date is not None:
|
|
169
|
+
self.full_story_end_date = full_story_end_date
|
|
170
|
+
if full_story_start_date is not None:
|
|
171
|
+
self.full_story_start_date = full_story_start_date
|
|
136
172
|
if id is not None:
|
|
137
173
|
self.id = id
|
|
138
174
|
if location is not None:
|
|
@@ -141,6 +177,10 @@ class V1Organization(object):
|
|
|
141
177
|
self.name = name
|
|
142
178
|
if preferred_cluster is not None:
|
|
143
179
|
self.preferred_cluster = preferred_cluster
|
|
180
|
+
if preferred_deployment_provider is not None:
|
|
181
|
+
self.preferred_deployment_provider = preferred_deployment_provider
|
|
182
|
+
if preferred_studio_provider is not None:
|
|
183
|
+
self.preferred_studio_provider = preferred_studio_provider
|
|
144
184
|
if start_studios_on_spot_instance is not None:
|
|
145
185
|
self.start_studios_on_spot_instance = start_studios_on_spot_instance
|
|
146
186
|
if teamspace_default_credits is not None:
|
|
@@ -150,6 +190,48 @@ class V1Organization(object):
|
|
|
150
190
|
if updated_at is not None:
|
|
151
191
|
self.updated_at = updated_at
|
|
152
192
|
|
|
193
|
+
@property
|
|
194
|
+
def allow_aws_saas(self) -> 'bool':
|
|
195
|
+
"""Gets the allow_aws_saas of this V1Organization. # noqa: E501
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
:return: The allow_aws_saas of this V1Organization. # noqa: E501
|
|
199
|
+
:rtype: bool
|
|
200
|
+
"""
|
|
201
|
+
return self._allow_aws_saas
|
|
202
|
+
|
|
203
|
+
@allow_aws_saas.setter
|
|
204
|
+
def allow_aws_saas(self, allow_aws_saas: 'bool'):
|
|
205
|
+
"""Sets the allow_aws_saas of this V1Organization.
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
:param allow_aws_saas: The allow_aws_saas of this V1Organization. # noqa: E501
|
|
209
|
+
:type: bool
|
|
210
|
+
"""
|
|
211
|
+
|
|
212
|
+
self._allow_aws_saas = allow_aws_saas
|
|
213
|
+
|
|
214
|
+
@property
|
|
215
|
+
def allow_gcp_saas(self) -> 'bool':
|
|
216
|
+
"""Gets the allow_gcp_saas of this V1Organization. # noqa: E501
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
:return: The allow_gcp_saas of this V1Organization. # noqa: E501
|
|
220
|
+
:rtype: bool
|
|
221
|
+
"""
|
|
222
|
+
return self._allow_gcp_saas
|
|
223
|
+
|
|
224
|
+
@allow_gcp_saas.setter
|
|
225
|
+
def allow_gcp_saas(self, allow_gcp_saas: 'bool'):
|
|
226
|
+
"""Sets the allow_gcp_saas of this V1Organization.
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
:param allow_gcp_saas: The allow_gcp_saas of this V1Organization. # noqa: E501
|
|
230
|
+
:type: bool
|
|
231
|
+
"""
|
|
232
|
+
|
|
233
|
+
self._allow_gcp_saas = allow_gcp_saas
|
|
234
|
+
|
|
153
235
|
@property
|
|
154
236
|
def allow_guest(self) -> 'bool':
|
|
155
237
|
"""Gets the allow_guest of this V1Organization. # noqa: E501
|
|
@@ -171,6 +253,27 @@ class V1Organization(object):
|
|
|
171
253
|
|
|
172
254
|
self._allow_guest = allow_guest
|
|
173
255
|
|
|
256
|
+
@property
|
|
257
|
+
def allow_lambda_saas(self) -> 'bool':
|
|
258
|
+
"""Gets the allow_lambda_saas of this V1Organization. # noqa: E501
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
:return: The allow_lambda_saas of this V1Organization. # noqa: E501
|
|
262
|
+
:rtype: bool
|
|
263
|
+
"""
|
|
264
|
+
return self._allow_lambda_saas
|
|
265
|
+
|
|
266
|
+
@allow_lambda_saas.setter
|
|
267
|
+
def allow_lambda_saas(self, allow_lambda_saas: 'bool'):
|
|
268
|
+
"""Sets the allow_lambda_saas of this V1Organization.
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
:param allow_lambda_saas: The allow_lambda_saas of this V1Organization. # noqa: E501
|
|
272
|
+
:type: bool
|
|
273
|
+
"""
|
|
274
|
+
|
|
275
|
+
self._allow_lambda_saas = allow_lambda_saas
|
|
276
|
+
|
|
174
277
|
@property
|
|
175
278
|
def allow_member_invitations(self) -> 'bool':
|
|
176
279
|
"""Gets the allow_member_invitations of this V1Organization. # noqa: E501
|
|
@@ -213,6 +316,27 @@ class V1Organization(object):
|
|
|
213
316
|
|
|
214
317
|
self._allow_member_teamspace_creation = allow_member_teamspace_creation
|
|
215
318
|
|
|
319
|
+
@property
|
|
320
|
+
def allow_vultr_saas(self) -> 'bool':
|
|
321
|
+
"""Gets the allow_vultr_saas of this V1Organization. # noqa: E501
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
:return: The allow_vultr_saas of this V1Organization. # noqa: E501
|
|
325
|
+
:rtype: bool
|
|
326
|
+
"""
|
|
327
|
+
return self._allow_vultr_saas
|
|
328
|
+
|
|
329
|
+
@allow_vultr_saas.setter
|
|
330
|
+
def allow_vultr_saas(self, allow_vultr_saas: 'bool'):
|
|
331
|
+
"""Sets the allow_vultr_saas of this V1Organization.
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
:param allow_vultr_saas: The allow_vultr_saas of this V1Organization. # noqa: E501
|
|
335
|
+
:type: bool
|
|
336
|
+
"""
|
|
337
|
+
|
|
338
|
+
self._allow_vultr_saas = allow_vultr_saas
|
|
339
|
+
|
|
216
340
|
@property
|
|
217
341
|
def auto_invite_by_domain(self) -> 'bool':
|
|
218
342
|
"""Gets the auto_invite_by_domain of this V1Organization. # noqa: E501
|
|
@@ -402,6 +526,48 @@ class V1Organization(object):
|
|
|
402
526
|
|
|
403
527
|
self._featured_gallery = featured_gallery
|
|
404
528
|
|
|
529
|
+
@property
|
|
530
|
+
def full_story_end_date(self) -> 'datetime':
|
|
531
|
+
"""Gets the full_story_end_date of this V1Organization. # noqa: E501
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
:return: The full_story_end_date of this V1Organization. # noqa: E501
|
|
535
|
+
:rtype: datetime
|
|
536
|
+
"""
|
|
537
|
+
return self._full_story_end_date
|
|
538
|
+
|
|
539
|
+
@full_story_end_date.setter
|
|
540
|
+
def full_story_end_date(self, full_story_end_date: 'datetime'):
|
|
541
|
+
"""Sets the full_story_end_date of this V1Organization.
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
:param full_story_end_date: The full_story_end_date of this V1Organization. # noqa: E501
|
|
545
|
+
:type: datetime
|
|
546
|
+
"""
|
|
547
|
+
|
|
548
|
+
self._full_story_end_date = full_story_end_date
|
|
549
|
+
|
|
550
|
+
@property
|
|
551
|
+
def full_story_start_date(self) -> 'datetime':
|
|
552
|
+
"""Gets the full_story_start_date of this V1Organization. # noqa: E501
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
:return: The full_story_start_date of this V1Organization. # noqa: E501
|
|
556
|
+
:rtype: datetime
|
|
557
|
+
"""
|
|
558
|
+
return self._full_story_start_date
|
|
559
|
+
|
|
560
|
+
@full_story_start_date.setter
|
|
561
|
+
def full_story_start_date(self, full_story_start_date: 'datetime'):
|
|
562
|
+
"""Sets the full_story_start_date of this V1Organization.
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
:param full_story_start_date: The full_story_start_date of this V1Organization. # noqa: E501
|
|
566
|
+
:type: datetime
|
|
567
|
+
"""
|
|
568
|
+
|
|
569
|
+
self._full_story_start_date = full_story_start_date
|
|
570
|
+
|
|
405
571
|
@property
|
|
406
572
|
def id(self) -> 'str':
|
|
407
573
|
"""Gets the id of this V1Organization. # noqa: E501
|
|
@@ -486,6 +652,48 @@ class V1Organization(object):
|
|
|
486
652
|
|
|
487
653
|
self._preferred_cluster = preferred_cluster
|
|
488
654
|
|
|
655
|
+
@property
|
|
656
|
+
def preferred_deployment_provider(self) -> 'str':
|
|
657
|
+
"""Gets the preferred_deployment_provider of this V1Organization. # noqa: E501
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
:return: The preferred_deployment_provider of this V1Organization. # noqa: E501
|
|
661
|
+
:rtype: str
|
|
662
|
+
"""
|
|
663
|
+
return self._preferred_deployment_provider
|
|
664
|
+
|
|
665
|
+
@preferred_deployment_provider.setter
|
|
666
|
+
def preferred_deployment_provider(self, preferred_deployment_provider: 'str'):
|
|
667
|
+
"""Sets the preferred_deployment_provider of this V1Organization.
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
:param preferred_deployment_provider: The preferred_deployment_provider of this V1Organization. # noqa: E501
|
|
671
|
+
:type: str
|
|
672
|
+
"""
|
|
673
|
+
|
|
674
|
+
self._preferred_deployment_provider = preferred_deployment_provider
|
|
675
|
+
|
|
676
|
+
@property
|
|
677
|
+
def preferred_studio_provider(self) -> 'str':
|
|
678
|
+
"""Gets the preferred_studio_provider of this V1Organization. # noqa: E501
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
:return: The preferred_studio_provider of this V1Organization. # noqa: E501
|
|
682
|
+
:rtype: str
|
|
683
|
+
"""
|
|
684
|
+
return self._preferred_studio_provider
|
|
685
|
+
|
|
686
|
+
@preferred_studio_provider.setter
|
|
687
|
+
def preferred_studio_provider(self, preferred_studio_provider: 'str'):
|
|
688
|
+
"""Sets the preferred_studio_provider of this V1Organization.
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
:param preferred_studio_provider: The preferred_studio_provider of this V1Organization. # noqa: E501
|
|
692
|
+
:type: str
|
|
693
|
+
"""
|
|
694
|
+
|
|
695
|
+
self._preferred_studio_provider = preferred_studio_provider
|
|
696
|
+
|
|
489
697
|
@property
|
|
490
698
|
def start_studios_on_spot_instance(self) -> 'bool':
|
|
491
699
|
"""Gets the start_studios_on_spot_instance of this V1Organization. # noqa: E501
|