lightning-sdk 0.2.19__py3-none-any.whl → 0.2.21rc0__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 (55) hide show
  1. lightning_sdk/__init__.py +1 -1
  2. lightning_sdk/api/license_api.py +28 -6
  3. lightning_sdk/api/llm_api.py +53 -1
  4. lightning_sdk/api/studio_api.py +5 -0
  5. lightning_sdk/cli/deploy/_auth.py +11 -19
  6. lightning_sdk/cli/entrypoint.py +20 -2
  7. lightning_sdk/lightning_cloud/login.py +2 -2
  8. lightning_sdk/lightning_cloud/openapi/__init__.py +2 -3
  9. lightning_sdk/lightning_cloud/openapi/api/endpoint_service_api.py +11 -1
  10. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +121 -0
  11. lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +0 -85
  12. lightning_sdk/lightning_cloud/openapi/models/__init__.py +2 -3
  13. lightning_sdk/lightning_cloud/openapi/models/alertingevents_id_body.py +409 -0
  14. lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +29 -3
  15. lightning_sdk/lightning_cloud/openapi/models/update.py +105 -1
  16. lightning_sdk/lightning_cloud/openapi/models/v1_author.py +201 -0
  17. lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +53 -1
  18. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +27 -1
  19. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template.py +53 -1
  20. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +27 -1
  21. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_deletion_options.py +27 -1
  22. lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +105 -1
  23. lightning_sdk/lightning_cloud/openapi/models/v1_create_project_request.py +79 -1
  24. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +79 -1
  25. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +1 -0
  26. lightning_sdk/lightning_cloud/openapi/models/v1_get_organization_storage_metadata_response.py +79 -1
  27. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +105 -1
  28. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +27 -1
  29. lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +27 -1
  30. lightning_sdk/lightning_cloud/openapi/models/v1_message.py +53 -1
  31. lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +1 -0
  32. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +105 -1
  33. lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +131 -1
  34. lightning_sdk/lightning_cloud/openapi/models/v1_routing_telemetry.py +27 -1
  35. lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +27 -1
  36. lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +2 -0
  37. lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
  38. lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +27 -27
  39. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +79 -365
  40. lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +499 -31
  41. lightning_sdk/lightning_cloud/rest_client.py +13 -11
  42. lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +8 -3
  43. lightning_sdk/llm/__init__.py +2 -1
  44. lightning_sdk/llm/asyncllm.py +48 -0
  45. lightning_sdk/services/license.py +78 -22
  46. lightning_sdk/services/utilities.py +15 -1
  47. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21rc0.dist-info}/METADATA +1 -1
  48. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21rc0.dist-info}/RECORD +52 -52
  49. lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +0 -279
  50. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_response.py +0 -201
  51. lightning_sdk/lightning_cloud/openapi/models/v1_reservation_billing_session.py +0 -279
  52. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21rc0.dist-info}/LICENSE +0 -0
  53. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21rc0.dist-info}/WHEEL +0 -0
  54. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21rc0.dist-info}/entry_points.txt +0 -0
  55. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.21rc0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,201 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ external/v1/auth_service.proto
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: version not set
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+
12
+ NOTE
13
+ ----
14
+ standard swagger-codegen-cli for this python client has been modified
15
+ by custom templates. The purpose of these templates is to include
16
+ typing information in the API and Model code. Please refer to the
17
+ main grid repository for more info
18
+ """
19
+
20
+ import pprint
21
+ import re # noqa: F401
22
+
23
+ from typing import TYPE_CHECKING
24
+
25
+ import six
26
+
27
+ if TYPE_CHECKING:
28
+ from datetime import datetime
29
+ from lightning_sdk.lightning_cloud.openapi.models import *
30
+
31
+ class V1Author(object):
32
+ """NOTE: This class is auto generated by the swagger code generator program.
33
+
34
+ Do not edit the class manually.
35
+ """
36
+ """
37
+ Attributes:
38
+ swagger_types (dict): The key is attribute name
39
+ and the value is attribute type.
40
+ attribute_map (dict): The key is attribute name
41
+ and the value is json key in definition.
42
+ """
43
+ swagger_types = {
44
+ 'first_name': 'str',
45
+ 'id': 'str',
46
+ 'last_name': 'str',
47
+ 'username': 'str'
48
+ }
49
+
50
+ attribute_map = {
51
+ 'first_name': 'firstName',
52
+ 'id': 'id',
53
+ 'last_name': 'lastName',
54
+ 'username': 'username'
55
+ }
56
+
57
+ def __init__(self, first_name: 'str' =None, id: 'str' =None, last_name: 'str' =None, username: 'str' =None): # noqa: E501
58
+ """V1Author - a model defined in Swagger""" # noqa: E501
59
+ self._first_name = None
60
+ self._id = None
61
+ self._last_name = None
62
+ self._username = None
63
+ self.discriminator = None
64
+ if first_name is not None:
65
+ self.first_name = first_name
66
+ if id is not None:
67
+ self.id = id
68
+ if last_name is not None:
69
+ self.last_name = last_name
70
+ if username is not None:
71
+ self.username = username
72
+
73
+ @property
74
+ def first_name(self) -> 'str':
75
+ """Gets the first_name of this V1Author. # noqa: E501
76
+
77
+
78
+ :return: The first_name of this V1Author. # noqa: E501
79
+ :rtype: str
80
+ """
81
+ return self._first_name
82
+
83
+ @first_name.setter
84
+ def first_name(self, first_name: 'str'):
85
+ """Sets the first_name of this V1Author.
86
+
87
+
88
+ :param first_name: The first_name of this V1Author. # noqa: E501
89
+ :type: str
90
+ """
91
+
92
+ self._first_name = first_name
93
+
94
+ @property
95
+ def id(self) -> 'str':
96
+ """Gets the id of this V1Author. # noqa: E501
97
+
98
+
99
+ :return: The id of this V1Author. # noqa: E501
100
+ :rtype: str
101
+ """
102
+ return self._id
103
+
104
+ @id.setter
105
+ def id(self, id: 'str'):
106
+ """Sets the id of this V1Author.
107
+
108
+
109
+ :param id: The id of this V1Author. # noqa: E501
110
+ :type: str
111
+ """
112
+
113
+ self._id = id
114
+
115
+ @property
116
+ def last_name(self) -> 'str':
117
+ """Gets the last_name of this V1Author. # noqa: E501
118
+
119
+
120
+ :return: The last_name of this V1Author. # noqa: E501
121
+ :rtype: str
122
+ """
123
+ return self._last_name
124
+
125
+ @last_name.setter
126
+ def last_name(self, last_name: 'str'):
127
+ """Sets the last_name of this V1Author.
128
+
129
+
130
+ :param last_name: The last_name of this V1Author. # noqa: E501
131
+ :type: str
132
+ """
133
+
134
+ self._last_name = last_name
135
+
136
+ @property
137
+ def username(self) -> 'str':
138
+ """Gets the username of this V1Author. # noqa: E501
139
+
140
+
141
+ :return: The username of this V1Author. # noqa: E501
142
+ :rtype: str
143
+ """
144
+ return self._username
145
+
146
+ @username.setter
147
+ def username(self, username: 'str'):
148
+ """Sets the username of this V1Author.
149
+
150
+
151
+ :param username: The username of this V1Author. # noqa: E501
152
+ :type: str
153
+ """
154
+
155
+ self._username = username
156
+
157
+ def to_dict(self) -> dict:
158
+ """Returns the model properties as a dict"""
159
+ result = {}
160
+
161
+ for attr, _ in six.iteritems(self.swagger_types):
162
+ value = getattr(self, attr)
163
+ if isinstance(value, list):
164
+ result[attr] = list(map(
165
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
166
+ value
167
+ ))
168
+ elif hasattr(value, "to_dict"):
169
+ result[attr] = value.to_dict()
170
+ elif isinstance(value, dict):
171
+ result[attr] = dict(map(
172
+ lambda item: (item[0], item[1].to_dict())
173
+ if hasattr(item[1], "to_dict") else item,
174
+ value.items()
175
+ ))
176
+ else:
177
+ result[attr] = value
178
+ if issubclass(V1Author, dict):
179
+ for key, value in self.items():
180
+ result[key] = value
181
+
182
+ return result
183
+
184
+ def to_str(self) -> str:
185
+ """Returns the string representation of the model"""
186
+ return pprint.pformat(self.to_dict())
187
+
188
+ def __repr__(self) -> str:
189
+ """For `print` and `pprint`"""
190
+ return self.to_str()
191
+
192
+ def __eq__(self, other: 'V1Author') -> bool:
193
+ """Returns true if both objects are equal"""
194
+ if not isinstance(other, V1Author):
195
+ return False
196
+
197
+ return self.__dict__ == other.__dict__
198
+
199
+ def __ne__(self, other: 'V1Author') -> bool:
200
+ """Returns true if both objects are not equal"""
201
+ return not self == other
@@ -41,41 +41,49 @@ class V1BlogPost(object):
41
41
  and the value is json key in definition.
42
42
  """
