lightning-sdk 2025.12.17__py3-none-any.whl → 2026.1.27__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 (130) hide show
  1. lightning_sdk/__version__.py +1 -1
  2. lightning_sdk/api/k8s_api.py +75 -29
  3. lightning_sdk/api/studio_api.py +192 -37
  4. lightning_sdk/api/teamspace_api.py +180 -54
  5. lightning_sdk/api/utils.py +8 -0
  6. lightning_sdk/cli/cp/__init__.py +67 -0
  7. lightning_sdk/cli/cp/teamspace_uploads.py +93 -0
  8. lightning_sdk/cli/entrypoint.py +2 -0
  9. lightning_sdk/cli/groups.py +22 -0
  10. lightning_sdk/cli/legacy/clusters_menu.py +2 -2
  11. lightning_sdk/cli/legacy/deploy/_auth.py +7 -6
  12. lightning_sdk/cli/legacy/download.py +29 -98
  13. lightning_sdk/cli/legacy/run.py +13 -2
  14. lightning_sdk/cli/legacy/upload.py +24 -31
  15. lightning_sdk/cli/studio/__init__.py +4 -0
  16. lightning_sdk/cli/studio/cp.py +24 -65
  17. lightning_sdk/cli/studio/ls.py +57 -0
  18. lightning_sdk/cli/studio/rm.py +71 -0
  19. lightning_sdk/cli/utils/filesystem.py +103 -0
  20. lightning_sdk/cli/utils/logging.py +2 -1
  21. lightning_sdk/cli/utils/teamspace_selection.py +5 -0
  22. lightning_sdk/exceptions.py +31 -0
  23. lightning_sdk/job/base.py +1 -1
  24. lightning_sdk/k8s_cluster.py +9 -10
  25. lightning_sdk/lightning_cloud/__version__.py +1 -1
  26. lightning_sdk/lightning_cloud/openapi/__init__.py +43 -23
  27. lightning_sdk/lightning_cloud/openapi/api/__init__.py +2 -1
  28. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +118 -1
  29. lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +378 -536
  30. lightning_sdk/lightning_cloud/openapi/api/container_registry_service_api.py +456 -0
  31. lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +5 -1
  32. lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +11 -11
  33. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +113 -0
  34. lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +246 -19
  35. lightning_sdk/lightning_cloud/openapi/api/lightningwork_service_api.py +116 -11
  36. lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +588 -2
  37. lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +9 -1
  38. lightning_sdk/lightning_cloud/openapi/api/organizations_service_api.py +113 -0
  39. lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +5 -1
  40. lightning_sdk/lightning_cloud/openapi/api/{kubernetes_virtual_machine_service_api.py → virtual_machine_service_api.py} +82 -82
  41. lightning_sdk/lightning_cloud/openapi/models/__init__.py +41 -22
  42. lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_cluster_capacity_reservation_body.py +53 -1
  43. lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_machine_body.py +53 -1
  44. lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_org_cluster_capacity_reservation_body.py +409 -0
  45. lightning_sdk/lightning_cloud/openapi/models/{v1_add_container_registry_response.py → cluster_service_report_machine_system_metrics_body.py} +23 -23
  46. lightning_sdk/lightning_cloud/openapi/models/container_registry_config_ecr.py +149 -0
  47. lightning_sdk/lightning_cloud/openapi/models/{v1_container_registry_status.py → container_registry_provider.py} +14 -10
  48. lightning_sdk/lightning_cloud/openapi/models/container_registry_service_create_container_registry_body.py +201 -0
  49. lightning_sdk/lightning_cloud/openapi/models/{v1_ecr_registry_config_input.py → container_registry_service_refresh_container_registry_credentials_body.py} +21 -21
  50. lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +27 -1
  51. lightning_sdk/lightning_cloud/openapi/models/{v1_ecr_registry_config.py → jobs_service_duplicate_deployment_body.py} +51 -51
  52. lightning_sdk/lightning_cloud/openapi/models/lit_logger_service_create_lit_logger_media_body.py +305 -0
  53. lightning_sdk/lightning_cloud/openapi/models/lit_logger_service_update_lit_logger_media_body.py +149 -0
  54. lightning_sdk/lightning_cloud/openapi/models/lit_logger_service_update_metrics_stream_body.py +53 -1
  55. lightning_sdk/lightning_cloud/openapi/models/organizations_service_update_org_role_body.py +175 -0
  56. lightning_sdk/lightning_cloud/openapi/models/v1_capacity_reservation_used_by.py +227 -0
  57. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_provider.py +2 -1
  58. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_type.py +1 -0
  59. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +27 -1
  60. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +53 -1
  61. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +79 -27
  62. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_type.py +0 -1
  63. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry.py +63 -89
  64. lightning_sdk/lightning_cloud/openapi/models/{cluster_service_add_container_registry_body.py → v1_container_registry_config.py} +16 -16
  65. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_scopes.py +149 -0
  66. lightning_sdk/lightning_cloud/openapi/models/{v1_delete_kubernetes_virtual_machine_response.py → v1_create_container_registry_response.py} +6 -6
  67. lightning_sdk/lightning_cloud/openapi/models/v1_create_lit_logger_media_response.py +149 -0
  68. lightning_sdk/lightning_cloud/openapi/models/v1_create_org_cluster_capacity_reservation_response.py +201 -0
  69. lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_request.py +29 -3
  70. lightning_sdk/lightning_cloud/openapi/models/v1_cudo_direct_v1.py +175 -0
  71. lightning_sdk/lightning_cloud/openapi/models/{cluster_service_refresh_container_registry_credentials_body.py → v1_delete_lit_logger_media_response.py} +6 -6
  72. lightning_sdk/lightning_cloud/openapi/models/{kubernetes_virtual_machine_service_update_kubernetes_virtual_machine_body.py → v1_delete_org_cluster_capacity_reservation_response.py} +6 -6
  73. lightning_sdk/lightning_cloud/openapi/models/v1_delete_virtual_machine_response.py +97 -0
  74. lightning_sdk/lightning_cloud/openapi/models/v1_describe_org_cluster_capacity_reservation_response.py +201 -0
  75. lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +27 -27
  76. lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +27 -1
  77. lightning_sdk/lightning_cloud/openapi/models/v1_generic_job_spec.py +79 -1
  78. lightning_sdk/lightning_cloud/openapi/models/{v1_validate_container_registry_response.py → v1_get_kubernetes_pod_logs_response.py} +37 -37
  79. lightning_sdk/lightning_cloud/openapi/models/{v1_get_machine_response.py → v1_get_kubernetes_pod_response.py} +23 -23
  80. lightning_sdk/lightning_cloud/openapi/models/v1_job.py +27 -1
  81. lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +27 -1
  82. lightning_sdk/lightning_cloud/openapi/models/v1_joinable_organization.py +27 -1
  83. lightning_sdk/lightning_cloud/openapi/models/{v1_container_registry_integration.py → v1_k8s_incident_setting.py} +49 -23
  84. lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_type.py +108 -0
  85. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_settings_v1.py +53 -1
  86. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +53 -27
  87. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_pod.py +27 -1
  88. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_pod_logs_page.py +227 -0
  89. lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_config.py +53 -1
  90. lightning_sdk/lightning_cloud/openapi/models/v1_list_container_registries_response.py +6 -6
  91. lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_pods_response.py +43 -17
  92. lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_pods_sort_order.py +104 -0
  93. lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_logger_media_response.py +149 -0
  94. lightning_sdk/lightning_cloud/openapi/models/v1_list_models_response.py +55 -3
  95. lightning_sdk/lightning_cloud/openapi/models/{v1_list_kubernetes_virtual_machines_response.py → v1_list_virtual_machines_response.py} +16 -16
  96. lightning_sdk/lightning_cloud/openapi/models/v1_lit_logger_media.py +513 -0
  97. lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +27 -53
  98. lightning_sdk/lightning_cloud/openapi/models/v1_machine_direct_v1.py +107 -3
  99. lightning_sdk/lightning_cloud/openapi/models/v1_media_type.py +104 -0
  100. lightning_sdk/lightning_cloud/openapi/models/{v1_ai_pod_v1.py → v1_mithril_direct_v1.py} +51 -51
  101. lightning_sdk/lightning_cloud/openapi/models/v1_nebius_direct_v1.py +29 -3
  102. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +27 -1
  103. lightning_sdk/lightning_cloud/openapi/models/v1_refresh_container_registry_credentials_response.py +1 -27
  104. lightning_sdk/lightning_cloud/openapi/models/{cluster_service_validate_container_registry_body.py → v1_report_cloud_space_instance_idle_state_response.py} +6 -6
  105. lightning_sdk/lightning_cloud/openapi/models/v1_report_machine_system_metrics_response.py +97 -0
  106. lightning_sdk/lightning_cloud/openapi/models/{v1_ecr_registry_details.py → v1_tenant_credentials.py} +53 -53
  107. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +183 -157
  108. lightning_sdk/lightning_cloud/openapi/models/{v1_kubernetes_virtual_machine.py → v1_virtual_machine.py} +94 -68
  109. lightning_sdk/lightning_cloud/openapi/models/{v1_kubevirt_vm_configuration.py → v1_vm_configuration.py} +20 -20
  110. lightning_sdk/lightning_cloud/openapi/models/{v1_kubevirt_provider_configuration.py → v1_vm_provider_configuration.py} +32 -32
  111. lightning_sdk/lightning_cloud/openapi/models/virtual_machine_service_create_virtual_machine_body.py +565 -0
  112. lightning_sdk/lightning_cloud/openapi/models/virtual_machine_service_update_virtual_machine_body.py +97 -0
  113. lightning_sdk/lightning_cloud/openapi/rest.py +2 -2
  114. lightning_sdk/lightning_cloud/rest_client.py +0 -2
  115. lightning_sdk/machine.py +3 -3
  116. lightning_sdk/studio.py +14 -4
  117. lightning_sdk/teamspace.py +28 -7
  118. lightning_sdk/utils/logging.py +2 -1
  119. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/METADATA +1 -5
  120. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/RECORD +125 -102
  121. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/WHEEL +1 -1
  122. lightning_sdk/lightning_cloud/cli/__main__.py +0 -29
  123. lightning_sdk/lightning_cloud/openapi/models/kubernetes_virtual_machine_service_create_kubernetes_virtual_machine_body.py +0 -513
  124. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_info.py +0 -281
  125. lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_vm_resources.py +0 -201
  126. lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +0 -103
  127. /lightning_sdk/lightning_cloud/openapi/models/{v1_list_filesystem_mmts_response.py → v1_list_filesystem_mm_ts_response.py} +0 -0
  128. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/LICENSE +0 -0
  129. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/entry_points.txt +0 -0
  130. {lightning_sdk-2025.12.17.dist-info → lightning_sdk-2026.1.27.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,227 @@
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 V1KubernetesPodLogsPage(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
+ 'end': 'datetime',
45
+ 'page_number': 'str',
46
+ 'start': 'datetime',
47
+ 'total_lines': 'str',
48
+ 'url': 'str'
49
+ }
50
+
51
+ attribute_map = {
52
+ 'end': 'end',
53
+ 'page_number': 'pageNumber',
54
+ 'start': 'start',
55
+ 'total_lines': 'totalLines',
56
+ 'url': 'url'
57
+ }
58
+
59
+ def __init__(self, end: 'datetime' =None, page_number: 'str' =None, start: 'datetime' =None, total_lines: 'str' =None, url: 'str' =None): # noqa: E501
60
+ """V1KubernetesPodLogsPage - a model defined in Swagger""" # noqa: E501
61
+ self._end = None
62
+ self._page_number = None
63
+ self._start = None
64
+ self._total_lines = None
65
+ self._url = None
66
+ self.discriminator = None
67
+ if end is not None:
68
+ self.end = end
69
+ if page_number is not None:
70
+ self.page_number = page_number
71
+ if start is not None:
72
+ self.start = start
73
+ if total_lines is not None:
74
+ self.total_lines = total_lines
75
+ if url is not None:
76
+ self.url = url
77
+
78
+ @property
79
+ def end(self) -> 'datetime':
80
+ """Gets the end of this V1KubernetesPodLogsPage. # noqa: E501
81
+
82
+
83
+ :return: The end of this V1KubernetesPodLogsPage. # noqa: E501
84
+ :rtype: datetime
85
+ """
86
+ return self._end
87
+
88
+ @end.setter
89
+ def end(self, end: 'datetime'):
90
+ """Sets the end of this V1KubernetesPodLogsPage.
91
+
92
+
93
+ :param end: The end of this V1KubernetesPodLogsPage. # noqa: E501
94
+ :type: datetime
95
+ """
96
+
97
+ self._end = end
98
+
99
+ @property
100
+ def page_number(self) -> 'str':
101
+ """Gets the page_number of this V1KubernetesPodLogsPage. # noqa: E501
102
+
103
+
104
+ :return: The page_number of this V1KubernetesPodLogsPage. # noqa: E501
105
+ :rtype: str
106
+ """
107
+ return self._page_number
108
+
109
+ @page_number.setter
110
+ def page_number(self, page_number: 'str'):
111
+ """Sets the page_number of this V1KubernetesPodLogsPage.
112
+
113
+
114
+ :param page_number: The page_number of this V1KubernetesPodLogsPage. # noqa: E501
115
+ :type: str
116
+ """
117
+
118
+ self._page_number = page_number
119
+
120
+ @property
121
+ def start(self) -> 'datetime':
122
+ """Gets the start of this V1KubernetesPodLogsPage. # noqa: E501
123
+
124
+
125
+ :return: The start of this V1KubernetesPodLogsPage. # noqa: E501
126
+ :rtype: datetime
127
+ """
128
+ return self._start
129
+
130
+ @start.setter
131
+ def start(self, start: 'datetime'):
132
+ """Sets the start of this V1KubernetesPodLogsPage.
133
+
134
+
135
+ :param start: The start of this V1KubernetesPodLogsPage. # noqa: E501
136
+ :type: datetime
137
+ """
138
+
139
+ self._start = start
140
+
141
+ @property
142
+ def total_lines(self) -> 'str':
143
+ """Gets the total_lines of this V1KubernetesPodLogsPage. # noqa: E501
144
+
145
+
146
+ :return: The total_lines of this V1KubernetesPodLogsPage. # noqa: E501
147
+ :rtype: str
148
+ """
149
+ return self._total_lines
150
+
151
+ @total_lines.setter
152
+ def total_lines(self, total_lines: 'str'):
153
+ """Sets the total_lines of this V1KubernetesPodLogsPage.
154
+
155
+
156
+ :param total_lines: The total_lines of this V1KubernetesPodLogsPage. # noqa: E501
157
+ :type: str
158
+ """
159
+
160
+ self._total_lines = total_lines
161
+
162
+ @property
163
+ def url(self) -> 'str':
164
+ """Gets the url of this V1KubernetesPodLogsPage. # noqa: E501
165
+
166
+
167
+ :return: The url of this V1KubernetesPodLogsPage. # noqa: E501
168
+ :rtype: str
169
+ """
170
+ return self._url
171
+
172
+ @url.setter
173
+ def url(self, url: 'str'):
174
+ """Sets the url of this V1KubernetesPodLogsPage.
175
+
176
+
177
+ :param url: The url of this V1KubernetesPodLogsPage. # noqa: E501
178
+ :type: str
179
+ """
180
+
181
+ self._url = url
182
+
183
+ def to_dict(self) -> dict:
184
+ """Returns the model properties as a dict"""
185
+ result = {}
186
+
187
+ for attr, _ in six.iteritems(self.swagger_types):
188
+ value = getattr(self, attr)
189
+ if isinstance(value, list):
190
+ result[attr] = list(map(
191
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
192
+ value
193
+ ))
194
+ elif hasattr(value, "to_dict"):
195
+ result[attr] = value.to_dict()
196
+ elif isinstance(value, dict):
197
+ result[attr] = dict(map(
198
+ lambda item: (item[0], item[1].to_dict())
199
+ if hasattr(item[1], "to_dict") else item,
200
+ value.items()
201
+ ))
202
+ else:
203
+ result[attr] = value
204
+ if issubclass(V1KubernetesPodLogsPage, dict):
205
+ for key, value in self.items():
206
+ result[key] = value
207
+
208
+ return result
209
+
210
+ def to_str(self) -> str:
211
+ """Returns the string representation of the model"""
212
+ return pprint.pformat(self.to_dict())
213
+
214
+ def __repr__(self) -> str:
215
+ """For `print` and `pprint`"""
216
+ return self.to_str()
217
+
218
+ def __eq__(self, other: 'V1KubernetesPodLogsPage') -> bool:
219
+ """Returns true if both objects are equal"""
220
+ if not isinstance(other, V1KubernetesPodLogsPage):
221
+ return False
222
+
223
+ return self.__dict__ == other.__dict__
224
+
225
+ def __ne__(self, other: 'V1KubernetesPodLogsPage') -> bool:
226
+ """Returns true if both objects are not equal"""
227
+ return not self == other
@@ -47,7 +47,9 @@ class V1KubevirtConfig(object):
47
47
  'node_count': 'int',
48
48
  'node_family': 'str',
49
49
  'provider': 'str',
50
+ 'show_as_lightning': 'bool',
50
51
  'supported': 'bool',
52
+ 'uuid': 'str',
51
53
  'vm_node_count': 'int'
52
54
  }
