0016-00000711

Updated at:

Problem description

The XML body of the RestoreObject request contains an unsupported node.

Cause

You sent a RestoreObject request with an unsupported SelectParameters node in the XML body.

Sample Problems

The following request fails because its XML body contains the SelectParameters node, which is not supported by the RestoreObject operation.

POST /coldarchiveobject?restore HTTP/1.1
Host: cold-archive-bucket.oss-cn-hangzhou.aliyuncs.com
Authorization: AWS qn6q**************:77Dv****************
Date: Tue, 21 Apr 2020 11:09:19 GMT
<RestoreRequest>
  <Days>2</Days>
  <SelectParameters>
  </SelectParameters>
</RestoreRequest>

Solution

Make sure that the XML body 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>
</RestoreRequest>

References

RestoreObject