lightning-sdk 2025.9.4__py3-none-any.whl → 2025.9.10__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.
- lightning_sdk/__init__.py +1 -1
- lightning_sdk/api/llm_api.py +19 -0
- lightning_sdk/api/studio_api.py +25 -4
- lightning_sdk/lightning_cloud/openapi/__init__.py +14 -0
- lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +744 -13
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +14 -0
- lightning_sdk/lightning_cloud/openapi/models/id_render_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/kubernetestemplates_id_body.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/metricsstream_create_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_kubernetestemplates_body.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ai_pod_v1.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_kubernetes_template_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_firewall_rule.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_incident_event.py +565 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_incident_severity.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_incident_type.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_indexes.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template_property.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_events_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_templates_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics_stream.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_quote_annual_upsell_response.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_render_kubernetes_template_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +154 -102
- lightning_sdk/llm/llm.py +82 -7
- lightning_sdk/llm/public_assistants.py +2 -2
- lightning_sdk/studio.py +30 -3
- {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.10.dist-info}/METADATA +1 -1
- {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.10.dist-info}/RECORD +36 -22
- {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.10.dist-info}/entry_points.txt +1 -0
- {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.10.dist-info}/LICENSE +0 -0
- {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.10.dist-info}/WHEEL +0 -0
- {lightning_sdk-2025.9.4.dist-info → lightning_sdk-2025.9.10.dist-info}/top_level.txt +0 -0
|
@@ -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 V1RenderKubernetesTemplateResponse(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
|
+
'rendered_template': 'str'
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
attribute_map = {
|
|
48
|
+
'rendered_template': 'renderedTemplate'
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
def __init__(self, rendered_template: 'str' =None): # noqa: E501
|
|
52
|
+
"""V1RenderKubernetesTemplateResponse - a model defined in Swagger""" # noqa: E501
|
|
53
|
+
self._rendered_template = None
|
|
54
|
+
self.discriminator = None
|
|
55
|
+
if rendered_template is not None:
|
|
56
|
+
self.rendered_template = rendered_template
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
def rendered_template(self) -> 'str':
|
|
60
|
+
"""Gets the rendered_template of this V1RenderKubernetesTemplateResponse. # noqa: E501
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
:return: The rendered_template of this V1RenderKubernetesTemplateResponse. # noqa: E501
|
|
64
|
+
:rtype: str
|
|
65
|
+
"""
|
|
66
|
+
return self._rendered_template
|
|
67
|
+
|
|
68
|
+
@rendered_template.setter
|
|
69
|
+
def rendered_template(self, rendered_template: 'str'):
|
|
70
|
+
"""Sets the rendered_template of this V1RenderKubernetesTemplateResponse.
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
:param rendered_template: The rendered_template of this V1RenderKubernetesTemplateResponse. # noqa: E501
|
|
74
|
+
:type: str
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
self._rendered_template = rendered_template
|
|
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(V1RenderKubernetesTemplateResponse, 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: 'V1RenderKubernetesTemplateResponse') -> bool:
|
|
115
|
+
"""Returns true if both objects are equal"""
|
|
116
|
+
if not isinstance(other, V1RenderKubernetesTemplateResponse):
|
|
117
|
+
return False
|
|
118
|
+
|
|
119
|
+
return self.__dict__ == other.__dict__
|
|
120
|
+
|
|
121
|
+
def __ne__(self, other: 'V1RenderKubernetesTemplateResponse') -> bool:
|
|
122
|
+
"""Returns true if both objects are not equal"""
|
|
123
|
+
return not self == other
|
|
@@ -42,6 +42,7 @@ class V1SecretType(object):
|
|
|
42
42
|
GCP_CREDENTIALS = "SECRET_TYPE_GCP_CREDENTIALS"
|
|
43
43
|
SNOWFLAKE_CREDENTIALS = "SECRET_TYPE_SNOWFLAKE_CREDENTIALS"
|
|
44
44
|
R2_CREDENTIALS = "SECRET_TYPE_R2_CREDENTIALS"
|
|
45
|
+
ACCESS_CREDENTIALS = "SECRET_TYPE_ACCESS_CREDENTIALS"
|
|
45
46
|
"""
|
|
46
47
|
Attributes:
|
|
47
48
|
swagger_types (dict): The key is attribute name
|
|
@@ -71,11 +71,15 @@ class V1UserFeatures(object):
|
|
|
71
71
|
'f239': 'bool',
|
|
72
72
|
'f240': 'bool',
|
|
73
73
|
'f241': 'bool',
|
|
74
|
-
'f242': 'bool',
|
|
75
74
|
'f243': 'bool',
|
|
76
75
|
'f245': 'bool',
|
|
77
|
-
'f246': 'bool',
|
|
78
76
|
'f247': 'bool',
|
|
77
|
+
'f248': 'bool',
|
|
78
|
+
'f249': 'bool',
|
|
79
|
+
'f250': 'bool',
|
|
80
|
+
'f251': 'bool',
|
|
81
|
+
'f252': 'bool',
|
|
82
|
+
'f253': 'bool',
|
|
79
83
|
'fair_share': 'bool',
|
|
80
84
|
'featured_studios_admin': 'bool',
|
|
81
85
|
'gcp_overprovisioning': 'bool',
|
|
@@ -92,7 +96,6 @@ class V1UserFeatures(object):
|
|
|
92
96
|
'model_api_dashboard': 'bool',
|
|
93
97
|
'multiple_studio_versions': 'bool',
|
|
94
98
|
'nerf_fs_nonpaying': 'bool',
|
|
95
|
-
'onboarding_v2': 'bool',
|
|
96
99
|
'org_level_member_permissions': 'bool',
|
|
97
100
|
'org_usage_limits': 'bool',
|
|
98
101
|
'persistent_disk': 'bool',
|
|
@@ -120,7 +123,6 @@ class V1UserFeatures(object):
|
|
|
120
123
|
'studio_sharing_v2': 'bool',
|
|
121
124
|
'studio_version_visibility': 'bool',
|
|
122
125
|
'trainium2': 'bool',
|
|
123
|
-
'use_rclone_mounts_only': 'bool',
|
|
124
126
|
'vultr': 'bool',
|
|
125
127
|
'weka': 'bool',
|
|
126
128
|
'writable_s3_connections': 'bool'
|
|
@@ -157,11 +159,15 @@ class V1UserFeatures(object):
|
|
|
157
159
|
'f239': 'f239',
|
|
158
160
|
'f240': 'f240',
|
|
159
161
|
'f241': 'f241',
|
|
160
|
-
'f242': 'f242',
|
|
161
162
|
'f243': 'f243',
|
|
162
163
|
'f245': 'f245',
|
|
163
|
-
'f246': 'f246',
|
|
164
164
|
'f247': 'f247',
|
|
165
|
+
'f248': 'f248',
|
|
166
|
+
'f249': 'f249',
|
|
167
|
+
'f250': 'f250',
|
|
168
|
+
'f251': 'f251',
|
|
169
|
+
'f252': 'f252',
|
|
170
|
+
'f253': 'f253',
|
|
165
171
|
'fair_share': 'fairShare',
|
|
166
172
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
167
173
|
'gcp_overprovisioning': 'gcpOverprovisioning',
|
|
@@ -178,7 +184,6 @@ class V1UserFeatures(object):
|
|
|
178
184
|
'model_api_dashboard': 'modelApiDashboard',
|
|
179
185
|
'multiple_studio_versions': 'multipleStudioVersions',
|
|
180
186
|
'nerf_fs_nonpaying': 'nerfFsNonpaying',
|
|
181
|
-
'onboarding_v2': 'onboardingV2',
|
|
182
187
|
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
183
188
|
'org_usage_limits': 'orgUsageLimits',
|
|
184
189
|
'persistent_disk': 'persistentDisk',
|
|
@@ -206,13 +211,12 @@ class V1UserFeatures(object):
|
|
|
206
211
|
'studio_sharing_v2': 'studioSharingV2',
|
|
207
212
|
'studio_version_visibility': 'studioVersionVisibility',
|
|
208
213
|
'trainium2': 'trainium2',
|
|
209
|
-
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
210
214
|
'vultr': 'vultr',
|
|
211
215
|
'weka': 'weka',
|
|
212
216
|
'writable_s3_connections': 'writableS3Connections'
|
|
213
217
|
}
|
|
214
218
|
|
|
215
|
-
def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: '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, custom_app_domain: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_persistent_disk: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f227: 'bool' =None, f234: 'bool' =None, f236: 'bool' =None, f237: 'bool' =None, f239: 'bool' =None, f240: 'bool' =None, f241: 'bool' =None,
|
|
219
|
+
def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: '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, custom_app_domain: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, deployment_persistent_disk: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f227: 'bool' =None, f234: 'bool' =None, f236: 'bool' =None, f237: 'bool' =None, f239: 'bool' =None, f240: 'bool' =None, f241: 'bool' =None, f243: 'bool' =None, f245: 'bool' =None, f247: 'bool' =None, f248: 'bool' =None, f249: 'bool' =None, f250: 'bool' =None, f251: 'bool' =None, f252: 'bool' =None, f253: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, gcp_overprovisioning: 'bool' =None, gcs_connections_optimized: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, kubernetes_cluster_ui: 'bool' =None, kubernetes_clusters: 'bool' =None, landing_studios: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, model_api_dashboard: '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, pricing_updates: '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, single_wallet: 'bool' =None, slurm: 'bool' =None, specialised_studios: 'bool' =None, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_sharing_v2: 'bool' =None, studio_version_visibility: 'bool' =None, trainium2: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None, writable_s3_connections: 'bool' =None): # noqa: E501
|
|
216
220
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
217
221
|
self._affiliate_links = None
|
|
218
222
|
self._agents_v2 = None
|
|
@@ -244,11 +248,15 @@ class V1UserFeatures(object):
|
|
|
244
248
|
self._f239 = None
|
|
245
249
|
self._f240 = None
|
|
246
250
|
self._f241 = None
|
|
247
|
-
self._f242 = None
|
|
248
251
|
self._f243 = None
|
|
249
252
|
self._f245 = None
|
|
250
|
-
self._f246 = None
|
|
251
253
|
self._f247 = None
|
|
254
|
+
self._f248 = None
|
|
255
|
+
self._f249 = None
|
|
256
|
+
self._f250 = None
|
|
257
|
+
self._f251 = None
|
|
258
|
+
self._f252 = None
|
|
259
|
+
self._f253 = None
|
|
252
260
|
self._fair_share = None
|
|
253
261
|
self._featured_studios_admin = None
|
|
254
262
|
self._gcp_overprovisioning = None
|
|
@@ -265,7 +273,6 @@ class V1UserFeatures(object):
|
|
|
265
273
|
self._model_api_dashboard = None
|
|
266
274
|
self._multiple_studio_versions = None
|
|
267
275
|
self._nerf_fs_nonpaying = None
|
|
268
|
-
self._onboarding_v2 = None
|
|
269
276
|
self._org_level_member_permissions = None
|
|
270
277
|
self._org_usage_limits = None
|
|
271
278
|
self._persistent_disk = None
|
|
@@ -293,7 +300,6 @@ class V1UserFeatures(object):
|
|
|
293
300
|
self._studio_sharing_v2 = None
|
|
294
301
|
self._studio_version_visibility = None
|
|
295
302
|
self._trainium2 = None
|
|
296
|
-
self._use_rclone_mounts_only = None
|
|
297
303
|
self._vultr = None
|
|
298
304
|
self._weka = None
|
|
299
305
|
self._writable_s3_connections = None
|
|
@@ -358,16 +364,24 @@ class V1UserFeatures(object):
|
|
|
358
364
|
self.f240 = f240
|
|
359
365
|
if f241 is not None:
|
|
360
366
|
self.f241 = f241
|
|
361
|
-
if f242 is not None:
|
|
362
|
-
self.f242 = f242
|
|
363
367
|
if f243 is not None:
|
|
364
368
|
self.f243 = f243
|
|
365
369
|
if f245 is not None:
|
|
366
370
|
self.f245 = f245
|
|
367
|
-
if f246 is not None:
|
|
368
|
-
self.f246 = f246
|
|
369
371
|
if f247 is not None:
|
|
370
372
|
self.f247 = f247
|
|
373
|
+
if f248 is not None:
|
|
374
|
+
self.f248 = f248
|
|
375
|
+
if f249 is not None:
|
|
376
|
+
self.f249 = f249
|
|
377
|
+
if f250 is not None:
|
|
378
|
+
self.f250 = f250
|
|
379
|
+
if f251 is not None:
|
|
380
|
+
self.f251 = f251
|
|
381
|
+
if f252 is not None:
|
|
382
|
+
self.f252 = f252
|
|
383
|
+
if f253 is not None:
|
|
384
|
+
self.f253 = f253
|
|
371
385
|
if fair_share is not None:
|
|
372
386
|
self.fair_share = fair_share
|
|
373
387
|
if featured_studios_admin is not None:
|
|
@@ -400,8 +414,6 @@ class V1UserFeatures(object):
|
|
|
400
414
|
self.multiple_studio_versions = multiple_studio_versions
|
|
401
415
|
if nerf_fs_nonpaying is not None:
|
|
402
416
|
self.nerf_fs_nonpaying = nerf_fs_nonpaying
|
|
403
|
-
if onboarding_v2 is not None:
|
|
404
|
-
self.onboarding_v2 = onboarding_v2
|
|
405
417
|
if org_level_member_permissions is not None:
|
|
406
418
|
self.org_level_member_permissions = org_level_member_permissions
|
|
407
419
|
if org_usage_limits is not None:
|
|
@@ -456,8 +468,6 @@ class V1UserFeatures(object):
|
|
|
456
468
|
self.studio_version_visibility = studio_version_visibility
|
|
457
469
|
if trainium2 is not None:
|
|
458
470
|
self.trainium2 = trainium2
|
|
459
|
-
if use_rclone_mounts_only is not None:
|
|
460
|
-
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
461
471
|
if vultr is not None:
|
|
462
472
|
self.vultr = vultr
|
|
463
473
|
if weka is not None:
|
|
@@ -1095,27 +1105,6 @@ class V1UserFeatures(object):
|
|
|
1095
1105
|
|
|
1096
1106
|
self._f241 = f241
|
|
1097
1107
|
|
|
1098
|
-
@property
|
|
1099
|
-
def f242(self) -> 'bool':
|
|
1100
|
-
"""Gets the f242 of this V1UserFeatures. # noqa: E501
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
:return: The f242 of this V1UserFeatures. # noqa: E501
|
|
1104
|
-
:rtype: bool
|
|
1105
|
-
"""
|
|
1106
|
-
return self._f242
|
|
1107
|
-
|
|
1108
|
-
@f242.setter
|
|
1109
|
-
def f242(self, f242: 'bool'):
|
|
1110
|
-
"""Sets the f242 of this V1UserFeatures.
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
:param f242: The f242 of this V1UserFeatures. # noqa: E501
|
|
1114
|
-
:type: bool
|
|
1115
|
-
"""
|
|
1116
|
-
|
|
1117
|
-
self._f242 = f242
|
|
1118
|
-
|
|
1119
1108
|
@property
|
|
1120
1109
|
def f243(self) -> 'bool':
|
|
1121
1110
|
"""Gets the f243 of this V1UserFeatures. # noqa: E501
|
|
@@ -1159,46 +1148,151 @@ class V1UserFeatures(object):
|
|
|
1159
1148
|
self._f245 = f245
|
|
1160
1149
|
|
|
1161
1150
|
@property
|
|
1162
|
-
def
|
|
1163
|
-
"""Gets the
|
|
1151
|
+
def f247(self) -> 'bool':
|
|
1152
|
+
"""Gets the f247 of this V1UserFeatures. # noqa: E501
|
|
1164
1153
|
|
|
1165
1154
|
|
|
1166
|
-
:return: The
|
|
1155
|
+
:return: The f247 of this V1UserFeatures. # noqa: E501
|
|
1167
1156
|
:rtype: bool
|
|
1168
1157
|
"""
|
|
1169
|
-
return self.
|
|
1158
|
+
return self._f247
|
|
1170
1159
|
|
|
1171
|
-
@
|
|
1172
|
-
def
|
|
1173
|
-
"""Sets the
|
|
1160
|
+
@f247.setter
|
|
1161
|
+
def f247(self, f247: 'bool'):
|
|
1162
|
+
"""Sets the f247 of this V1UserFeatures.
|
|
1174
1163
|
|
|
1175
1164
|
|
|
1176
|
-
:param
|
|
1165
|
+
:param f247: The f247 of this V1UserFeatures. # noqa: E501
|
|
1177
1166
|
:type: bool
|
|
1178
1167
|
"""
|
|
1179
1168
|
|
|
1180
|
-
self.
|
|
1169
|
+
self._f247 = f247
|
|
1181
1170
|
|
|
1182
1171
|
@property
|
|
1183
|
-
def
|
|
1184
|
-
"""Gets the
|
|
1172
|
+
def f248(self) -> 'bool':
|
|
1173
|
+
"""Gets the f248 of this V1UserFeatures. # noqa: E501
|
|
1185
1174
|
|
|
1186
1175
|
|
|
1187
|
-
:return: The
|
|
1176
|
+
:return: The f248 of this V1UserFeatures. # noqa: E501
|
|
1188
1177
|
:rtype: bool
|
|
1189
1178
|
"""
|
|
1190
|
-
return self.
|
|
1179
|
+
return self._f248
|
|
1191
1180
|
|
|
1192
|
-
@
|
|
1193
|
-
def
|
|
1194
|
-
"""Sets the
|
|
1181
|
+
@f248.setter
|
|
1182
|
+
def f248(self, f248: 'bool'):
|
|
1183
|
+
"""Sets the f248 of this V1UserFeatures.
|
|
1195
1184
|
|
|
1196
1185
|
|
|
1197
|
-
:param
|
|
1186
|
+
:param f248: The f248 of this V1UserFeatures. # noqa: E501
|
|
1198
1187
|
:type: bool
|
|
1199
1188
|
"""
|
|
1200
1189
|
|
|
1201
|
-
self.
|
|
1190
|
+
self._f248 = f248
|
|
1191
|
+
|
|
1192
|
+
@property
|
|
1193
|
+
def f249(self) -> 'bool':
|
|
1194
|
+
"""Gets the f249 of this V1UserFeatures. # noqa: E501
|
|
1195
|
+
|
|
1196
|
+
|
|
1197
|
+
:return: The f249 of this V1UserFeatures. # noqa: E501
|
|
1198
|
+
:rtype: bool
|
|
1199
|
+
"""
|
|
1200
|
+
return self._f249
|
|
1201
|
+
|
|
1202
|
+
@f249.setter
|
|
1203
|
+
def f249(self, f249: 'bool'):
|
|
1204
|
+
"""Sets the f249 of this V1UserFeatures.
|
|
1205
|
+
|
|
1206
|
+
|
|
1207
|
+
:param f249: The f249 of this V1UserFeatures. # noqa: E501
|
|
1208
|
+
:type: bool
|
|
1209
|
+
"""
|
|
1210
|
+
|
|
1211
|
+
self._f249 = f249
|
|
1212
|
+
|
|
1213
|
+
@property
|
|
1214
|
+
def f250(self) -> 'bool':
|
|
1215
|
+
"""Gets the f250 of this V1UserFeatures. # noqa: E501
|
|
1216
|
+
|
|
1217
|
+
|
|
1218
|
+
:return: The f250 of this V1UserFeatures. # noqa: E501
|
|
1219
|
+
:rtype: bool
|
|
1220
|
+
"""
|
|
1221
|
+
return self._f250
|
|
1222
|
+
|
|
1223
|
+
@f250.setter
|
|
1224
|
+
def f250(self, f250: 'bool'):
|
|
1225
|
+
"""Sets the f250 of this V1UserFeatures.
|
|
1226
|
+
|
|
1227
|
+
|
|
1228
|
+
:param f250: The f250 of this V1UserFeatures. # noqa: E501
|
|
1229
|
+
:type: bool
|
|
1230
|
+
"""
|
|
1231
|
+
|
|
1232
|
+
self._f250 = f250
|
|
1233
|
+
|
|
1234
|
+
@property
|
|
1235
|
+
def f251(self) -> 'bool':
|
|
1236
|
+
"""Gets the f251 of this V1UserFeatures. # noqa: E501
|
|
1237
|
+
|
|
1238
|
+
|
|
1239
|
+
:return: The f251 of this V1UserFeatures. # noqa: E501
|
|
1240
|
+
:rtype: bool
|
|
1241
|
+
"""
|
|
1242
|
+
return self._f251
|
|
1243
|
+
|
|
1244
|
+
@f251.setter
|
|
1245
|
+
def f251(self, f251: 'bool'):
|
|
1246
|
+
"""Sets the f251 of this V1UserFeatures.
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
:param f251: The f251 of this V1UserFeatures. # noqa: E501
|
|
1250
|
+
:type: bool
|
|
1251
|
+
"""
|
|
1252
|
+
|
|
1253
|
+
self._f251 = f251
|
|
1254
|
+
|
|
1255
|
+
@property
|
|
1256
|
+
def f252(self) -> 'bool':
|
|
1257
|
+
"""Gets the f252 of this V1UserFeatures. # noqa: E501
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
:return: The f252 of this V1UserFeatures. # noqa: E501
|
|
1261
|
+
:rtype: bool
|
|
1262
|
+
"""
|
|
1263
|
+
return self._f252
|
|
1264
|
+
|
|
1265
|
+
@f252.setter
|
|
1266
|
+
def f252(self, f252: 'bool'):
|
|
1267
|
+
"""Sets the f252 of this V1UserFeatures.
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
:param f252: The f252 of this V1UserFeatures. # noqa: E501
|
|
1271
|
+
:type: bool
|
|
1272
|
+
"""
|
|
1273
|
+
|
|
1274
|
+
self._f252 = f252
|
|
1275
|
+
|
|
1276
|
+
@property
|
|
1277
|
+
def f253(self) -> 'bool':
|
|
1278
|
+
"""Gets the f253 of this V1UserFeatures. # noqa: E501
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
:return: The f253 of this V1UserFeatures. # noqa: E501
|
|
1282
|
+
:rtype: bool
|
|
1283
|
+
"""
|
|
1284
|
+
return self._f253
|
|
1285
|
+
|
|
1286
|
+
@f253.setter
|
|
1287
|
+
def f253(self, f253: 'bool'):
|
|
1288
|
+
"""Sets the f253 of this V1UserFeatures.
|
|
1289
|
+
|
|
1290
|
+
|
|
1291
|
+
:param f253: The f253 of this V1UserFeatures. # noqa: E501
|
|
1292
|
+
:type: bool
|
|
1293
|
+
"""
|
|
1294
|
+
|
|
1295
|
+
self._f253 = f253
|
|
1202
1296
|
|
|
1203
1297
|
@property
|
|
1204
1298
|
def fair_share(self) -> 'bool':
|
|
@@ -1536,27 +1630,6 @@ class V1UserFeatures(object):
|
|
|
1536
1630
|
|
|
1537
1631
|
self._nerf_fs_nonpaying = nerf_fs_nonpaying
|
|
1538
1632
|
|
|
1539
|
-
@property
|
|
1540
|
-
def onboarding_v2(self) -> 'bool':
|
|
1541
|
-
"""Gets the onboarding_v2 of this V1UserFeatures. # noqa: E501
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
:return: The onboarding_v2 of this V1UserFeatures. # noqa: E501
|
|
1545
|
-
:rtype: bool
|
|
1546
|
-
"""
|
|
1547
|
-
return self._onboarding_v2
|
|
1548
|
-
|
|
1549
|
-
@onboarding_v2.setter
|
|
1550
|
-
def onboarding_v2(self, onboarding_v2: 'bool'):
|
|
1551
|
-
"""Sets the onboarding_v2 of this V1UserFeatures.
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
:param onboarding_v2: The onboarding_v2 of this V1UserFeatures. # noqa: E501
|
|
1555
|
-
:type: bool
|
|
1556
|
-
"""
|
|
1557
|
-
|
|
1558
|
-
self._onboarding_v2 = onboarding_v2
|
|
1559
|
-
|
|
1560
1633
|
@property
|
|
1561
1634
|
def org_level_member_permissions(self) -> 'bool':
|
|
1562
1635
|
"""Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
@@ -2124,27 +2197,6 @@ class V1UserFeatures(object):
|
|
|
2124
2197
|
|
|
2125
2198
|
self._trainium2 = trainium2
|
|
2126
2199
|
|
|
2127
|
-
@property
|
|
2128
|
-
def use_rclone_mounts_only(self) -> 'bool':
|
|
2129
|
-
"""Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
:return: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
2133
|
-
:rtype: bool
|
|
2134
|
-
"""
|
|
2135
|
-
return self._use_rclone_mounts_only
|
|
2136
|
-
|
|
2137
|
-
@use_rclone_mounts_only.setter
|
|
2138
|
-
def use_rclone_mounts_only(self, use_rclone_mounts_only: 'bool'):
|
|
2139
|
-
"""Sets the use_rclone_mounts_only of this V1UserFeatures.
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
:param use_rclone_mounts_only: The use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
2143
|
-
:type: bool
|
|
2144
|
-
"""
|
|
2145
|
-
|
|
2146
|
-
self._use_rclone_mounts_only = use_rclone_mounts_only
|
|
2147
|
-
|
|
2148
2200
|
@property
|
|
2149
2201
|
def vultr(self) -> 'bool':
|
|
2150
2202
|
"""Gets the vultr of this V1UserFeatures. # noqa: E501
|