53
55
 
@@ -58,11 +60,13 @@ class V1KubevirtConfig(object):
58
60
  'node_count': 'nodeCount',
59
61
  'node_family': 'nodeFamily',
60
62
  'provider': 'provider',
63
+ 'show_as_lightning': 'showAsLightning',
61
64
  'supported': 'supported',
65
+ 'uuid': 'uuid',
62
66
  'vm_node_count': 'vmNodeCount'
63
67
  }
64
68
 
65
- def __init__(self, api_key: 'str' =None, api_url: 'str' =None, k8s_node_count: 'int' =None, node_count: 'int' =None, node_family: 'str' =None, provider: 'str' =None, supported: 'bool' =None, vm_node_count: 'int' =None): # noqa: E501
69
+ def __init__(self, api_key: 'str' =None, api_url: 'str' =None, k8s_node_count: 'int' =None, node_count: 'int' =None, node_family: 'str' =None, provider: 'str' =None, show_as_lightning: 'bool' =None, supported: 'bool' =None, uuid: 'str' =None, vm_node_count: 'int' =None): # noqa: E501
66
70
  """V1KubevirtConfig - a model defined in Swagger""" # noqa: E501
67
71
  self._api_key = None
68
72
  self._api_url = None
@@ -70,7 +74,9 @@ class V1KubevirtConfig(object):
70
74
  self._node_count = None
71
75
  self._node_family = None
72
76
  self._provider = None
77
+ self._show_as_lightning = None
73
78
  self._supported = None
79
+ self._uuid = None
74
80
  self._vm_node_count = None
75
81
  self.discriminator = None
76
82
  if api_key is not None:
@@ -85,8 +91,12 @@ class V1KubevirtConfig(object):
85
91
  self.node_family = node_family
86
92
  if provider is not None:
87
93
  self.provider = provider
94
+ if show_as_lightning is not None:
95
+ self.show_as_lightning = show_as_lightning
88
96
  if supported is not None:
89
97
  self.supported = supported
98
+ if uuid is not None:
99
+ self.uuid = uuid
90
100
  if vm_node_count is not None:
91
101
  self.vm_node_count = vm_node_count
92
102
 
@@ -216,6 +226,27 @@ class V1KubevirtConfig(object):
216
226
 
217
227
  self._provider = provider
218
228
 
229
+ @property
230
+ def show_as_lightning(self) -> 'bool':
231
+ """Gets the show_as_lightning of this V1KubevirtConfig. # noqa: E501
232
+
233
+
234
+ :return: The show_as_lightning of this V1KubevirtConfig. # noqa: E501
235
+ :rtype: bool
236
+ """
237
+ return self._show_as_lightning
238
+
239
+ @show_as_lightning.setter
240
+ def show_as_lightning(self, show_as_lightning: 'bool'):
241
+ """Sets the show_as_lightning of this V1KubevirtConfig.
242
+
243
+
244
+ :param show_as_lightning: The show_as_lightning of this V1KubevirtConfig. # noqa: E501
245
+ :type: bool
246
+ """
247
+
248
+ self._show_as_lightning = show_as_lightning
249
+
219
250
  @property