43
43
  swagger_types = {
44
+ 'author': 'V1Author',
44
45
  'author_id': 'str',
45
46
  'category': 'str',
46
47
  'created_at': 'datetime',
47
48
  'description': 'str',
48
49
  'id': 'str',
49
50
  'image_url': 'str',
51
+ 'lit_page': 'V1LitPage',
50
52
  'lit_page_id': 'str',
51
53
  'title': 'str',
52
54
  'updated_at': 'datetime'
53
55
  }
54
56
 
55
57
  attribute_map = {
58
+ 'author': 'author',
56
59
  'author_id': 'authorId',
57
60
  'category': 'category',
58
61
  'created_at': 'createdAt',
59
62
  'description': 'description',
60
63
  'id': 'id',
61
64
  'image_url': 'imageUrl',
65
+ 'lit_page': 'litPage',
62
66
  'lit_page_id': 'litPageId',
63
67
  'title': 'title',
64
68
  'updated_at': 'updatedAt'
65
69
  }
66
70
 
67
- def __init__(self, author_id: 'str' =None, category: 'str' =None, created_at: 'datetime' =None, description: 'str' =None, id: 'str' =None, image_url: 'str' =None, lit_page_id: 'str' =None, title: 'str' =None, updated_at: 'datetime' =None): # noqa: E501
71
+ def __init__(self, author: 'V1Author' =None, author_id: 'str' =None, category: 'str' =None, created_at: 'datetime' =None, description: 'str' =None, id: 'str' =None, image_url: 'str' =None, lit_page: 'V1LitPage' =None, lit_page_id: 'str' =None, title: 'str' =None, updated_at: 'datetime' =None): # noqa: E501
68
72
  """V1BlogPost - a model defined in Swagger""" # noqa: E501
73
+ self._author = None
69
74
  self._author_id = None
70
75
  self._category = None
71
76
  self._created_at = None
72
77
  self._description = None
73
78
  self._id = None
74
79
  self._image_url = None
80
+ self._lit_page = None
75
81
  self._lit_page_id = None
76
82
  self._title = None
77
83
  self._updated_at = None
78
84
  self.discriminator = None
85
+ if author is not None:
86
+ self.author = author
79
87
  if author_id is not None:
80
88
  self.author_id = author_id
81
89
  if category is not None:
@@ -88,6 +96,8 @@ class V1BlogPost(object):
88
96
  self.id = id
89
97
  if image_url is not None:
90
98
  self.image_url = image_url
99
+ if lit_page is not None:
100
+ self.lit_page = lit_page
91
101
  if lit_page_id is not None:
92
102
  self.lit_page_id = lit_page_id
93
103
  if title is not None:
@@ -95,6 +105,27 @@ class V1BlogPost(object):
95
105
  if updated_at is not None:
96
106
  self.updated_at = updated_at
97
107
 
108
+ @property
109
+ def author(self) -> 'V1Author':
110
+ """Gets the author of this V1BlogPost. # noqa: E501
111
+
112
+
113
+ :return: The author of this V1BlogPost. # noqa: E501
114
+ :rtype: V1Author
115
+ """
116
+ return self._author
117
+
118
+ @author.setter
119
+ def author(self, author: 'V1Author'):
120
+ """Sets the author of this V1BlogPost.
121
+
122
+
123
+ :param author: The author of this V1BlogPost. # noqa: E501
124
+ :type: V1Author
125
+ """
126
+
127
+ self._author = author
128
+
98
129
  @property
