From 198f8aab716130cc16d47eaea7b80dba315d8206 Mon Sep 17 00:00:00 2001 From: Andre Carneiro Date: Wed, 31 Aug 2022 14:06:49 -0300 Subject: [PATCH] Fixes documentation for subcloud-group delete The return code for the subcloud-group delete rest request was wrong in the documentation. The endpoint returns status 200 upon success, instead of 204 as was written in the documentation. This changes the documentation with the correct response code. Closes-Bug: 1988221 Signed-off-by: Andre Carneiro Change-Id: I6fc89e7c71dd51e8aaf2b9858ef89a7d5fdbb871 --- api-ref/source/api-ref-dcmanager-v1.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-ref/source/api-ref-dcmanager-v1.rst b/api-ref/source/api-ref-dcmanager-v1.rst index 65fbb8d23..3616b95fe 100644 --- a/api-ref/source/api-ref-dcmanager-v1.rst +++ b/api-ref/source/api-ref-dcmanager-v1.rst @@ -902,11 +902,11 @@ Deletes a specific subcloud group **Normal response codes** -204 +200 **Error response codes** -badRequest (400), unauthorized (401), forbidden (403), +badRequest (400), unauthorized (401), forbidden (403), itemNotFound (404), badMethod (405), HTTPUnprocessableEntity (422), internalServerError (500), serviceUnavailable (503)