220
251
  def supported(self) -> 'bool':
221
252
  """Gets the supported of this V1KubevirtConfig. # noqa: E501
@@ -237,6 +268,27 @@ class V1KubevirtConfig(object):
237
268
 
238
269
  self._supported = supported
239
270
 
271
+ @property
272
+ def uuid(self) -> 'str':
273
+ """Gets the uuid of this V1KubevirtConfig. # noqa: E501
274
+
275
+
276
+ :return: The uuid of this V1KubevirtConfig. # noqa: E501
277
+ :rtype: str
278
+ """
279
+ return self._uuid
280
+
281
+ @uuid.setter
282
+ def uuid(self, uuid: 'str'):
283
+ """Sets the uuid of this V1KubevirtConfig.
284
+
285
+
286
+ :param uuid: The uuid of this V1KubevirtConfig. # noqa: E501
287
+ :type: str
288
+ """
289
+
290
+ self._uuid = uuid
291
+
240
292
  @property
241
293
  def vm_node_count(self) -> 'int':
242
294
  """Gets the vm_node_count of this V1KubevirtConfig. # noqa: E501
@@ -41,14 +41,14 @@ class V1ListContainerRegistriesResponse(object):
41
41
  and the value is json key in definition.
42
42
  """
43
43
  swagger_types = {
44
- 'registries': 'list[V1ContainerRegistryInfo]'
44
+ 'registries': 'list[V1ContainerRegistry]'
45
45
  }
46
46
 
47
47
  attribute_map = {
48
48
  'registries': 'registries'
49
49
  }
50
50
 
51
- def __init__(self, registries: 'list[V1ContainerRegistryInfo]' =None): # noqa: E501
51
+ def __init__(self, registries: 'list[V1ContainerRegistry]' =None): # noqa: E501
52
52
  """V1ListContainerRegistriesResponse - a model defined in Swagger""" # noqa: E501
53
53
  self._registries = None
54
54
  self.discriminator = None
@@ -56,22 +56,22 @@ class V1ListContainerRegistriesResponse(object):
56
56
  self.registries = registries
57
57
 
58
58
  @property
59
- def registries(self) -> 'list[V1ContainerRegistryInfo]':
59
+ def registries(self) -> 'list[V1ContainerRegistry]':
60
60
  """Gets the registries of this V1ListContainerRegistriesResponse. # noqa: E501
