lightning-sdk 0.2.19__py3-none-any.whl → 0.2.20__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 (41) hide show
  1. lightning_sdk/__init__.py +1 -1
  2. lightning_sdk/api/license_api.py +28 -6
  3. lightning_sdk/cli/deploy/_auth.py +11 -19
  4. lightning_sdk/cli/entrypoint.py +20 -2
  5. lightning_sdk/lightning_cloud/login.py +2 -2
  6. lightning_sdk/lightning_cloud/openapi/__init__.py +2 -2
  7. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +121 -0
  8. lightning_sdk/lightning_cloud/openapi/models/__init__.py +2 -2
  9. lightning_sdk/lightning_cloud/openapi/models/alertingevents_id_body.py +409 -0
  10. lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +29 -3
  11. lightning_sdk/lightning_cloud/openapi/models/update.py +27 -1
  12. lightning_sdk/lightning_cloud/openapi/models/v1_author.py +201 -0
  13. lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +53 -1
  14. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +27 -1
  15. lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +27 -1
  16. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +79 -1
  17. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +1 -0
  18. lightning_sdk/lightning_cloud/openapi/models/v1_get_organization_storage_metadata_response.py +79 -1
  19. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +105 -1
  20. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +27 -1
  21. lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +27 -1
  22. lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +1 -0
  23. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +105 -1
  24. lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +131 -1
  25. lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +27 -1
  26. lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +2 -0
  27. lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
  28. lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +27 -27
  29. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +53 -79
  30. lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +499 -31
  31. lightning_sdk/lightning_cloud/rest_client.py +13 -11
  32. lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +8 -3
  33. lightning_sdk/services/license.py +78 -22
  34. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/METADATA +1 -1
  35. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/RECORD +39 -39
  36. lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +0 -279
  37. lightning_sdk/lightning_cloud/openapi/models/v1_reservation_billing_session.py +0 -279
  38. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/LICENSE +0 -0
  39. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/WHEEL +0 -0
  40. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/entry_points.txt +0 -0
  41. {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.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
@@ -47,6 +47,7 @@ class V1CreateCloudSpaceEnvironmentTemplateRequest(object):
47
47
  'machine_image_version': 'str',
48
48
  'name': 'str',
49
49
  'org_id': 'str',
50
+ 'plugins': 'list[str]',
50
51
  'setup_script_text': 'str'
51
52
  }
52
53
 
@@ -57,10 +58,11 @@ class V1CreateCloudSpaceEnvironmentTemplateRequest(object):
57
58
  'machine_image_version': 'machineImageVersion',
58
59
  'name': 'name',
59
60
  'org_id': 'orgId',
61
+ 'plugins': 'plugins',
60
62
  'setup_script_text': 'setupScriptText'
61
63
  }
62
64
 
63
- def __init__(self, allowed_machines: 'list[str]' =None, default_machine: 'str' =None, environment_type: 'V1CloudSpaceEnvironmentType' =None, machine_image_version: 'str' =None, name: 'str' =None, org_id: 'str' =None, setup_script_text: 'str' =None): # noqa: E501
65
+ def __init__(self, allowed_machines: 'list[str]' =None, default_machine: 'str' =None, environment_type: 'V1CloudSpaceEnvironmentType' =None, machine_image_version: 'str' =None, name: 'str' =None, org_id: 'str' =None, plugins: 'list[str]' =None, setup_script_text: 'str' =None): # noqa: E501
64
66
  """V1CreateCloudSpaceEnvironmentTemplateRequest - a model defined in Swagger""" # noqa: E501
65
67
  self._allowed_machines = None
66
68
  self._default_machine = None
@@ -68,6 +70,7 @@ class V1CreateCloudSpaceEnvironmentTemplateRequest(object):
68
70
  self._machine_image_version = None
69
71
  self._name = None
70
72
  self._org_id = None
73
+ self._plugins = None
71
74
  self._setup_script_text = None
72
75
  self.discriminator = None
73
76
  if allowed_machines is not None:
@@ -82,6 +85,8 @@ class V1CreateCloudSpaceEnvironmentTemplateRequest(object):
82
85
  self.name = name
83
86
  if org_id is not None:
84
87
  self.org_id = org_id
88
+ if plugins is not None:
89
+ self.plugins = plugins
85
90
  if setup_script_text is not None:
86
91
  self.setup_script_text = setup_script_text
87
92
 
@@ -211,6 +216,27 @@ class V1CreateCloudSpaceEnvironmentTemplateRequest(object):
211
216
 
212
217
  self._org_id = org_id
213
218
 
219
+ @property
220
+ def plugins(self) -> 'list[str]':
221
+ """Gets the plugins of this V1CreateCloudSpaceEnvironmentTemplateRequest. # noqa: E501
222
+
223
+
224
+ :return: The plugins of this V1CreateCloudSpaceEnvironmentTemplateRequest. # noqa: E501
225
+ :rtype: list[str]
226
+ """
227
+ return self._plugins
228
+
229
+ @plugins.setter
230
+ def plugins(self, plugins: 'list[str]'):
231
+ """Sets the plugins of this V1CreateCloudSpaceEnvironmentTemplateRequest.
232
+
233
+
234
+ :param plugins: The plugins of this V1CreateCloudSpaceEnvironmentTemplateRequest. # noqa: E501
235
+ :type: list[str]
236
+ """
237
+
238
+ self._plugins = plugins
239
+
214
240
  @property
