1.28.27 rename-object

优质
小牛编辑
118浏览
2023-12-01

Rename object related api supported by FDS

Version: 1.0.0

/{bucketname}/{objectname}

PUT

Summary:

重命名文件

Description:

必须拥有Bucket的WRITE权限才能执行该操作

Parameters
NameLocated inDescriptionRequiredSchema
bucketnamepathBucket名字Yesstring
objectnamepath上传的Object名字Yesstring
authorizationheader认证信息,计算方式参考签名认证相关文档Nostring
Dateheader请求时间Yesstring
renameToqueryobject的新名字Yesstring
Responses
CodeDescription
200请求成功

命令行示例

# 把fds-demo下的tests/test.txt重命名为demos/test.txt.bak
curl -v -X 'PUT' 'http://cnbj0.fds.api.xiaomi.com/fds-demo/tests/test.txt0?renameTo=demos%2Ftest.txt.bak' \
    -H 'content-type: application/octet-stream' \
    -H 'authorization: Galaxy-V2 541xxx045:FHnxxxDc=' \
    -H 'date: Tue, 28 Feb 2017 11:57:53 GMT' \
    -d '""'
* Hostname was NOT found in DNS cache
*   Trying 111.206.200.99...
* Connected to cnbj0.fds.api.xiaomi.com (111.206.200.99) port 80 (#0)
> PUT /fds-demo/tests/test.txt0?renameTo=demos%2Ftest.txt.bak HTTP/1.1
> User-Agent: curl/7.35.0
> Host: cnbj0.fds.api.xiaomi.com
> Accept: */*
> content-type: application/octet-stream
> authorization: Galaxy-V2 541xxx045:FHnxxxDc=
> date: Tue, 28 Feb 2017 11:57:53 GMT
> Content-Length: 2
> 
* upload completely sent off: 2 out of 2 bytes
< HTTP/1.1 200 OK
* Server Tengine is not blacklisted
< Server: Tengine
< Date: Tue, 28 Feb 2017 11:59:35 GMT
< Content-Length: 0
< Connection: keep-alive
< Access-Control-Allow-Credentials: true
< Access-Control-Max-Age: 1728000
< Access-Control-Allow-Methods: GET, POST, PUT, HEAD, DELETE, OPTIONS
< Access-Control-Allow-Headers: DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization,Content-MD5
< Access-Control-Expose-Headers: content-md5, upload-time, x-xiaomi-meta-content-length
< 
* Connection #0 to host cnbj0.fds.api.xiaomi.com left intact