61
61
 
62
62
 
63
63
  :return: The registries of this V1ListContainerRegistriesResponse. # noqa: E501
64
- :rtype: list[V1ContainerRegistryInfo]
64
+ :rtype: list[V1ContainerRegistry]
65
65
  """
66
66
  return self._registries
67
67
 
68
68
  @registries.setter
69
- def registries(self, registries: 'list[V1ContainerRegistryInfo]'):
69
+ def registries(self, registries: 'list[V1ContainerRegistry]'):
70
70
  """Sets the registries of this V1ListContainerRegistriesResponse.
71
71
 
72
72
 
73
73
  :param registries: The registries of this V1ListContainerRegistriesResponse. # noqa: E501
74
- :type: list[V1ContainerRegistryInfo]
74
+ :type: list[V1ContainerRegistry]
75
75
  """
76
76
 
77
77
  self._registries = registries
@@ -41,24 +41,50 @@ class V1ListKubernetesPodsResponse(object):
41
41
  and the value is json key in definition.
42
42
  """
43
43
  swagger_types = {
44
+ 'next_page_token': 'str',
44
45
  'pods': 'list[V1KubernetesPod]',
45
- 'status_in': 'list[str]'
46
+ 'previous_page_token': 'str'
46
47
  }
47
48
 
48
49
  attribute_map = {
50
+ 'next_page_token': 'nextPageToken',
49
51
  'pods': 'pods',
50
- 'status_in': 'statusIn'
52
+ 'previous_page_token': 'previousPageToken'
51
53
  }
