ReconnectPrimaryStorage

API Request

URLs
PUT zstack/v1/primary-storage/{uuid}/actions
Headers
Authorization: OAuth the-session-uuid
Body
{
"reconnectPrimaryStorage": {},
"systemTags": [],
"userTags": []
}
Note: In the preceding sample, both systemTags and userTags are optional. These two fields can be included in the body structure.
Curl Sample
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X PUT -d '{"reconnectPrimaryStorage":{}}' \
http://localhost:8080/zstack/v1/primary-storage/699940f430123e588f4669ad7c17cf65/actions
Request Parameters
Name Type Location Description Optional Value Starting Version
uuid String url The primary storage UUID. 0.6
systemTags List body Optional. The system tags. 0.6
userTags List body Optional. The user tags. 0.6

API Response

Sample Response
{
"inventory": {
"name": "PS1",
"url": "/zstack_ps",
"type": "LocalStorage",
"state": "Enabled",
"status": "Connected",
"attachedClusterUuids": [
"830a084ef24849cb8e65ffccb1e20e03"
    ]
  }
}
Name Type Description Starting Version
error ErrorCode The error code. If not null, the operation fails, or vice versa. For more information, see error. 0.6
inventory PrimaryStorageInventory See inventory. 0.6
#error
Name Type Description Starting Version
code String The error code, which is a numbered or alphanumeric code that specifies an error. For example, SYS.1000, HOST.1001. 0.6
description String The brief description of the error. 0.6
details String The details about the error. 0.6
elaboration String The reserved field. Default value: null. 0.6
opaque LinkedHashMap The reserved field. Default value: null. 0.6
cause ErrorCode The root error, which is the associated root cause of the current error. If no root error exists, this parameter is null. 0.6
#inventory
Name Type Description Starting Version
uuid String The resource UUID. 0.6
zoneUuid String The zone UUID. 0.6
name String The resource name. 0.6
url String 0.6
description String The detailed description of the resource. 0.6
totalCapacity Long 0.6
availableCapacity Long 0.6
totalPhysicalCapacity Long 0.6
availablePhysicalCapacity Long 0.6
systemUsedCapacity Long 0.6
type String 0.6
state String 0.6
status String 0.6
mountPath String 0.6
createDate Timestamp The creation date. 0.6
lastOpDate Timestamp The last operation date. 0.6
attachedClusterUuids List 0.6

SDK Sample

Java SDK
ReconnectPrimaryStorageAction action = new ReconnectPrimaryStorageAction();
action.uuid = "b346884f494b41d382e6fc3c1c6d406d";
action.sessionId = "634bb3b8568a4ee1b6f2abd3fc6edf65";
ReconnectPrimaryStorageAction.Result res = action.call();
Python SDK
ReconnectPrimaryStorageAction action = ReconnectPrimaryStorageAction()
action.uuid = "78b0b8b7ac4f4c3887ee71f0bd159012"
action.sessionId = "97ce6c4f337d458ba25b9c4b1308fc1f"
ReconnectPrimaryStorageAction.Result res = action.call()