0015-00000226

Updated at:

Problem description

The storage class specified in the PutBucket request is not supported in the target region.

Causes

When you submit a PutBucket request, the StorageClass value in the request body must be a storage class that the target region supports. If the region does not support that storage class, OSS returns this error.

Examples

The following request fails because the specified storage class is not supported in the target region:

PUT / HTTP/1.1
Host: examplebucket.oss-cn-somewhere.aliyuncs.com
Date: <GMT Date>
x-oss-acl: <Permission>
Authorization: <SignatureValue>

<?xml version="1.0" encoding="UTF-8"?>
<CreateBucketConfiguration>
    <StorageClass>ColdArchive</StorageClass>
</CreateBucketConfiguration>

Solutions

Replace the StorageClass value with one that the target region supports. To check which storage classes a region supports, see Overview.

For OSS on CloudBox, only the Standard storage class is supported.

References