From cd4aecc18ef134f38d0d1a2e5eee576fea1d454a Mon Sep 17 00:00:00 2001 From: shkaruna Date: Tue, 26 May 2026 18:32:37 +0530 Subject: [PATCH] ref: update monitor API docstring --- linode_api4/groups/monitor.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/linode_api4/groups/monitor.py b/linode_api4/groups/monitor.py index 0d7f19ce8..961e80d24 100644 --- a/linode_api4/groups/monitor.py +++ b/linode_api4/groups/monitor.py @@ -37,8 +37,6 @@ def dashboards( dashboard = client.load(MonitorDashboard, 1) dashboards_by_service = client.monitor.dashboards(service_type="dbaas") - .. note:: This endpoint is in beta. This will only function if base_url is set to `https://api.linode.com/v4beta`. - API Documentation: - All Dashboards: https://techdocs.akamai.com/linode-api/reference/get-dashboards-all - Dashboards by Service: https://techdocs.akamai.com/linode-api/reference/get-dashboards @@ -73,8 +71,6 @@ def services( supported_services = client.monitor.services() service_details = client.monitor.load(MonitorService, "dbaas") - .. note:: This endpoint is in beta. This will only function if base_url is set to `https://api.linode.com/v4beta`. - API Documentation: https://techdocs.akamai.com/linode-api/reference/get-monitor-services API Documentation: https://techdocs.akamai.com/linode-api/reference/get-monitor-services-for-service-type @@ -100,7 +96,6 @@ def metric_definitions( Returns metrics for a specific service type. metrics = client.monitor.list_metric_definitions(service_type="dbaas") - .. note:: This endpoint is in beta. This will only function if base_url is set to `https://api.linode.com/v4beta`. API Documentation: https://techdocs.akamai.com/linode-api/reference/get-monitor-information @@ -126,8 +121,6 @@ def create_token( Returns a JWE Token for a specific service type. token = client.monitor.create_token(service_type="dbaas", entity_ids=[1234]) - .. note:: This endpoint is in beta. This will only function if base_url is set to `https://api.linode.com/v4beta`. - API Documentation: https://techdocs.akamai.com/linode-api/reference/post-get-token :param service_type: The service type to create token for. @@ -165,7 +158,6 @@ def alert_definitions( alerts = client.monitor.alert_definitions() alerts_by_service = client.monitor.alert_definitions(service_type="dbaas") - .. note:: This endpoint is in beta and requires using the v4beta base URL. API Documentation: https://techdocs.akamai.com/linode-api/reference/get-alert-definitions @@ -202,8 +194,6 @@ def alert_channels(self, *filters) -> PaginatedList: Examples: channels = client.monitor.alert_channels() - .. note:: This endpoint is in beta and requires using the v4beta base URL. - API Documentation: https://techdocs.akamai.com/linode-api/reference/get-notification-channels :param filters: Optional filter expressions to apply to the collection. @@ -232,8 +222,6 @@ def create_alert_definition( The alert definition configures when alerts are fired and which channels are notified. - .. note:: This endpoint is in beta and requires using the v4beta base URL. - API Documentation: https://techdocs.akamai.com/linode-api/reference/post-alert-definition-for-service-type :param service_type: Service type for which to create the alert definition @@ -309,9 +297,7 @@ def alert_definition_entities( This endpoint supports pagination fields (`page`, `page_size`) in the API. - .. note:: This endpoint is in beta and requires using the v4beta base URL. - - API Documentation: TODO + API Documentation: https://techdocs.akamai.com/linode-api/reference/get-alert-definition-entities :param service_type: Service type for the alert definition (e.g. `dbaas`). :type service_type: str