lightning-sdk 0.2.19__py3-none-any.whl → 0.2.20__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/license_api.py +28 -6
- lightning_sdk/cli/deploy/_auth.py +11 -19
- lightning_sdk/cli/entrypoint.py +20 -2
- lightning_sdk/lightning_cloud/login.py +2 -2
- lightning_sdk/lightning_cloud/openapi/__init__.py +2 -2
- lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +121 -0
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +2 -2
- lightning_sdk/lightning_cloud/openapi/models/alertingevents_id_body.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/update.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_author.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_organization_storage_metadata_response.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +27 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +53 -79
- lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +499 -31
- lightning_sdk/lightning_cloud/rest_client.py +13 -11
- lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +8 -3
- lightning_sdk/services/license.py +78 -22
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/METADATA +1 -1
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/RECORD +39 -39
- lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +0 -279
- lightning_sdk/lightning_cloud/openapi/models/v1_reservation_billing_session.py +0 -279
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/WHEEL +0 -0
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.2.19.dist-info → lightning_sdk-0.2.20.dist-info}/top_level.txt +0 -0
|
@@ -62,6 +62,7 @@ class V1UserFeatures(object):
|
|
|
62
62
|
'code_tab': 'bool',
|
|
63
63
|
'collab_screen_sharing': 'bool',
|
|
64
64
|
'concurrent_gpu_limit': 'bool',
|
|
65
|
+
'control_center_monitoring': 'bool',
|
|
65
66
|
'cost_attribution_settings': 'bool',
|
|
66
67
|
'custom_app_domain': 'bool',
|
|
67
68
|
'datasets': 'bool',
|
|
@@ -71,7 +72,6 @@ class V1UserFeatures(object):
|
|
|
71
72
|
'deployment_requests_tab': 'bool',
|
|
72
73
|
'dgx_cloud': 'bool',
|
|
73
74
|
'docs_agent': 'bool',
|
|
74
|
-
'down_switch_machine': 'bool',
|
|
75
75
|
'drive_v2': 'bool',
|
|
76
76
|
'enable_storage_limits': 'bool',
|
|
77
77
|
'enterprise_compute_admin': 'bool',
|
|
@@ -101,6 +101,7 @@ class V1UserFeatures(object):
|
|
|
101
101
|
'org_usage_limits': 'bool',
|
|
102
102
|
'paygo_free_storage_limit_check': 'bool',
|
|
103
103
|
'pipelines': 'bool',
|
|
104
|
+
'plg_control_center': 'bool',
|
|
104
105
|
'plugin_distributed': 'bool',
|
|
105
106
|
'plugin_inference': 'bool',
|
|
106
107
|
'plugin_label_studio': 'bool',
|
|
@@ -127,8 +128,6 @@ class V1UserFeatures(object):
|
|
|
127
128
|
'storage_overuse_deletion': 'bool',
|
|
128
129
|
'studio_config': 'bool',
|
|
129
130
|
'studio_version_visibility': 'bool',
|
|
130
|
-
'studios_dashboard': 'bool',
|
|
131
|
-
'studios_dashboard_system_metrics': 'bool',
|
|
132
131
|
'teamspace_storage_tab': 'bool',
|
|
133
132
|
'trainium2': 'bool',
|
|
134
133
|
'transfer_studios': 'bool',
|
|
@@ -161,6 +160,7 @@ class V1UserFeatures(object):
|
|
|
161
160
|
'code_tab': 'codeTab',
|
|
162
161
|
'collab_screen_sharing': 'collabScreenSharing',
|
|
163
162
|
'concurrent_gpu_limit': 'concurrentGpuLimit',
|
|
163
|
+
'control_center_monitoring': 'controlCenterMonitoring',
|
|
164
164
|
'cost_attribution_settings': 'costAttributionSettings',
|
|
165
165
|
'custom_app_domain': 'customAppDomain',
|
|
166
166
|
'datasets': 'datasets',
|
|
@@ -170,7 +170,6 @@ class V1UserFeatures(object):
|
|
|
170
170
|
'deployment_requests_tab': 'deploymentRequestsTab',
|
|
171
171
|
'dgx_cloud': 'dgxCloud',
|
|
172
172
|
'docs_agent': 'docsAgent',
|
|
173
|
-
'down_switch_machine': 'downSwitchMachine',
|
|
174
173
|
'drive_v2': 'driveV2',
|
|
175
174
|
'enable_storage_limits': 'enableStorageLimits',
|
|
176
175
|
'enterprise_compute_admin': 'enterpriseComputeAdmin',
|
|
@@ -200,6 +199,7 @@ class V1UserFeatures(object):
|
|
|
200
199
|
'org_usage_limits': 'orgUsageLimits',
|
|
201
200
|
'paygo_free_storage_limit_check': 'paygoFreeStorageLimitCheck',
|
|
202
201
|
'pipelines': 'pipelines',
|
|
202
|
+
'plg_control_center': 'plgControlCenter',
|
|
203
203
|
'plugin_distributed': 'pluginDistributed',
|
|
204
204
|
'plugin_inference': 'pluginInference',
|
|
205
205
|
'plugin_label_studio': 'pluginLabelStudio',
|
|
@@ -226,8 +226,6 @@ class V1UserFeatures(object):
|
|
|
226
226
|
'storage_overuse_deletion': 'storageOveruseDeletion',
|
|
227
227
|
'studio_config': 'studioConfig',
|
|
228
228
|
'studio_version_visibility': 'studioVersionVisibility',
|
|
229
|
-
'studios_dashboard': 'studiosDashboard',
|
|
230
|
-
'studios_dashboard_system_metrics': 'studiosDashboardSystemMetrics',
|
|
231
229
|
'teamspace_storage_tab': 'teamspaceStorageTab',
|
|
232
230
|
'trainium2': 'trainium2',
|
|
233
231
|
'transfer_studios': 'transferStudios',
|
|
@@ -238,7 +236,7 @@ class V1UserFeatures(object):
|
|
|
238
236
|
'weka': 'weka'
|
|
239
237
|
}
|
|
240
238
|
|
|
241
|
-
def __init__(self, accurate_billing: 'bool' =None, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, auto_top_up: 'bool' =None, auto_top_up_teamspace: 'bool' =None, b2c_experience: 'bool' =None, blog_route: 'bool' =None, byoc_litcr: '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, cloud_space_environment_templates: 'bool' =None, cloudy_vibe_code: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, concurrent_gpu_limit: 'bool' =None,
|
|
239
|
+
def __init__(self, accurate_billing: 'bool' =None, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, auto_join_orgs: 'bool' =None, auto_top_up: 'bool' =None, auto_top_up_teamspace: 'bool' =None, b2c_experience: 'bool' =None, blog_route: 'bool' =None, byoc_litcr: '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, cloud_space_environment_templates: 'bool' =None, cloudy_vibe_code: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, concurrent_gpu_limit: '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_alerts: 'bool' =None, deployment_persistent_disk: 'bool' =None, deployment_requests_tab: 'bool' =None, dgx_cloud: 'bool' =None, docs_agent: 'bool' =None, drive_v2: 'bool' =None, enable_storage_limits: 'bool' =None, enterprise_compute_admin: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, filestore: 'bool' =None, gcs_folders: 'bool' =None, instant_capacity_reservation: 'bool' =None, job_artifacts_v2: 'bool' =None, lambda_labs: 'bool' =None, lambda_labs_studios: 'bool' =None, landing_studios: 'bool' =None, lightning_cloud: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multicloud_folders: 'bool' =None, multicloud_saas: 'bool' =None, multiple_studio_versions: 'bool' =None, nebius: 'bool' =None, nebius_cpu_studios: 'bool' =None, nebius_gpu_studios: 'bool' =None, neocloud_studios: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, paygo_free_storage_limit_check: 'bool' =None, pipelines: 'bool' =None, plg_control_center: '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_service: '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, r2_data_connections: 'bool' =None, reserved_machines_tab: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, seoul_aws_region: 'bool' =None, show_dev_admin: 'bool' =None, single_wallet: 'bool' =None, slurm: 'bool' =None, slurm_machine_selector: 'bool' =None, stop_ide_container_on_shutdown: 'bool' =None, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_version_visibility: 'bool' =None, teamspace_storage_tab: 'bool' =None, trainium2: 'bool' =None, transfer_studios: 'bool' =None, use_rclone_mounts_only: 'bool' =None, voltage_park: 'bool' =None, voltage_park_studios: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None): # noqa: E501
|
|
242
240
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
243
241
|
self._accurate_billing = None
|
|
244
242
|
self._affiliate_links = None
|
|
@@ -261,6 +259,7 @@ class V1UserFeatures(object):
|
|
|
261
259
|
self._code_tab = None
|
|
262
260
|
self._collab_screen_sharing = None
|
|
263
261
|
self._concurrent_gpu_limit = None
|
|
262
|
+
self._control_center_monitoring = None
|
|
264
263
|
self._cost_attribution_settings = None
|
|
265
264
|
self._custom_app_domain = None
|
|
266
265
|
self._datasets = None
|
|
@@ -270,7 +269,6 @@ class V1UserFeatures(object):
|
|
|
270
269
|
self._deployment_requests_tab = None
|
|
271
270
|
self._dgx_cloud = None
|
|
272
271
|
self._docs_agent = None
|
|
273
|
-
self._down_switch_machine = None
|
|
274
272
|
self._drive_v2 = None
|
|
275
273
|
self._enable_storage_limits = None
|
|
276
274
|
self._enterprise_compute_admin = None
|
|
@@ -300,6 +298,7 @@ class V1UserFeatures(object):
|
|
|
300
298
|
self._org_usage_limits = None
|
|
301
299
|
self._paygo_free_storage_limit_check = None
|
|
302
300
|
self._pipelines = None
|
|
301
|
+
self._plg_control_center = None
|
|
303
302
|
self._plugin_distributed = None
|
|
304
303
|
self._plugin_inference = None
|
|
305
304
|
self._plugin_label_studio = None
|
|
@@ -326,8 +325,6 @@ class V1UserFeatures(object):
|
|
|
326
325
|
self._storage_overuse_deletion = None
|
|
327
326
|
self._studio_config = None
|
|
328
327
|
self._studio_version_visibility = None
|
|
329
|
-
self._studios_dashboard = None
|
|
330
|
-
self._studios_dashboard_system_metrics = None
|
|
331
328
|
self._teamspace_storage_tab = None
|
|
332
329
|
self._trainium2 = None
|
|
333
330
|
self._transfer_studios = None
|
|
@@ -379,6 +376,8 @@ class V1UserFeatures(object):
|
|
|
379
376
|
self.collab_screen_sharing = collab_screen_sharing
|
|
380
377
|
if concurrent_gpu_limit is not None:
|
|
381
378
|
self.concurrent_gpu_limit = concurrent_gpu_limit
|
|
379
|
+
if control_center_monitoring is not None:
|
|
380
|
+
self.control_center_monitoring = control_center_monitoring
|
|
382
381
|
if cost_attribution_settings is not None:
|
|
383
382
|
self.cost_attribution_settings = cost_attribution_settings
|
|
384
383
|
if custom_app_domain is not None:
|
|
@@ -397,8 +396,6 @@ class V1UserFeatures(object):
|
|
|
397
396
|
self.dgx_cloud = dgx_cloud
|
|
398
397
|
if docs_agent is not None:
|
|
399
398
|
self.docs_agent = docs_agent
|
|
400
|
-
if down_switch_machine is not None:
|
|
401
|
-
self.down_switch_machine = down_switch_machine
|
|
402
399
|
if drive_v2 is not None:
|
|
403
400
|
self.drive_v2 = drive_v2
|
|
404
401
|
if enable_storage_limits is not None:
|
|
@@ -457,6 +454,8 @@ class V1UserFeatures(object):
|
|
|
457
454
|
self.paygo_free_storage_limit_check = paygo_free_storage_limit_check
|
|
458
455
|
if pipelines is not None:
|
|
459
456
|
self.pipelines = pipelines
|
|
457
|
+
if plg_control_center is not None:
|
|
458
|
+
self.plg_control_center = plg_control_center
|
|
460
459
|
if plugin_distributed is not None:
|
|
461
460
|
self.plugin_distributed = plugin_distributed
|
|
462
461
|
if plugin_inference is not None:
|
|
@@ -509,10 +508,6 @@ class V1UserFeatures(object):
|
|
|
509
508
|
self.studio_config = studio_config
|
|
510
509
|
if studio_version_visibility is not None:
|
|
511
510
|
self.studio_version_visibility = studio_version_visibility
|
|
512
|
-
if studios_dashboard is not None:
|
|
513
|
-
self.studios_dashboard = studios_dashboard
|
|
514
|
-
if studios_dashboard_system_metrics is not None:
|
|
515
|
-
self.studios_dashboard_system_metrics = studios_dashboard_system_metrics
|
|
516
511
|
if teamspace_storage_tab is not None:
|
|
517
512
|
self.teamspace_storage_tab = teamspace_storage_tab
|
|
518
513
|
if trainium2 is not None:
|
|
@@ -971,6 +966,27 @@ class V1UserFeatures(object):
|
|
|
971
966
|
|
|
972
967
|
self._concurrent_gpu_limit = concurrent_gpu_limit
|
|
973
968
|
|
|
969
|
+
@property
|
|
970
|
+
def control_center_monitoring(self) -> 'bool':
|
|
971
|
+
"""Gets the control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
:return: The control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
975
|
+
:rtype: bool
|
|
976
|
+
"""
|
|
977
|
+
return self._control_center_monitoring
|
|
978
|
+
|
|
979
|
+
@control_center_monitoring.setter
|
|
980
|
+
def control_center_monitoring(self, control_center_monitoring: 'bool'):
|
|
981
|
+
"""Sets the control_center_monitoring of this V1UserFeatures.
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
:param control_center_monitoring: The control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
985
|
+
:type: bool
|
|
986
|
+
"""
|
|
987
|
+
|
|
988
|
+
self._control_center_monitoring = control_center_monitoring
|
|
989
|
+
|
|
974
990
|
@property
|
|
975
991
|
def cost_attribution_settings(self) -> 'bool':
|
|
976
992
|
"""Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
@@ -1160,27 +1176,6 @@ class V1UserFeatures(object):
|
|
|
1160
1176
|
|
|
1161
1177
|
self._docs_agent = docs_agent
|
|
1162
1178
|
|
|
1163
|
-
@property
|
|
1164
|
-
def down_switch_machine(self) -> 'bool':
|
|
1165
|
-
"""Gets the down_switch_machine of this V1UserFeatures. # noqa: E501
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
:return: The down_switch_machine of this V1UserFeatures. # noqa: E501
|
|
1169
|
-
:rtype: bool
|
|
1170
|
-
"""
|
|
1171
|
-
return self._down_switch_machine
|
|
1172
|
-
|
|
1173
|
-
@down_switch_machine.setter
|
|
1174
|
-
def down_switch_machine(self, down_switch_machine: 'bool'):
|
|
1175
|
-
"""Sets the down_switch_machine of this V1UserFeatures.
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
:param down_switch_machine: The down_switch_machine of this V1UserFeatures. # noqa: E501
|
|
1179
|
-
:type: bool
|
|
1180
|
-
"""
|
|
1181
|
-
|
|
1182
|
-
self._down_switch_machine = down_switch_machine
|
|
1183
|
-
|
|
1184
1179
|
@property
|
|
1185
1180
|
def drive_v2(self) -> 'bool':
|
|
1186
1181
|
"""Gets the drive_v2 of this V1UserFeatures. # noqa: E501
|
|
@@ -1790,6 +1785,27 @@ class V1UserFeatures(object):
|
|
|
1790
1785
|
|
|
1791
1786
|
self._pipelines = pipelines
|
|
1792
1787
|
|
|
1788
|
+
@property
|
|
1789
|
+
def plg_control_center(self) -> 'bool':
|
|
1790
|
+
"""Gets the plg_control_center of this V1UserFeatures. # noqa: E501
|
|
1791
|
+
|
|
1792
|
+
|
|
1793
|
+
:return: The plg_control_center of this V1UserFeatures. # noqa: E501
|
|
1794
|
+
:rtype: bool
|
|
1795
|
+
"""
|
|
1796
|
+
return self._plg_control_center
|
|
1797
|
+
|
|
1798
|
+
@plg_control_center.setter
|
|
1799
|
+
def plg_control_center(self, plg_control_center: 'bool'):
|
|
1800
|
+
"""Sets the plg_control_center of this V1UserFeatures.
|
|
1801
|
+
|
|
1802
|
+
|
|
1803
|
+
:param plg_control_center: The plg_control_center of this V1UserFeatures. # noqa: E501
|
|
1804
|
+
:type: bool
|
|
1805
|
+
"""
|
|
1806
|
+
|
|
1807
|
+
self._plg_control_center = plg_control_center
|
|
1808
|
+
|
|
1793
1809
|
@property
|
|
1794
1810
|
def plugin_distributed(self) -> 'bool':
|
|
1795
1811
|
"""Gets the plugin_distributed of this V1UserFeatures. # noqa: E501
|
|
@@ -2336,48 +2352,6 @@ class V1UserFeatures(object):
|
|
|
2336
2352
|
|
|
2337
2353
|
self._studio_version_visibility = studio_version_visibility
|
|
2338
2354
|
|
|
2339
|
-
@property
|
|
2340
|
-
def studios_dashboard(self) -> 'bool':
|
|
2341
|
-
"""Gets the studios_dashboard of this V1UserFeatures. # noqa: E501
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
:return: The studios_dashboard of this V1UserFeatures. # noqa: E501
|
|
2345
|
-
:rtype: bool
|
|
2346
|
-
"""
|
|
2347
|
-
return self._studios_dashboard
|
|
2348
|
-
|
|
2349
|
-
@studios_dashboard.setter
|
|
2350
|
-
def studios_dashboard(self, studios_dashboard: 'bool'):
|
|
2351
|
-
"""Sets the studios_dashboard of this V1UserFeatures.
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
:param studios_dashboard: The studios_dashboard of this V1UserFeatures. # noqa: E501
|
|
2355
|
-
:type: bool
|
|
2356
|
-
"""
|
|
2357
|
-
|
|
2358
|
-
self._studios_dashboard = studios_dashboard
|
|
2359
|
-
|
|
2360
|
-
@property
|
|
2361
|
-
def studios_dashboard_system_metrics(self) -> 'bool':
|
|
2362
|
-
"""Gets the studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
:return: The studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
2366
|
-
:rtype: bool
|
|
2367
|
-
"""
|
|
2368
|
-
return self._studios_dashboard_system_metrics
|
|
2369
|
-
|
|
2370
|
-
@studios_dashboard_system_metrics.setter
|
|
2371
|
-
def studios_dashboard_system_metrics(self, studios_dashboard_system_metrics: 'bool'):
|
|
2372
|
-
"""Sets the studios_dashboard_system_metrics of this V1UserFeatures.
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
:param studios_dashboard_system_metrics: The studios_dashboard_system_metrics of this V1UserFeatures. # noqa: E501
|
|
2376
|
-
:type: bool
|
|
2377
|
-
"""
|
|
2378
|
-
|
|
2379
|
-
self._studios_dashboard_system_metrics = studios_dashboard_system_metrics
|
|
2380
|
-
|
|
2381
2355
|
@property
|
|
2382
2356
|
def teamspace_storage_tab(self) -> 'bool':
|
|
2383
2357
|
"""Gets the teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|