99
130
  def author_id(self) -> 'str':
100
131
  """Gets the author_id of this V1BlogPost. # noqa: E501
@@ -221,6 +252,27 @@ class V1BlogPost(object):
221
252
 
222
253
  self._image_url = image_url
223
254
 
255
+ @property
256
+ def lit_page(self) -> 'V1LitPage':
257
+ """Gets the lit_page of this V1BlogPost. # noqa: E501
258
+
259
+
260
+ :return: The lit_page of this V1BlogPost. # noqa: E501
261
+ :rtype: V1LitPage
262
+ """
263
+ return self._lit_page
264
+
265
+ @lit_page.setter
266
+ def lit_page(self, lit_page: 'V1LitPage'):
267
+ """Sets the lit_page of this V1BlogPost.
268
+
269
+
270
+ :param lit_page: The lit_page of this V1BlogPost. # noqa: E501
271
+ :type: V1LitPage
272
+ """
273
+
274
+ self._lit_page = lit_page
275
+
224
276
  @property
225
277
  def lit_page_id(self) -> 'str':
226
278
  """Gets the lit_page_id of this V1BlogPost. # noqa: E501
@@ -78,6 +78,7 @@ class V1CloudSpace(object):
78
78
  'paper_org': 'str',
79
79
  'paper_org_avatar_url': 'str',
80
80
  'paper_url': 'str',
81
+ 'persistent_disk_id': 'str',
81
82
  'project_id': 'str',
82
83
  'publications': 'list[V1CloudSpaceVersionPublication]',
83
84
  'published_at': 'datetime',
@@ -135,6 +136,7 @@ class V1CloudSpace(object):
135
136
  'paper_org': 'paperOrg',
136
137
  'paper_org_avatar_url': 'paperOrgAvatarUrl',
137
138
  'paper_url': 'paperUrl',
139
+ 'persistent_disk_id': 'persistentDiskId',
138
140
  'project_id': 'projectId',
139
141
  'publications': 'publications',
140
142
  'published_at': 'publishedAt',
@@ -154,7 +156,7 @@ class V1CloudSpace(object):
154
156
  'web_path': 'webPath'
155
157
  }
156
158
 
