From 002b048674445cecc05382dcecada1a8a5585089 Mon Sep 17 00:00:00 2001 From: Andrew Nguonly Date: Thu, 16 Jan 2025 13:27:23 -0800 Subject: [PATCH] Add status field to Project object. --- .../cloud/reference/api/openapi_control_plane.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/docs/cloud/reference/api/openapi_control_plane.json b/docs/docs/cloud/reference/api/openapi_control_plane.json index 646ca09b6..871291505 100644 --- a/docs/docs/cloud/reference/api/openapi_control_plane.json +++ b/docs/docs/cloud/reference/api/openapi_control_plane.json @@ -561,6 +561,16 @@ }, "resource": { "$ref": "#/components/schemas/ResourceService" + }, + "status": { + "type": "string", + "enum": [ + "AWAITING_DATABASE", + "READY", + "AWAITING_DELETE", + "UNKNOWN" + ], + "description": "Deployment status of the project.\n\nNon-terminal statuses: `AWAITING_DATABASE`, `AWAITING_DELETE`. All other statuses are terminal." } } },