From e156ab37d67414eb6a2cc9f2907f735d55cd17ea Mon Sep 17 00:00:00 2001 From: chrisftian Date: Wed, 18 Oct 2023 19:32:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96d.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/index.d.ts b/index.d.ts index 095265b..0c5fbc8 100644 --- a/index.d.ts +++ b/index.d.ts @@ -422,6 +422,16 @@ declare namespace COS { } /** getBucket 接口返回值 */ interface GetBucketResult extends GeneralResult { + /** 存储桶的名称,格式为,例如examplebucket-1250000000 */ + Name: string; + /** 对象键匹配前缀,对应请求中的 prefix 参数 */ + Prefix: string; + /** 起始对象键标记,从该标记之后(不含)按照 UTF-8 字典序返回对象键条目,对应请求中的 marker 参数 */ + Marker: string; + /** 单次响应返回结果的最大条目数量,对应请求中的 max-keys 参数 */ + MaxKeys: string; + /** 编码格式,对应请求中的 encoding-type 参数,且仅当请求中指定了 encoding-type 参数才会返回该节点 */ + EncodingType?: string; /** 对象条目 */ Contents: CosObject[]; /** 从 prefix 或从头(如未指定 prefix)到首个 delimiter 之间相同的部分,定义为 Common Prefix。仅当请求中指定了 delimiter 参数才有可能返回该节点 */