From 591b4eea24abc6340c01a8a36eef8a93d2f7fd70 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 31 Jan 2024 10:03:11 -0500 Subject: [PATCH] Update consumption method documentation --- neon_client/client.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/neon_client/client.py b/neon_client/client.py index 4768ba0..b1b475c 100644 --- a/neon_client/client.py +++ b/neon_client/client.py @@ -481,7 +481,6 @@ class NeonAPI: "GET", f"projects/{ project_id }/operations/{ operation_id }" ) - # @returns_model(schema.ProjectsConsumptionResponse) def consumption( self, *, @@ -490,7 +489,7 @@ class NeonAPI: from_date: datetime | str | None = None, to_date: datetime | str | None = None, ) -> t.Dict[str, t.Any]: - """Get a list of consumption metrics for all projects.""" + """Experimental — get a list of consumption metrics for all projects.""" # Convert datetime objects to ISO 8601 strings. from_date = (