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,409 @@
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 AlertingeventsIdBody(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
+ 'alerting_policy_id': 'str',
45
+ 'created_at': 'datetime',
46
+ 'description': 'str',
47
+ 'frequency': 'V1DeploymentAlertingPolicyFrequency',
48
+ 'limit': 'float',
49
+ 'message': 'str',
50
+ 'name': 'str',
51
+ 'operation': 'V1DeploymentAlertingPolicyOperation',
52
+ 'severity': 'V1DeploymentAlertingPolicySeverity',
53
+ 'type': 'V1DeploymentAlertingPolicyType',
54
+ 'value': 'float',
55
+ 'viewed': 'bool'
56
+ }
57
+
58
+ attribute_map = {
59
+ 'alerting_policy_id': 'alertingPolicyId',
60
+ 'created_at': 'createdAt',
61
+ 'description': 'description',
62
+ 'frequency': 'frequency',
63
+ 'limit': 'limit',
64
+ 'message': 'message',
65
+ 'name': 'name',
66
+ 'operation': 'operation',
67
+ 'severity': 'severity',
68
+ 'type': 'type',
69
+ 'value': 'value',
70
+ 'viewed': 'viewed'
71
+ }
72
+
73
+ def __init__(self, alerting_policy_id: 'str' =None, created_at: 'datetime' =None, description: 'str' =None, frequency: 'V1DeploymentAlertingPolicyFrequency' =None, limit: 'float' =None, message: 'str' =None, name: 'str' =None, operation: 'V1DeploymentAlertingPolicyOperation' =None, severity: 'V1DeploymentAlertingPolicySeverity' =None, type: 'V1DeploymentAlertingPolicyType' =None, value: 'float' =None, viewed: 'bool' =None): # noqa: E501
74
+ """AlertingeventsIdBody - a model defined in Swagger""" # noqa: E501
75
+ self._alerting_policy_id = None
76
+ self._created_at = None
77
+ self._description = None
78
+ self._frequency = None
79
+ self._limit = None
80
+ self._message = None
81
+ self._name = None
82
+ self._operation = None
83
+ self._severity = None
84
+ self._type = None
85
+ self._value = None
86
+ self._viewed = None
87
+ self.discriminator = None
88
+ if alerting_policy_id is not None:
89
+ self.alerting_policy_id = alerting_policy_id
90
+ if created_at is not None:
91
+ self.created_at = created_at
92
+ if description is not None:
93
+ self.description = description
94
+ if frequency is not None:
95
+ self.frequency = frequency
96
+ if limit is not None:
97
+ self.limit = limit
98
+ if message is not None:
99
+ self.message = message
100
+ if name is not None:
101
+ self.name = name
102
+ if operation is not None:
103
+ self.operation = operation
104
+ if severity is not None:
105
+ self.severity = severity
106
+ if type is not None:
107
+ self.type = type
108
+ if value is not None:
109
+ self.value = value
110
+ if viewed is not None:
111
+ self.viewed = viewed
112
+
113
+ @property
114
+ def alerting_policy_id(self) -> 'str':
115
+ """Gets the alerting_policy_id of this AlertingeventsIdBody. # noqa: E501
116
+
117
+
118
+ :return: The alerting_policy_id of this AlertingeventsIdBody. # noqa: E501
119
+ :rtype: str
120
+ """
121
+ return self._alerting_policy_id
122
+
123
+ @alerting_policy_id.setter
124
+ def alerting_policy_id(self, alerting_policy_id: 'str'):
125
+ """Sets the alerting_policy_id of this AlertingeventsIdBody.
126
+
127
+
128
+ :param alerting_policy_id: The alerting_policy_id of this AlertingeventsIdBody. # noqa: E501
129
+ :type: str
130
+ """
131
+
132
+ self._alerting_policy_id = alerting_policy_id
133
+
134
+ @property
135
+ def created_at(self) -> 'datetime':
136
+ """Gets the created_at of this AlertingeventsIdBody. # noqa: E501
137
+
138
+
139
+ :return: The created_at of this AlertingeventsIdBody. # noqa: E501
140
+ :rtype: datetime
141
+ """
142
+ return self._created_at
143
+
144
+ @created_at.setter
145
+ def created_at(self, created_at: 'datetime'):
146
+ """Sets the created_at of this AlertingeventsIdBody.
147
+
148
+
149
+ :param created_at: The created_at of this AlertingeventsIdBody. # noqa: E501
150
+ :type: datetime
151
+ """
152
+
153
+ self._created_at = created_at
154
+
155
+ @property
156
+ def description(self) -> 'str':
157
+ """Gets the description of this AlertingeventsIdBody. # noqa: E501
158
+
159
+
160
+ :return: The description of this AlertingeventsIdBody. # 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 AlertingeventsIdBody.
168
+
169
+
170
+ :param description: The description of this AlertingeventsIdBody. # noqa: E501
171
+ :type: str
172
+ """
173
+
174
+ self._description = description
175
+
176
+ @property
177
+ def frequency(self) -> 'V1DeploymentAlertingPolicyFrequency':
178
+ """Gets the frequency of this AlertingeventsIdBody. # noqa: E501
179
+
180
+
181
+ :return: The frequency of this AlertingeventsIdBody. # noqa: E501
182
+ :rtype: V1DeploymentAlertingPolicyFrequency
183
+ """
184
+ return self._frequency
185
+
186
+ @frequency.setter
187
+ def frequency(self, frequency: 'V1DeploymentAlertingPolicyFrequency'):
188
+ """Sets the frequency of this AlertingeventsIdBody.
189
+
190
+
191
+ :param frequency: The frequency of this AlertingeventsIdBody. # noqa: E501
192
+ :type: V1DeploymentAlertingPolicyFrequency
193
+ """
194
+
195
+ self._frequency = frequency
196
+
197
+ @property
198
+ def limit(self) -> 'float':
199
+ """Gets the limit of this AlertingeventsIdBody. # noqa: E501
200
+
201
+
202
+ :return: The limit of this AlertingeventsIdBody. # noqa: E501
203
+ :rtype: float
204
+ """
205
+ return self._limit
206
+
207
+ @limit.setter
208
+ def limit(self, limit: 'float'):
209
+ """Sets the limit of this AlertingeventsIdBody.
210
+
211
+
212
+ :param limit: The limit of this AlertingeventsIdBody. # noqa: E501
213
+ :type: float
214
+ """
215
+
216
+ self._limit = limit
217
+
218
+ @property
219
+ def message(self) -> 'str':
220
+ """Gets the message of this AlertingeventsIdBody. # noqa: E501
221
+
222
+
223
+ :return: The message of this AlertingeventsIdBody. # noqa: E501
224
+ :rtype: str
225
+ """
226
+ return self._message
227
+
228
+ @message.setter
229
+ def message(self, message: 'str'):
230
+ """Sets the message of this AlertingeventsIdBody.
231
+
232
+
233
+ :param message: The message of this AlertingeventsIdBody. # noqa: E501
234
+ :type: str
235
+ """
236
+
237
+ self._message = message
238
+
239
+ @property
240
+ def name(self) -> 'str':
241
+ """Gets the name of this AlertingeventsIdBody. # noqa: E501
242
+
243
+
244
+ :return: The name of this AlertingeventsIdBody. # noqa: E501
245
+ :rtype: str
246
+ """
247
+ return self._name
248
+
249
+ @name.setter
250
+ def name(self, name: 'str'):
251
+ """Sets the name of this AlertingeventsIdBody.
252
+
253
+
254
+ :param name: The name of this AlertingeventsIdBody. # noqa: E501
255
+ :type: str
256
+ """
257
+
258
+ self._name = name
259
+
260
+ @property
261
+ def operation(self) -> 'V1DeploymentAlertingPolicyOperation':
262
+ """Gets the operation of this AlertingeventsIdBody. # noqa: E501
263
+
264
+
265
+ :return: The operation of this AlertingeventsIdBody. # noqa: E501
266
+ :rtype: V1DeploymentAlertingPolicyOperation
267
+ """
268
+ return self._operation
269
+
270
+ @operation.setter
271
+ def operation(self, operation: 'V1DeploymentAlertingPolicyOperation'):
272
+ """Sets the operation of this AlertingeventsIdBody.
273
+
274
+
275
+ :param operation: The operation of this AlertingeventsIdBody. # noqa: E501
276
+ :type: V1DeploymentAlertingPolicyOperation
277
+ """
278
+
279
+ self._operation = operation
280
+
281
+ @property
282
+ def severity(self) -> 'V1DeploymentAlertingPolicySeverity':
283
+ """Gets the severity of this AlertingeventsIdBody. # noqa: E501
284
+
285
+
286
+ :return: The severity of this AlertingeventsIdBody. # noqa: E501
287
+ :rtype: V1DeploymentAlertingPolicySeverity
288
+ """
289
+ return self._severity
290
+
291
+ @severity.setter
292
+ def severity(self, severity: 'V1DeploymentAlertingPolicySeverity'):
293
+ """Sets the severity of this AlertingeventsIdBody.
294
+
295
+
296
+ :param severity: The severity of this AlertingeventsIdBody. # noqa: E501
297
+ :type: V1DeploymentAlertingPolicySeverity
298
+ """
299
+
300
+ self._severity = severity
301
+
302
+ @property
303
+ def type(self) -> 'V1DeploymentAlertingPolicyType':
304
+ """Gets the type of this AlertingeventsIdBody. # noqa: E501
305
+
306
+
307
+ :return: The type of this AlertingeventsIdBody. # noqa: E501
308
+ :rtype: V1DeploymentAlertingPolicyType
309
+ """
310
+ return self._type
311
+
312
+ @type.setter
313
+ def type(self, type: 'V1DeploymentAlertingPolicyType'):
314
+ """Sets the type of this AlertingeventsIdBody.
315
+
316
+
317
+ :param type: The type of this AlertingeventsIdBody. # noqa: E501
318
+ :type: V1DeploymentAlertingPolicyType
319
+ """
320
+
321
+ self._type = type
322
+
323
+ @property
324
+ def value(self) -> 'float':
325
+ """Gets the value of this AlertingeventsIdBody. # noqa: E501
326
+
327
+
328
+ :return: The value of this AlertingeventsIdBody. # noqa: E501
329
+ :rtype: float
330
+ """
331
+ return self._value
332
+
333
+ @value.setter
334
+ def value(self, value: 'float'):
335
+ """Sets the value of this AlertingeventsIdBody.
336
+
337
+
338
+ :param value: The value of this AlertingeventsIdBody. # noqa: E501
339
+ :type: float
340
+ """
341
+
342
+ self._value = value
343
+
344
+ @property
345
+ def viewed(self) -> 'bool':
346
+ """Gets the viewed of this AlertingeventsIdBody. # noqa: E501
347
+
348
+
349
+ :return: The viewed of this AlertingeventsIdBody. # noqa: E501
350
+ :rtype: bool
351
+ """
352
+ return self._viewed
353
+
354
+ @viewed.setter
355
+ def viewed(self, viewed: 'bool'):
356
+ """Sets the viewed of this AlertingeventsIdBody.
357
+
358
+
359
+ :param viewed: The viewed of this AlertingeventsIdBody. # noqa: E501
360
+ :type: bool
361
+ """
362
+
363
+ self._viewed = viewed
364
+
365
+ def to_dict(self) -> dict:
366
+ """Returns the model properties as a dict"""
367
+ result = {}
368
+
369
+ for attr, _ in six.iteritems(self.swagger_types):
370
+ value = getattr(self, attr)
371
+ if isinstance(value, list):
372
+ result[attr] = list(map(
373
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
374
+ value
375
+ ))
376
+ elif hasattr(value, "to_dict"):
377
+ result[attr] = value.to_dict()
378
+ elif isinstance(value, dict):
379
+ result[attr] = dict(map(
380
+ lambda item: (item[0], item[1].to_dict())
381
+ if hasattr(item[1], "to_dict") else item,
382
+ value.items()
383
+ ))
384
+ else:
385
+ result[attr] = value
386
+ if issubclass(AlertingeventsIdBody, dict):
387
+ for key, value in self.items():
388
+ result[key] = value
389
+
390
+ return result
391
+
392
+ def to_str(self) -> str:
393
+ """Returns the string representation of the model"""
394
+ return pprint.pformat(self.to_dict())
395
+
396
+ def __repr__(self) -> str:
397
+ """For `print` and `pprint`"""
398
+ return self.to_str()
399
+
400
+ def __eq__(self, other: 'AlertingeventsIdBody') -> bool:
401
+ """Returns true if both objects are equal"""
402
+ if not isinstance(other, AlertingeventsIdBody):
403
+ return False
404
+
405
+ return self.__dict__ == other.__dict__
406
+
407
+ def __ne__(self, other: 'AlertingeventsIdBody') -> bool:
408
+ """Returns true if both objects are not equal"""
409
+ return not self == other
@@ -46,7 +46,8 @@ class IdCodeconfigBody(object):
46
46
  'disable_auto_shutdown': 'bool',
