0020-00000034

Updated at: 2023-07-21 07:45

Problem description

The value of the Prefix parameter in the OSSBucketDestination node in the PutBucketInventory request is invalid.

Causes

The value of the Prefix parameter in the OSSBucketDestination node in the PutBucketInventory request contains special characters.

Examples

The value of the Prefix parameter in the OSSBucketDestination node in the request contains the following special characters: %&$@i^*!@#$%^&*.

PUT /?inventory&inventoryId=report1 HTTP/1.1
 Host: BucketName.oss.aliyuncs.com
 Date: Mon, 31 Oct 2016 12:00:00 GMT
 Authorization: authorization string
 Content-Length: length
 <?xml version="1.0" encoding="UTF-8"?>
 <InventoryConfiguration>
 	<Id>report1</Id>
  <IsEnabled>true</IsEnabled>
  <Filter>
  	<Prefix>filterPrefix/</Prefix>
    <LastModifyBeginTimeStamp>1637883649</LastModifyBeginTimeStamp>
    <LastModifyEndTimeStamp>1638347592</LastModifyEndTimeStamp>
    <LowerSizeBound>1024</LowerSizeBound>
    <UpperSizeBound>2048</UpperSizeBound>
    <StorageClass>Standard,IA</StorageClass>
   </Filter>
   <Destination>
   		<OSSBucketDestination>
      	<Format>CSV</Format>
        <AccountId>1000000000000000</AccountId>
        <RoleArn>acs:ram::1000000000000000:role/AliyunOSSRole</RoleArn>
        <Bucket>acs:oss:::destination-bucket</Bucket>
       	<Prefix>%&$@i^*!@#$%^&*</Prefix>
      </OSSBucketDestination>
		</Destination>
    <Schedule>
    	<Frequency>Daily</Frequency>
    </Schedule>
    <IncludedObjectVersions>All</IncludedObjectVersions>
    <OptionalFields>
    	<Field>Size</Field>
      <Field>LastModifiedDate</Field>
      <Field>ETag</Field>
      <Field>StorageClass</Field>
      <Field>IsMultipartUploaded</Field>
    </OptionalFields>
 </InventoryConfiguration>

Solutions

Make sure that the value of the Prefix parameter in the OSSBucketDestination node is UTF-8-encoded and does not exceed 1,023 bytes in length,

References

PutBucketInventory

  • On this page (1, T)
  • Problem description
  • Causes
  • Examples
  • Solutions
  • References
Feedback