52
54
 
53
- def __init__(self, pods: 'list[V1KubernetesPod]' =None, status_in: 'list[str]' =None): # noqa: E501
55
+ def __init__(self, next_page_token: 'str' =None, pods: 'list[V1KubernetesPod]' =None, previous_page_token: 'str' =None): # noqa: E501
54
56
  """V1ListKubernetesPodsResponse - a model defined in Swagger""" # noqa: E501
57
+ self._next_page_token = None
55
58
  self._pods = None
56
- self._status_in = None
59
+ self._previous_page_token = None
57
60
  self.discriminator = None
61
+ if next_page_token is not None:
62
+ self.next_page_token = next_page_token
58
63
  if pods is not None:
59
64
  self.pods = pods
60
- if status_in is not None:
61
- self.status_in = status_in
65
+ if previous_page_token is not None:
66
+ self.previous_page_token = previous_page_token
67
+
68
+ @property
69
+ def next_page_token(self) -> 'str':
70
+ """Gets the next_page_token of this V1ListKubernetesPodsResponse. # noqa: E501
71
+
72
+
73
+ :return: The next_page_token of this V1ListKubernetesPodsResponse. # noqa: E501
74
+ :rtype: str
75
+ """
76
+ return self._next_page_token
77
+
78
+ @next_page_token.setter
79
+ def next_page_token(self, next_page_token: 'str'):
80
+ """Sets the next_page_token of this V1ListKubernetesPodsResponse.
81
+
82
+
83
+ :param next_page_token: The next_page_token of this V1ListKubernetesPodsResponse. # noqa: E501
84
+ :type: str
85
+ """
86
+
87
+ self._next_page_token = next_page_token
62
88
 