47
47
  'ide': 'str',
48
48
  'idle_shutdown_seconds': 'int',
49
- 'port_plugin_port': 'str'
49
+ 'port_plugin_port': 'str',
50
+ 'switch_to_default_machine_on_idle': 'bool'
50
51
  }
51
52
 
52
53
  attribute_map = {
@@ -55,10 +56,11 @@ class IdCodeconfigBody(object):
55
56
  'disable_auto_shutdown': 'disableAutoShutdown',
56
57
  'ide': 'ide',
57
58
  'idle_shutdown_seconds': 'idleShutdownSeconds',
58
- 'port_plugin_port': 'portPluginPort'
59
+ 'port_plugin_port': 'portPluginPort',
60
+ 'switch_to_default_machine_on_idle': 'switchToDefaultMachineOnIdle'
59
61
  }
60
62
 
61
- def __init__(self, compute_config: 'V1UserRequestedComputeConfig' =None, data_connection_mounts: 'list[V1DataConnectionMount]' =None, disable_auto_shutdown: 'bool' =None, ide: 'str' =None, idle_shutdown_seconds: 'int' =None, port_plugin_port: 'str' =None): # noqa: E501
63
+ def __init__(self, compute_config: 'V1UserRequestedComputeConfig' =None, data_connection_mounts: 'list[V1DataConnectionMount]' =None, disable_auto_shutdown: 'bool' =None, ide: 'str' =None, idle_shutdown_seconds: 'int' =None, port_plugin_port: 'str' =None, switch_to_default_machine_on_idle: 'bool' =None): # noqa: E501
62
64
  """IdCodeconfigBody - a model defined in Swagger""" # noqa: E501