157
- def __init__(self, auto_switch_machine: 'bool' =None, cache_data_connection_id: 'str' =None, can_download_source_code: 'bool' =None, cluster_id: 'str' =None, code_config: 'V1CloudSpaceInstanceConfig' =None, code_status: 'V1GetCloudSpaceInstanceStatusResponse' =None, code_url: 'str' =None, created_at: 'datetime' =None, data_connection_mounts: 'list[V1DataConnectionMount]' =None, description: 'str' =None, display_name: 'str' =None, engagement_counts: 'dict(str, str)' =None, env: 'list[V1EnvVar]' =None, environment_config: 'V1CloudSpaceEnvironmentConfig' =None, environment_template_id: 'str' =None, featured: 'bool' =None, hide_files: 'bool' =None, id: 'str' =None, image_status: 'V1ImageState' =None, is_cloudspace_private: 'bool' =None, is_code_private: 'bool' =None, is_favorite: 'bool' =None, is_published: 'bool' =None, license: 'str' =None, license_url: 'str' =None, lock_out: 'bool' =None, machine_image_version: 'str' =None, max_run_duration: 'str' =None, message: 'str' =None, multi_user_edit: 'bool' =None, name: 'str' =None, number_of_files: 'str' =None, operating_cost: 'str' =None, paper_authors: 'str' =None, paper_org: 'str' =None, paper_org_avatar_url: 'str' =None, paper_url: 'str' =None, project_id: 'str' =None, publications: 'list[V1CloudSpaceVersionPublication]' =None, published_at: 'datetime' =None, published_to_org_at: 'datetime' =None, state: 'V1CloudSpaceState' =None, switch_to_default_machine_on_idle: 'bool' =None, sync_duration: 'str' =None, sync_percentage: 'str' =None, tags: 'list[V1ResourceTag]' =None, thumbnail_file_type: 'str' =None, thumbnail_updated_at: 'datetime' =None, thumbnail_url: 'str' =None, total_size_bytes: 'str' =None, updated_at: 'datetime' =None, user_id: 'str' =None, user_metadata: 'str' =None, web_path: 'str' =None): # noqa: E501
159
+ def __init__(self, auto_switch_machine: 'bool' =None, cache_data_connection_id: 'str' =None, can_download_source_code: 'bool' =None, cluster_id: 'str' =None, code_config: 'V1CloudSpaceInstanceConfig' =None, code_status: 'V1GetCloudSpaceInstanceStatusResponse' =None, code_url: 'str' =None, created_at: 'datetime' =None, data_connection_mounts: 'list[V1DataConnectionMount]' =None, description: 'str' =None, display_name: 'str' =None, engagement_counts: 'dict(str, str)' =None, env: 'list[V1EnvVar]' =None, environment_config: 'V1CloudSpaceEnvironmentConfig' =None, environment_template_id: 'str' =None, featured: 'bool' =None, hide_files: 'bool' =None, id: 'str' =None, image_status: 'V1ImageState' =None, is_cloudspace_private: 'bool' =None, is_code_private: 'bool' =None, is_favorite: 'bool' =None, is_published: 'bool' =None, license: 'str' =None, license_url: 'str' =None, lock_out: 'bool' =None, machine_image_version: 'str' =None, max_run_duration: 'str' =None, message: 'str' =None, multi_user_edit: 'bool' =None, name: 'str' =None, number_of_files: 'str' =None, operating_cost: 'str' =None, paper_authors: 'str' =None, paper_org: 'str' =None, paper_org_avatar_url: 'str' =None, paper_url: 'str' =None, persistent_disk_id: 'str' =None, project_id: 'str' =None, publications: 'list[V1CloudSpaceVersionPublication]' =None, published_at: 'datetime' =None, published_to_org_at: 'datetime' =None, state: 'V1CloudSpaceState' =None, switch_to_default_machine_on_idle: 'bool' =None, sync_duration: 'str' =None, sync_percentage: 'str' =None, tags: 'list[V1ResourceTag]' =None, thumbnail_file_type: 'str' =None, thumbnail_updated_at: 'datetime' =None, thumbnail_url: 'str' =None, total_size_bytes: 'str' =None, updated_at: 'datetime' =None, user_id: 'str' =None, user_metadata: 'str' =None, web_path: 'str' =None): # noqa: E501
158
160
  """V1CloudSpace - a model defined in Swagger""" # noqa: E501
159
161
  self._auto_switch_machine = None
160
162
  self._cache_data_connection_id = None
@@ -193,6 +195,7 @@ class V1CloudSpace(object):
193
195
  self._paper_org = None
194
196
  self._paper_org_avatar_url = None
195
197
  self._paper_url = None
198
+ self._persistent_disk_id = None
196
199
  self._project_id = None
197
200
  self._publications = None
198
201
  self._published_at = None
@@ -285,6 +288,8 @@ class V1CloudSpace(object):
285
288
  self.paper_org_avatar_url = paper_org_avatar_url
286
289
  if paper_url is not None:
287
290
  self.paper_url = paper_url
291
+ if persistent_disk_id is not None:
292
+ self.persistent_disk_id = persistent_disk_id
288
293
  if project_id is not None:
289
294
  self.project_id = project_id
290
295
  if publications is not None:
@@ -1097,6 +1102,27 @@ class V1CloudSpace(object):
1097
1102
 
1098
1103
  self._paper_url = paper_url
1099
1104
 