215
241
  def setup_script_text(self) -> 'str':
216
242
  """Gets the setup_script_text of this V1CreateCloudSpaceEnvironmentTemplateRequest. # noqa: E501
@@ -53,6 +53,7 @@ class V1DataConnection(object):
53
53
  'gcs_folder': 'V1GCSFolderDataConnection',
54
54
  'id': 'str',
55
55
  'index': 'V1Index',
56
+ 'is_billable_folder': 'bool',
56
57
  'is_cache': 'bool',
57
58
  'is_managed': 'bool',
58
59
  'lock_out': 'bool',
@@ -64,6 +65,8 @@ class V1DataConnection(object):
64
65
  's3_folder': 'V1S3FolderDataConnection',
65
66
  'snowflake': 'V1SnowflakeDataConnection',
66
67
  'state': 'V1DataConnectionState',
68
+ 'total_daily_read_bytes': 'str',
69
+ 'total_daily_write_bytes': 'str',
67
70
  'total_size_bytes': 'str',
68
71
  'type': 'str',
69
72
  'updated_at': 'datetime',
@@ -84,6 +87,7 @@ class V1DataConnection(object):
84
87
  'gcs_folder': 'gcsFolder',
85
88
  'id': 'id',
86
89
  'index': 'index',
90
+ 'is_billable_folder': 'isBillableFolder',
87
91
  'is_cache': 'isCache',
88
92
  'is_managed': 'isManaged',
89
93
  'lock_out': 'lockOut',
@@ -95,6 +99,8 @@ class V1DataConnection(object):
95
99
  's3_folder': 's3Folder',
96
100
  'snowflake': 'snowflake',
97
101
  'state': 'state',
102
+ 'total_daily_read_bytes': 'totalDailyReadBytes',
103
+ 'total_daily_write_bytes': 'totalDailyWriteBytes',
98
104
  'total_size_bytes': 'totalSizeBytes',
99
105
  'type': 'type',
100
106
  'updated_at': 'updatedAt',
@@ -102,7 +108,7 @@ class V1DataConnection(object):
102
108
  'writable': 'writable'
103
109
  }
104
110
 
105
- def __init__(self, access_cluster_ids: 'list[str]' =None, accessible: 'bool' =None, aws: 'V1AwsDataConnection' =None, cluster_id: 'str' =None, created_at: 'datetime' =None, efs: 'V1EfsConfig' =None, error: 'str' =None, filestore: 'V1FilestoreDataConnection' =None, gcp: 'V1GcpDataConnection' =None, gcs_folder: 'V1GCSFolderDataConnection' =None, id: 'str' =None, index: 'V1Index' =None, is_cache: 'bool' =None, is_managed: 'bool' =None, lock_out: 'bool' =None, name: 'str' =None, number_of_files: 'str' =None, project_id: 'str' =None, r2: 'V1R2DataConnection' =None, run_cmds: 'list[str]' =None, s3_folder: 'V1S3FolderDataConnection' =None, snowflake: 'V1SnowflakeDataConnection' =None, state: 'V1DataConnectionState' =None, total_size_bytes: 'str' =None, type: 'str' =None, updated_at: 'datetime' =None, weka: 'V1WekaDataConnection' =None, writable: 'bool' =None): # noqa: E501
111
+ def __init__(self, access_cluster_ids: 'list[str]' =None, accessible: 'bool' =None, aws: 'V1AwsDataConnection' =None, cluster_id: 'str' =None, created_at: 'datetime' =None, efs: 'V1EfsConfig' =None, error: 'str' =None, filestore: 'V1FilestoreDataConnection' =None, gcp: 'V1GcpDataConnection' =None, gcs_folder: 'V1GCSFolderDataConnection' =None, id: 'str' =None, index: 'V1Index' =None, is_billable_folder: 'bool' =None, is_cache: 'bool' =None, is_managed: 'bool' =None, lock_out: 'bool' =None, name: 'str' =None, number_of_files: 'str' =None, project_id: 'str' =None, r2: 'V1R2DataConnection' =None, run_cmds: 'list[str]' =None, s3_folder: 'V1S3FolderDataConnection' =None, snowflake: 'V1SnowflakeDataConnection' =None, state: 'V1DataConnectionState' =None, total_daily_read_bytes: 'str' =None, total_daily_write_bytes: 'str' =None, total_size_bytes: 'str' =None, type: 'str' =None, updated_at: 'datetime' =None, weka: 'V1WekaDataConnection' =None, writable: 'bool' =None): # noqa: E501
106
112
  """V1DataConnection - a model defined in Swagger""" # noqa: E501
107
113
  self._access_cluster_ids = None
108
114
  self._accessible = None
@@ -116,6 +122,7 @@ class V1DataConnection(object):
116
122
  self._gcs_folder = None
117
123
  self._id = None
118
124
  self._index = None
125
+ self._is_billable_folder = None
119
126
  self._is_cache = None
120
127
  self._is_managed = None
121
128
  self._lock_out = None
@@ -127,6 +134,8 @@ class V1DataConnection(object):
127
134
  self._s3_folder = None
128
135
  self._snowflake = None
129
136
  self._state = None
137
+ self._total_daily_read_bytes = None
138
+ self._total_daily_write_bytes = None
130
139
  self._total_size_bytes = None
131
140
  self._type = None
132
141
  self._updated_at = None
@@ -157,6 +166,8 @@ class V1DataConnection(object):
157
166
  self.id = id
158
167
  if index is not None:
159
168
  self.index = index
169
+ if is_billable_folder is not None:
170
+ self.is_billable_folder = is_billable_folder
160
171
  if is_cache is not None:
161
172
  self.is_cache = is_cache
162
173
  if is_managed is not None:
@@ -179,6 +190,10 @@ class V1DataConnection(object):
179
190
  self.snowflake = snowflake
180
191
  if state is not None:
181
192
  self.state = state
193
+ if total_daily_read_bytes is not None:
194
+ self.total_daily_read_bytes = total_daily_read_bytes
195
+ if total_daily_write_bytes is not None:
196
+ self.total_daily_write_bytes = total_daily_write_bytes
182
197
  if total_size_bytes is not None:
183
198
  self.total_size_bytes = total_size_bytes
184
199
  if type is not None:
@@ -442,6 +457,27 @@ class V1DataConnection(object):
442
457
 
443
458
  self._index = index
444
459
 
460
+ @property
461
+ def is_billable_folder(self) -> 'bool':
462
+ """Gets the is_billable_folder of this V1DataConnection. # noqa: E501
463
+
464
+
465
+ :return: The is_billable_folder of this V1DataConnection. # noqa: E501
466
+ :rtype: bool
467
+ """
468
+ return self._is_billable_folder
469
+
470
+ @is_billable_folder.setter
471
+ def is_billable_folder(self, is_billable_folder: 'bool'):
472
+ """Sets the is_billable_folder of this V1DataConnection.
473
+
474
+
475
+ :param is_billable_folder: The is_billable_folder of this V1DataConnection. # noqa: E501
476
+ :type: bool
477
+ """
478
+
479
+ self._is_billable_folder = is_billable_folder
480
+
445
481
  @property
446
482
  def is_cache(self) -> 'bool':
447
483
  """Gets the is_cache of this V1DataConnection. # noqa: E501
