@@ -646,7 +646,7 @@ declare namespace COS {
646
646
/** putBucketVersioning 接口参数 */
647
647
interface PutBucketVersioningParams extends BucketParams {
648
648
/** 存储桶版本控制开关信息 */
649
- VersioningConfiguration ,
649
+ VersioningConfiguration : VersioningConfiguration ,
650
650
}
651
651
/** putBucketVersioning 接口返回值 */
652
652
interface PutBucketVersioningResult extends GeneralResult { }
@@ -657,7 +657,7 @@ declare namespace COS {
657
657
/** getBucketVersioning 接口返回值 */
658
658
interface GetBucketVersioningResult extends GeneralResult {
659
659
/** 存储桶版本控制开关信息 */
660
- VersioningConfiguration ,
660
+ VersioningConfiguration : VersioningConfiguration ,
661
661
}
662
662
663
663
// putBucketReplication
@@ -686,7 +686,7 @@ declare namespace COS {
686
686
/** putBucketReplication 接口参数 */
687
687
interface PutBucketReplicationParams extends BucketParams {
688
688
/** 说明所有复制配置信息 */
689
- ReplicationConfiguration ,
689
+ ReplicationConfiguration : ReplicationConfiguration ,
690
690
}
691
691
/** putBucketReplication 接口返回值 */
692
692
interface PutBucketReplicationResult extends GeneralResult { }
@@ -697,7 +697,7 @@ declare namespace COS {
697
697
/** getBucketReplication 接口返回值 */
698
698
interface GetBucketReplicationResult extends GeneralResult {
699
699
/** 说明所有复制配置信息 */
700
- ReplicationConfiguration
700
+ ReplicationConfiguration : ReplicationConfiguration ,
701
701
}
702
702
703
703
// deleteBucketReplication
@@ -939,7 +939,7 @@ declare namespace COS {
939
939
/** putBucketLogging 接口参数 */
940
940
interface PutBucketLoggingParams extends BucketParams {
941
941
/** 说明日志记录配置的状态,如果无子节点信息则意为关闭日志记录 */
942
- BucketLoggingStatus ,
942
+ BucketLoggingStatus : BucketLoggingStatus ,
943
943
}
944
944
/** putBucketLogging 接口返回值 */
945
945
interface PutBucketLoggingResult extends GeneralResult { }
@@ -950,7 +950,7 @@ declare namespace COS {
950
950
/** getBucketLogging 接口返回值 */
951
951
interface GetBucketLoggingResult extends GeneralResult {
952
952
/** 说明日志记录配置的状态,如果无子节点信息则意为关闭日志记录 */
953
- BucketLoggingStatus ,
953
+ BucketLoggingStatus : BucketLoggingStatus ,
954
954
}
955
955
956
956
// putBucketInventory
@@ -1049,7 +1049,7 @@ declare namespace COS {
1049
1049
/** putBucketAccelerate 接口参数 */
1050
1050
interface PutBucketAccelerateParams extends BucketParams {
1051
1051
/** 全球加速的具体信息 */
1052
- AccelerateConfiguration ,
1052
+ AccelerateConfiguration : AccelerateConfiguration ,
1053
1053
}
1054
1054
/** putBucketAccelerate 接口返回值 */
1055
1055
interface PutBucketAccelerateResult extends GeneralResult { }
@@ -1060,7 +1060,7 @@ declare namespace COS {
1060
1060
/** getBucketAccelerate 接口返回值 */
1061
1061
interface GetBucketAccelerateResult extends GeneralResult {
1062
1062
/** 全球加速的具体信息 */
1063
- InventoryConfiguration ,
1063
+ InventoryConfiguration : AccelerateConfiguration ,
1064
1064
}
1065
1065
1066
1066
// headObject
@@ -1252,6 +1252,8 @@ declare namespace COS {
1252
1252
// optionsObject
1253
1253
/** optionsObject 接口参数 */
1254
1254
interface OptionsObjectParams extends ObjectParams {
1255
+ /** 发起 CORS 请求所在的页面域名(Origin) */
1256
+ Origin : string ,
1255
1257
/** 发起 CORS 请求所用的方法(Method) */
1256
1258
AccessControlRequestMethod : Method ,
1257
1259
/** 发起 CORS 请求时使用的 HTTP 请求头部,不区分英文大小写,可使用英文逗号(,)分隔多个头部 */
0 commit comments