1105
+ @property
1106
+ def persistent_disk_id(self) -> 'str':
1107
+ """Gets the persistent_disk_id of this V1CloudSpace. # noqa: E501
1108
+
1109
+
1110
+ :return: The persistent_disk_id of this V1CloudSpace. # noqa: E501
1111
+ :rtype: str
1112
+ """
1113
+ return self._persistent_disk_id
1114
+
1115
+ @persistent_disk_id.setter
1116
+ def persistent_disk_id(self, persistent_disk_id: 'str'):
1117
+ """Sets the persistent_disk_id of this V1CloudSpace.
1118
+
1119
+
1120
+ :param persistent_disk_id: The persistent_disk_id of this V1CloudSpace. # noqa: E501
1121
+ :type: str
1122
+ """
1123
+
1124
+ self._persistent_disk_id = persistent_disk_id
1125
+
1100
1126
  @property
1101
1127
  def project_id(self) -> 'str':
1102
1128
  """Gets the project_id of this V1CloudSpace. # noqa: E501
@@ -43,7 +43,9 @@ class V1CloudSpaceEnvironmentTemplate(object):
43
43
  swagger_types = {
44
44
  'config': 'V1CloudSpaceEnvironmentTemplateConfig',
45
45
  'created_at': 'datetime',
46
+ 'description': 'str',
46
47
  'disabled': 'bool',
48
+ 'icon': 'str',
47
49
  'id': 'str',
48
50
  'managed': 'bool',
49
51
  'managed_id': 'str',
@@ -56,7 +58,9 @@ class V1CloudSpaceEnvironmentTemplate(object):
56
58
  attribute_map = {
57
59
  'config': 'config',
58
60
  'created_at': 'createdAt',
61
+ 'description': 'description',
59
62
  'disabled': 'disabled',
63
+ 'icon': 'icon',
60
64
  'id': 'id',
61
65
  'managed': 'managed',
62
66
  'managed_id': 'managedId',
@@ -66,11 +70,13 @@ class V1CloudSpaceEnvironmentTemplate(object):
66
70
  'user_id': 'userId'
67
71
  }
68
72
 
69
- def __init__(self, config: 'V1CloudSpaceEnvironmentTemplateConfig' =None, created_at: 'datetime' =None, disabled: 'bool' =None, id: 'str' =None, managed: 'bool' =None, managed_id: 'str' =None, name: 'str' =None, org_id: 'str' =None, updated_at: 'datetime' =None, user_id: 'str' =None): # noqa: E501
73
+ def __init__(self, config: 'V1CloudSpaceEnvironmentTemplateConfig' =None, created_at: 'datetime' =None, description: 'str' =None, disabled: 'bool' =None, icon: 'str' =None, id: 'str' =None, managed: 'bool' =None, managed_id: 'str' =None, name: 'str' =None, org_id: 'str' =None, updated_at: 'datetime' =None, user_id: 'str' =None): # noqa: E501
70
74
  """V1CloudSpaceEnvironmentTemplate - a model defined in Swagger""" # noqa: E501
71
75
  self._config = None
72
76
  self._created_at = None
77
+ self._description = None
73
78
  self._disabled = None
79
+ self._icon = None
74
80
  self._id = None
75
81
  self._managed = None
76
82
  self._managed_id = None
@@ -83,8 +89,12 @@ class V1CloudSpaceEnvironmentTemplate(object):
83
89
  self.config = config
84
90
  if created_at is not None:
85
91
  self.created_at = created_at
92
+ if description is not None:
93
+ self.description = description
86
94
  if disabled is not None:
87
95
  self.disabled = disabled
96
+ if icon is not None:
97
+ self.icon = icon
88
98
  if id is not None:
89
99
  self.id = id
90
100
  if managed is not None:
@@ -142,6 +152,27 @@ class V1CloudSpaceEnvironmentTemplate(object):
142
152
 
143
153
  self._created_at = created_at
144
154
 
155
+ @property
156
+ def description(self) -> 'str':
157
+ """Gets the description of this V1CloudSpaceEnvironmentTemplate. # noqa: E501
158
+
159
+
160
+ :return: The description of this V1CloudSpaceEnvironmentTemplate. # noqa: E501
161
+ :rtype: str
162
+ """
163
+ return self._description
164
+
165
+ @description.setter
166
+ def description(self, description: 'str'):
167
+ """Sets the description of this V1CloudSpaceEnvironmentTemplate.
168
+
169
+
170
+ :param description: The description of this V1CloudSpaceEnvironmentTemplate. # noqa: E501
171
+ :type: str
172
+ """
173
+
174
+ self._description = description
175
+
145
176
  @property
146
177
  def disabled(self) -> 'bool':
147
178
  """Gets the disabled of this V1CloudSpaceEnvironmentTemplate. # noqa: E501