@@ -673,6 +709,48 @@ class V1DataConnection(object):
673
709
 
674
710
  self._state = state
675
711
 
712
+ @property
713
+ def total_daily_read_bytes(self) -> 'str':
714
+ """Gets the total_daily_read_bytes of this V1DataConnection. # noqa: E501
715
+
716
+
717
+ :return: The total_daily_read_bytes of this V1DataConnection. # noqa: E501
718
+ :rtype: str
719
+ """
720
+ return self._total_daily_read_bytes
721
+
722
+ @total_daily_read_bytes.setter
723
+ def total_daily_read_bytes(self, total_daily_read_bytes: 'str'):
724
+ """Sets the total_daily_read_bytes of this V1DataConnection.
725
+
726
+
727
+ :param total_daily_read_bytes: The total_daily_read_bytes of this V1DataConnection. # noqa: E501
728
+ :type: str
729
+ """
730
+
731
+ self._total_daily_read_bytes = total_daily_read_bytes
732
+
733
+ @property
734
+ def total_daily_write_bytes(self) -> 'str':
735
+ """Gets the total_daily_write_bytes of this V1DataConnection. # noqa: E501
736
+
737
+
738
+ :return: The total_daily_write_bytes of this V1DataConnection. # noqa: E501
739
+ :rtype: str
740
+ """
741
+ return self._total_daily_write_bytes
742
+
743
+ @total_daily_write_bytes.setter
744
+ def total_daily_write_bytes(self, total_daily_write_bytes: 'str'):
745
+ """Sets the total_daily_write_bytes of this V1DataConnection.
746
+
747
+
748
+ :param total_daily_write_bytes: The total_daily_write_bytes of this V1DataConnection. # noqa: E501
749
+ :type: str
750
+ """
751
+
752
+ self._total_daily_write_bytes = total_daily_write_bytes
753
+
676
754
  @property
677
755
  def total_size_bytes(self) -> 'str':
678
756
  """Gets the total_size_bytes of this V1DataConnection. # noqa: E501
@@ -47,6 +47,7 @@ class V1DeploymentAlertingPolicyType(object):
47
47
  STATUSCODES1XX = "StatusCodes1xx"
48
48
  THROUGHPUT = "Throughput"
49
49
  LATENCYQ95 = "LatencyQ95"
50
+ DEPLOYMENTSUSPENDED = "DeploymentSuspended"
50
51
  """
51
52
  Attributes:
52
53
  swagger_types (dict): The key is attribute name