Modifying Volume Settings
PATCH /volume/{volume_id}
Introduction
Modifies the specified Volume setting.
You cannot specify more than one setting item to modify.
- Even if the Job for a setting change is Success, the Volume setting may not be modified in the following cases:
If you specify a Volume that is not a target to be set (example: setting a Data Container Volume as a Thick Provisioned Volume)
Processing such as Data Migration or Zero Reclamation is in progress
For tenant users, only the settings of Volumes that belong to the tenant of the current user can be changed.
Request Examples
- This is an example of renaming Volume ID 3300002 to "sample#02".
$ curl -i -H "Content-Type:application/json" -H "Authorization: Bearer g17e4umvwYoHuhkG7yCSee.." -X PATCH "https://192.168.1.1:5665/api/v1/volume/3300002" -d '{"new_name":"sample#02"}'
Response Examples
{
"job_id": 8192001,
"job_href": "/api/v1/job/8192001"
}
Parameters
PATH PARAMETERS
| volume_id
(required) |
integer Volume ID. |
REQUEST BODY
| new_name | string Volume name. Input criteria:
|
||||||||
| is_exc_enabled | boolean Extreme Cache Pool configuration. If true, Extreme Cache Pool is used when the relevant Volume is accessed. Input criteria:
|
||||||||
| alua | string ALUA (Asymmetric Logical Unit Access) setting. Specify this item if you want to change the Access Path control to a Volume unit.
Input criteria:
|
||||||||
| is_thick_provisioned | boolean Whether the allocation method is Thick. If true, the volume is allocated physical space of its capacity. If false, the unused physical space is freed when you perform the volume capacity optimization after executing this API. Input criteria:
|
||||||||
| attention | integer The utilization threshold at which the host sense is reported. The unit is %. Input criteria:
|
Responses
If successful, the HTTP status code is 202 (Accepted) and the response body is returned.
RESPONSE BODY
| job_id | integer Job ID. |
| job_href | string Resource link of the job. |