@@ -163,6 +194,27 @@ class V1CloudSpaceEnvironmentTemplate(object):
163
194
 
164
195
  self._disabled = disabled
165
196
 
197
+ @property
198
+ def icon(self) -> 'str':
199
+ """Gets the icon of this V1CloudSpaceEnvironmentTemplate. # noqa: E501
200
+
201
+
202
+ :return: The icon of this V1CloudSpaceEnvironmentTemplate. # noqa: E501
203
+ :rtype: str
204
+ """
205
+ return self._icon
206
+
207
+ @icon.setter
208
+ def icon(self, icon: 'str'):
209
+ """Sets the icon of this V1CloudSpaceEnvironmentTemplate.
210
+
211
+
212
+ :param icon: The icon of this V1CloudSpaceEnvironmentTemplate. # noqa: E501
213
+ :type: str
214
+ """
215
+
216
+ self._icon = icon
217
+
166
218
  @property
167
219
  def id(self) -> 'str':
168
220
  """Gets the id of this V1CloudSpaceEnvironmentTemplate. # noqa: E501
@@ -44,6 +44,7 @@ class V1CloudSpaceEnvironmentTemplateConfig(object):
44
44
  'allowed_machines': 'list[str]',
45
45
  'default_machine': 'str',
46
46
  'environment_type': 'V1CloudSpaceEnvironmentType',
47
+ 'initial_setup_script_text': 'str',
47
48
  'machine_image_version': 'str',
48
49
  'plugins': 'list[str]',
49
50
  'setup_script_text': 'str'
@@ -53,16 +54,18 @@ class V1CloudSpaceEnvironmentTemplateConfig(object):
53
54
  'allowed_machines': 'allowedMachines',
54
55
  'default_machine': 'defaultMachine',
55
56
  'environment_type': 'environmentType',
57
+ 'initial_setup_script_text': 'initialSetupScriptText',
56
58
  'machine_image_version': 'machineImageVersion',
57
59
  'plugins': 'plugins',
58
60
  'setup_script_text': 'setupScriptText'
59
61
  }
60
62
 
61
- def __init__(self, allowed_machines: 'list[str]' =None, default_machine: 'str' =None, environment_type: 'V1CloudSpaceEnvironmentType' =None, machine_image_version: 'str' =None, plugins: 'list[str]' =None, setup_script_text: 'str' =None): # noqa: E501
63
+ def __init__(self, allowed_machines: 'list[str]' =None, default_machine: 'str' =None, environment_type: 'V1CloudSpaceEnvironmentType' =None, initial_setup_script_text: 'str' =None, machine_image_version: 'str' =None, plugins: 'list[str]' =None, setup_script_text: 'str' =None): # noqa: E501
62
64
  """V1CloudSpaceEnvironmentTemplateConfig - a model defined in Swagger""" # noqa: E501
63
65
  self._allowed_machines = None
64
66
  self._default_machine = None
65
67
  self._environment_type = None
68
+ self._initial_setup_script_text = None
66
69
  self._machine_image_version = None
67
70
  self._plugins = None
68
71
  self._setup_script_text = None
@@ -73,6 +76,8 @@ class V1CloudSpaceEnvironmentTemplateConfig(object):
73
76
  self.default_machine = default_machine
74
77
  if environment_type is not None:
75
78
  self.environment_type = environment_type
79
+ if initial_setup_script_text is not None:
80
+ self.initial_setup_script_text = initial_setup_script_text
76
81
  if machine_image_version is not None:
77
82
  self.machine_image_version = machine_image_version
78
83
  if plugins is not None:
@@ -143,6 +148,27 @@ class V1CloudSpaceEnvironmentTemplateConfig(object):
143
148
 
144
149
  self._environment_type = environment_type
145
150
 
151
+ @property
152
+ def initial_setup_script_text(self) -> 'str':
153
+ """Gets the initial_setup_script_text of this V1CloudSpaceEnvironmentTemplateConfig. # noqa: E501
154
+
155
+
156
+ :return: The initial_setup_script_text of this V1CloudSpaceEnvironmentTemplateConfig. # noqa: E501
157
+ :rtype: str
158
+ """
159
+ return self._initial_setup_script_text
160
+
161
+ @initial_setup_script_text.setter
162
+ def initial_setup_script_text(self, initial_setup_script_text: 'str'):
163
+ """Sets the initial_setup_script_text of this V1CloudSpaceEnvironmentTemplateConfig.
164
+
165
+
166
+ :param initial_setup_script_text: The initial_setup_script_text of this V1CloudSpaceEnvironmentTemplateConfig. # noqa: E501
167
+ :type: str
168
+ """
169
+
170
+ self._initial_setup_script_text = initial_setup_script_text
171
+
146
172
  @property
147
173
  def machine_image_version(self) -> 'str':
148
174
  """Gets the machine_image_version of this V1CloudSpaceEnvironmentTemplateConfig. # noqa: E501
