From e608b0727ca7bf8d6f2862ed8f3171e2bd12e361 Mon Sep 17 00:00:00 2001 From: junboli Date: Tue, 1 May 2018 01:26:49 +0800 Subject: [PATCH] [doc] Add the possible status for attachment Add the possible status of the attachment, and also make short description for each status. Change-Id: Ieef1ea94acf69fa906b9f62f2081d66166ba9174 --- api-ref/source/v3/attachments.inc | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/api-ref/source/v3/attachments.inc b/api-ref/source/v3/attachments.inc index 29dc10b14e2..fdc24630d17 100644 --- a/api-ref/source/v3/attachments.inc +++ b/api-ref/source/v3/attachments.inc @@ -10,6 +10,29 @@ deletes attachment. microversion. `Complete attachment` is new as of the 3.44 microversion. +When you create, list, update, or delete attachment, the possible +status values are: + +**VolumeAttachment statuses** + ++------------------+--------------------------------------------------------+ +| Status | Description | ++------------------+--------------------------------------------------------+ +| attached | A volume is attached for the attachment. | ++------------------+--------------------------------------------------------+ +| attaching | A volume is attaching for the attachment. | ++------------------+--------------------------------------------------------+ +| detached | A volume is detached for the attachment. | ++------------------+--------------------------------------------------------+ +| reserved | A volume is reserved for the attachment. | ++------------------+--------------------------------------------------------+ +| error_attaching | A volume is error attaching for the attachment. | ++------------------+--------------------------------------------------------+ +| error_detaching | A volume is error detaching for the attachment. | ++------------------+--------------------------------------------------------+ +| deleted | The attachment is deleted. | ++------------------+--------------------------------------------------------+ + Delete attachment ~~~~~~~~~~~~~~~~~