Queries the usage of storage-related resources. The resources include the storage volume, storage duration, and outbound traffic.
- This operation is available only in the China (Shanghai) region.
- If the time range to query is less than or equal to seven days, the system returns the statistics collected on an hourly basis. If the time range to query is greater than seven days, the system returns the statistics collected on a daily basis. The maximum time range that you can specify to query is 31 days.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | DescribeVodStorageData |
The operation that you want to perform. Set the value to DescribeVodStorageData. |
EndTime | String | Yes | 2019-02-01T15:00:00Z |
The end of the time range to query. The end time must be later than the start time. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. |
StartTime | String | Yes | 2019-02-01T14:00:00Z |
The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. |
Region | String | No | cn-shanghai |
The region where media assets are stored. If you do not set this parameter, the data in all regions is returned. You can specify multiple regions. Separate them with commas (,). Valid values:
|
StorageType | String | No | OSS |
The storage type. Set the value to OSS. |
Storage | String | No | bucket |
The name of the Object Storage Service (OSS) bucket. If you do not set this parameter, the data of all buckets is returned. You can specify multiple buckets. Separate them with commas (,). |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
DataInterval | String | day |
The time granularity at which the data was queried. Valid values:
|
RequestId | String | C370DAF1-C838-4288-****-9A87633D248E |
The ID of the request. |
StorageData | Array of StorageDataItem |
The detailed usage of storage-related resources. |
|
StorageDataItem | |||
NetworkOut | String | 111111 |
The outbound traffic. Unit: byte. The outbound traffic is generated when videos are directly downloaded or played from OSS buckets without Alibaba Cloud CDN acceleration. |
StorageUtilization | String | 111111 |
The storage volume. Unit: byte. |
TimeStamp | String | 2019-02-01T15:00:00Z |
The timestamp of the returned data. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. |
Examples
Sample requests
https://vod.{ApiRegion}.aliyuncs.com/?Action=DescribeVodStorageData
&EndTime=2019-02-01T15:00:00Z
&StartTime=2019-02-01T14:00:00Z
&<Common request parameters>
Sample success responses
XML
format
<DescribeVodStorageDataResponse>
<RequestId>C370DAF1-C838-4288-****-9A87633D248E</RequestId>
<DataInterval>day</DataInterval>
<StorageData>
<StorageDataItem>
<StorageUtilization>111111</StorageUtilization>
<NetworkOut>111111</NetworkOut>
<TimeStamp>2019-02-01T15:00:00Z</TimeStamp>
</StorageDataItem>
<StorageDataItem>
<StorageUtilization>111111</StorageUtilization>
<NetworkOut>111111</NetworkOut>
<TimeStamp>2019-02-02T15:00:00Z</TimeStamp>
</StorageDataItem>
</StorageData>
</DescribeVodStorageDataResponse>
JSON
format
{
"RequestId": "C370DAF1-C838-4288-****-9A87633D248E",
"DataInterval": "day",
"StorageData": {
"StorageDataItem": [
{
"StorageUtilization": 111111,
"NetworkOut": 111111,
"TimeStamp": "2019-02-01T15:00:00Z"
},
{
"StorageUtilization": 111111,
"NetworkOut": 111111,
"TimeStamp": "2019-02-02T15:00:00Z"
}
]
}
}
Error codes
For a list of error codes, visit the API Error Center.
Common errors
The following table describes the common errors that this operation can return.
Error code |
Error message |
HTTP status code |
Description |
---|---|---|---|
Throttling |
Request was denied due to request throttling. |
503 |
The error message returned because the request was denied due to throttling. |
OperationDenied |
Your account does not open VOD service yet. |
403 |
The error message returned because ApsaraVideo VOD has not been activated for your Alibaba Cloud account. |
OperationDenied |
Your VOD service is suspended. |
403 |
The error message returned because ApsaraVideo VOD has been suspended for your Alibaba Cloud account. |
InvalidParameter |
Invalid Parameter. |
400 |
The error message returned because one or more parameters are invalid. |
InvalidParameterAliUid |
Invalid Parameter AliUid. |
400 |
The error message returned because the value of the AliUid parameter is invalid. |
InvalidParameterStartTime |
Invalid Parameter StartTime. |
400 |
The error message returned because the value of the StartTime parameter is invalid. |
InvalidParameterEndTime |
Invalid Parameter EndTime. |
400 |
The error message returned because the value of the EndTime parameter is invalid. |
InvalidTimeRange |
StartTime and EndTime range should less than 1 month. |
400 |
The error message returned because the time range that is specified by the StartTime and EndTime parameters exceeds 31 days. |
InvalidParameterRegion |
Invalid Parameter Region. |
400 |
The error message returned because the value of the Region parameter is invalid. |