@@ -182,6 +182,12 @@ declare namespace COS {
182
182
) => void ,
183
183
}
184
184
185
+ interface Util {
186
+ md5 : ( str : String , encoding ?: string ) => string ,
187
+ xml2json : ( bodyStr : string ) => any ,
188
+ json2xml : ( json : any ) => string ,
189
+ }
190
+
185
191
interface StaticGetAuthorizationOptions {
186
192
/** 计算签名用的密钥 SecretId,必选 */
187
193
SecretId : string ,
@@ -744,7 +750,7 @@ declare namespace COS {
744
750
/** 指定通用错误文档的对象键,当发生错误且未命中重定向规则中的错误码重定向时,将返回该对象键的内容 */
745
751
Key : Key ,
746
752
/** 用于配置命中错误文档的 HTTP 状态码,可选值为 Enabled 或 Disabled,默认为 Enabled */
747
- OriginalHttpStatus ?: 'Enabled' | 'Disabled,默认为 '
753
+ OriginalHttpStatus ?: 'Enabled' | 'Disabled'
748
754
} ,
749
755
/** 重定向规则配置,最多设置100条 RoutingRule */
750
756
RoutingRules ?: {
@@ -1128,10 +1134,10 @@ declare namespace COS {
1128
1134
/** getObject 接口参数 */
1129
1135
interface GetObjectParams extends ObjectParams {
1130
1136
BodyType ?: 'text' | 'blob' | 'arraybuffer' ,
1131
- /** 请求里的 QueryString 参数 */
1132
- QueryString ?: string ,
1133
- /** 请求里的 Url Query 参数 */
1137
+ /** 请求里的 Url Query 参数,传入该值中的 key/value 将会被 URLEncode */
1134
1138
Query ?: Query ,
1139
+ /** 请求里的 Url Query 参数。传入该值将直接拼接在 Url 上,不会对其进行 URLEncode */
1140
+ QueryString ?: string ,
1135
1141
/** 当对象在指定时间后被修改,则返回对象,否则返回 HTTP 状态码为304(Not Modified) */
1136
1142
IfModifiedSince ?: string ,
1137
1143
/** 当对象在指定时间后未被修改,则返回对象,否则返回 HTTP 状态码为412(Precondition Failed) */
@@ -1280,7 +1286,7 @@ declare namespace COS {
1280
1286
/** 存储桶持有者信息 */
1281
1287
Owner : Owner ,
1282
1288
/** 被授权者信息与权限信息 */
1283
- Grants : Grants ,
1289
+ Grants : Grants [ ] ,
1284
1290
}
1285
1291
1286
1292
// putObjectAcl
@@ -1755,8 +1761,9 @@ Bulk:批量模式,恢复时间为24 - 48小时。 */
1755
1761
onProgress ?: onProgress ,
1756
1762
/** 上传完成回调方法 */
1757
1763
onFileFinish ?: onFileFinish ,
1758
- }
1764
+ } ;
1759
1765
1766
+ /** uploadFiles 接口返回值 */
1760
1767
interface UploadFileResult extends GeneralResult {
1761
1768
/** 对象的实体标签(Entity Tag),是对象被创建时标识对象内容的信息标签,可用于检查对象的内容是否发生变化,例如"8e0b617ca298a564c3331da28dcb50df"。此头部并不一定返回对象的 MD5 值,而是根据对象上传和加密方式而有所不同 */
1762
1769
ETag : ETag ,
@@ -1810,17 +1817,36 @@ Bulk:批量模式,恢复时间为24 - 48小时。 */
1810
1817
/** 上传任务列表 */
1811
1818
type TaskList = Task [ ]
1812
1819
1820
+ // request
1821
+ /** request 接口参数 */
1822
+ interface RequestParams extends BucketParams {
1823
+ /** 操作方法,如 get,post,delete, head 等 HTTP 方法 */
1824
+ Method : string ,
1825
+ /** 请求的对象键,最前面不带 / */
1826
+ Key ?: Key ,
1827
+ /** 请求里的 Url Query 参数 */
1828
+ Query ?: Query ,
1829
+ /** 请求里的 Body 参数 */
1830
+ Body ?: Body ,
1831
+ /** 请求的 API 动作接口(可理解为不带 = 的 Query 参数),如 acl、tagging、image_process 等 */
1832
+ Action : Action
1833
+ }
1834
+ /** Request 接口返回值 */
1835
+ interface RequestResult extends GeneralResult {
1836
+ Body ?: Buffer ,
1837
+ }
1838
+
1813
1839
// getObjectUrl
1814
1840
/** getObjectUrl 接口参数 */
1815
1841
interface GetObjectUrlParams extends ObjectParams {
1816
1842
/** 获取的 Url 是否计算签名 */
1817
1843
Sign ?: boolean ,
1818
1844
/** 请求方法 */
1819
1845
Method ?: Method ,
1820
- /** 请求里的 QueryString 参数 */
1821
- QueryString ?: string ,
1822
- /** 请求里的 Url Query 参数 */
1846
+ /** 请求里的 Url Query 参数,传入该值中的 key/value 将会被 URLEncode */
1823
1847
Query ?: Query ,
1848
+ /** 请求里的 Url Query 参数。传入该值将直接拼接在 Url 上,不会对其进行 URLEncode */
1849
+ QueryString ?: string ,
1824
1850
/** 签名几秒后失效,默认为900秒 */
1825
1851
Expires ?: number ,
1826
1852
}
@@ -1881,6 +1907,9 @@ declare class COS {
1881
1907
/** 计算签名 */
1882
1908
static getAuthorization : ( options : COS . StaticGetAuthorizationOptions ) => string ;
1883
1909
1910
+ /** 工具 */
1911
+ static util : COS . Util ;
1912
+
1884
1913
// 实例方法
1885
1914
/** 获取用户的 bucket 列表 @see https://cloud.tencent.com/document/product/436/8291 */
1886
1915
getService ( params : COS . GetServiceParams , callback : ( err : COS . CosError , data : COS . GetServiceResult ) => void ) : void ;
@@ -2063,6 +2092,18 @@ declare class COS {
2063
2092
getBucketAccelerate ( params : COS . GetBucketAccelerateParams , callback : ( err : COS . CosError , data : COS . GetBucketAccelerateResult ) => void ) : void ;
2064
2093
getBucketAccelerate ( params : COS . GetBucketAccelerateParams ) : Promise < COS . GetBucketAccelerateResult > ;
2065
2094
2095
+ /** 设置指定存储桶下的默认加密配置 @see https://cloud.tencent.com/document/product/436/40136 */
2096
+ putBucketEncryption ( params : COS . PutBucketEncryptionParams , callback : ( err : COS . CosError , data : COS . PutBucketEncryptionResult ) => void ) : void ;
2097
+ putBucketEncryption ( params : COS . PutBucketEncryptionParams ) : Promise < COS . PutBucketEncryptionResult > ;
2098
+
2099
+ /** 查询指定存储桶下的默认加密配置 @see https://cloud.tencent.com/document/product/436/40137 */
2100
+ getBucketEncryption ( params : COS . GetBucketEncryptionParams , callback : ( err : COS . CosError , data : COS . GetBucketEncryptionResult ) => void ) : void ;
2101
+ getBucketEncryption ( params : COS . GetBucketEncryptionParams ) : Promise < COS . GetBucketEncryptionResult > ;
2102
+
2103
+ /** 删除指定存储桶下的默认加密配置 @see https://cloud.tencent.com/document/product/436/40138 */
2104
+ deleteBucketEncryption ( params : COS . DeleteBucketEncryptionParams , callback : ( err : COS . CosError , data : COS . DeleteBucketEncryptionResult ) => void ) : void ;
2105
+ deleteBucketEncryption ( params : COS . DeleteBucketEncryptionParams ) : Promise < COS . DeleteBucketEncryptionResult > ;
2106
+
2066
2107
/** 取回对应对象(Object)的元数据,Head的权限与Get的权限一致 @see https://cloud.tencent.com/document/product/436/7745 */
2067
2108
headObject ( params : COS . HeadObjectParams , callback : ( err : COS . CosError , data : COS . HeadObjectResult ) => void ) : void ;
2068
2109
headObject ( params : COS . HeadObjectParams ) : Promise < COS . HeadObjectResult > ;
@@ -2182,6 +2223,10 @@ declare class COS {
2182
2223
/** 判断上传队列是否有未完成的任务 */
2183
2224
isUploadRunning ( ) : boolean ;
2184
2225
2226
+ /** 分片复制文件 */
2227
+ request ( params : COS . RequestParams , callback : ( err : COS . CosError , data : COS . RequestResult ) => void ) : void ;
2228
+ request ( params : COS . RequestParams ) : Promise < COS . RequestResult > ;
2229
+
2185
2230
/** 获取文件下载链接 @see https://cloud.tencent.com/document/product/436/35651 */
2186
2231
getObjectUrl ( params : COS . GetObjectUrlParams , callback : ( err : COS . CosError , data : COS . GetObjectUrlResult ) => void ) : string ;
2187
2232
0 commit comments