docs: Add status field to Project object for Control Plane API (#3075)

This commit is contained in:
Nuno Campos
2025-01-16 13:42:48 -08:00
committed by GitHub
@@ -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."
}
}
},