63
65
  self._compute_config = None
64
66
  self._data_connection_mounts = None
@@ -66,6 +68,7 @@ class IdCodeconfigBody(object):
66
68
  self._ide = None
67
69
  self._idle_shutdown_seconds = None
68
70
  self._port_plugin_port = None
71
+ self._switch_to_default_machine_on_idle = None
69
72
  self.discriminator = None
70
73
  if compute_config is not None:
71
74
  self.compute_config = compute_config
@@ -79,6 +82,8 @@ class IdCodeconfigBody(object):
79
82
  self.idle_shutdown_seconds = idle_shutdown_seconds
80
83
  if port_plugin_port is not None:
81
84
  self.port_plugin_port = port_plugin_port
85
+ if switch_to_default_machine_on_idle is not None:
86
+ self.switch_to_default_machine_on_idle = switch_to_default_machine_on_idle
82
87
 
83
88
  @property
84
89
  def compute_config(self) -> 'V1UserRequestedComputeConfig':
@@ -206,6 +211,27 @@ class IdCodeconfigBody(object):
206
211
 
207
212
  self._port_plugin_port = port_plugin_port
208
213
 
214
+ @property
215
+ def switch_to_default_machine_on_idle(self) -> 'bool':
216
+ """Gets the switch_to_default_machine_on_idle of this IdCodeconfigBody. # noqa: E501
217
+
218
+
219
+ :return: The switch_to_default_machine_on_idle of this IdCodeconfigBody. # noqa: E501
220
+ :rtype: bool
221
+ """
222
+ return self._switch_to_default_machine_on_idle
223
+
224
+ @switch_to_default_machine_on_idle.setter
225
+ def switch_to_default_machine_on_idle(self, switch_to_default_machine_on_idle: 'bool'):
226
+ """Sets the switch_to_default_machine_on_idle of this IdCodeconfigBody.
227
+
228
+
229
+ :param switch_to_default_machine_on_idle: The switch_to_default_machine_on_idle of this IdCodeconfigBody. # noqa: E501
230
+ :type: bool
231
+ """
232
+
233
+ self._switch_to_default_machine_on_idle = switch_to_default_machine_on_idle
234
+
209
235
  def to_dict(self) -> dict:
