lightning-sdk 2026.1.27__py3-none-any.whl → 2026.2.3__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 (22) hide show
  1. lightning_sdk/__version__.py +1 -1
  2. lightning_sdk/api/k8s_api.py +7 -1
  3. lightning_sdk/api/studio_api.py +32 -26
  4. lightning_sdk/api/teamspace_api.py +36 -26
  5. lightning_sdk/api/utils.py +61 -1
  6. lightning_sdk/cli/cp/teamspace_uploads.py +4 -2
  7. lightning_sdk/cli/utils/filesystem.py +6 -1
  8. lightning_sdk/lightning_cloud/openapi/__init__.py +3 -0
  9. lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +121 -0
  10. lightning_sdk/lightning_cloud/openapi/api/container_registry_service_api.py +123 -0
  11. lightning_sdk/lightning_cloud/openapi/models/__init__.py +3 -0
  12. lightning_sdk/lightning_cloud/openapi/models/cluster_service_get_cluster_capacity_reservation_body.py +97 -0
  13. lightning_sdk/lightning_cloud/openapi/models/v1_get_cluster_capacity_reservation_response.py +123 -0
  14. lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier.py +27 -1
  15. lightning_sdk/lightning_cloud/openapi/models/v1_update_container_registry_response.py +97 -0
  16. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +1 -53
  17. {lightning_sdk-2026.1.27.dist-info → lightning_sdk-2026.2.3.dist-info}/METADATA +1 -1
  18. {lightning_sdk-2026.1.27.dist-info → lightning_sdk-2026.2.3.dist-info}/RECORD +22 -19
  19. {lightning_sdk-2026.1.27.dist-info → lightning_sdk-2026.2.3.dist-info}/LICENSE +0 -0
  20. {lightning_sdk-2026.1.27.dist-info → lightning_sdk-2026.2.3.dist-info}/WHEEL +0 -0
  21. {lightning_sdk-2026.1.27.dist-info → lightning_sdk-2026.2.3.dist-info}/entry_points.txt +0 -0
  22. {lightning_sdk-2026.1.27.dist-info → lightning_sdk-2026.2.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,97 @@
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 ClusterServiceGetClusterCapacityReservationBody(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
+ }
45
+
46
+ attribute_map = {
47
+ }
48
+
49
+ def __init__(self): # noqa: E501
50
+ """ClusterServiceGetClusterCapacityReservationBody - a model defined in Swagger""" # noqa: E501
51
+ self.discriminator = None
52
+
53
+ def to_dict(self) -> dict:
54
+ """Returns the model properties as a dict"""
55
+ result = {}
56
+
57
+ for attr, _ in six.iteritems(self.swagger_types):
58
+ value = getattr(self, attr)
59
+ if isinstance(value, list):
60
+ result[attr] = list(map(
61
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
62
+ value
63
+ ))
64
+ elif hasattr(value, "to_dict"):
65
+ result[attr] = value.to_dict()
66
+ elif isinstance(value, dict):
67
+ result[attr] = dict(map(
68
+ lambda item: (item[0], item[1].to_dict())
69
+ if hasattr(item[1], "to_dict") else item,
70
+ value.items()
71
+ ))
72
+ else:
73
+ result[attr] = value
74
+ if issubclass(ClusterServiceGetClusterCapacityReservationBody, dict):
75
+ for key, value in self.items():
76
+ result[key] = value
77
+
78
+ return result
79
+
80
+ def to_str(self) -> str:
81
+ """Returns the string representation of the model"""
82
+ return pprint.pformat(self.to_dict())
83
+
84
+ def __repr__(self) -> str:
85
+ """For `print` and `pprint`"""
86
+ return self.to_str()
87
+
88
+ def __eq__(self, other: 'ClusterServiceGetClusterCapacityReservationBody') -> bool:
89
+ """Returns true if both objects are equal"""
90
+ if not isinstance(other, ClusterServiceGetClusterCapacityReservationBody):
91
+ return False
92
+
93
+ return self.__dict__ == other.__dict__
94
+
95
+ def __ne__(self, other: 'ClusterServiceGetClusterCapacityReservationBody') -> bool:
96
+ """Returns true if both objects are not equal"""
97
+ return not self == other
@@ -0,0 +1,123 @@
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 V1GetClusterCapacityReservationResponse(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
+ 'capacity_reservation': 'V1ClusterCapacityReservation'
45
+ }
46
+
47
+ attribute_map = {
48
+ 'capacity_reservation': 'capacityReservation'
49
+ }
50
+
51
+ def __init__(self, capacity_reservation: 'V1ClusterCapacityReservation' =None): # noqa: E501
52
+ """V1GetClusterCapacityReservationResponse - a model defined in Swagger""" # noqa: E501
53
+ self._capacity_reservation = None
54
+ self.discriminator = None
55
+ if capacity_reservation is not None:
56
+ self.capacity_reservation = capacity_reservation
57
+
58
+ @property
59
+ def capacity_reservation(self) -> 'V1ClusterCapacityReservation':
60
+ """Gets the capacity_reservation of this V1GetClusterCapacityReservationResponse. # noqa: E501
61
+
62
+
63
+ :return: The capacity_reservation of this V1GetClusterCapacityReservationResponse. # noqa: E501
64
+ :rtype: V1ClusterCapacityReservation
65
+ """
66
+ return self._capacity_reservation
67
+
68
+ @capacity_reservation.setter
69
+ def capacity_reservation(self, capacity_reservation: 'V1ClusterCapacityReservation'):
70
+ """Sets the capacity_reservation of this V1GetClusterCapacityReservationResponse.
71
+
72
+
73
+ :param capacity_reservation: The capacity_reservation of this V1GetClusterCapacityReservationResponse. # noqa: E501
74
+ :type: V1ClusterCapacityReservation
75
+ """
76
+
77
+ self._capacity_reservation = capacity_reservation
78
+
79
+ def to_dict(self) -> dict:
80
+ """Returns the model properties as a dict"""
81
+ result = {}
82
+
83
+ for attr, _ in six.iteritems(self.swagger_types):
84
+ value = getattr(self, attr)
85
+ if isinstance(value, list):
86
+ result[attr] = list(map(
87
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
88
+ value
89
+ ))
90
+ elif hasattr(value, "to_dict"):
91
+ result[attr] = value.to_dict()
92
+ elif isinstance(value, dict):
93
+ result[attr] = dict(map(
94
+ lambda item: (item[0], item[1].to_dict())
95
+ if hasattr(item[1], "to_dict") else item,
96
+ value.items()
97
+ ))
98
+ else:
99
+ result[attr] = value
100
+ if issubclass(V1GetClusterCapacityReservationResponse, dict):
101
+ for key, value in self.items():
102
+ result[key] = value
103
+
104
+ return result
105
+
106
+ def to_str(self) -> str:
107
+ """Returns the string representation of the model"""
108
+ return pprint.pformat(self.to_dict())
109
+
110
+ def __repr__(self) -> str:
111
+ """For `print` and `pprint`"""
112
+ return self.to_str()
113
+
114
+ def __eq__(self, other: 'V1GetClusterCapacityReservationResponse') -> bool:
115
+ """Returns true if both objects are equal"""
116
+ if not isinstance(other, V1GetClusterCapacityReservationResponse):
117
+ return False
118
+
119
+ return self.__dict__ == other.__dict__
120
+
121
+ def __ne__(self, other: 'V1GetClusterCapacityReservationResponse') -> bool:
122
+ """Returns true if both objects are not equal"""
123
+ return not self == other
@@ -43,6 +43,7 @@ class V1SlackNotifier(object):
43
43
  swagger_types = {
44
44
  'api_key': 'str',
45
45
  'channel_id': 'str',
46
+ 'notify_on_ready_for_maintenance': 'bool',
46
47
  'type': 'V1SlackNotifierType',
47
48
  'url': 'str'
48
49
  }
@@ -50,14 +51,16 @@ class V1SlackNotifier(object):
50
51
  attribute_map = {
51
52
  'api_key': 'apiKey',
52
53
  'channel_id': 'channelId',
54
+ 'notify_on_ready_for_maintenance': 'notifyOnReadyForMaintenance',
53
55
  'type': 'type',
54
56
  'url': 'url'
55
57
  }
56
58
 
57
- def __init__(self, api_key: 'str' =None, channel_id: 'str' =None, type: 'V1SlackNotifierType' =None, url: 'str' =None): # noqa: E501
59
+ def __init__(self, api_key: 'str' =None, channel_id: 'str' =None, notify_on_ready_for_maintenance: 'bool' =None, type: 'V1SlackNotifierType' =None, url: 'str' =None): # noqa: E501
58
60
  """V1SlackNotifier - a model defined in Swagger""" # noqa: E501
59
61
  self._api_key = None
60
62
  self._channel_id = None
63
+ self._notify_on_ready_for_maintenance = None
61
64
  self._type = None
62
65
  self._url = None
63
66
  self.discriminator = None
@@ -65,6 +68,8 @@ class V1SlackNotifier(object):
65
68
  self.api_key = api_key
66
69
  if channel_id is not None:
67
70
  self.channel_id = channel_id
71
+ if notify_on_ready_for_maintenance is not None:
72
+ self.notify_on_ready_for_maintenance = notify_on_ready_for_maintenance
68
73
  if type is not None:
69
74
  self.type = type
70
75
  if url is not None:
@@ -112,6 +117,27 @@ class V1SlackNotifier(object):
112
117
 
113
118
  self._channel_id = channel_id
114
119
 
120
+ @property
121
+ def notify_on_ready_for_maintenance(self) -> 'bool':
122
+ """Gets the notify_on_ready_for_maintenance of this V1SlackNotifier. # noqa: E501
123
+
124
+
125
+ :return: The notify_on_ready_for_maintenance of this V1SlackNotifier. # noqa: E501
126
+ :rtype: bool
127
+ """
128
+ return self._notify_on_ready_for_maintenance
129
+
130
+ @notify_on_ready_for_maintenance.setter
131
+ def notify_on_ready_for_maintenance(self, notify_on_ready_for_maintenance: 'bool'):
132
+ """Sets the notify_on_ready_for_maintenance of this V1SlackNotifier.
133
+
134
+
135
+ :param notify_on_ready_for_maintenance: The notify_on_ready_for_maintenance of this V1SlackNotifier. # noqa: E501
136
+ :type: bool
137
+ """
138
+
139
+ self._notify_on_ready_for_maintenance = notify_on_ready_for_maintenance
140
+
115
141
  @property
116
142
  def type(self) -> 'V1SlackNotifierType':
117
143
  """Gets the type of this V1SlackNotifier. # noqa: E501
@@ -0,0 +1,97 @@
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 V1UpdateContainerRegistryResponse(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
+ }
45
+
46
+ attribute_map = {
47
+ }
48
+
49
+ def __init__(self): # noqa: E501
50
+ """V1UpdateContainerRegistryResponse - a model defined in Swagger""" # noqa: E501
51
+ self.discriminator = None
52
+
53
+ def to_dict(self) -> dict:
54
+ """Returns the model properties as a dict"""
55
+ result = {}
56
+
57
+ for attr, _ in six.iteritems(self.swagger_types):
58
+ value = getattr(self, attr)
59
+ if isinstance(value, list):
60
+ result[attr] = list(map(
61
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
62
+ value
63
+ ))
64
+ elif hasattr(value, "to_dict"):
65
+ result[attr] = value.to_dict()
66
+ elif isinstance(value, dict):
67
+ result[attr] = dict(map(
68
+ lambda item: (item[0], item[1].to_dict())
69
+ if hasattr(item[1], "to_dict") else item,
70
+ value.items()
71
+ ))
72
+ else:
73
+ result[attr] = value
74
+ if issubclass(V1UpdateContainerRegistryResponse, dict):
75
+ for key, value in self.items():
76
+ result[key] = value
77
+
78
+ return result
79
+
80
+ def to_str(self) -> str:
81
+ """Returns the string representation of the model"""
82
+ return pprint.pformat(self.to_dict())
83
+
84
+ def __repr__(self) -> str:
85
+ """For `print` and `pprint`"""
86
+ return self.to_str()
87
+
88
+ def __eq__(self, other: 'V1UpdateContainerRegistryResponse') -> bool:
89
+ """Returns true if both objects are equal"""
90
+ if not isinstance(other, V1UpdateContainerRegistryResponse):
91
+ return False
92
+
93
+ return self.__dict__ == other.__dict__
94
+
95
+ def __ne__(self, other: 'V1UpdateContainerRegistryResponse') -> bool:
96
+ """Returns true if both objects are not equal"""
97
+ return not self == other
@@ -80,7 +80,6 @@ class V1UserFeatures(object):
80
80
  'f271': 'bool',
81
81
  'f272': 'bool',
82
82
  'f273': 'bool',
83
- 'f275': 'bool',
84
83
  'f276': 'bool',
85
84
  'f279': 'bool',
86
85
  'f280': 'bool',
@@ -90,7 +89,6 @@ class V1UserFeatures(object):
90
89
  'f287': 'bool',
91
90
  'f288': 'bool',
92
91
  'f289': 'bool',
93
- 'f290': 'bool',
94
92
  'f292': 'bool',
95
93
  'f293': 'bool',
96
94
  'f294': 'bool',
@@ -175,7 +173,6 @@ class V1UserFeatures(object):
175
173
  'f271': 'f271',
176
174
  'f272': 'f272',
177
175
  'f273': 'f273',
178
- 'f275': 'f275',
179
176
  'f276': 'f276',
180
177
  'f279': 'f279',
181
178
  'f280': 'f280',
@@ -185,7 +182,6 @@ class V1UserFeatures(object):
185
182
  'f287': 'f287',
186
183
  'f288': 'f288',
187
184
  'f289': 'f289',
188
- 'f290': 'f290',
189
185
  'f292': 'f292',
190
186
  'f293': 'f293',
191
187
  'f294': 'f294',
@@ -230,7 +226,7 @@ class V1UserFeatures(object):
230
226
  'weka': 'weka'
231
227
  }
232
228
 
233
- def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, b2c_experience: 'bool' =None, byo_machine_type: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloudspace_schedules: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, control_center_monitoring: 'bool' =None, cost_attribution_settings: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f234: 'bool' =None, f236: 'bool' =None, f240: 'bool' =None, f241: 'bool' =None, f243: 'bool' =None, f245: 'bool' =None, f247: 'bool' =None, f250: 'bool' =None, f252: 'bool' =None, f253: 'bool' =None, f254: 'bool' =None, f258: 'bool' =None, f259: 'bool' =None, f266: 'bool' =None, f268: 'bool' =None, f270: 'bool' =None, f271: 'bool' =None, f272: 'bool' =None, f273: 'bool' =None, f275: 'bool' =None, f276: 'bool' =None, f279: 'bool' =None, f280: 'bool' =None, f281: 'bool' =None, f283: 'bool' =None, f285: 'bool' =None, f287: 'bool' =None, f288: 'bool' =None, f289: 'bool' =None, f290: 'bool' =None, f292: 'bool' =None, f293: 'bool' =None, f294: 'bool' =None, f295: 'bool' =None, f296: 'bool' =None, f297: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, job_artifacts_v2: 'bool' =None, kubernetes_cluster_ui: 'bool' =None, kubernetes_clusters: 'bool' =None, landing_studios: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multiple_studio_versions: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, persistent_disk: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_sweeps: 'bool' =None, product_generator: 'bool' =None, product_license: 'bool' =None, project_selector: 'bool' =None, publish_pipelines: 'bool' =None, reserved_machines_tab: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, slurm: 'bool' =None, specialised_studios: 'bool' =None, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_version_visibility: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
229
+ def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, b2c_experience: 'bool' =None, byo_machine_type: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloudspace_schedules: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, control_center_monitoring: 'bool' =None, cost_attribution_settings: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f234: 'bool' =None, f236: 'bool' =None, f240: 'bool' =None, f241: 'bool' =None, f243: 'bool' =None, f245: 'bool' =None, f247: 'bool' =None, f250: 'bool' =None, f252: 'bool' =None, f253: 'bool' =None, f254: 'bool' =None, f258: 'bool' =None, f259: 'bool' =None, f266: 'bool' =None, f268: 'bool' =None, f270: 'bool' =None, f271: 'bool' =None, f272: 'bool' =None, f273: 'bool' =None, f276: 'bool' =None, f279: 'bool' =None, f280: 'bool' =None, f281: 'bool' =None, f283: 'bool' =None, f285: 'bool' =None, f287: 'bool' =None, f288: 'bool' =None, f289: 'bool' =None, f292: 'bool' =None, f293: 'bool' =None, f294: 'bool' =None, f295: 'bool' =None, f296: 'bool' =None, f297: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, job_artifacts_v2: 'bool' =None, kubernetes_cluster_ui: 'bool' =None, kubernetes_clusters: 'bool' =None, landing_studios: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multiple_studio_versions: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, persistent_disk: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_sweeps: 'bool' =None, product_generator: 'bool' =None, product_license: 'bool' =None, project_selector: 'bool' =None, publish_pipelines: 'bool' =None, reserved_machines_tab: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, slurm: 'bool' =None, specialised_studios: 'bool' =None, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_version_visibility: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
234
230
  """V1UserFeatures - a model defined in Swagger""" # noqa: E501
235
231
  self._affiliate_links = None
236
232
  self._agents_v2 = None
@@ -271,7 +267,6 @@ class V1UserFeatures(object):
271
267
  self._f271 = None
272
268
  self._f272 = None
273
269
  self._f273 = None
274
- self._f275 = None
275
270
  self._f276 = None
276
271
  self._f279 = None
277
272
  self._f280 = None
@@ -281,7 +276,6 @@ class V1UserFeatures(object):
281
276
  self._f287 = None
282
277
  self._f288 = None
283
278
  self._f289 = None
284
- self._f290 = None
285
279
  self._f292 = None
286
280
  self._f293 = None
287
281
  self._f294 = None
@@ -403,8 +397,6 @@ class V1UserFeatures(object):
403
397
  self.f272 = f272
404
398
  if f273 is not None:
405
399
  self.f273 = f273
406
- if f275 is not None:
407
- self.f275 = f275
408
400
  if f276 is not None:
409
401
  self.f276 = f276
410
402
  if f279 is not None:
@@ -423,8 +415,6 @@ class V1UserFeatures(object):
423
415
  self.f288 = f288
424
416
  if f289 is not None:
425
417
  self.f289 = f289
426
- if f290 is not None:
427
- self.f290 = f290
428
418
  if f292 is not None:
429
419
  self.f292 = f292
430
420
  if f293 is not None:
@@ -1329,27 +1319,6 @@ class V1UserFeatures(object):
1329
1319
 
1330
1320
  self._f273 = f273
1331
1321
 
1332
- @property
1333
- def f275(self) -> 'bool':
1334
- """Gets the f275 of this V1UserFeatures. # noqa: E501
1335
-
1336
-
1337
- :return: The f275 of this V1UserFeatures. # noqa: E501
1338
- :rtype: bool
1339
- """
1340
- return self._f275
1341
-
1342
- @f275.setter
1343
- def f275(self, f275: 'bool'):
1344
- """Sets the f275 of this V1UserFeatures.
1345
-
1346
-
1347
- :param f275: The f275 of this V1UserFeatures. # noqa: E501
1348
- :type: bool
1349
- """
1350
-
1351
- self._f275 = f275
1352
-
1353
1322
  @property
1354
1323
  def f276(self) -> 'bool':
1355
1324
  """Gets the f276 of this V1UserFeatures. # noqa: E501
@@ -1539,27 +1508,6 @@ class V1UserFeatures(object):
1539
1508
 
1540
1509
  self._f289 = f289
1541
1510
 
1542
- @property
1543
- def f290(self) -> 'bool':
1544
- """Gets the f290 of this V1UserFeatures. # noqa: E501
1545
-
1546
-
1547
- :return: The f290 of this V1UserFeatures. # noqa: E501
1548
- :rtype: bool
1549
- """
1550
- return self._f290
1551
-
1552
- @f290.setter
1553
- def f290(self, f290: 'bool'):
1554
- """Sets the f290 of this V1UserFeatures.
1555
-
1556
-
1557
- :param f290: The f290 of this V1UserFeatures. # noqa: E501
1558
- :type: bool
1559
- """
1560
-
1561
- self._f290 = f290
1562
-
1563
1511
  @property
1564
1512
  def f292(self) -> 'bool':
1565
1513
  """Gets the f292 of this V1UserFeatures. # noqa: E501
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lightning_sdk
3
- Version: 2026.1.27
3
+ Version: 2026.2.3
4
4
  Summary: SDK to develop using Lightning AI Studios
5
5
  Author-email: Lightning-AI <justus@lightning.ai>
6
6
  License: MIT License