tencentcloud-sdk-nodejs 4.0.801 → 4.0.802
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +275 -0
- package/SERVICE_CHANGELOG.md +347 -168
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/common/sdk_version.ts +1 -1
- package/src/services/ccc/v20200210/ccc_client.ts +134 -25
- package/src/services/ccc/v20200210/ccc_models.ts +544 -104
- package/src/services/cdb/v20170320/cdb_models.ts +1 -1
- package/src/services/cfw/v20190904/cfw_client.ts +68 -30
- package/src/services/cfw/v20190904/cfw_models.ts +266 -129
- package/src/services/cls/v20201016/cls_models.ts +29 -16
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +3 -3
- package/src/services/ess/v20201111/ess_models.ts +6 -3
- package/src/services/essbasic/v20210526/essbasic_models.ts +3 -4
- package/src/services/mna/v20210119/mna_models.ts +70 -9
- package/src/services/postgres/v20170312/postgres_models.ts +12 -0
- package/src/services/trtc/v20190722/trtc_models.ts +5 -1
- package/src/services/vod/v20180717/vod_client.ts +29 -1
- package/src/services/vod/v20180717/vod_models.ts +75 -1
- package/src/services/waf/v20180125/waf_client.ts +22 -8
- package/src/services/waf/v20180125/waf_models.ts +207 -26
- package/src/services/wedata/v20210820/wedata_client.ts +1 -0
- package/src/services/wedata/v20210820/wedata_models.ts +68 -10
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +43 -7
- package/tencentcloud/services/ccc/v20200210/ccc_client.js +63 -9
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +524 -103
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +1 -1
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +19 -7
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +27 -9
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +258 -129
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +29 -16
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +3 -3
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +6 -3
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +3 -4
- package/tencentcloud/services/mna/v20210119/mna_models.d.ts +70 -9
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +12 -0
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +5 -1
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +14 -2
- package/tencentcloud/services/vod/v20180717/vod_client.js +16 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +71 -1
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +7 -3
- package/tencentcloud/services/waf/v20180125/waf_client.js +9 -3
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +203 -26
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +67 -10
- package/test/ccc.v20200210.test.js +96 -6
- package/test/cfw.v20190904.test.js +36 -6
- package/test/vod.v20180717.test.js +20 -0
- package/test/waf.v20180125.test.js +12 -2
|
@@ -609,7 +609,8 @@ export interface GetAttackHistogramResponse {
|
|
|
609
609
|
*/
|
|
610
610
|
export interface FiltersItemNew {
|
|
611
611
|
/**
|
|
612
|
-
*
|
|
612
|
+
* 字段名; 过滤
|
|
613
|
+
子订单号过滤通过name 为:DealName; value为子订单号
|
|
613
614
|
*/
|
|
614
615
|
Name: string;
|
|
615
616
|
/**
|
|
@@ -2859,24 +2860,33 @@ export interface ModifyAntiFakeUrlStatusRequest {
|
|
|
2859
2860
|
Ids: Array<number | bigint>;
|
|
2860
2861
|
}
|
|
2861
2862
|
/**
|
|
2862
|
-
*
|
|
2863
|
+
* DescribeCCRuleList请求参数结构体
|
|
2863
2864
|
*/
|
|
2864
|
-
export interface
|
|
2865
|
+
export interface DescribeCCRuleListRequest {
|
|
2865
2866
|
/**
|
|
2866
|
-
*
|
|
2867
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2867
|
+
* 需要查询的API所属的域名
|
|
2868
2868
|
*/
|
|
2869
|
-
|
|
2869
|
+
Domain: string;
|
|
2870
2870
|
/**
|
|
2871
|
-
*
|
|
2872
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2871
|
+
* 偏移
|
|
2873
2872
|
*/
|
|
2874
|
-
|
|
2873
|
+
Offset: number;
|
|
2875
2874
|
/**
|
|
2876
|
-
*
|
|
2877
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2875
|
+
* 容量
|
|
2878
2876
|
*/
|
|
2879
|
-
|
|
2877
|
+
Limit: number;
|
|
2878
|
+
/**
|
|
2879
|
+
* 目前支持根据ts_version排序
|
|
2880
|
+
*/
|
|
2881
|
+
By: string;
|
|
2882
|
+
/**
|
|
2883
|
+
* 过滤数组,name可以是如下的值: RuleID,ParamName,Url,Action,Method,Source,Status
|
|
2884
|
+
*/
|
|
2885
|
+
Filters?: Array<FiltersItemNew>;
|
|
2886
|
+
/**
|
|
2887
|
+
* asc或者desc
|
|
2888
|
+
*/
|
|
2889
|
+
Order?: string;
|
|
2880
2890
|
}
|
|
2881
2891
|
/**
|
|
2882
2892
|
* 响应体的返回码
|
|
@@ -3073,6 +3083,15 @@ export interface GetInstanceQpsLimitResponse {
|
|
|
3073
3083
|
*/
|
|
3074
3084
|
RequestId?: string;
|
|
3075
3085
|
}
|
|
3086
|
+
/**
|
|
3087
|
+
* CreateDeals请求参数结构体
|
|
3088
|
+
*/
|
|
3089
|
+
export interface CreateDealsRequest {
|
|
3090
|
+
/**
|
|
3091
|
+
* 计费下单入参
|
|
3092
|
+
*/
|
|
3093
|
+
Goods: Array<CreateDealsGoods>;
|
|
3094
|
+
}
|
|
3076
3095
|
/**
|
|
3077
3096
|
* ModifyCustomWhiteRule返回参数结构体
|
|
3078
3097
|
*/
|
|
@@ -3222,6 +3241,113 @@ export interface DescribeDomainDetailsSaasRequest {
|
|
|
3222
3241
|
* DescribeDomainCountInfo请求参数结构体
|
|
3223
3242
|
*/
|
|
3224
3243
|
export declare type DescribeDomainCountInfoRequest = null;
|
|
3244
|
+
/**
|
|
3245
|
+
* 产品明细
|
|
3246
|
+
*/
|
|
3247
|
+
export interface CreateDealsGoodsDetail {
|
|
3248
|
+
/**
|
|
3249
|
+
* 时间间隔
|
|
3250
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3251
|
+
*/
|
|
3252
|
+
TimeSpan?: number;
|
|
3253
|
+
/**
|
|
3254
|
+
* 单位,支持购买d、m、y 即(日、月、年)
|
|
3255
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3256
|
+
*/
|
|
3257
|
+
TimeUnit?: string;
|
|
3258
|
+
/**
|
|
3259
|
+
* 子产品标签,。新购,续费必传,变配时放在oldConfig newConfig里面
|
|
3260
|
+
|
|
3261
|
+
Saas 高级版 :sp_wsm_waf_premium
|
|
3262
|
+
Saas企业版 :sp_wsm_waf_enterprise
|
|
3263
|
+
Saas旗舰版 :sp_wsm_waf_ultimate
|
|
3264
|
+
Saas 业务扩展包:sp_wsm_waf_qpsep
|
|
3265
|
+
Saas 域名扩展包:sp_wsm_waf_domain
|
|
3266
|
+
|
|
3267
|
+
高级版-CLB:sp_wsm_waf_premium_clb
|
|
3268
|
+
企业版-CLB : sp_wsm_waf_enterprise_clb
|
|
3269
|
+
旗舰版-CLB:sp_wsm_waf_ultimate_clb
|
|
3270
|
+
业务扩展包-CLB:sp_wsm_waf_qpsep_clb
|
|
3271
|
+
域名扩展包-CLB:sp_wsm_waf_domain_clb
|
|
3272
|
+
|
|
3273
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3274
|
+
*/
|
|
3275
|
+
SubProductCode?: string;
|
|
3276
|
+
/**
|
|
3277
|
+
* 业务产品申请的pid(对应一个定价公式),通过pid计费查询到定价模型
|
|
3278
|
+
高级版 :1000827
|
|
3279
|
+
企业版 :1000830
|
|
3280
|
+
旗舰版 :1000832
|
|
3281
|
+
域名包 : 1000834
|
|
3282
|
+
业务扩展包 : 1000481
|
|
3283
|
+
高级版-CLB:1001150
|
|
3284
|
+
企业版-CLB : 1001152
|
|
3285
|
+
旗舰版-CLB:1001154
|
|
3286
|
+
域名包-CLB: 1001156
|
|
3287
|
+
业务扩展包-CLB : 1001160
|
|
3288
|
+
|
|
3289
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3290
|
+
*/
|
|
3291
|
+
Pid?: number;
|
|
3292
|
+
/**
|
|
3293
|
+
* waf实例名
|
|
3294
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3295
|
+
*/
|
|
3296
|
+
InstanceName?: string;
|
|
3297
|
+
/**
|
|
3298
|
+
* 1:自动续费,0:不自动续费
|
|
3299
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3300
|
+
*/
|
|
3301
|
+
AutoRenewFlag?: number;
|
|
3302
|
+
/**
|
|
3303
|
+
* waf购买的实际地域信息
|
|
3304
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3305
|
+
*/
|
|
3306
|
+
RealRegion?: number;
|
|
3307
|
+
/**
|
|
3308
|
+
* 计费细项标签数组
|
|
3309
|
+
Saas 高级版 sv_wsm_waf_package_premium
|
|
3310
|
+
Saas 企业版 sv_wsm_waf_package_enterprise
|
|
3311
|
+
Saas 旗舰版 sv_wsm_waf_package_ultimate
|
|
3312
|
+
Saas 非中国大陆高级版 sv_wsm_waf_package_premium_intl
|
|
3313
|
+
Saas 非中国大陆企业版 sv_wsm_waf_package_enterprise_intl
|
|
3314
|
+
Saas 非中国大陆旗舰版 sv_wsm_waf_package_ultimate _intl
|
|
3315
|
+
Saas 业务扩展包 sv_wsm_waf_qps_ep
|
|
3316
|
+
Saas 域名扩展包 sv_wsm_waf_domain
|
|
3317
|
+
|
|
3318
|
+
高级版CLB sv_wsm_waf_package_premium_clb
|
|
3319
|
+
企业版CLB sv_wsm_waf_package_enterprise_clb
|
|
3320
|
+
旗舰版CLB sv_wsm_waf_package_ultimate_clb
|
|
3321
|
+
非中国大陆高级版 CLB sv_wsm_waf_package_premium_clb_intl
|
|
3322
|
+
非中国大陆企业版CLB sv_wsm_waf_package_premium_clb_intl
|
|
3323
|
+
非中国大陆旗舰版CLB sv_wsm_waf_package_ultimate_clb _intl
|
|
3324
|
+
业务扩展包CLB sv_wsm_waf_qps_ep_clb
|
|
3325
|
+
域名扩展包CLB sv_wsm_waf_domain_clb
|
|
3326
|
+
|
|
3327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3328
|
+
*/
|
|
3329
|
+
LabelTypes?: Array<string>;
|
|
3330
|
+
/**
|
|
3331
|
+
* 计费细项标签数量,一般和SvLabelType一一对应
|
|
3332
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3333
|
+
*/
|
|
3334
|
+
LabelCounts?: Array<number | bigint>;
|
|
3335
|
+
/**
|
|
3336
|
+
* 变配使用,实例到期时间
|
|
3337
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3338
|
+
*/
|
|
3339
|
+
CurDeadline?: string;
|
|
3340
|
+
/**
|
|
3341
|
+
* 对存在的实例购买bot 或api 安全
|
|
3342
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3343
|
+
*/
|
|
3344
|
+
InstanceId?: string;
|
|
3345
|
+
/**
|
|
3346
|
+
* 资源id
|
|
3347
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3348
|
+
*/
|
|
3349
|
+
ResourceId?: string;
|
|
3350
|
+
}
|
|
3225
3351
|
/**
|
|
3226
3352
|
* 当前WAF威胁情报封禁模块详情
|
|
3227
3353
|
*/
|
|
@@ -7903,6 +8029,43 @@ export interface DescribeDomainVerifyResultRequest {
|
|
|
7903
8029
|
*/
|
|
7904
8030
|
InstanceID: string;
|
|
7905
8031
|
}
|
|
8032
|
+
/**
|
|
8033
|
+
* 计费下单接口出入参Goods
|
|
8034
|
+
*/
|
|
8035
|
+
export interface CreateDealsGoods {
|
|
8036
|
+
/**
|
|
8037
|
+
* 商品数量
|
|
8038
|
+
*/
|
|
8039
|
+
GoodsNum: number;
|
|
8040
|
+
/**
|
|
8041
|
+
* 商品明细
|
|
8042
|
+
*/
|
|
8043
|
+
GoodsDetail: CreateDealsGoodsDetail;
|
|
8044
|
+
/**
|
|
8045
|
+
* 订单类型ID,用来唯一标识一个业务的一种场景(总共三种场景:新购、配置变更、续费)
|
|
8046
|
+
高级版: 102375(新购),102376(续费),102377(变配)
|
|
8047
|
+
企业版 : 102378(新购),102379(续费),102380(变配)
|
|
8048
|
+
旗舰版 : 102369(新购),102370(续费),102371(变配)
|
|
8049
|
+
域名包 : 102372(新购),102373(续费),102374(变配)
|
|
8050
|
+
业务扩展包 : 101040(新购),101041(续费),101042(变配)
|
|
8051
|
+
|
|
8052
|
+
高级版-CLB: 新购 101198 续费 101199 变配 101200
|
|
8053
|
+
企业版-CLB 101204(新购),101205(续费),101206(变配)
|
|
8054
|
+
旗舰版-CLB : 101201(新购),101202(续费),101203(变配)
|
|
8055
|
+
域名包-CLB: 101207(新购),101208(续费),101209(变配)
|
|
8056
|
+
业务扩展包-CLB: 101210(新购),101211(续费),101212(变配)
|
|
8057
|
+
|
|
8058
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8059
|
+
*/
|
|
8060
|
+
GoodsCategoryId?: number;
|
|
8061
|
+
/**
|
|
8062
|
+
* 购买waf实例区域ID
|
|
8063
|
+
1 表示购买大陆资源;
|
|
8064
|
+
9表示购买非中国大陆资源
|
|
8065
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8066
|
+
*/
|
|
8067
|
+
RegionId?: number;
|
|
8068
|
+
}
|
|
7906
8069
|
/**
|
|
7907
8070
|
* ModifySpartaProtectionMode返回参数结构体
|
|
7908
8071
|
*/
|
|
@@ -8149,33 +8312,47 @@ export interface DescribeDomainRulesResponse {
|
|
|
8149
8312
|
RequestId?: string;
|
|
8150
8313
|
}
|
|
8151
8314
|
/**
|
|
8152
|
-
*
|
|
8315
|
+
* CreateDeals返回参数结构体
|
|
8153
8316
|
*/
|
|
8154
|
-
export interface
|
|
8317
|
+
export interface CreateDealsResponse {
|
|
8155
8318
|
/**
|
|
8156
|
-
*
|
|
8319
|
+
* 计费下单响应结构体
|
|
8320
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8157
8321
|
*/
|
|
8158
|
-
|
|
8322
|
+
Data?: DealData;
|
|
8159
8323
|
/**
|
|
8160
|
-
*
|
|
8324
|
+
* 1:成功,0:失败
|
|
8161
8325
|
*/
|
|
8162
|
-
|
|
8326
|
+
Status?: number;
|
|
8163
8327
|
/**
|
|
8164
|
-
*
|
|
8328
|
+
* 返回message
|
|
8329
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8165
8330
|
*/
|
|
8166
|
-
|
|
8331
|
+
ReturnMessage?: string;
|
|
8167
8332
|
/**
|
|
8168
|
-
*
|
|
8333
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8169
8334
|
*/
|
|
8170
|
-
|
|
8335
|
+
RequestId?: string;
|
|
8336
|
+
}
|
|
8337
|
+
/**
|
|
8338
|
+
* TLS 加密套件
|
|
8339
|
+
*/
|
|
8340
|
+
export interface TLSCiphers {
|
|
8171
8341
|
/**
|
|
8172
|
-
*
|
|
8342
|
+
* TLS版本ID
|
|
8343
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8173
8344
|
*/
|
|
8174
|
-
|
|
8345
|
+
VersionId: number;
|
|
8175
8346
|
/**
|
|
8176
|
-
*
|
|
8347
|
+
* 加密套件ID
|
|
8348
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8177
8349
|
*/
|
|
8178
|
-
|
|
8350
|
+
CipherId: number;
|
|
8351
|
+
/**
|
|
8352
|
+
* 加密套件
|
|
8353
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8354
|
+
*/
|
|
8355
|
+
CipherName: string;
|
|
8179
8356
|
}
|
|
8180
8357
|
/**
|
|
8181
8358
|
* DescribeDomainVerifyResult返回参数结构体
|
|
@@ -5334,6 +5334,10 @@ export interface BatchSuspendIntegrationTasksRequest {
|
|
|
5334
5334
|
* 事件类型(START, STOP, SUSPEND, SUSPEND_WITHOUT_SP,RESUME, COMMIT, TIMESTAMP)
|
|
5335
5335
|
*/
|
|
5336
5336
|
Event?: string;
|
|
5337
|
+
/**
|
|
5338
|
+
* 本次批量操作涉及任务,用于审计
|
|
5339
|
+
*/
|
|
5340
|
+
TaskNames?: Array<string>;
|
|
5337
5341
|
}
|
|
5338
5342
|
/**
|
|
5339
5343
|
* DeleteDsFolder返回参数结构体
|
|
@@ -6271,6 +6275,10 @@ export interface BatchUpdateIntegrationTasksRequest {
|
|
|
6271
6275
|
* 责任人Id(多个责任人用小写分号隔开)
|
|
6272
6276
|
*/
|
|
6273
6277
|
InchargeIds?: string;
|
|
6278
|
+
/**
|
|
6279
|
+
* 本次批量操作涉及任务,用于审计
|
|
6280
|
+
*/
|
|
6281
|
+
TaskNames?: Array<string>;
|
|
6274
6282
|
}
|
|
6275
6283
|
/**
|
|
6276
6284
|
* CreateResourcePath请求参数结构体
|
|
@@ -6478,6 +6486,31 @@ export interface FreezeTasksResponse {
|
|
|
6478
6486
|
*/
|
|
6479
6487
|
RequestId?: string;
|
|
6480
6488
|
}
|
|
6489
|
+
/**
|
|
6490
|
+
* 批量运行集成任务配置
|
|
6491
|
+
*/
|
|
6492
|
+
export interface StartTaskInfo {
|
|
6493
|
+
/**
|
|
6494
|
+
* 批量运行任务类型,比如START,TIMESTAMP,RESTORE,RESUME等
|
|
6495
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6496
|
+
*/
|
|
6497
|
+
Event?: string;
|
|
6498
|
+
/**
|
|
6499
|
+
* 任务Id列表
|
|
6500
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6501
|
+
*/
|
|
6502
|
+
TaskIds?: Array<string>;
|
|
6503
|
+
/**
|
|
6504
|
+
* 批量运行任务配置,目前仅用与实时集成基于时间位点启动。基于时间位点启动,需要设置一个name=timestamp, value=具体时间戳的RecordField的配置
|
|
6505
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6506
|
+
*/
|
|
6507
|
+
Config?: Array<RecordField>;
|
|
6508
|
+
/**
|
|
6509
|
+
* 操作类型
|
|
6510
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6511
|
+
*/
|
|
6512
|
+
Description?: string;
|
|
6513
|
+
}
|
|
6481
6514
|
/**
|
|
6482
6515
|
* DescribeTaskReportDetailList返回参数结构体
|
|
6483
6516
|
*/
|
|
@@ -8896,6 +8929,14 @@ export interface BatchDeleteIntegrationTasksRequest {
|
|
|
8896
8929
|
* 是否删除开发态任务。默认不删除开发态,为 0 不删除 , 为 1 删除
|
|
8897
8930
|
*/
|
|
8898
8931
|
DeleteKFFlag?: number;
|
|
8932
|
+
/**
|
|
8933
|
+
* 操作名称
|
|
8934
|
+
*/
|
|
8935
|
+
Name?: string;
|
|
8936
|
+
/**
|
|
8937
|
+
* 本次批量操作涉及任务,用于审计
|
|
8938
|
+
*/
|
|
8939
|
+
TaskNames?: Array<string>;
|
|
8899
8940
|
}
|
|
8900
8941
|
/**
|
|
8901
8942
|
* KillOpsMakePlanInstances返回参数结构体
|
|
@@ -12852,15 +12893,19 @@ export interface BatchStopIntegrationTasksResponse {
|
|
|
12852
12893
|
/**
|
|
12853
12894
|
* 操作成功的任务数
|
|
12854
12895
|
*/
|
|
12855
|
-
SuccessCount
|
|
12896
|
+
SuccessCount?: number;
|
|
12856
12897
|
/**
|
|
12857
12898
|
* 操作失败的任务数
|
|
12858
12899
|
*/
|
|
12859
|
-
FailedCount
|
|
12900
|
+
FailedCount?: number;
|
|
12860
12901
|
/**
|
|
12861
12902
|
* 任务总数
|
|
12862
12903
|
*/
|
|
12863
|
-
TotalCount
|
|
12904
|
+
TotalCount?: number;
|
|
12905
|
+
/**
|
|
12906
|
+
* 本次批量操作涉及成功任务,用于审计
|
|
12907
|
+
*/
|
|
12908
|
+
TaskNames?: Array<string>;
|
|
12864
12909
|
/**
|
|
12865
12910
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12866
12911
|
*/
|
|
@@ -12959,6 +13004,10 @@ export interface BatchResumeIntegrationTasksResponse {
|
|
|
12959
13004
|
* 任务总数
|
|
12960
13005
|
*/
|
|
12961
13006
|
TotalCount?: number;
|
|
13007
|
+
/**
|
|
13008
|
+
* 本次批量操作涉及任务,用于审计
|
|
13009
|
+
*/
|
|
13010
|
+
TaskNames?: Array<string>;
|
|
12962
13011
|
/**
|
|
12963
13012
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12964
13013
|
*/
|
|
@@ -22815,10 +22864,6 @@ export interface ModifyExecStrategyResponse {
|
|
|
22815
22864
|
* BatchStartIntegrationTasks请求参数结构体
|
|
22816
22865
|
*/
|
|
22817
22866
|
export interface BatchStartIntegrationTasksRequest {
|
|
22818
|
-
/**
|
|
22819
|
-
* 任务id
|
|
22820
|
-
*/
|
|
22821
|
-
TaskIds: Array<string>;
|
|
22822
22867
|
/**
|
|
22823
22868
|
* 任务类型
|
|
22824
22869
|
*/
|
|
@@ -22827,6 +22872,14 @@ export interface BatchStartIntegrationTasksRequest {
|
|
|
22827
22872
|
* 项目id
|
|
22828
22873
|
*/
|
|
22829
22874
|
ProjectId: string;
|
|
22875
|
+
/**
|
|
22876
|
+
* 任务id
|
|
22877
|
+
*/
|
|
22878
|
+
TaskIds?: Array<string>;
|
|
22879
|
+
/**
|
|
22880
|
+
* 批量运行集成任务,目前仅实时集成用到了这个参数
|
|
22881
|
+
*/
|
|
22882
|
+
StartTaskInfoSet?: Array<StartTaskInfo>;
|
|
22830
22883
|
}
|
|
22831
22884
|
/**
|
|
22832
22885
|
* DescribeDatasource返回参数结构体
|
|
@@ -23941,15 +23994,19 @@ export interface BatchStartIntegrationTasksResponse {
|
|
|
23941
23994
|
/**
|
|
23942
23995
|
* 操作成功的任务数
|
|
23943
23996
|
*/
|
|
23944
|
-
SuccessCount
|
|
23997
|
+
SuccessCount?: number;
|
|
23945
23998
|
/**
|
|
23946
23999
|
* 操作失败的任务数
|
|
23947
24000
|
*/
|
|
23948
|
-
FailedCount
|
|
24001
|
+
FailedCount?: number;
|
|
23949
24002
|
/**
|
|
23950
24003
|
* 任务总数
|
|
23951
24004
|
*/
|
|
23952
|
-
TotalCount
|
|
24005
|
+
TotalCount?: number;
|
|
24006
|
+
/**
|
|
24007
|
+
* 本次批量操作成功任务id,用于审计
|
|
24008
|
+
*/
|
|
24009
|
+
TaskNames?: Array<string>;
|
|
23953
24010
|
/**
|
|
23954
24011
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
23955
24012
|
*/
|
|
@@ -58,9 +58,9 @@ it("ccc.v20200210.DescribeStaffInfoList", async function () {
|
|
|
58
58
|
}
|
|
59
59
|
})
|
|
60
60
|
|
|
61
|
-
it("ccc.v20200210.
|
|
61
|
+
it("ccc.v20200210.DisableCCCPhoneNumber", async function () {
|
|
62
62
|
try {
|
|
63
|
-
const data = await client.
|
|
63
|
+
const data = await client.DisableCCCPhoneNumber({})
|
|
64
64
|
expect(data).to.be.ok
|
|
65
65
|
} catch(error) {
|
|
66
66
|
expect(error.requestId).to.be.ok
|
|
@@ -188,6 +188,16 @@ it("ccc.v20200210.DescribeCarrierPrivilegeNumberApplicants", async function () {
|
|
|
188
188
|
}
|
|
189
189
|
})
|
|
190
190
|
|
|
191
|
+
it("ccc.v20200210.DescribeTelSession", async function () {
|
|
192
|
+
try {
|
|
193
|
+
const data = await client.DescribeTelSession({})
|
|
194
|
+
expect(data).to.be.ok
|
|
195
|
+
} catch(error) {
|
|
196
|
+
expect(error.requestId).to.be.ok
|
|
197
|
+
expect(error.code).to.be.ok
|
|
198
|
+
}
|
|
199
|
+
})
|
|
200
|
+
|
|
191
201
|
it("ccc.v20200210.CreateCallOutSession", async function () {
|
|
192
202
|
try {
|
|
193
203
|
const data = await client.CreateCallOutSession({})
|
|
@@ -198,9 +208,9 @@ it("ccc.v20200210.CreateCallOutSession", async function () {
|
|
|
198
208
|
}
|
|
199
209
|
})
|
|
200
210
|
|
|
201
|
-
it("ccc.v20200210.
|
|
211
|
+
it("ccc.v20200210.DescribePredictiveDialingCampaigns", async function () {
|
|
202
212
|
try {
|
|
203
|
-
const data = await client.
|
|
213
|
+
const data = await client.DescribePredictiveDialingCampaigns({})
|
|
204
214
|
expect(data).to.be.ok
|
|
205
215
|
} catch(error) {
|
|
206
216
|
expect(error.requestId).to.be.ok
|
|
@@ -218,6 +228,16 @@ it("ccc.v20200210.DescribeAutoCalloutTask", async function () {
|
|
|
218
228
|
}
|
|
219
229
|
})
|
|
220
230
|
|
|
231
|
+
it("ccc.v20200210.DescribePredictiveDialingSessions", async function () {
|
|
232
|
+
try {
|
|
233
|
+
const data = await client.DescribePredictiveDialingSessions({})
|
|
234
|
+
expect(data).to.be.ok
|
|
235
|
+
} catch(error) {
|
|
236
|
+
expect(error.requestId).to.be.ok
|
|
237
|
+
expect(error.code).to.be.ok
|
|
238
|
+
}
|
|
239
|
+
})
|
|
240
|
+
|
|
221
241
|
it("ccc.v20200210.DescribeTelCdr", async function () {
|
|
222
242
|
try {
|
|
223
243
|
const data = await client.DescribeTelCdr({})
|
|
@@ -248,6 +268,16 @@ it("ccc.v20200210.StopAutoCalloutTask", async function () {
|
|
|
248
268
|
}
|
|
249
269
|
})
|
|
250
270
|
|
|
271
|
+
it("ccc.v20200210.CreatePredictiveDialingCampaign", async function () {
|
|
272
|
+
try {
|
|
273
|
+
const data = await client.CreatePredictiveDialingCampaign({})
|
|
274
|
+
expect(data).to.be.ok
|
|
275
|
+
} catch(error) {
|
|
276
|
+
expect(error.requestId).to.be.ok
|
|
277
|
+
expect(error.code).to.be.ok
|
|
278
|
+
}
|
|
279
|
+
})
|
|
280
|
+
|
|
251
281
|
it("ccc.v20200210.CreateCarrierPrivilegeNumberApplicant", async function () {
|
|
252
282
|
try {
|
|
253
283
|
const data = await client.CreateCarrierPrivilegeNumberApplicant({})
|
|
@@ -278,6 +308,16 @@ it("ccc.v20200210.DescribeCCCBuyInfoList", async function () {
|
|
|
278
308
|
}
|
|
279
309
|
})
|
|
280
310
|
|
|
311
|
+
it("ccc.v20200210.ResumePredictiveDialingCampaign", async function () {
|
|
312
|
+
try {
|
|
313
|
+
const data = await client.ResumePredictiveDialingCampaign({})
|
|
314
|
+
expect(data).to.be.ok
|
|
315
|
+
} catch(error) {
|
|
316
|
+
expect(error.requestId).to.be.ok
|
|
317
|
+
expect(error.code).to.be.ok
|
|
318
|
+
}
|
|
319
|
+
})
|
|
320
|
+
|
|
281
321
|
it("ccc.v20200210.CreateCCCSkillGroup", async function () {
|
|
282
322
|
try {
|
|
283
323
|
const data = await client.CreateCCCSkillGroup({})
|
|
@@ -298,9 +338,9 @@ it("ccc.v20200210.UnbindStaffSkillGroupList", async function () {
|
|
|
298
338
|
}
|
|
299
339
|
})
|
|
300
340
|
|
|
301
|
-
it("ccc.v20200210.
|
|
341
|
+
it("ccc.v20200210.DescribePredictiveDialingCampaign", async function () {
|
|
302
342
|
try {
|
|
303
|
-
const data = await client.
|
|
343
|
+
const data = await client.DescribePredictiveDialingCampaign({})
|
|
304
344
|
expect(data).to.be.ok
|
|
305
345
|
} catch(error) {
|
|
306
346
|
expect(error.requestId).to.be.ok
|
|
@@ -358,6 +398,26 @@ it("ccc.v20200210.CreateUserSig", async function () {
|
|
|
358
398
|
}
|
|
359
399
|
})
|
|
360
400
|
|
|
401
|
+
it("ccc.v20200210.HangUpCall", async function () {
|
|
402
|
+
try {
|
|
403
|
+
const data = await client.HangUpCall({})
|
|
404
|
+
expect(data).to.be.ok
|
|
405
|
+
} catch(error) {
|
|
406
|
+
expect(error.requestId).to.be.ok
|
|
407
|
+
expect(error.code).to.be.ok
|
|
408
|
+
}
|
|
409
|
+
})
|
|
410
|
+
|
|
411
|
+
it("ccc.v20200210.PausePredictiveDialingCampaign", async function () {
|
|
412
|
+
try {
|
|
413
|
+
const data = await client.PausePredictiveDialingCampaign({})
|
|
414
|
+
expect(data).to.be.ok
|
|
415
|
+
} catch(error) {
|
|
416
|
+
expect(error.requestId).to.be.ok
|
|
417
|
+
expect(error.code).to.be.ok
|
|
418
|
+
}
|
|
419
|
+
})
|
|
420
|
+
|
|
361
421
|
it("ccc.v20200210.CreateAdminURL", async function () {
|
|
362
422
|
try {
|
|
363
423
|
const data = await client.CreateAdminURL({})
|
|
@@ -428,4 +488,34 @@ it("ccc.v20200210.DescribeNumbers", async function () {
|
|
|
428
488
|
}
|
|
429
489
|
})
|
|
430
490
|
|
|
491
|
+
it("ccc.v20200210.AbortPredictiveDialingCampaign", async function () {
|
|
492
|
+
try {
|
|
493
|
+
const data = await client.AbortPredictiveDialingCampaign({})
|
|
494
|
+
expect(data).to.be.ok
|
|
495
|
+
} catch(error) {
|
|
496
|
+
expect(error.requestId).to.be.ok
|
|
497
|
+
expect(error.code).to.be.ok
|
|
498
|
+
}
|
|
499
|
+
})
|
|
500
|
+
|
|
501
|
+
it("ccc.v20200210.DeletePredictiveDialingCampaign", async function () {
|
|
502
|
+
try {
|
|
503
|
+
const data = await client.DeletePredictiveDialingCampaign({})
|
|
504
|
+
expect(data).to.be.ok
|
|
505
|
+
} catch(error) {
|
|
506
|
+
expect(error.requestId).to.be.ok
|
|
507
|
+
expect(error.code).to.be.ok
|
|
508
|
+
}
|
|
509
|
+
})
|
|
510
|
+
|
|
511
|
+
it("ccc.v20200210.UpdatePredictiveDialingCampaign", async function () {
|
|
512
|
+
try {
|
|
513
|
+
const data = await client.UpdatePredictiveDialingCampaign({})
|
|
514
|
+
expect(data).to.be.ok
|
|
515
|
+
} catch(error) {
|
|
516
|
+
expect(error.requestId).to.be.ok
|
|
517
|
+
expect(error.code).to.be.ok
|
|
518
|
+
}
|
|
519
|
+
})
|
|
520
|
+
|
|
431
521
|
})
|
|
@@ -28,9 +28,9 @@ it("cfw.v20190904.RemoveVpcAcRule", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
-
it("cfw.v20190904.
|
|
31
|
+
it("cfw.v20190904.DeleteBlockIgnoreRuleNew", async function () {
|
|
32
32
|
try {
|
|
33
|
-
const data = await client.
|
|
33
|
+
const data = await client.DeleteBlockIgnoreRuleNew({})
|
|
34
34
|
expect(data).to.be.ok
|
|
35
35
|
} catch(error) {
|
|
36
36
|
expect(error.requestId).to.be.ok
|
|
@@ -58,6 +58,16 @@ it("cfw.v20190904.ModifyEWRuleStatus", async function () {
|
|
|
58
58
|
}
|
|
59
59
|
})
|
|
60
60
|
|
|
61
|
+
it("cfw.v20190904.StopSecurityGroupRuleDispatch", async function () {
|
|
62
|
+
try {
|
|
63
|
+
const data = await client.StopSecurityGroupRuleDispatch({})
|
|
64
|
+
expect(data).to.be.ok
|
|
65
|
+
} catch(error) {
|
|
66
|
+
expect(error.requestId).to.be.ok
|
|
67
|
+
expect(error.code).to.be.ok
|
|
68
|
+
}
|
|
69
|
+
})
|
|
70
|
+
|
|
61
71
|
it("cfw.v20190904.ModifyResourceGroup", async function () {
|
|
62
72
|
try {
|
|
63
73
|
const data = await client.ModifyResourceGroup({})
|
|
@@ -238,6 +248,16 @@ it("cfw.v20190904.CreateBlockIgnoreRuleList", async function () {
|
|
|
238
248
|
}
|
|
239
249
|
})
|
|
240
250
|
|
|
251
|
+
it("cfw.v20190904.ModifyBlockIgnoreRuleNew", async function () {
|
|
252
|
+
try {
|
|
253
|
+
const data = await client.ModifyBlockIgnoreRuleNew({})
|
|
254
|
+
expect(data).to.be.ok
|
|
255
|
+
} catch(error) {
|
|
256
|
+
expect(error.requestId).to.be.ok
|
|
257
|
+
expect(error.code).to.be.ok
|
|
258
|
+
}
|
|
259
|
+
})
|
|
260
|
+
|
|
241
261
|
it("cfw.v20190904.ModifyEdgeIpSwitch", async function () {
|
|
242
262
|
try {
|
|
243
263
|
const data = await client.ModifyEdgeIpSwitch({})
|
|
@@ -428,6 +448,16 @@ it("cfw.v20190904.DeleteIdsWhiteRule", async function () {
|
|
|
428
448
|
}
|
|
429
449
|
})
|
|
430
450
|
|
|
451
|
+
it("cfw.v20190904.CreateBlockIgnoreRuleNew", async function () {
|
|
452
|
+
try {
|
|
453
|
+
const data = await client.CreateBlockIgnoreRuleNew({})
|
|
454
|
+
expect(data).to.be.ok
|
|
455
|
+
} catch(error) {
|
|
456
|
+
expect(error.requestId).to.be.ok
|
|
457
|
+
expect(error.code).to.be.ok
|
|
458
|
+
}
|
|
459
|
+
})
|
|
460
|
+
|
|
431
461
|
it("cfw.v20190904.DescribeSourceAsset", async function () {
|
|
432
462
|
try {
|
|
433
463
|
const data = await client.DescribeSourceAsset({})
|
|
@@ -928,9 +958,9 @@ it("cfw.v20190904.CreateAcRules", async function () {
|
|
|
928
958
|
}
|
|
929
959
|
})
|
|
930
960
|
|
|
931
|
-
it("cfw.v20190904.
|
|
961
|
+
it("cfw.v20190904.ModifyEnterpriseSecurityDispatchStatus", async function () {
|
|
932
962
|
try {
|
|
933
|
-
const data = await client.
|
|
963
|
+
const data = await client.ModifyEnterpriseSecurityDispatchStatus({})
|
|
934
964
|
expect(data).to.be.ok
|
|
935
965
|
} catch(error) {
|
|
936
966
|
expect(error.requestId).to.be.ok
|
|
@@ -1058,9 +1088,9 @@ it("cfw.v20190904.DescribeFwEdgeIps", async function () {
|
|
|
1058
1088
|
}
|
|
1059
1089
|
})
|
|
1060
1090
|
|
|
1061
|
-
it("cfw.v20190904.
|
|
1091
|
+
it("cfw.v20190904.ModifyNatFwSwitch", async function () {
|
|
1062
1092
|
try {
|
|
1063
|
-
const data = await client.
|
|
1093
|
+
const data = await client.ModifyNatFwSwitch({})
|
|
1064
1094
|
expect(data).to.be.ok
|
|
1065
1095
|
} catch(error) {
|
|
1066
1096
|
expect(error.requestId).to.be.ok
|