SyncPrimaryStorageCapacity
API Request
URLs
PUT zstack/v1/primary-storage/{primaryStorageUuid}/actions
Headers
Authorization: OAuth the-session-uuid
Body
Note: In
the preceding sample, both systemTags and userTags are optional.
These two fields can be included in the body structure.
{
"syncPrimaryStorageCapacity": {},
"systemTags": [],
"userTags": []
}

Curl
Sample
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X PUT -d '{"syncPrimaryStorageCapacity":{}}' \
http://localhost:8080/zstack/v1/primary-storage/36ad940fe805304b85ca8af209b044b5/actions
Request Parameters
Name | Type | Location | Description | Optional Value | Starting Version |
---|---|---|---|---|---|
primaryStorageUuid | 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",
"availableCapacity": 9.73078528E8,
"availablePhysicalCapacity": 9.73078528E8,
"type": "LocalStorage",
"state": "Enabled",
"status": "Connected",
"attachedClusterUuids": [
"06b22ab47bb74d2d97dba43ccdde8b9a"
]
}
}
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 detailed description of the resource. | 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
SyncPrimaryStorageCapacityAction action = new SyncPrimaryStorageCapacityAction();
action.primaryStorageUuid = "42508a6dbeb24968b4fd7c7a1f4f6859";
action.sessionId = "bd1b393d64bd424c848cc2760c7aef0f";
SyncPrimaryStorageCapacityAction.Result res = action.call();
Python
SDK
SyncPrimaryStorageCapacityAction action = SyncPrimaryStorageCapacityAction()
action.primaryStorageUuid = "695578d15cc04f2a84585deab75d29c7"
action.sessionId = "fdead04edbc741f99c826afc6db003a9"
SyncPrimaryStorageCapacityAction.Result res = action.call()