tencentcloud-sdk-nodejs-waf 4.0.687 → 4.0.689

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.
@@ -169,6 +169,12 @@ class Client extends TencentCloudCommon.AbstractClient {
169
169
  async DescribeIpHitItems(req, cb) {
170
170
  return this.request("DescribeIpHitItems", req, cb);
171
171
  }
172
+ /**
173
+ * 获取域名的规则白名单
174
+ */
175
+ async DescribeDomainWhiteRules(req, cb) {
176
+ return this.request("DescribeDomainWhiteRules", req, cb);
177
+ }
172
178
  /**
173
179
  * 信息防泄漏删除规则
174
180
  */
@@ -218,18 +224,18 @@ class Client extends TencentCloudCommon.AbstractClient {
218
224
  async ModifyWafAutoDenyStatus(req, cb) {
219
225
  return this.request("ModifyWafAutoDenyStatus", req, cb);
220
226
  }
221
- /**
222
- * 信息防泄漏切换规则开关
223
- */
224
- async ModifyAntiInfoLeakRuleStatus(req, cb) {
225
- return this.request("ModifyAntiInfoLeakRuleStatus", req, cb);
226
- }
227
227
  /**
228
228
  * 本接口用于修改访问日志保存期限及大字段是否存储
229
229
  */
230
230
  async ModifyAccessPeriod(req, cb) {
231
231
  return this.request("ModifyAccessPeriod", req, cb);
232
232
  }
233
+ /**
234
+ * 修改域名列表的访问日志开关
235
+ */
236
+ async ModifyDomainsCLSStatus(req, cb) {
237
+ return this.request("ModifyDomainsCLSStatus", req, cb);
238
+ }
233
239
  /**
234
240
  * 切换防篡改开关
235
241
  */
@@ -481,16 +487,16 @@ class Client extends TencentCloudCommon.AbstractClient {
481
487
  return this.request("DeleteSession", req, cb);
482
488
  }
483
489
  /**
484
- * 获取域名的规则白名单
490
+ * 计费资源购买、续费下单接口
485
491
  */
486
- async DescribeDomainWhiteRules(req, cb) {
487
- return this.request("DescribeDomainWhiteRules", req, cb);
492
+ async GenerateDealsAndPayNew(req, cb) {
493
+ return this.request("GenerateDealsAndPayNew", req, cb);
488
494
  }
489
495
  /**
490
- * 修改域名列表的访问日志开关
496
+ * 信息防泄漏切换规则开关
491
497
  */
492
- async ModifyDomainsCLSStatus(req, cb) {
493
- return this.request("ModifyDomainsCLSStatus", req, cb);
498
+ async ModifyAntiInfoLeakRuleStatus(req, cb) {
499
+ return this.request("ModifyAntiInfoLeakRuleStatus", req, cb);
494
500
  }
495
501
  /**
496
502
  * 刷新接入检查的结果,后台会生成接入检查任务
@@ -528,6 +534,12 @@ class Client extends TencentCloudCommon.AbstractClient {
528
534
  async DescribeHostLimit(req, cb) {
529
535
  return this.request("DescribeHostLimit", req, cb);
530
536
  }
537
+ /**
538
+ * 获取套餐实例的弹性qps上限
539
+ */
540
+ async GetInstanceQpsLimit(req, cb) {
541
+ return this.request("GetInstanceQpsLimit", req, cb);
542
+ }
531
543
  /**
532
544
  * 本接口用于删除访问日志导出
533
545
  */
@@ -597,21 +597,33 @@ export interface CCRuleData {
597
597
  TotalCount: number;
598
598
  }
599
599
  /**
600
- * DescribeInstances返回参数结构体
600
+ * DescribeCustomRuleList请求参数结构体
601
601
  */
602
- export interface DescribeInstancesResponse {
602
+ export interface DescribeCustomRuleListRequest {
603
603
  /**
604
- * 总数
604
+ * 域名
605
605
  */
606
- Total?: number;
606
+ Domain: string;
607
607
  /**
608
- * instance列表
608
+ * 偏移
609
609
  */
610
- Instances?: Array<InstanceInfo>;
610
+ Offset: number;
611
611
  /**
612
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
612
+ * 容量
613
613
  */
614
- RequestId?: string;
614
+ Limit: number;
615
+ /**
616
+ * 过滤数组,name可以是如下的值: RuleID,RuleName,Match
617
+ */
618
+ Filters?: Array<FiltersItemNew>;
619
+ /**
620
+ * asc或者desc
621
+ */
622
+ Order?: string;
623
+ /**
624
+ * exp_ts或者mod_ts
625
+ */
626
+ By?: string;
615
627
  }
616
628
  /**
617
629
  * ModifyDomainWhiteRule请求参数结构体
@@ -954,6 +966,15 @@ export interface DescribeWafAutoDenyRulesRequest {
954
966
  */
955
967
  Domain: string;
956
968
  }
969
+ /**
970
+ * GenerateDealsAndPayNew请求参数结构体
971
+ */
972
+ export interface GenerateDealsAndPayNewRequest {
973
+ /**
974
+ * 计费下单入参
975
+ */
976
+ Goods: Array<GoodNews>;
977
+ }
957
978
  /**
958
979
  * RefreshAccessCheckResult请求参数结构体
959
980
  */
@@ -1231,6 +1252,23 @@ export interface DeleteAccessExportResponse {
1231
1252
  */
1232
1253
  RequestId?: string;
1233
1254
  }
1255
+ /**
1256
+ * ModifyProtectionStatus请求参数结构体
1257
+ */
1258
+ export interface ModifyProtectionStatusRequest {
1259
+ /**
1260
+ * 域名
1261
+ */
1262
+ Domain: string;
1263
+ /**
1264
+ * 状态
1265
+ */
1266
+ Status: number;
1267
+ /**
1268
+ * WAF的版本,clb-waf代表负载均衡WAF、sparta-waf代表SaaS WAF,默认是sparta-waf。
1269
+ */
1270
+ Edition?: string;
1271
+ }
1234
1272
  /**
1235
1273
  * DescribeAccessExports请求参数结构体
1236
1274
  */
@@ -1581,6 +1619,19 @@ export interface GetAttackHistogramResponse {
1581
1619
  */
1582
1620
  RequestId?: string;
1583
1621
  }
1622
+ /**
1623
+ * GetInstanceQpsLimit请求参数结构体
1624
+ */
1625
+ export interface GetInstanceQpsLimitRequest {
1626
+ /**
1627
+ * 套餐实例id
1628
+ */
1629
+ InstanceId: string;
1630
+ /**
1631
+ * 套餐类型
1632
+ */
1633
+ Type?: string;
1634
+ }
1584
1635
  /**
1585
1636
  * 过滤数组
1586
1637
  */
@@ -1677,6 +1728,36 @@ export interface SearchAccessLogResponse {
1677
1728
  */
1678
1729
  RequestId?: string;
1679
1730
  }
1731
+ /**
1732
+ * 获取弹性qps的默认相关值
1733
+ */
1734
+ export interface QpsData {
1735
+ /**
1736
+ * 弹性qps默认值
1737
+ 注意:此字段可能返回 null,表示取不到有效值。
1738
+ */
1739
+ ElasticBillingDefault?: number;
1740
+ /**
1741
+ * 弹性qps最小值
1742
+ 注意:此字段可能返回 null,表示取不到有效值。
1743
+ */
1744
+ ElasticBillingMin?: number;
1745
+ /**
1746
+ * 弹性qps最大值
1747
+ 注意:此字段可能返回 null,表示取不到有效值。
1748
+ */
1749
+ ElasticBillingMax?: number;
1750
+ /**
1751
+ * 业务扩展包最大qps
1752
+ 注意:此字段可能返回 null,表示取不到有效值。
1753
+ */
1754
+ QPSExtendMax?: number;
1755
+ /**
1756
+ * 海外业务扩展包最大qps
1757
+ 注意:此字段可能返回 null,表示取不到有效值。
1758
+ */
1759
+ QPSExtendIntlMax?: number;
1760
+ }
1680
1761
  /**
1681
1762
  * DescribeAntiInfoLeakageRules请求参数结构体
1682
1763
  */
@@ -1805,6 +1886,38 @@ export interface DeleteSpartaProtectionRequest {
1805
1886
  * saas域名详情
1806
1887
  */
1807
1888
  export interface DomainsPartInfo {
1889
+ /**
1890
+ * 域名
1891
+ */
1892
+ Domain?: string;
1893
+ /**
1894
+ * 域名id
1895
+ */
1896
+ DomainId?: string;
1897
+ /**
1898
+ * 实例id
1899
+ */
1900
+ InstanceId?: string;
1901
+ /**
1902
+ * 类型
1903
+ */
1904
+ Edition?: string;
1905
+ /**
1906
+ * 实例名
1907
+ */
1908
+ InstanceName?: string;
1909
+ /**
1910
+ * 证书
1911
+ */
1912
+ Cert?: string;
1913
+ /**
1914
+ * 创建时间
1915
+ */
1916
+ CreateTime?: string;
1917
+ /**
1918
+ * AI防御模式
1919
+ */
1920
+ Engine?: number;
1808
1921
  /**
1809
1922
  * 是否开启httpRewrite
1810
1923
  */
@@ -2287,7 +2400,7 @@ export interface AddSpartaProtectionRequest {
2287
2400
  */
2288
2401
  Edition?: string;
2289
2402
  /**
2290
- * 是否开启长连接,仅IP回源时可以用填次参数,域名回源时这个参数无效
2403
+ * 是否开启长连接,0 短连接,1 长连接
2291
2404
  */
2292
2405
  IsKeepAlive?: string;
2293
2406
  /**
@@ -2411,6 +2524,19 @@ export interface PeakPointsItem {
2411
2524
  */
2412
2525
  UpstreamRedirect: number;
2413
2526
  }
2527
+ /**
2528
+ * GetInstanceQpsLimit返回参数结构体
2529
+ */
2530
+ export interface GetInstanceQpsLimitResponse {
2531
+ /**
2532
+ * 弹性qps相关值集合
2533
+ */
2534
+ QpsData?: QpsData;
2535
+ /**
2536
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2537
+ */
2538
+ RequestId?: string;
2539
+ }
2414
2540
  /**
2415
2541
  * ip封堵状态数据
2416
2542
  */
@@ -2486,6 +2612,19 @@ export interface ModifyCustomWhiteRuleResponse {
2486
2612
  */
2487
2613
  RequestId?: string;
2488
2614
  }
2615
+ /**
2616
+ * ModifyCustomWhiteRuleStatus返回参数结构体
2617
+ */
2618
+ export interface ModifyCustomWhiteRuleStatusResponse {
2619
+ /**
2620
+ * 操作的状态码,如果所有的资源操作成功则返回的是成功的状态码,如果有资源操作失败则需要解析Message的内容来查看哪个资源失败
2621
+ */
2622
+ Success: ResponseCode;
2623
+ /**
2624
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2625
+ */
2626
+ RequestId?: string;
2627
+ }
2489
2628
  /**
2490
2629
  * DescribeSession请求参数结构体
2491
2630
  */
@@ -3001,33 +3140,17 @@ export interface ModifyAntiInfoLeakRulesRequest {
3001
3140
  Strategies: Array<StrategyForAntiInfoLeak>;
3002
3141
  }
3003
3142
  /**
3004
- * DescribeCustomRuleList请求参数结构体
3143
+ * 计费下单响应实体
3005
3144
  */
3006
- export interface DescribeCustomRuleListRequest {
3007
- /**
3008
- * 域名
3009
- */
3010
- Domain: string;
3011
- /**
3012
- * 偏移
3013
- */
3014
- Offset: number;
3015
- /**
3016
- * 容量
3017
- */
3018
- Limit: number;
3145
+ export interface DealData {
3019
3146
  /**
3020
- * 过滤数组,name可以是如下的值: RuleID,RuleName,Match
3147
+ * 订单号列表,元素个数与请求包的goods数组的元素个数一致,商品详情与订单按顺序对应
3021
3148
  */
3022
- Filters?: Array<FiltersItemNew>;
3149
+ DealNames?: Array<string>;
3023
3150
  /**
3024
- * asc或者desc
3151
+ * 大订单号,一个大订单号下可以有多个子订单,说明是同一次下单[{},{}]
3025
3152
  */
3026
- Order?: string;
3027
- /**
3028
- * exp_ts或者mod_ts
3029
- */
3030
- By?: string;
3153
+ BigDealId?: string;
3031
3154
  }
3032
3155
  /**
3033
3156
  * DescribeHostLimit返回参数结构体
@@ -3114,15 +3237,21 @@ export interface ModifyCustomRuleStatusResponse {
3114
3237
  */
3115
3238
  export interface StrategyForAntiInfoLeak {
3116
3239
  /**
3117
- * 匹配字段
3240
+ * 匹配条件,returncode(响应码)、keywords(关键字)、information(敏感信息)
3118
3241
  */
3119
3242
  Field: string;
3120
3243
  /**
3121
- * 逻辑符号
3244
+ * 逻辑符号,固定取值为contains
3122
3245
  */
3123
3246
  CompareFunc: string;
3124
3247
  /**
3125
- * 匹配内容
3248
+ * 匹配内容。
3249
+ 以下三个对应Field为information时可取的匹配内容:
3250
+ idcard(身份证)、phone(手机号)、bankcard(银行卡)。
3251
+ 以下为对应Field为returncode时可取的匹配内容:
3252
+ 400(状态码400)、403(状态码403)、404(状态码404)、4xx(其它4xx状态码)、500(状态码500)、501(状态码501)、502(状态码502)、504(状态码504)、5xx(其它5xx状态码)。
3253
+ 当对应Field为keywords时由用户自己输入匹配内容。
3254
+
3126
3255
  */
3127
3256
  Content: string;
3128
3257
  }
@@ -3258,13 +3387,28 @@ export interface CreateAccessExportResponse {
3258
3387
  RequestId?: string;
3259
3388
  }
3260
3389
  /**
3261
- * ModifyCustomWhiteRuleStatus返回参数结构体
3390
+ * GenerateDealsAndPayNew返回参数结构体
3262
3391
  */
3263
- export interface ModifyCustomWhiteRuleStatusResponse {
3392
+ export interface GenerateDealsAndPayNewResponse {
3264
3393
  /**
3265
- * 操作的状态码,如果所有的资源操作成功则返回的是成功的状态码,如果有资源操作失败则需要解析Message的内容来查看哪个资源失败
3394
+ * 计费下单响应结构体
3395
+ 注意:此字段可能返回 null,表示取不到有效值。
3266
3396
  */
3267
- Success: ResponseCode;
3397
+ Data?: DealData;
3398
+ /**
3399
+ * 1:成功,0:失败
3400
+ */
3401
+ Status?: number;
3402
+ /**
3403
+ * 返回message
3404
+ 注意:此字段可能返回 null,表示取不到有效值。
3405
+ */
3406
+ ReturnMessage?: string;
3407
+ /**
3408
+ * 购买的实例ID
3409
+ 注意:此字段可能返回 null,表示取不到有效值。
3410
+ */
3411
+ InstanceId?: string;
3268
3412
  /**
3269
3413
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3270
3414
  */
@@ -3620,21 +3764,78 @@ export interface HostStatus {
3620
3764
  InstanceID?: string;
3621
3765
  }
3622
3766
  /**
3623
- * ModifyProtectionStatus请求参数结构体
3767
+ * 产品明细
3624
3768
  */
3625
- export interface ModifyProtectionStatusRequest {
3769
+ export interface GoodsDetailNew {
3626
3770
  /**
3627
- * 域名
3771
+ * 时间间隔
3772
+ 注意:此字段可能返回 null,表示取不到有效值。
3628
3773
  */
3629
- Domain: string;
3774
+ TimeSpan?: number;
3630
3775
  /**
3631
- * 状态
3776
+ * 单位,支持m、y、d
3777
+ 注意:此字段可能返回 null,表示取不到有效值。
3632
3778
  */
3633
- Status: number;
3779
+ TimeUnit?: string;
3634
3780
  /**
3635
- * WAF的版本,clb-waf代表负载均衡WAF、sparta-waf代表SaaS WAF,默认是sparta-waf。
3781
+ * 子产品标签,。新购,续费必传,变配时放在oldConfig newConfig里面
3782
+ 高级版 :sp_wsm_waf_premium
3783
+ 企业版 :sp_wsm_waf_enterprise
3784
+ 旗舰版 :sp_wsm_waf_ultimate
3785
+ 高级版-CLB:sp_wsm_waf_premium_clb
3786
+ 企业版-CLB : sp_wsm_waf_enterprise_clb
3787
+ 旗舰版-CLB:sp_wsm_waf_ultimate_clb
3788
+
3789
+ 注意:此字段可能返回 null,表示取不到有效值。
3636
3790
  */
3637
- Edition?: string;
3791
+ SubProductCode?: string;
3792
+ /**
3793
+ * 业务产品申请的pid(对应一个定价公式),通过pid计费查询到定价模型
3794
+ 高级版 :1000827
3795
+ 企业版 :1000830
3796
+ 旗舰版 :1000832
3797
+ 高级版-CLB:1001150
3798
+ 企业版-CLB : 1001152
3799
+ 旗舰版-CLB:1001154
3800
+
3801
+ 注意:此字段可能返回 null,表示取不到有效值。
3802
+ */
3803
+ Pid?: number;
3804
+ /**
3805
+ * waf实例名
3806
+ 注意:此字段可能返回 null,表示取不到有效值。
3807
+ */
3808
+ InstanceName?: string;
3809
+ /**
3810
+ * 1:自动续费,0:不自动续费
3811
+ 注意:此字段可能返回 null,表示取不到有效值。
3812
+ */
3813
+ AutoRenewFlag?: number;
3814
+ /**
3815
+ * waf购买的实际地域信息
3816
+ 注意:此字段可能返回 null,表示取不到有效值。
3817
+ */
3818
+ RealRegion?: number;
3819
+ /**
3820
+ * 计费细项标签数组
3821
+ 注意:此字段可能返回 null,表示取不到有效值。
3822
+ */
3823
+ LabelTypes?: Array<string>;
3824
+ /**
3825
+ * 计费细项标签数量,一般和SvLabelType一一对应
3826
+ 注意:此字段可能返回 null,表示取不到有效值。
3827
+ */
3828
+ LabelCounts?: Array<number | bigint>;
3829
+ /**
3830
+ * 变配使用,实例到期时间
3831
+ 注意:此字段可能返回 null,表示取不到有效值。
3832
+ */
3833
+ CurDeadline?: string;
3834
+ /**
3835
+ * 对存在的实例购买bot 或api 安全
3836
+ 注意:此字段可能返回 null,表示取不到有效值。
3837
+ */
3838
+ InstanceId?: string;
3638
3839
  }
3639
3840
  /**
3640
3841
  * ModifyAntiFakeUrl返回参数结构体
@@ -4348,6 +4549,23 @@ export interface DeleteCustomRuleRequest {
4348
4549
  */
4349
4550
  Edition?: string;
4350
4551
  }
4552
+ /**
4553
+ * DescribeInstances返回参数结构体
4554
+ */
4555
+ export interface DescribeInstancesResponse {
4556
+ /**
4557
+ * 总数
4558
+ */
4559
+ Total?: number;
4560
+ /**
4561
+ * instance列表
4562
+ */
4563
+ Instances?: Array<InstanceInfo>;
4564
+ /**
4565
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4566
+ */
4567
+ RequestId?: string;
4568
+ }
4351
4569
  /**
4352
4570
  * DescribeCCRule返回参数结构体
4353
4571
  */
@@ -4759,38 +4977,38 @@ export interface SearchAttackLogResponse {
4759
4977
  export interface Strategy {
4760
4978
  /**
4761
4979
  * 匹配字段
4762
-
4763
- 有以下枚举值:
4764
- IP-来源IP IPV6-来源IPv6 Referer-Referer URL-请求路径
4765
- UserAgent-UserAgent HTTP_METHOD-HTTP请求方法 QUERY_STRING-请求字符串 GET-GET参数值 GET_PARAMS_NAMES-GET参数名 POST-POST参数值 GET_POST_NAMES-POST参数名 POST_BODY-完整BODY COOKIE-Cookie GET_COOKIES_NAMES-Cookie参数名 ARGS_COOKIE-Cookie参数值 GET_HEADERS_NAMES-Header参数名 ARGS_HEADER-Header参数值
4980
+
4981
+ 匹配字段不同,相应的匹配参数、逻辑符号、匹配内容有所不同 具体如下所示:
4982
+ <table><thead><tr><th>匹配字段</th><th>匹配参数</th><th>逻辑符号</th><th>匹配内容</th></tr></thead><tbody><tr><td>IP(来源IP)</td><td>不支持参数</td><td>ipmatch(匹配)<br/>ipnmatch(不匹配)</td><td>多个IP以英文逗号隔开,最多20个</td></tr><tr><td>IPV6(来源IPv6)</td><td>不支持参数</td><td>ipmatch(匹配)<br/>ipnmatch(不匹配)</td><td>支持单个IPV6地址</td></tr><tr><td>RefererReferer)</td><td>不支持参数</td><td>empty(内容为空)<br/>null(不存在)<br/>eq(等于)<br/>neq(不等于)<br/>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>URL(请求路径)</td><td>不支持参数</td><td>eq(等于)<br/>neq(不等于)<br/>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)<br/></td><td>请以/开头,512个字符以内</td></tr><tr><td>UserAgent(UserAgent)</td><td>不支持参数</td><td>同匹配字段<font color="Red">Referer</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>HTTP_METHOD(HTTP请求方法)</td><td>不支持参数</td><td>eq(等于)<br/>neq(不等于)</td><td>请输入方法名称,建议大写</td></tr><tr><td>QUERY_STRING(请求字符串)</td><td>不支持参数</td><td>同匹配字段<font color="Red">请求路径</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET(GET参数值)</td><td>支持参数录入</td><td>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET_PARAMS_NAMES(GET参数名)</td><td>不支持参数</td><td>exsit(存在参数)<br/>nexsit(不存在参数)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)</td><td>请输入内容,512个字符以内</td></tr><tr><td>POST(POST参数值)</td><td>支持参数录入</td><td>同匹配字段<font color="Red">GET参数值</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET_POST_NAMES(POST参数名)</td><td>不支持参数</td><td>同匹配字段<font color="Red">GET参数名</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>POST_BODY(完整BODY)</td><td>不支持参数</td><td>同匹配字段<font color="Red">请求路径</font>逻辑符号</td><td>请输入BODY内容,512个字符以内</td></tr><tr><td>COOKIE(Cookie)</td><td>不支持参数</td><td>empty(内容为空)<br/>null(不存在)<br/>rematch(正则匹配)</td><td><font color="Red">暂不支持</font></td></tr><tr><td>GET_COOKIES_NAMES(Cookie参数名)</td><td>不支持参数</td><td>同匹配字段<font color="Red">GET参数名</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>ARGS_COOKIE(Cookie参数值)</td><td>支持参数录入</td><td>同匹配字段<font color="Red">GET参数值</font>逻辑符号</td><td>请输入内容,512个字符以内</td></tr><tr><td>GET_HEADERS_NAMES(Header参数名)</td><td>不支持参数</td><td>exsit(存在参数)<br/>nexsit(不存在参数)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)</td><td>请输入内容,建议小写,512个字符以内</td></tr><tr><td>ARGS_HEADER(Header参数值)</td><td>支持参数录入</td><td>contains(包含)<br/>ncontains(不包含)<br/>len_eq(长度等于)<br/>len_gt(长度大于)<br/>len_lt(长度小于)<br/>strprefix(前缀匹配)<br/>strsuffix(后缀匹配)<br/>rematch(正则匹配)</td><td>请输入内容,512个字符以内</td></tr></tbody></table>
4766
4983
  注意:此字段可能返回 null,表示取不到有效值。
4767
4984
  */
4768
4985
  Field: string;
4769
4986
  /**
4770
4987
  * 逻辑符号
4771
4988
 
4772
- 有以下枚举值:
4773
- empty - 内容为空
4774
- null - 不存在
4775
- eq - 等于
4776
- neq - 不等于
4777
- contains - 包含
4778
- ncontains - 不包含
4779
- strprefix - 前缀匹配
4780
- strsuffix - 后缀匹配
4781
- len_eq - 长度等于
4782
- len_gt - 长度大于
4783
- len_lt - 长度小于
4784
- ipmatch - 属于
4785
- ipnmatch - 不属于
4989
+ 逻辑符号一共分为以下几种类型:
4990
+ empty 内容为空)
4991
+ null (不存在)
4992
+ eq 等于)
4993
+ neq 不等于)
4994
+ contains 包含)
4995
+ ncontains 不包含)
4996
+ strprefix 前缀匹配)
4997
+ strsuffix 后缀匹配)
4998
+ len_eq 长度等于)
4999
+ len_gt 长度大于)
5000
+ len_lt 长度小于)
5001
+ ipmatch 属于)
5002
+ ipnmatch 不属于)
5003
+ 各匹配字段对应的逻辑符号不同,详见上述匹配字段表格
5004
+
4786
5005
  注意:此字段可能返回 null,表示取不到有效值。
4787
5006
  */
4788
5007
  CompareFunc: string;
4789
5008
  /**
4790
5009
  * 匹配内容
4791
5010
 
4792
- 目前 只有匹配字段为COOKIE-Cookie时,才不需要输入 匹配内容 其他都需要
4793
-
5011
+ 目前 当匹配字段为COOKIECookie)时,不需要输入 匹配内容 其他都需要
4794
5012
 
4795
5013
  注意:此字段可能返回 null,表示取不到有效值。
4796
5014
  */
@@ -4798,9 +5016,13 @@ export interface Strategy {
4798
5016
  /**
4799
5017
  * 匹配参数
4800
5018
 
4801
- 目前 只有匹配字段为以下4个时,匹配参数才能选择,否则置灰无法选择
5019
+ 配置参数一共分2种类型 不支持参数与支持参数
5020
+ 当匹配字段为以下4个时,匹配参数才能录入,否则不支持该参数
5021
+ GET(GET参数值)
5022
+ POST(POST参数值)
5023
+ ARGS_COOKIE(Cookie参数值)
5024
+ ARGS_HEADER(Header参数值)
4802
5025
 
4803
- GET-GET参数值 POST-POST参数值 ARGS_COOKIE-Cookie参数值 ARGS_HEADER-Header参数值
4804
5026
  注意:此字段可能返回 null,表示取不到有效值。
4805
5027
  */
4806
5028
  Arg: string;
@@ -4905,6 +5127,38 @@ export interface DescribeVipInfoResponse {
4905
5127
  */
4906
5128
  RequestId?: string;
4907
5129
  }
5130
+ /**
5131
+ * 计费下单接口出入参Goods
5132
+ */
5133
+ export interface GoodNews {
5134
+ /**
5135
+ * 商品数量
5136
+ */
5137
+ GoodsNum: number;
5138
+ /**
5139
+ * 商品明细
5140
+ */
5141
+ GoodsDetail: GoodsDetailNew;
5142
+ /**
5143
+ * 订单类型ID,用来唯一标识一个业务的一种场景(总共三种场景:新购、配置变更、续费)
5144
+ 高级版: 102375(新购),102376(续费),102377(变配)
5145
+ 企业版 : 102378(新购),102379(续费),102380(变配)
5146
+ 旗舰版 : 102369(新购),102370(续费),102371(变配)
5147
+ 高级版-CLB: 新购 101198 续费 101199 变配 101200
5148
+ 企业版-CLB 101204(新购),101205(续费),101206(变配)
5149
+ 旗舰版-CLB : 101201(新购),101202(续费),101203(变配)
5150
+
5151
+ 注意:此字段可能返回 null,表示取不到有效值。
5152
+ */
5153
+ GoodsCategoryId?: number;
5154
+ /**
5155
+ * 购买waf实例区域ID
5156
+ 1 表示购买大陆资源
5157
+ 2表示购买非中国大陆资源
5158
+ 注意:此字段可能返回 null,表示取不到有效值。
5159
+ */
5160
+ RegionId?: number;
5161
+ }
4908
5162
  /**
4909
5163
  * DescribeCCRule请求参数结构体
4910
5164
  */