lightning-sdk 2025.9.4__py3-none-any.whl → 2025.9.11__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 (43) hide show
  1. lightning_sdk/__init__.py +1 -1
  2. lightning_sdk/api/llm_api.py +19 -0
  3. lightning_sdk/api/studio_api.py +25 -4
  4. lightning_sdk/lightning_cloud/login.py +60 -0
  5. lightning_sdk/lightning_cloud/openapi/__init__.py +17 -0
  6. lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +744 -13
  7. lightning_sdk/lightning_cloud/openapi/api/projects_service_api.py +105 -0
  8. lightning_sdk/lightning_cloud/openapi/models/__init__.py +17 -0
  9. lightning_sdk/lightning_cloud/openapi/models/id_render_body.py +123 -0
  10. lightning_sdk/lightning_cloud/openapi/models/kubernetestemplates_id_body.py +227 -0
  11. lightning_sdk/lightning_cloud/openapi/models/metricsstream_create_body.py +27 -1
  12. lightning_sdk/lightning_cloud/openapi/models/project_id_kubernetestemplates_body.py +227 -0
  13. lightning_sdk/lightning_cloud/openapi/models/project_tab_management_messages.py +123 -0
  14. lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +27 -1
  15. lightning_sdk/lightning_cloud/openapi/models/v1_ai_pod_v1.py +53 -1
  16. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +27 -1
  17. lightning_sdk/lightning_cloud/openapi/models/v1_delete_kubernetes_template_response.py +97 -0
  18. lightning_sdk/lightning_cloud/openapi/models/v1_firewall_rule.py +175 -0
  19. lightning_sdk/lightning_cloud/openapi/models/v1_incident_event.py +565 -0
  20. lightning_sdk/lightning_cloud/openapi/models/v1_incident_severity.py +105 -0
  21. lightning_sdk/lightning_cloud/openapi/models/v1_incident_type.py +106 -0
  22. lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_indexes.py +149 -0
  23. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template.py +383 -0
  24. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template_property.py +227 -0
  25. lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_events_response.py +123 -0
  26. lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_templates_response.py +123 -0
  27. lightning_sdk/lightning_cloud/openapi/models/v1_metrics_stream.py +27 -1
  28. lightning_sdk/lightning_cloud/openapi/models/v1_project.py +27 -1
  29. lightning_sdk/lightning_cloud/openapi/models/v1_project_tab.py +149 -0
  30. lightning_sdk/lightning_cloud/openapi/models/v1_quote_annual_upsell_response.py +29 -3
  31. lightning_sdk/lightning_cloud/openapi/models/v1_render_kubernetes_template_response.py +123 -0
  32. lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +1 -0
  33. lightning_sdk/lightning_cloud/openapi/models/v1_update_project_tab_order_response.py +123 -0
  34. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +154 -102
  35. lightning_sdk/llm/llm.py +91 -7
  36. lightning_sdk/llm/public_assistants.py +2 -2
  37. lightning_sdk/studio.py +30 -3
  38. {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.11.dist-info}/METADATA +1 -1
  39. {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.11.dist-info}/RECORD +43 -26
  40. {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.11.dist-info}/entry_points.txt +1 -0
  41. {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.11.dist-info}/LICENSE +0 -0
  42. {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.11.dist-info}/WHEEL +0 -0
  43. {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.11.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,175 @@
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 V1FirewallRule(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
+ 'name': 'str',
45
+ 'ports': 'str',
46
+ 'source_cidrs': 'list[str]'
47
+ }
48
+
49
+ attribute_map = {
50
+ 'name': 'name',
51
+ 'ports': 'ports',
52
+ 'source_cidrs': 'sourceCidrs'
53
+ }
54
+
55
+ def __init__(self, name: 'str' =None, ports: 'str' =None, source_cidrs: 'list[str]' =None): # noqa: E501
56
+ """V1FirewallRule - a model defined in Swagger""" # noqa: E501
57
+ self._name = None
58
+ self._ports = None
59
+ self._source_cidrs = None
60
+ self.discriminator = None
61
+ if name is not None:
62
+ self.name = name
63
+ if ports is not None:
64
+ self.ports = ports
65
+ if source_cidrs is not None:
66
+ self.source_cidrs = source_cidrs
67
+
68
+ @property
69
+ def name(self) -> 'str':
70
+ """Gets the name of this V1FirewallRule. # noqa: E501
71
+
72
+
73
+ :return: The name of this V1FirewallRule. # noqa: E501
74
+ :rtype: str
75
+ """
76
+ return self._name
77
+
78
+ @name.setter
79
+ def name(self, name: 'str'):
80
+ """Sets the name of this V1FirewallRule.
81
+
82
+
83
+ :param name: The name of this V1FirewallRule. # noqa: E501
84
+ :type: str
85
+ """
86
+
87
+ self._name = name
88
+
89
+ @property
90
+ def ports(self) -> 'str':
91
+ """Gets the ports of this V1FirewallRule. # noqa: E501
92
+
93
+
94
+ :return: The ports of this V1FirewallRule. # noqa: E501
95
+ :rtype: str
96
+ """
97
+ return self._ports
98
+
99
+ @ports.setter
100
+ def ports(self, ports: 'str'):
101
+ """Sets the ports of this V1FirewallRule.
102
+
103
+
104
+ :param ports: The ports of this V1FirewallRule. # noqa: E501
105
+ :type: str
106
+ """
107
+
108
+ self._ports = ports
109
+
110
+ @property
111
+ def source_cidrs(self) -> 'list[str]':
112
+ """Gets the source_cidrs of this V1FirewallRule. # noqa: E501
113
+
114
+
115
+ :return: The source_cidrs of this V1FirewallRule. # noqa: E501
116
+ :rtype: list[str]
117
+ """
118
+ return self._source_cidrs
119
+
120
+ @source_cidrs.setter
121
+ def source_cidrs(self, source_cidrs: 'list[str]'):
122
+ """Sets the source_cidrs of this V1FirewallRule.
123
+
124
+
125
+ :param source_cidrs: The source_cidrs of this V1FirewallRule. # noqa: E501
126
+ :type: list[str]
127
+ """
128
+
129
+ self._source_cidrs = source_cidrs
130
+
131
+ def to_dict(self) -> dict:
132
+ """Returns the model properties as a dict"""
133
+ result = {}
134
+
135
+ for attr, _ in six.iteritems(self.swagger_types):
136
+ value = getattr(self, attr)
137
+ if isinstance(value, list):
138
+ result[attr] = list(map(
139
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
140
+ value
141
+ ))
142
+ elif hasattr(value, "to_dict"):
143
+ result[attr] = value.to_dict()
144
+ elif isinstance(value, dict):
145
+ result[attr] = dict(map(
146
+ lambda item: (item[0], item[1].to_dict())
147
+ if hasattr(item[1], "to_dict") else item,
148
+ value.items()
149
+ ))
150
+ else:
151
+ result[attr] = value
152
+ if issubclass(V1FirewallRule, dict):
153
+ for key, value in self.items():
154
+ result[key] = value
155
+
156
+ return result
157
+
158
+ def to_str(self) -> str:
159
+ """Returns the string representation of the model"""
160
+ return pprint.pformat(self.to_dict())
161
+
162
+ def __repr__(self) -> str:
163
+ """For `print` and `pprint`"""
164
+ return self.to_str()
165
+
166
+ def __eq__(self, other: 'V1FirewallRule') -> bool:
167
+ """Returns true if both objects are equal"""
168
+ if not isinstance(other, V1FirewallRule):
169
+ return False
170
+
171
+ return self.__dict__ == other.__dict__
172
+
173
+ def __ne__(self, other: 'V1FirewallRule') -> bool:
174
+ """Returns true if both objects are not equal"""
175
+ return not self == other