63
89
  @property
64
90
  def pods(self) -> 'list[V1KubernetesPod]':
@@ -82,25 +108,25 @@ class V1ListKubernetesPodsResponse(object):
82
108
  self._pods = pods
83
109
 
84
110
  @property
85
- def status_in(self) -> 'list[str]':
86
- """Gets the status_in of this V1ListKubernetesPodsResponse. # noqa: E501
111
+ def previous_page_token(self) -> 'str':
112
+ """Gets the previous_page_token of this V1ListKubernetesPodsResponse. # noqa: E501
87
113
 
88
114
 
89
- :return: The status_in of this V1ListKubernetesPodsResponse. # noqa: E501
90
- :rtype: list[str]
115
+ :return: The previous_page_token of this V1ListKubernetesPodsResponse. # noqa: E501
116
+ :rtype: str
91
117
  """
92
- return self._status_in
118
+ return self._previous_page_token
93
119
 
94
- @status_in.setter
95
- def status_in(self, status_in: 'list[str]'):
96
- """Sets the status_in of this V1ListKubernetesPodsResponse.
120
+ @previous_page_token.setter
121
+ def previous_page_token(self, previous_page_token: 'str'):
122
+ """Sets the previous_page_token of this V1ListKubernetesPodsResponse.
97
123
 
98
124
 
99
- :param status_in: The status_in of this V1ListKubernetesPodsResponse. # noqa: E501
100
- :type: list[str]
125
+ :param previous_page_token: The previous_page_token of this V1ListKubernetesPodsResponse. # noqa: E501
126
+ :type: str
101
127
  """
