diff --git a/api-ref/source/v3/parameters.yaml b/api-ref/source/v3/parameters.yaml index ed74d93b36e..85ab1bbe901 100644 --- a/api-ref/source/v3/parameters.yaml +++ b/api-ref/source/v3/parameters.yaml @@ -107,6 +107,12 @@ key_3: in: path required: true type: string +key_4: + description: | + The key name for the extra spec that you want to remove. + in: path + required: true + type: string message_id: description: | The UUID of the message. diff --git a/api-ref/source/v3/volumes-v3-types.inc b/api-ref/source/v3/volumes-v3-types.inc index b4a3e0d0ab8..23f9ce459e3 100644 --- a/api-ref/source/v3/volumes-v3-types.inc +++ b/api-ref/source/v3/volumes-v3-types.inc @@ -111,6 +111,27 @@ Response Example :language: javascript +Delete extra spec for volume type +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. rest_method:: DELETE /v3/{project_id}/types/{volume_type_id}/extra_specs/{key} + +Deletes the specific extra spec that assigned to a volume type. + + +Normal response codes: 202 + + +Request +------- + +.. rest_parameters:: parameters.yaml + + - project_id: project_id_path + - volume_type_id: volume_type_id + - key: key_4 + + Show volume type detail ~~~~~~~~~~~~~~~~~~~~~~~