You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecated, retention is now managed at the data source level.
488
493
:param page: Page number.
489
494
:param page_size: Page size.
490
495
:param order_by:
491
496
:return: :class:`List[Plan] <List[Plan]>`
497
+
:deprecated
492
498
493
499
Usage:
494
500
::
@@ -516,9 +522,11 @@ async def select_plan(
516
522
"""
517
523
Apply a pricing plan.
518
524
Apply a pricing plan on a given Project. You must specify the ID of the pricing plan type. Note that you will be billed for the plan you apply.
525
+
Deprecated, retention is now managed at the data source level.
519
526
:param project_id: ID of the Project.
520
527
:param plan_name: Name of the pricing plan.
521
528
:return: :class:`Plan <Plan>`
529
+
:deprecated
522
530
523
531
Usage:
524
532
::
@@ -549,8 +557,10 @@ async def get_current_plan(
549
557
"""
550
558
Get current plan.
551
559
Retrieve a pricing plan for the given Project, specified by the ID of the Project.
560
+
Deprecated, retention is now managed at the data source level.
552
561
:param project_id: ID of the Project.
553
562
:return: :class:`Plan <Plan>`
563
+
:deprecated
554
564
555
565
Usage:
556
566
::
@@ -575,13 +585,42 @@ class CockpitV1RegionalAPI(API):
575
585
The Cockpit Regional API allows you to create data sources and tokens to store and query data types such as metrics, logs, and traces. You can also push your data into Cockpit, and send alerts to your contact points when your resources may require your attention, using the regional Alert manager.
576
586
"""
577
587
588
+
asyncdefget_config(
589
+
self,
590
+
*,
591
+
region: Optional[Region] =None,
592
+
) ->GetConfigResponse:
593
+
"""
594
+
Get the Cockpit configuration.
595
+
:param region: Region to target. If none is passed will use default region from the config.
0 commit comments