Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 1 addition & 15 deletions linode_api4/groups/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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

Expand All @@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading