PUT /storage/{uuid}
Use this method to modify properties or perform management actions on a specific storage devices.
The request body differs depending on the action that you want to perform. You can use this PUT method to perform the following management actions.
Note
To power on or off canisters in the storage device, use PUT /storage/{uuid}/{controller}
If you specify this attribute, this method starts a job that runs in the background to perform the operation. The response header includes a URI in the form /tasks/{task_id} (for example, /tasks/12) that represents the job that is created to perform this request. You can use GET /tasks/{job_list} to monitor the status and progress of the job. If a job was not successfully started, refer to the response code and response body for details.
Attention
A successful response indicates that the request was successfully created and accepted by the management server. It does not indicate that the operation that is associated with the job was successful.
Authentication
Authentication with username and password is required.
Request URL
PUT https://{management_server_IP}/storage/{uuid}
where {uuid} is the UUID of the storage device to be retrieved. To obtain the node UUID, use the GET /storage method.
Query parameters
Attributes | Required / Optional | Description |
---|---|---|
synchronous={value} | Optional | When modifying attributes, indicates when the job ID is returned
Note This query parameter applies only when one or more property parameters are specified in the request body. |
Request body
Attributes | Required / Optional | Type | Description | ||
---|---|---|---|---|---|
contact | Optional | String | The contact information | ||
name | Optional | String | Storage-device name | ||
userDescription | Optional | String | The storage-device description |
The following example modifies the hostname, location, and contact information for the target storage device:
{
"contact":"new contact",
"name":"new name",
"userDescription":"new userDescription"
}
Attributes | Required / Optional | Type | Description | ||
---|---|---|---|---|---|
sftpURI | Required | String | Collects and exports service data to the specified Secure FTP site. |
The following example collects and exports an FFDC archive to sftp://SYSMGR:JhdJshf922nms@10.241.53.50.
{
"sftpURI":"sftp://SYSMGR:JhdJshf922nms@10.241.53.50"
}
Attributes | Required / Optional | Type | Description | ||
---|---|---|---|---|---|
securityDescriptor | Required | Object | Information about the authentication enablement and support the associated stored credentials for a managed device. | ||
managedAuthEnabled | Optional | Boolean | Indicates whether the device uses managed authentication. This can be one of the following values.
| ||
publicAccess | Optional | Boolean | Indicates whether the resource can be accessed by all role groups. This can be one of the following values.
| ||
roleGroups | Optional | Array of strings | List of role groups that are permitted to view and manage this device. | ||
storedCredentials | Required if managedAuthEnabled is set to true | Object | Information about the stored credential that is associated with this device, if applicable. | ||
id | Required if managedAuthEnabled is set to true | String | ID of the stored credential to associated with the device |
The following example restricts access to the managed device to members of the specified role groups:
{
"securityDescriptor" : {
"publicAccess": false,
"roleGroups": ["sales-os-admin","corp_fw_admin"]
}
}
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
400 | Bad Request | A query parameter or request attribute is missing or not valid, or the operation is not supported. A descriptive error message is returned in the response body. |
401 | Unauthorized | The user cannot be authenticated. Authentication has not been provided or has failed. A descriptive error message is returned in the response body. |
403 | Forbidden | The orchestrator server was prevented from fulfilling the request. A descriptive error message is returned in the response body. Ensure that you have privileges to perform the request. |
404 | Not found | A specified resource cannot be found. A descriptive error message is returned in the response body. |
409 | Conflict | There is a conflict with the current state of the resource. A descriptive error message is returned in the response body. |
500 | Internal Server Error | An internal error occurred. A descriptive error message is returned in the response body. |
Response body
None
Give documentation feedback