lightning-sdk 2025.8.28__py3-none-any.whl → 2025.9.4__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 (45) hide show
  1. lightning_sdk/__init__.py +1 -1
  2. lightning_sdk/api/teamspace_api.py +2 -0
  3. lightning_sdk/lightning_cloud/openapi/__init__.py +16 -0
  4. lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +388 -0
  5. lightning_sdk/lightning_cloud/openapi/api/auth_service_api.py +97 -0
  6. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +202 -0
  7. lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +101 -0
  8. lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +4 -4
  9. lightning_sdk/lightning_cloud/openapi/models/__init__.py +16 -0
  10. lightning_sdk/lightning_cloud/openapi/models/cluster_id_metrics_body.py +27 -1
  11. lightning_sdk/lightning_cloud/openapi/models/models_model_id_body.py +109 -31
  12. lightning_sdk/lightning_cloud/openapi/models/models_model_id_body1.py +149 -0
  13. lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +27 -1
  14. lightning_sdk/lightning_cloud/openapi/models/v1_aggregated_pod_metrics.py +799 -0
  15. lightning_sdk/lightning_cloud/openapi/models/v1_cancel_running_cloud_space_instance_transfer_response.py +97 -0
  16. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_transfer_metadata.py +27 -1
  17. lightning_sdk/lightning_cloud/openapi/models/v1_cloudflare_v1.py +3 -29
  18. lightning_sdk/lightning_cloud/openapi/models/v1_create_model_metrics_response.py +97 -0
  19. lightning_sdk/lightning_cloud/openapi/models/v1_daily_model_metrics.py +149 -0
  20. lightning_sdk/lightning_cloud/openapi/models/v1_filestore_data_connection.py +27 -1
  21. lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_required_balance_status_response.py +149 -0
  22. lightning_sdk/lightning_cloud/openapi/models/v1_get_latest_model_metrics_response.py +123 -0
  23. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_metrics_response.py +123 -0
  24. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_total_usage_metrics_response.py +149 -0
  25. lightning_sdk/lightning_cloud/openapi/models/v1_get_temp_bucket_credentials_response.py +201 -0
  26. lightning_sdk/lightning_cloud/openapi/models/v1_group_node_metrics.py +1215 -0
  27. lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_request.py +177 -0
  28. lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_response.py +149 -0
  29. lightning_sdk/lightning_cloud/openapi/models/v1_guest_user.py +201 -0
  30. lightning_sdk/lightning_cloud/openapi/models/v1_lambda_labs_direct_v1.py +29 -3
  31. lightning_sdk/lightning_cloud/openapi/models/v1_list_aggregated_pod_metrics_response.py +6 -6
  32. lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_response.py +27 -1
  33. lightning_sdk/lightning_cloud/openapi/models/v1_model_metrics.py +175 -0
  34. lightning_sdk/lightning_cloud/openapi/models/v1_nebius_direct_v1.py +29 -3
  35. lightning_sdk/lightning_cloud/openapi/models/v1_node_metrics.py +81 -3
  36. lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +27 -1
  37. lightning_sdk/lightning_cloud/openapi/models/v1_required_balance_reason.py +107 -0
  38. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +53 -27
  39. lightning_sdk/lightning_cloud/openapi/models/v1_voltage_park_direct_v1.py +29 -3
  40. {lightning_sdk-2025.8.28.dist-info → lightning_sdk-2025.9.4.dist-info}/METADATA +1 -1
  41. {lightning_sdk-2025.8.28.dist-info → lightning_sdk-2025.9.4.dist-info}/RECORD +45 -29
  42. {lightning_sdk-2025.8.28.dist-info → lightning_sdk-2025.9.4.dist-info}/LICENSE +0 -0
  43. {lightning_sdk-2025.8.28.dist-info → lightning_sdk-2025.9.4.dist-info}/WHEEL +0 -0
  44. {lightning_sdk-2025.8.28.dist-info → lightning_sdk-2025.9.4.dist-info}/entry_points.txt +0 -0
  45. {lightning_sdk-2025.8.28.dist-info → lightning_sdk-2025.9.4.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,177 @@
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 V1GuestLoginRequest(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
+ 'api_key': 'str',
45
+ 'collab_session_id': 'str',
46
+ 'referrer_params': 'str'
47
+ }
48
+
49
+ attribute_map = {
50
+ 'api_key': 'apiKey',
51
+ 'collab_session_id': 'collabSessionId',
52
+ 'referrer_params': 'referrerParams'
53
+ }
54
+
55
+ def __init__(self, api_key: 'str' =None, collab_session_id: 'str' =None, referrer_params: 'str' =None): # noqa: E501
56
+ """V1GuestLoginRequest - a model defined in Swagger""" # noqa: E501
57
+ self._api_key = None
58
+ self._collab_session_id = None
59
+ self._referrer_params = None
60
+ self.discriminator = None
61
+ if api_key is not None:
62
+ self.api_key = api_key
63
+ if collab_session_id is not None:
64
+ self.collab_session_id = collab_session_id
65
+ if referrer_params is not None:
66
+ self.referrer_params = referrer_params
67
+
68
+ @property
69
+ def api_key(self) -> 'str':
70
+ """Gets the api_key of this V1GuestLoginRequest. # noqa: E501
71
+
72
+
73
+ :return: The api_key of this V1GuestLoginRequest. # noqa: E501
74
+ :rtype: str
75
+ """
76
+ return self._api_key
77
+
78
+ @api_key.setter
79
+ def api_key(self, api_key: 'str'):
80
+ """Sets the api_key of this V1GuestLoginRequest.
81
+
82
+
83
+ :param api_key: The api_key of this V1GuestLoginRequest. # noqa: E501
84
+ :type: str
85
+ """
86
+
87
+ self._api_key = api_key
88
+
89
+ @property
90
+ def collab_session_id(self) -> 'str':
91
+ """Gets the collab_session_id of this V1GuestLoginRequest. # noqa: E501
92
+
93
+ Optional ID to associate the guest with a specific shared session. # noqa: E501
94
+
95
+ :return: The collab_session_id of this V1GuestLoginRequest. # noqa: E501
96
+ :rtype: str
97
+ """
98
+ return self._collab_session_id
99
+
100
+ @collab_session_id.setter
101
+ def collab_session_id(self, collab_session_id: 'str'):
102
+ """Sets the collab_session_id of this V1GuestLoginRequest.
103
+
104
+ Optional ID to associate the guest with a specific shared session. # noqa: E501
105
+
106
+ :param collab_session_id: The collab_session_id of this V1GuestLoginRequest. # noqa: E501
107
+ :type: str
108
+ """
109
+
110
+ self._collab_session_id = collab_session_id
111
+
112
+ @property
113
+ def referrer_params(self) -> 'str':
114
+ """Gets the referrer_params of this V1GuestLoginRequest. # noqa: E501
115
+
116
+
117
+ :return: The referrer_params of this V1GuestLoginRequest. # noqa: E501
118
+ :rtype: str
119
+ """
120
+ return self._referrer_params
121
+
122
+ @referrer_params.setter
123
+ def referrer_params(self, referrer_params: 'str'):
124
+ """Sets the referrer_params of this V1GuestLoginRequest.
125
+
126
+
127
+ :param referrer_params: The referrer_params of this V1GuestLoginRequest. # noqa: E501
128
+ :type: str
129
+ """
130
+
131
+ self._referrer_params = referrer_params
132
+
133
+ def to_dict(self) -> dict:
134
+ """Returns the model properties as a dict"""
135
+ result = {}
136
+
137
+ for attr, _ in six.iteritems(self.swagger_types):
138
+ value = getattr(self, attr)
139
+ if isinstance(value, list):
140
+ result[attr] = list(map(
141
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
142
+ value
143
+ ))
144
+ elif hasattr(value, "to_dict"):
145
+ result[attr] = value.to_dict()
146
+ elif isinstance(value, dict):
147
+ result[attr] = dict(map(
148
+ lambda item: (item[0], item[1].to_dict())
149
+ if hasattr(item[1], "to_dict") else item,
150
+ value.items()
151
+ ))
152
+ else:
153
+ result[attr] = value
154
+ if issubclass(V1GuestLoginRequest, dict):
155
+ for key, value in self.items():
156
+ result[key] = value
157
+
158
+ return result
159
+
160
+ def to_str(self) -> str:
161
+ """Returns the string representation of the model"""
162
+ return pprint.pformat(self.to_dict())
163
+
164
+ def __repr__(self) -> str:
165
+ """For `print` and `pprint`"""
166
+ return self.to_str()
167
+
168
+ def __eq__(self, other: 'V1GuestLoginRequest') -> bool:
169
+ """Returns true if both objects are equal"""
170
+ if not isinstance(other, V1GuestLoginRequest):
171
+ return False
172
+
173
+ return self.__dict__ == other.__dict__
174
+
175
+ def __ne__(self, other: 'V1GuestLoginRequest') -> bool:
176
+ """Returns true if both objects are not equal"""
177
+ return not self == other
@@ -0,0 +1,149 @@
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 V1GuestLoginResponse(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
+ 'token': 'str',
45
+ 'user': 'V1GuestUser'
46
+ }
47
+
48
+ attribute_map = {
49
+ 'token': 'token',
50
+ 'user': 'user'
51
+ }
52
+
53
+ def __init__(self, token: 'str' =None, user: 'V1GuestUser' =None): # noqa: E501
54
+ """V1GuestLoginResponse - a model defined in Swagger""" # noqa: E501
55
+ self._token = None
56
+ self._user = None
57
+ self.discriminator = None
58
+ if token is not None:
59
+ self.token = token
60
+ if user is not None:
61
+ self.user = user
62
+
63
+ @property
64
+ def token(self) -> 'str':
65
+ """Gets the token of this V1GuestLoginResponse. # noqa: E501
66
+
67
+
68
+ :return: The token of this V1GuestLoginResponse. # noqa: E501
69
+ :rtype: str
70
+ """
71
+ return self._token
72
+
73
+ @token.setter
74
+ def token(self, token: 'str'):
75
+ """Sets the token of this V1GuestLoginResponse.
76
+
77
+
78
+ :param token: The token of this V1GuestLoginResponse. # noqa: E501
79
+ :type: str
80
+ """
81
+
82
+ self._token = token
83
+
84
+ @property
85
+ def user(self) -> 'V1GuestUser':
86
+ """Gets the user of this V1GuestLoginResponse. # noqa: E501
87
+
88
+
89
+ :return: The user of this V1GuestLoginResponse. # noqa: E501
90
+ :rtype: V1GuestUser
91
+ """
92
+ return self._user
93
+
94
+ @user.setter
95
+ def user(self, user: 'V1GuestUser'):
96
+ """Sets the user of this V1GuestLoginResponse.
97
+
98
+
99
+ :param user: The user of this V1GuestLoginResponse. # noqa: E501
100
+ :type: V1GuestUser
101
+ """
102
+
103
+ self._user = user
104
+
105
+ def to_dict(self) -> dict:
106
+ """Returns the model properties as a dict"""
107
+ result = {}
108
+
109
+ for attr, _ in six.iteritems(self.swagger_types):
110
+ value = getattr(self, attr)
111
+ if isinstance(value, list):
112
+ result[attr] = list(map(
113
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
114
+ value
115
+ ))
116
+ elif hasattr(value, "to_dict"):
117
+ result[attr] = value.to_dict()
118
+ elif isinstance(value, dict):
119
+ result[attr] = dict(map(
120
+ lambda item: (item[0], item[1].to_dict())
121
+ if hasattr(item[1], "to_dict") else item,
122
+ value.items()
123
+ ))
124
+ else:
125
+ result[attr] = value
126
+ if issubclass(V1GuestLoginResponse, dict):
127
+ for key, value in self.items():
128
+ result[key] = value
129
+
130
+ return result
131
+
132
+ def to_str(self) -> str:
133
+ """Returns the string representation of the model"""
134
+ return pprint.pformat(self.to_dict())
135
+
136
+ def __repr__(self) -> str:
137
+ """For `print` and `pprint`"""
138
+ return self.to_str()
139
+
140
+ def __eq__(self, other: 'V1GuestLoginResponse') -> bool:
141
+ """Returns true if both objects are equal"""
142
+ if not isinstance(other, V1GuestLoginResponse):
143
+ return False
144
+
145
+ return self.__dict__ == other.__dict__
146
+
147
+ def __ne__(self, other: 'V1GuestLoginResponse') -> bool:
148
+ """Returns true if both objects are not equal"""
149
+ return not self == other
@@ -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 V1GuestUser(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
+ 'api_key': 'str',
45
+ 'expires_at': 'datetime',
46
+ 'id': 'str',
47
+ 'username': 'str'
48
+ }
49
+
50
+ attribute_map = {
51
+ 'api_key': 'apiKey',
52
+ 'expires_at': 'expiresAt',
53
+ 'id': 'id',
54
+ 'username': 'username'
55
+ }
56
+
57
+ def __init__(self, api_key: 'str' =None, expires_at: 'datetime' =None, id: 'str' =None, username: 'str' =None): # noqa: E501
58
+ """V1GuestUser - a model defined in Swagger""" # noqa: E501
59
+ self._api_key = None
60
+ self._expires_at = None
61
+ self._id = None
62
+ self._username = None
63
+ self.discriminator = None
64
+ if api_key is not None:
65
+ self.api_key = api_key
66
+ if expires_at is not None:
67
+ self.expires_at = expires_at
68
+ if id is not None:
69
+ self.id = id
70
+ if username is not None:
71
+ self.username = username
72
+
73
+ @property
74
+ def api_key(self) -> 'str':
75
+ """Gets the api_key of this V1GuestUser. # noqa: E501
76
+
77
+
78
+ :return: The api_key of this V1GuestUser. # noqa: E501
79
+ :rtype: str
80
+ """
81
+ return self._api_key
82
+
83
+ @api_key.setter
84
+ def api_key(self, api_key: 'str'):
85
+ """Sets the api_key of this V1GuestUser.
86
+
87
+
88
+ :param api_key: The api_key of this V1GuestUser. # noqa: E501
89
+ :type: str
90
+ """
91
+
92
+ self._api_key = api_key
93
+
94
+ @property
95
+ def expires_at(self) -> 'datetime':
96
+ """Gets the expires_at of this V1GuestUser. # noqa: E501
97
+
98
+
99
+ :return: The expires_at of this V1GuestUser. # noqa: E501
100
+ :rtype: datetime
101
+ """
102
+ return self._expires_at
103
+
104
+ @expires_at.setter
105
+ def expires_at(self, expires_at: 'datetime'):
106
+ """Sets the expires_at of this V1GuestUser.
107
+
108
+
109
+ :param expires_at: The expires_at of this V1GuestUser. # noqa: E501
110
+ :type: datetime
111
+ """
112
+
113
+ self._expires_at = expires_at
114
+
115
+ @property
116
+ def id(self) -> 'str':
117
+ """Gets the id of this V1GuestUser. # noqa: E501
118
+
119
+
120
+ :return: The id of this V1GuestUser. # noqa: E501
121
+ :rtype: str
122
+ """
123
+ return self._id
124
+
125
+ @id.setter
126
+ def id(self, id: 'str'):
127
+ """Sets the id of this V1GuestUser.
128
+
129
+
130
+ :param id: The id of this V1GuestUser. # noqa: E501
131
+ :type: str
132
+ """
133
+
134
+ self._id = id
135
+
136
+ @property
137
+ def username(self) -> 'str':
138
+ """Gets the username of this V1GuestUser. # noqa: E501
139
+
140
+
141
+ :return: The username of this V1GuestUser. # 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 V1GuestUser.
149
+
150
+
151
+ :param username: The username of this V1GuestUser. # 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(V1GuestUser, 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: 'V1GuestUser') -> bool:
193
+ """Returns true if both objects are equal"""
194
+ if not isinstance(other, V1GuestUser):
195
+ return False
196
+
197
+ return self.__dict__ == other.__dict__
198
+
199
+ def __ne__(self, other: 'V1GuestUser') -> bool:
200
+ """Returns true if both objects are not equal"""
201
+ return not self == other
@@ -43,20 +43,23 @@ class V1LambdaLabsDirectV1(object):
43
43
  swagger_types = {
44
44
  'credentials_secret_id': 'str',
45
45
  'primary_region': 'str',
46
- 'regions': 'list[str]'
46
+ 'regions': 'list[str]',
47
+ 'subnet_cidr_ranges': 'list[str]'
47
48
  }
48
49
 
49
50
  attribute_map = {
50
51
  'credentials_secret_id': 'credentialsSecretId',
51
52
  'primary_region': 'primaryRegion',
52
- 'regions': 'regions'
53
+ 'regions': 'regions',
54
+ 'subnet_cidr_ranges': 'subnetCidrRanges'
53
55
  }
54
56
 
55
- def __init__(self, credentials_secret_id: 'str' =None, primary_region: 'str' =None, regions: 'list[str]' =None): # noqa: E501
57
+ def __init__(self, credentials_secret_id: 'str' =None, primary_region: 'str' =None, regions: 'list[str]' =None, subnet_cidr_ranges: 'list[str]' =None): # noqa: E501
56
58
  """V1LambdaLabsDirectV1 - a model defined in Swagger""" # noqa: E501
57
59
  self._credentials_secret_id = None
58
60
  self._primary_region = None
59
61
  self._regions = None
62
+ self._subnet_cidr_ranges = None
60
63
  self.discriminator = None
61
64
  if credentials_secret_id is not None:
62
65
  self.credentials_secret_id = credentials_secret_id
@@ -64,6 +67,8 @@ class V1LambdaLabsDirectV1(object):
64
67
  self.primary_region = primary_region
65
68
  if regions is not None:
66
69
  self.regions = regions
70
+ if subnet_cidr_ranges is not None:
71
+ self.subnet_cidr_ranges = subnet_cidr_ranges
67
72
 
68
73
  @property
69
74
  def credentials_secret_id(self) -> 'str':
@@ -130,6 +135,27 @@ class V1LambdaLabsDirectV1(object):
130
135
 
131
136
  self._regions = regions
132
137
 
138
+ @property
139
+ def subnet_cidr_ranges(self) -> 'list[str]':
140
+ """Gets the subnet_cidr_ranges of this V1LambdaLabsDirectV1. # noqa: E501
141
+
142
+
143
+ :return: The subnet_cidr_ranges of this V1LambdaLabsDirectV1. # noqa: E501
144
+ :rtype: list[str]
145
+ """
146
+ return self._subnet_cidr_ranges
147
+
148
+ @subnet_cidr_ranges.setter
149
+ def subnet_cidr_ranges(self, subnet_cidr_ranges: 'list[str]'):
150
+ """Sets the subnet_cidr_ranges of this V1LambdaLabsDirectV1.
151
+
152
+
153
+ :param subnet_cidr_ranges: The subnet_cidr_ranges of this V1LambdaLabsDirectV1. # noqa: E501
154
+ :type: list[str]
155
+ """
156
+
157
+ self._subnet_cidr_ranges = subnet_cidr_ranges
158
+
133
159
  def to_dict(self) -> dict:
134
160
  """Returns the model properties as a dict"""
135
161
  result = {}
@@ -41,14 +41,14 @@ class V1ListAggregatedPodMetricsResponse(object):
41
41
  and the value is json key in definition.
42
42
  """
43
43
  swagger_types = {
44
- 'pod_metrics': 'list[V1PodMetrics]'
44
+ 'pod_metrics': 'list[V1AggregatedPodMetrics]'
45
45
  }
46
46
 
47
47
  attribute_map = {
48
48
  'pod_metrics': 'podMetrics'
49
49
  }
50
50
 
51
- def __init__(self, pod_metrics: 'list[V1PodMetrics]' =None): # noqa: E501
51
+ def __init__(self, pod_metrics: 'list[V1AggregatedPodMetrics]' =None): # noqa: E501
52
52
  """V1ListAggregatedPodMetricsResponse - a model defined in Swagger""" # noqa: E501
53
53
  self._pod_metrics = None
54
54
  self.discriminator = None
@@ -56,22 +56,22 @@ class V1ListAggregatedPodMetricsResponse(object):
56
56
  self.pod_metrics = pod_metrics
57
57
 
58
58
  @property
59
- def pod_metrics(self) -> 'list[V1PodMetrics]':
59
+ def pod_metrics(self) -> 'list[V1AggregatedPodMetrics]':
60
60
  """Gets the pod_metrics of this V1ListAggregatedPodMetricsResponse. # noqa: E501
61
61
 
62
62
 
63
63
  :return: The pod_metrics of this V1ListAggregatedPodMetricsResponse. # noqa: E501
64
- :rtype: list[V1PodMetrics]
64
+ :rtype: list[V1AggregatedPodMetrics]
65
65
  """
66
66
  return self._pod_metrics
67
67
 
68
68
  @pod_metrics.setter
69
- def pod_metrics(self, pod_metrics: 'list[V1PodMetrics]'):
69
+ def pod_metrics(self, pod_metrics: 'list[V1AggregatedPodMetrics]'):
70
70
  """Sets the pod_metrics of this V1ListAggregatedPodMetricsResponse.
71
71
 
72
72
 
73
73
  :param pod_metrics: The pod_metrics of this V1ListAggregatedPodMetricsResponse. # noqa: E501
74
- :type: list[V1PodMetrics]
74
+ :type: list[V1AggregatedPodMetrics]
75
75
  """
76
76
 
77
77
  self._pod_metrics = pod_metrics
@@ -42,6 +42,7 @@ class V1MagicLinkLoginResponse(object):
42
42
  """
43
43
  swagger_types = {
44
44
  'auth_start_url': 'str',
45
+ 'internal': 'bool',
45
46
  'sso_enabled': 'bool',
46
47
  'verified': 'bool',
47
48
  'waitlisted': 'bool'
@@ -49,20 +50,24 @@ class V1MagicLinkLoginResponse(object):
49
50
 
50
51
  attribute_map = {
51
52
  'auth_start_url': 'authStartUrl',
53
+ 'internal': 'internal',
52
54
  'sso_enabled': 'ssoEnabled',
53
55
  'verified': 'verified',
54
56
  'waitlisted': 'waitlisted'
55
57
  }
56
58
 
57
- def __init__(self, auth_start_url: 'str' =None, sso_enabled: 'bool' =None, verified: 'bool' =None, waitlisted: 'bool' =None): # noqa: E501
59
+ def __init__(self, auth_start_url: 'str' =None, internal: 'bool' =None, sso_enabled: 'bool' =None, verified: 'bool' =None, waitlisted: 'bool' =None): # noqa: E501
58
60
  """V1MagicLinkLoginResponse - a model defined in Swagger""" # noqa: E501
59
61
  self._auth_start_url = None
62
+ self._internal = None
60
63
  self._sso_enabled = None
61
64
  self._verified = None
62
65
  self._waitlisted = None
63
66
  self.discriminator = None
64
67
  if auth_start_url is not None:
65
68
  self.auth_start_url = auth_start_url
69
+ if internal is not None:
70
+ self.internal = internal
66
71
  if sso_enabled is not None:
67
72
  self.sso_enabled = sso_enabled
68
73
  if verified is not None:
@@ -91,6 +96,27 @@ class V1MagicLinkLoginResponse(object):
91
96
 
92
97
  self._auth_start_url = auth_start_url
93
98
 
99
+ @property
100
+ def internal(self) -> 'bool':
101
+ """Gets the internal of this V1MagicLinkLoginResponse. # noqa: E501
102
+
103
+
104
+ :return: The internal of this V1MagicLinkLoginResponse. # noqa: E501
105
+ :rtype: bool
106
+ """
107
+ return self._internal
108
+
109
+ @internal.setter
110
+ def internal(self, internal: 'bool'):
111
+ """Sets the internal of this V1MagicLinkLoginResponse.
112
+
113
+
114
+ :param internal: The internal of this V1MagicLinkLoginResponse. # noqa: E501
115
+ :type: bool
116
+ """
117
+
118
+ self._internal = internal
119
+
94
120
  @property
95
121
  def sso_enabled(self) -> 'bool':
96
122
  """Gets the sso_enabled of this V1MagicLinkLoginResponse. # noqa: E501