Problem description
The value of the Tier parameter in the XML structure of the RestoreObject request is invalid.
Causes
You initiated a RestoreObject request, but the value of the Tier parameter in the XML structure of the request is invalid. The Tier parameter specifies the restoration priority. Valid values:
Expedited: The object is restored within 1 hour.
Standard: The object is restored within 2 to 5 hours.
Bulk: The object is restored within 5 to 12 hours.
The reference value for the amounts of retrieved data for an Alibaba Cloud account in a region is an average of 500 objects per second. The total retrieved data for the preceding priorities ranges from 20 TB to 40 TB per day.
Examples
In the following XML content of the RestoreObject request, the value of the Tier parameter is Test, which is invalid and causes a request error.
POST /coldarchiveobject?restore HTTP/1.1
Host: cold-archive-bucket.oss-cn-hangzhou.aliyuncs.com
Authorization: OSS qn6q**************:77Dv****************
Date: Tue, 21 Apr 2020 11:09:19 GMT
<RestoreRequest>
<Days>2</Days>
<JobParameters>
<Tier>Test</Tier>
</JobParameters>
</RestoreRequest>
Solutions
Make sure that the value of the Tier parameter in the XML structure of the RestoreObject request is valid.
POST /coldarchiveobject?restore HTTP/1.1
Host: cold-archive-bucket.oss-cn-hangzhou.aliyuncs.com
Authorization: OSS qn6q**************:77Dv****************
Date: Tue, 21 Apr 2020 11:09:19 GMT
<RestoreRequest>
<Days>2</Days>
<JobParameters>
<Tier>Standard</Tier>
</JobParameters>
</RestoreRequest>