Skip to content

Commit eca8124

Browse files
committed
update csg doc
1 parent 52729cb commit eca8124

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

csp/api.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -1648,7 +1648,6 @@ cos.deleteMultipleObject({
16481648
| Quiet | 布尔值,这个值决定了是否启动 Quiet 模式。值为 true 启动 Quiet 模式,值为 false 则启动 Verbose 模式,默认值为 false | Boolean ||
16491649
| Objects | 要删除的文件列表 | ObjectArray ||
16501650
| - Key | 对象键(Object 的名称),对象在存储桶中的唯一标识,[对象键说明](https://cloud.tencent.com/document/product/436/13324) | String ||
1651-
| - VersionId | 要删除的 Object 或 DeleteMarker 版本 ID | String |
16521651

16531652
#### 回调函数说明
16541653

@@ -1666,9 +1665,6 @@ function(err, data) { ... }
16661665
| - headers | 请求返回的头部信息 | Object |
16671666
| - Deleted | 说明本次删除的成功 Object 信息 | ObjectArray |
16681667
| - - Key | 对象键(Object 的名称),对象在存储桶中的唯一标识,[对象键说明](https://cloud.tencent.com/document/product/436/13324) | String |
1669-
| - - VersionId | 如果参数传入了 VersionId,返回也会带上 VersionId,表示刚操作的 Object 或 DeleteMarker 版本 | String |
1670-
| - - DeleteMarker | 如果开启了多版本,并且参数没有 VersionId,本次删除不会真正抹去文件内容,只新增一个 DeleteMarker 代表可见的文件已删除,枚举值:true、false | String |
1671-
| - - DeleteMarkerVersionId | 当返回的 DeleteMarker 为 true 时,返回刚新增的 DeleteMarker 的 VersionId | String |
16721668
| - Error | 说明本次删除的失败 Object 信息 | ObjectArray |
16731669
| - - Key | 对象键(Object 的名称),对象在存储桶中的唯一标识,[对象键说明](https://cloud.tencent.com/document/product/436/13324) | String |
16741670
| - - Code | 删除失败的错误码 | String |
@@ -1699,7 +1695,7 @@ cos.putObjectCopy({
16991695
| Bucket | Bucket 的名称。命名规则为{name}-{appid} ,此处填写的存储桶名称必须为此格式 | String ||
17001696
| Region | Bucket 所在区域。枚举值请见:[Bucket 地域信息](https://cloud.tencent.com/document/product/436/6224) | String ||
17011697
| Key | 对象键(Object 的名称),对象在存储桶中的唯一标识,[对象键说明](https://cloud.tencent.com/document/product/436/13324) | String ||
1702-
| CopySource | 源文件 URL 路径,可以通过 versionid 子资源指定历史版本 | String ||
1698+
| CopySource | 源文件 URL 路径 | String ||
17031699
| ACL | 定义 Object 的 ACL 属性。有效值:private、public-read、public-read-write;默认值:private | String ||
17041700
| GrantRead | 赋予被授权者读的权限。格式:id=" ",id=" ";<br>当需要给子账户授权时,id="qcs::cam::uin/&lt;OwnerUin>:uin/&lt;SubUin>",<br>当需要给根账户授权时,id="qcs::cam::uin/&lt;OwnerUin>:uin/&lt;OwnerUin>",<br>例如:'id="qcs::cam::uin/123:uin/123", id="qcs::cam::uin/123:uin/456"' | String ||
17051701
| GrantWrite | 赋予被授权者写的权限。格式:id=" ",id=" ";<br>当需要给子账户授权时,id="qcs::cam::uin/&lt;OwnerUin>:uin/&lt;SubUin>",<br>当需要给根账户授权时,id="qcs::cam::uin/&lt;OwnerUin>:uin/&lt;OwnerUin>",<br>例如:'id="qcs::cam::uin/123:uin/123", id="qcs::cam::uin/123:uin/456"' | String ||
@@ -2236,7 +2232,7 @@ cos.sliceCopyFile({
22362232
| Bucket | Bucket 的名称。命名规则为{name}-{appid} ,此处填写的存储桶名称必须为此格式 | String ||
22372233
| Region | Bucket 所在区域。枚举值请见:[Bucket 地域信息](https://cloud.tencent.com/document/product/436/6224) | String ||
22382234
| Key | 对象键(Object 的名称),对象在存储桶中的唯一标识,[对象键说明](https://cloud.tencent.com/document/product/436/13324) | String ||
2239-
| CopySource | 源文件 URL 路径,可以通过 versionid 子资源指定历史版本 | String ||
2235+
| CopySource | 源文件 URL 路径 | String ||
22402236
| ChunkSize | 分片复制时,每片的大小字节数,默认值 1048576 (1MB) | Number ||
22412237
| SliceSize | 使用分片复制的文件大小,默认值 5G | Number ||
22422238
| onProgress | 上传文件的进度回调函数,回调参数为进度对象 progressData | Function ||

csp/csp.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ <h1>cos-js-sdk-v5</h1>
203203
"AllowedOrigin": ["*"],
204204
"AllowedMethod": ["GET", "POST", "PUT", "DELETE", "HEAD"],
205205
"AllowedHeader": ["*"],
206-
"ExposeHeader": ["ETag", "x-cos-acl", "x-cos-version-id", "x-cos-delete-marker", "x-cos-server-side-encryption"],
206+
"ExposeHeader": ["ETag", "x-cos-acl", "x-cos-delete-marker", "x-cos-server-side-encryption"],
207207
"MaxAgeSeconds": "5"
208208
}]
209209
}

0 commit comments

Comments
 (0)