@@ -42,21 +42,26 @@ class V1ClusterDeletionOptions(object):
42
42
  """
43
43
  swagger_types = {
44
44
  'delete_artifacts': 'bool',
45
+ 'delete_filesystems': 'bool',
45
46
  'delete_system_logs': 'bool'
46
47
  }
47
48
 
48
49
  attribute_map = {
49
50
  'delete_artifacts': 'deleteArtifacts',
51
+ 'delete_filesystems': 'deleteFilesystems',
50
52
  'delete_system_logs': 'deleteSystemLogs'
51
53
  }
52
54
 
53
- def __init__(self, delete_artifacts: 'bool' =None, delete_system_logs: 'bool' =None): # noqa: E501
55
+ def __init__(self, delete_artifacts: 'bool' =None, delete_filesystems: 'bool' =None, delete_system_logs: 'bool' =None): # noqa: E501
54
56
  """V1ClusterDeletionOptions - a model defined in Swagger""" # noqa: E501
55
57
  self._delete_artifacts = None
58
+ self._delete_filesystems = None
56
59
  self._delete_system_logs = None
57
60
  self.discriminator = None
58
61
  if delete_artifacts is not None:
59
62
  self.delete_artifacts = delete_artifacts
63
+ if delete_filesystems is not None:
64
+ self.delete_filesystems = delete_filesystems
60
65
  if delete_system_logs is not None:
61
66
  self.delete_system_logs = delete_system_logs
62
67
 
@@ -81,6 +86,27 @@ class V1ClusterDeletionOptions(object):
81
86
 
82
87
  self._delete_artifacts = delete_artifacts
83
88
 
89
+ @property
90
+ def delete_filesystems(self) -> 'bool':
91
+ """Gets the delete_filesystems of this V1ClusterDeletionOptions. # noqa: E501
92
+
93
+
94
+ :return: The delete_filesystems of this V1ClusterDeletionOptions. # noqa: E501
95
+ :rtype: bool
96
+ """
97
+ return self._delete_filesystems
98
+
99
+ @delete_filesystems.setter
100
+ def delete_filesystems(self, delete_filesystems: 'bool'):
101
+ """Sets the delete_filesystems of this V1ClusterDeletionOptions.
102
+
103
+
104
+ :param delete_filesystems: The delete_filesystems of this V1ClusterDeletionOptions. # noqa: E501
105
+ :type: bool
106
+ """
107
+
108
+ self._delete_filesystems = delete_filesystems
109
+
84
110
  @property
85
111
  def delete_system_logs(self) -> 'bool':
86
112
  """Gets the delete_system_logs of this V1ClusterDeletionOptions. # noqa: E501