File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ declare namespace COS {
51
51
/** 存储桶的预设 ACL @see https://cloud.tencent.com/document/product/436/30752#.E9.A2.84.E8.AE.BE.E7.9A.84-acl */
52
52
type BucketACL = 'private' | 'public-read' | 'public-read-write' | 'authenticated-read' ;
53
53
/** 对象的预设 ACL @see https://cloud.tencent.com/document/product/436/30752#.E9.A2.84.E8.AE.BE.E7.9A.84-acl */
54
- type ObjectACL = 'default' | 'private' | 'public-read' | 'authenticated-read' | 'bucket-owner-read' | 'bucket-owner-full-contro ' ;
54
+ type ObjectACL = 'default' | 'private' | 'public-read' | 'authenticated-read' | 'bucket-owner-read' | 'bucket-owner-full-control ' ;
55
55
/** 二进制值的字符串,'true' | 'false' */
56
56
type BooleanString = 'true' | 'false' ;
57
57
/** 所有者的信息 */
@@ -1474,7 +1474,13 @@ Bulk:批量模式,恢复时间为24 - 48小时。 */
1474
1474
'x-cos-meta-*' ?: string
1475
1475
}
1476
1476
/** putObjectCopy 接口返回值 */
1477
- interface PutObjectCopyResult extends GeneralResult { }
1477
+ interface PutObjectCopyResult extends GeneralResult {
1478
+ ETag : string ;
1479
+ CRC64 : string ;
1480
+ LastModified : string ;
1481
+ VersionId : string ;
1482
+ Location : Location ;
1483
+ }
1478
1484
1479
1485
// putObjectTagging
1480
1486
/** putObjectTagging 接口参数 */
You can’t perform that action at this time.
0 commit comments