210
236
  """Returns the model properties as a dict"""
211
237
  result = {}
@@ -48,6 +48,7 @@ class Update(object):
48
48
  'machine_image_version': 'str',
49
49
  'name': 'str',
50
50
  'org_id': 'str',
51
+ 'plugins': 'list[str]',
51
52
  'setup_script_text': 'str'
52
53
  }
53
54
 
@@ -59,10 +60,11 @@ class Update(object):
59
60
  'machine_image_version': 'machineImageVersion',
60
61
  'name': 'name',
61
62
  'org_id': 'orgId',
63
+ 'plugins': 'plugins',
62
64
  'setup_script_text': 'setupScriptText'
63
65
  }
64
66
 
65
- def __init__(self, allowed_machines: 'list[str]' =None, default_machine: 'str' =None, disabled: 'bool' =None, environment_type: 'V1CloudSpaceEnvironmentType' =None, machine_image_version: 'str' =None, name: 'str' =None, org_id: 'str' =None, setup_script_text: 'str' =None): # noqa: E501
67
+ def __init__(self, allowed_machines: 'list[str]' =None, default_machine: 'str' =None, disabled: 'bool' =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
66
68
  """Update - a model defined in Swagger""" # noqa: E501
67
69
  self._allowed_machines = None
68
70
  self._default_machine = None
@@ -71,6 +73,7 @@ class Update(object):
71
73
  self._machine_image_version = None
72
74
  self._name = None
73
75
  self._org_id = None
76
+ self._plugins = None
74
77
  self._setup_script_text = None
75
78
  self.discriminator = None
76
79
  if allowed_machines is not None:
@@ -87,6 +90,8 @@ class Update(object):
87
90
  self.name = name
88
91
  if org_id is not None:
89
92
  self.org_id = org_id
93
+ if plugins is not None:
94
+ self.plugins = plugins
90
95
  if setup_script_text is not None:
91
96
  self.setup_script_text = setup_script_text
92
97
 
@@ -237,6 +242,27 @@ class Update(object):
237
242
 
238
243
  self._org_id = org_id
239
244
 
245
+ @property
246
+ def plugins(self) -> 'list[str]':
247
+ """Gets the plugins of this Update. # noqa: E501
248
+
249
+
250
+ :return: The plugins of this Update. # noqa: E501
251
+ :rtype: list[str]
252
+ """
253
+ return self._plugins
254
+
255
+ @plugins.setter
256
+ def plugins(self, plugins: 'list[str]'):
257
+ """Sets the plugins of this Update.
258
+
259
+
260
+ :param plugins: The plugins of this Update. # noqa: E501
261
+ :type: list[str]
262
+ """
263
+
264
+ self._plugins = plugins
265
+
240
266
  @property
241
267
  def setup_script_text(self) -> 'str':
242
268
  """Gets the setup_script_text of this Update. # noqa: E501