102
128
 
103
- self._status_in = status_in
129
+ self._previous_page_token = previous_page_token
104
130
 
105
131
  def to_dict(self) -> dict:
106
132
  """Returns the model properties as a dict"""
@@ -0,0 +1,104 @@
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 V1ListKubernetesPodsSortOrder(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
+ """
38
+ allowed enum values
39
+ """
40
+ UNSPECIFIED = "LIST_K8S_PODS_SORT_ORDER_UNSPECIFIED"
41
+ ASCENDING = "LIST_K8S_PODS_SORT_ORDER_ASCENDING"
42
+ DESCENDING = "LIST_K8S_PODS_SORT_ORDER_DESCENDING"
43
+ """
44
+ Attributes:
45
+ swagger_types (dict): The key is attribute name
46
+ and the value is attribute type.
47
+ attribute_map (dict): The key is attribute name
48
+ and the value is json key in definition.
49
+ """
50
+ swagger_types = {
51
+ }
52
+
53
+ attribute_map = {
54
+ }
55
+
56
+ def __init__(self): # noqa: E501
57
+ """V1ListKubernetesPodsSortOrder - a model defined in Swagger""" # noqa: E501
58
+ self.discriminator = None
59
+
60
+ def to_dict(self) -> dict:
61
+ """Returns the model properties as a dict"""
62
+ result = {}
63
+
64
+ for attr, _ in six.iteritems(self.swagger_types):
65
+ value = getattr(self, attr)
66
+ if isinstance(value, list):
67
+ result[attr] = list(map(
68
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
69
+ value
70
+ ))
71
+ elif hasattr(value, "to_dict"):
72
+ result[attr] = value.to_dict()
73
+ elif isinstance(value, dict):
74
+ result[attr] = dict(map(
75
+ lambda item: (item[0], item[1].to_dict())
76
+ if hasattr(item[1], "to_dict") else item,
77
+ value.items()
78
+ ))
79
+ else:
80
+ result[attr] = value
81
+ if issubclass(V1ListKubernetesPodsSortOrder, dict):
82
+ for key, value in self.items():
83
+ result[key] = value
84
+
85
+ return result
86
+
87
+ def to_str(self) -> str:
88
+ """Returns the string representation of the model"""
89
+ return pprint.pformat(self.to_dict())
90
+
91
+ def __repr__(self) -> str:
92
+ """For `print` and `pprint`"""
93
+ return self.to_str()
94
+
95
+ def __eq__(self, other: 'V1ListKubernetesPodsSortOrder') -> bool:
96
+ """Returns true if both objects are equal"""
97
+ if not isinstance(other, V1ListKubernetesPodsSortOrder):
98
+ return False
99
+
100
+ return self.__dict__ == other.__dict__
101
+
102
+ def __ne__(self, other: 'V1ListKubernetesPodsSortOrder') -> bool:
103
+ """Returns true if both objects are not equal"""
104
+ return not self == other