tencentcloud-sdk-nodejs-teo 4.0.702 → 4.0.703
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 +245 -0
- package/SERVICE_CHANGELOG.md +658 -884
- package/package.json +1 -1
- package/products.md +15 -15
- package/src/services/teo/v20220901/teo_models.ts +97 -67
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +97 -67
|
@@ -814,7 +814,7 @@ export interface ModifyZoneSettingRequest {
|
|
|
814
814
|
*/
|
|
815
815
|
export interface RuleRewriteActionParams {
|
|
816
816
|
/**
|
|
817
|
-
* 功能参数名称,参数填写规范可调用接口 [查询规则引擎的设置参数](https://
|
|
817
|
+
* 功能参数名称,参数填写规范可调用接口 [查询规则引擎的设置参数](https://cloud.tencent.com/document/product/1552/80618) 查看。现在只有三种取值:
|
|
818
818
|
<li> add:添加 HTTP 头部;</li>
|
|
819
819
|
<li> set:重写 HTTP 头部;</li>
|
|
820
820
|
<li> del:删除 HTTP 头部。</li>
|
|
@@ -855,7 +855,9 @@ export interface BotUserRule {
|
|
|
855
855
|
<li>drop:拦截;</li>
|
|
856
856
|
<li>monitor:观察;</li>
|
|
857
857
|
<li>trans:放行;</li>
|
|
858
|
-
<li>
|
|
858
|
+
<li>redirect:重定向;</li>
|
|
859
|
+
<li>page:指定页面;</li>
|
|
860
|
+
<li>alg:JavaScript 挑战;</li>
|
|
859
861
|
<li>captcha:托管挑战;</li>
|
|
860
862
|
<li>random:随机处置;</li>
|
|
861
863
|
<li>silence:静默;</li>
|
|
@@ -866,7 +868,7 @@ export interface BotUserRule {
|
|
|
866
868
|
/**
|
|
867
869
|
* 规则状态,取值有:
|
|
868
870
|
<li>on:生效;</li>
|
|
869
|
-
<li>off:不生效。</li>默认on生效。
|
|
871
|
+
<li>off:不生效。</li>默认 on 生效。
|
|
870
872
|
*/
|
|
871
873
|
RuleStatus: string;
|
|
872
874
|
/**
|
|
@@ -878,8 +880,7 @@ export interface BotUserRule {
|
|
|
878
880
|
*/
|
|
879
881
|
RulePriority: number;
|
|
880
882
|
/**
|
|
881
|
-
* 规则
|
|
882
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
883
|
+
* 规则 Id。仅出参使用。
|
|
883
884
|
*/
|
|
884
885
|
RuleID?: number;
|
|
885
886
|
/**
|
|
@@ -888,22 +889,37 @@ export interface BotUserRule {
|
|
|
888
889
|
ExtendActions?: Array<BotExtendAction>;
|
|
889
890
|
/**
|
|
890
891
|
* 过滤词,取值有:
|
|
891
|
-
<li>sip:客户端ip。</li>
|
|
892
|
-
|
|
892
|
+
<li>sip:客户端 ip。</li>
|
|
893
|
+
默认为空字符串。
|
|
893
894
|
*/
|
|
894
895
|
FreqFields?: Array<string>;
|
|
895
896
|
/**
|
|
896
|
-
*
|
|
897
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
897
|
+
* 更新时间。仅出参使用。
|
|
898
898
|
*/
|
|
899
899
|
UpdateTime?: string;
|
|
900
900
|
/**
|
|
901
|
-
*
|
|
902
|
-
<li>source_to_eo:(响应)源站到EdgeOne
|
|
903
|
-
<li>client_to_eo:(请求)客户端到EdgeOne
|
|
904
|
-
|
|
901
|
+
* 统计范围。取值有:
|
|
902
|
+
<li>source_to_eo:(响应)源站到 EdgeOne;</li>
|
|
903
|
+
<li>client_to_eo:(请求)客户端到 EdgeOne。</li>
|
|
904
|
+
默认为 source_to_eo。
|
|
905
905
|
*/
|
|
906
906
|
FreqScope?: Array<string>;
|
|
907
|
+
/**
|
|
908
|
+
* 自定义返回页面的名称。Action 是 page 时必填,且不能为空。
|
|
909
|
+
*/
|
|
910
|
+
Name?: string;
|
|
911
|
+
/**
|
|
912
|
+
* 自定义响应 Id。该 Id 可通过查询自定义错误页列表接口获取。默认值为default,使用系统默认页面。Action 是 page 时必填,且不能为空。
|
|
913
|
+
*/
|
|
914
|
+
CustomResponseId?: string;
|
|
915
|
+
/**
|
|
916
|
+
* 自定义返回页面的响应码。Action 是 page 时必填,且不能为空,取值: 100~600,不支持 3xx 响应码。默认值:567。
|
|
917
|
+
*/
|
|
918
|
+
ResponseCode?: number;
|
|
919
|
+
/**
|
|
920
|
+
* 重定向时候的地址。Action 是 redirect 时必填,且不能为空。
|
|
921
|
+
*/
|
|
922
|
+
RedirectUrl?: string;
|
|
907
923
|
}
|
|
908
924
|
/**
|
|
909
925
|
* 源站配置。
|
|
@@ -2664,7 +2680,7 @@ export interface DescribeTopL7AnalysisDataRequest {
|
|
|
2664
2680
|
Limit?: number;
|
|
2665
2681
|
/**
|
|
2666
2682
|
* 过滤条件,详细的过滤条件Key值如下:
|
|
2667
|
-
<li>country<br> 按照【<strong>国家/地区</strong
|
|
2683
|
+
<li>country<br> 按照【<strong>国家/地区</strong>】进行过滤,国家/地区遵循 <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166</a> 规范。</li>
|
|
2668
2684
|
<li>province<br> 按照【<strong>省份</strong>】进行过滤,此参数只支持服务区域为中国大陆。</li>
|
|
2669
2685
|
<li>isp<br> 按照【<strong>运营商</strong>】进行过滤,此参数只支持服务区域为中国大陆。<br> 对应的Value可选项如下:<br> 2:中国电信;<br> 26:中国联通;<br> 1046:中国移动;<br> 3947:中国铁通;<br> 38:教育网;<br> 43:长城宽带;<br> 0:其他运营商。</li>
|
|
2670
2686
|
<li>domain<br> 按照【<strong>子域名</strong>】进行过滤,子域名形如: test.example.com。</li>
|
|
@@ -3185,7 +3201,7 @@ export interface RuleCodeActionParams {
|
|
|
3185
3201
|
*/
|
|
3186
3202
|
StatusCode: number;
|
|
3187
3203
|
/**
|
|
3188
|
-
* 参数名称,参数填写规范可调用接口 [查询规则引擎的设置参数](https://
|
|
3204
|
+
* 参数名称,参数填写规范可调用接口 [查询规则引擎的设置参数](https://cloud.tencent.com/document/product/1552/80618) 查看。
|
|
3189
3205
|
*/
|
|
3190
3206
|
Name: string;
|
|
3191
3207
|
/**
|
|
@@ -3248,7 +3264,7 @@ export interface DescribeTimingL7AnalysisDataRequest {
|
|
|
3248
3264
|
Interval?: string;
|
|
3249
3265
|
/**
|
|
3250
3266
|
* 过滤条件,详细的过滤条件Key值如下:
|
|
3251
|
-
<li>country<br> 按照【<strong>国家/地区</strong
|
|
3267
|
+
<li>country<br> 按照【<strong>国家/地区</strong>】进行过滤,国家/地区遵循 <a href="https://baike.baidu.com/item/ISO%203166-1/5269555">ISO 3166</a> 规范。</li>
|
|
3252
3268
|
<li>province<br> 按照【<strong>省份</strong>】进行过滤,此参数只支持服务区域为中国大陆。</li>
|
|
3253
3269
|
<li>isp<br> 按照【<strong>运营商</strong>】进行过滤,此参数只支持服务区域为中国大陆。<br> 对应的Value可选项如下:<br> 2:中国电信;<br> 26:中国联通;<br> 1046:中国移动;<br> 3947:中国铁通;<br> 38:教育网;<br> 43:长城宽带;<br> 0:其他运营商。</li>
|
|
3254
3270
|
<li>domain<br> 按照【<strong>子域名</strong>】进行过滤,子域名形如: test.example.com。</li>
|
|
@@ -3846,7 +3862,7 @@ export interface DownloadL4LogsRequest {
|
|
|
3846
3862
|
*/
|
|
3847
3863
|
export interface CodeAction {
|
|
3848
3864
|
/**
|
|
3849
|
-
* 功能名称,功能名称填写规范可调用接口 [查询规则引擎的设置参数](https://
|
|
3865
|
+
* 功能名称,功能名称填写规范可调用接口 [查询规则引擎的设置参数](https://cloud.tencent.com/document/product/1552/80618) 查看。
|
|
3850
3866
|
*/
|
|
3851
3867
|
Action: string;
|
|
3852
3868
|
/**
|
|
@@ -4235,47 +4251,47 @@ export interface RulesProperties {
|
|
|
4235
4251
|
/**
|
|
4236
4252
|
* 值为参数名称。
|
|
4237
4253
|
*/
|
|
4238
|
-
Name
|
|
4254
|
+
Name?: string;
|
|
4239
4255
|
/**
|
|
4240
4256
|
* 数值参数的最小值,非数值参数或 Min 和 Max 值都为 0 则此项无意义。
|
|
4241
4257
|
*/
|
|
4242
|
-
Min
|
|
4258
|
+
Min?: number;
|
|
4243
4259
|
/**
|
|
4244
4260
|
* 参数值的可选值。
|
|
4245
4261
|
注意:若参数值为用户自定义则该数组为空数组。
|
|
4246
4262
|
*/
|
|
4247
|
-
ChoicesValue
|
|
4263
|
+
ChoicesValue?: Array<string>;
|
|
4248
4264
|
/**
|
|
4249
4265
|
* 参数值类型。
|
|
4250
4266
|
<li> CHOICE:参数值只能在 ChoicesValue 中选择; </li>
|
|
4251
4267
|
<li> TOGGLE:参数值为开关类型,可在 ChoicesValue 中选择;</li>
|
|
4252
4268
|
<li> OBJECT:参数值为对象类型,ChoiceProperties 为改对象类型关联的属性;</li>
|
|
4253
4269
|
<li> CUSTOM_NUM:参数值用户自定义,整型类型;</li>
|
|
4254
|
-
<li> CUSTOM_STRING:参数值用户自定义,字符串类型。</li>注意:当参数类型为 OBJECT 类型时,请注意参考 [示例2 参数为 OBJECT 类型的创建](https://
|
|
4270
|
+
<li> CUSTOM_STRING:参数值用户自定义,字符串类型。</li>注意:当参数类型为 OBJECT 类型时,请注意参考 [示例2 参数为 OBJECT 类型的创建](https://cloud.tencent.com/document/product/1552/80622#.E7.A4.BA.E4.BE.8B2-.E5.8F.82.E6.95.B0.E4.B8.BA-OBJECT-.E7.B1.BB.E5.9E.8B.E7.9A.84.E5.88.9B.E5.BB.BA)
|
|
4255
4271
|
*/
|
|
4256
|
-
Type
|
|
4272
|
+
Type?: string;
|
|
4257
4273
|
/**
|
|
4258
4274
|
* 数值参数的最大值,非数值参数或 Min 和 Max 值都为 0 则此项无意义。
|
|
4259
4275
|
*/
|
|
4260
|
-
Max
|
|
4276
|
+
Max?: number;
|
|
4261
4277
|
/**
|
|
4262
4278
|
* 参数值是否支持多选或者填写多个。
|
|
4263
4279
|
*/
|
|
4264
|
-
IsMultiple
|
|
4280
|
+
IsMultiple?: boolean;
|
|
4265
4281
|
/**
|
|
4266
4282
|
* 是否允许为空。
|
|
4267
4283
|
*/
|
|
4268
|
-
IsAllowEmpty
|
|
4284
|
+
IsAllowEmpty?: boolean;
|
|
4269
4285
|
/**
|
|
4270
4286
|
* 该参数对应的关联配置参数,属于调用接口的必填参数。
|
|
4271
4287
|
注意:如果可选参数无特殊新增参数则该数组为空数组。
|
|
4272
4288
|
*/
|
|
4273
|
-
ChoiceProperties
|
|
4289
|
+
ChoiceProperties?: Array<RuleChoicePropertiesItem>;
|
|
4274
4290
|
/**
|
|
4275
4291
|
* <li> 为 NULL:无特殊参数,RuleAction 选择 NormalAction;</li>
|
|
4276
4292
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4277
4293
|
*/
|
|
4278
|
-
ExtraParameter
|
|
4294
|
+
ExtraParameter?: RuleExtraParameter;
|
|
4279
4295
|
}
|
|
4280
4296
|
/**
|
|
4281
4297
|
* DescribeOverviewL7Data返回参数结构体
|
|
@@ -4563,7 +4579,7 @@ export interface RateLimitUserRule {
|
|
|
4563
4579
|
*/
|
|
4564
4580
|
RuleName: string;
|
|
4565
4581
|
/**
|
|
4566
|
-
* 处置动作,取值有: <li>monitor:观察;</li> <li>drop:拦截;</li>
|
|
4582
|
+
* 处置动作,取值有: <li>monitor:观察;</li> <li>drop:拦截;</li><li> redirect:重定向;</li><li> page:指定页面;</li><li>alg:JavaScript 挑战。</li>
|
|
4567
4583
|
*/
|
|
4568
4584
|
Action: string;
|
|
4569
4585
|
/**
|
|
@@ -4580,7 +4596,7 @@ export interface RateLimitUserRule {
|
|
|
4580
4596
|
/**
|
|
4581
4597
|
* 规则状态,取值有:
|
|
4582
4598
|
<li>on:生效;</li>
|
|
4583
|
-
<li>off:不生效。</li>默认on生效。
|
|
4599
|
+
<li>off:不生效。</li>默认 on 生效。
|
|
4584
4600
|
*/
|
|
4585
4601
|
RuleStatus: string;
|
|
4586
4602
|
/**
|
|
@@ -4593,27 +4609,41 @@ export interface RateLimitUserRule {
|
|
|
4593
4609
|
RulePriority: number;
|
|
4594
4610
|
/**
|
|
4595
4611
|
* 规则 Id。仅出参使用。
|
|
4596
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4597
4612
|
*/
|
|
4598
4613
|
RuleID?: number;
|
|
4599
4614
|
/**
|
|
4600
4615
|
* 过滤词,取值有:
|
|
4601
|
-
<li>sip:客户端ip。</li>
|
|
4602
|
-
|
|
4616
|
+
<li>sip:客户端 ip。</li>
|
|
4617
|
+
默认为空字符串。
|
|
4603
4618
|
*/
|
|
4604
4619
|
FreqFields?: Array<string>;
|
|
4605
4620
|
/**
|
|
4606
|
-
*
|
|
4607
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4621
|
+
* 更新时间。仅出参使用。修改时默认为当前时间。
|
|
4608
4622
|
*/
|
|
4609
4623
|
UpdateTime?: string;
|
|
4610
4624
|
/**
|
|
4611
|
-
*
|
|
4612
|
-
<li>source_to_eo:(响应)源站到EdgeOne
|
|
4613
|
-
<li>client_to_eo:(请求)客户端到EdgeOne
|
|
4614
|
-
|
|
4625
|
+
* 统计范围。取值有:
|
|
4626
|
+
<li>source_to_eo:(响应)源站到 EdgeOne;</li>
|
|
4627
|
+
<li>client_to_eo:(请求)客户端到 EdgeOne。</li>
|
|
4628
|
+
默认为 source_to_eo。
|
|
4615
4629
|
*/
|
|
4616
4630
|
FreqScope?: Array<string>;
|
|
4631
|
+
/**
|
|
4632
|
+
* 自定义返回页面的名称。Action 是 page 时必填,且不能为空。
|
|
4633
|
+
*/
|
|
4634
|
+
Name?: string;
|
|
4635
|
+
/**
|
|
4636
|
+
* 自定义响应 Id。该 Id 可通过查询自定义错误页列表接口获取。默认值为default,使用系统默认页面。Action 是 page 时必填,且不能为空。
|
|
4637
|
+
*/
|
|
4638
|
+
CustomResponseId?: string;
|
|
4639
|
+
/**
|
|
4640
|
+
* 自定义返回页面的响应码。Action 是 page 时必填,且不能为空,取值: 100~600,不支持 3xx 响应码。默认值:567。
|
|
4641
|
+
*/
|
|
4642
|
+
ResponseCode?: number;
|
|
4643
|
+
/**
|
|
4644
|
+
* 重定向时候的地址。Action 是 redirect 时必填,且不能为空。
|
|
4645
|
+
*/
|
|
4646
|
+
RedirectUrl?: string;
|
|
4617
4647
|
}
|
|
4618
4648
|
/**
|
|
4619
4649
|
* 嵌套规则信息。
|
|
@@ -4977,7 +5007,7 @@ export interface CreateZoneResponse {
|
|
|
4977
5007
|
RequestId?: string;
|
|
4978
5008
|
}
|
|
4979
5009
|
/**
|
|
4980
|
-
* 规则引擎功能项操作,对于一种功能只对应下面三种类型的其中一种,RuleAction 数组中的每一项只能是其中一个类型,更多功能项的填写规范可调用接口 [查询规则引擎的设置参数](https://
|
|
5010
|
+
* 规则引擎功能项操作,对于一种功能只对应下面三种类型的其中一种,RuleAction 数组中的每一项只能是其中一个类型,更多功能项的填写规范可调用接口 [查询规则引擎的设置参数](https://cloud.tencent.com/document/product/1552/80618) 查看。
|
|
4981
5011
|
*/
|
|
4982
5012
|
export interface Action {
|
|
4983
5013
|
/**
|
|
@@ -5536,7 +5566,7 @@ export interface BotManagedRule {
|
|
|
5536
5566
|
*/
|
|
5537
5567
|
export interface NormalAction {
|
|
5538
5568
|
/**
|
|
5539
|
-
* 功能名称,功能名称填写规范可调用接口 [查询规则引擎的设置参数](https://
|
|
5569
|
+
* 功能名称,功能名称填写规范可调用接口 [查询规则引擎的设置参数](https://cloud.tencent.com/document/product/1552/80618) 查看。
|
|
5540
5570
|
*/
|
|
5541
5571
|
Action: string;
|
|
5542
5572
|
/**
|
|
@@ -5628,24 +5658,28 @@ export interface CreateSecurityIPGroupRequest {
|
|
|
5628
5658
|
*/
|
|
5629
5659
|
export interface DropPageDetail {
|
|
5630
5660
|
/**
|
|
5631
|
-
* 拦截页面的唯一Id。系统默认包含一个自带拦截页面,Id值为0。
|
|
5632
|
-
该Id可通过创建拦截页面接口进行上传获取。如传入0
|
|
5661
|
+
* 拦截页面的唯一 Id。系统默认包含一个自带拦截页面,Id 值为0。
|
|
5662
|
+
该 Id 可通过创建拦截页面接口进行上传获取。如传入0,代表使用系统默认拦截页面。该参数已废弃。
|
|
5633
5663
|
*/
|
|
5634
5664
|
PageId: number;
|
|
5635
5665
|
/**
|
|
5636
|
-
* 拦截页面的HTTP
|
|
5666
|
+
* 拦截页面的 HTTP 状态码。状态码取值:100~600,不支持 3xx 状态码。托管规则拦截页面默认:566,安全防护(除托管规则外)拦截页面默认:567.
|
|
5637
5667
|
*/
|
|
5638
5668
|
StatusCode: number;
|
|
5639
5669
|
/**
|
|
5640
|
-
* 页面文件名或url。
|
|
5670
|
+
* 页面文件名或 url。
|
|
5641
5671
|
*/
|
|
5642
5672
|
Name: string;
|
|
5643
5673
|
/**
|
|
5644
5674
|
* 页面的类型,取值有:
|
|
5645
|
-
<li>
|
|
5646
|
-
|
|
5675
|
+
<li>page:指定页面。</li>
|
|
5676
|
+
|
|
5647
5677
|
*/
|
|
5648
5678
|
Type: string;
|
|
5679
|
+
/**
|
|
5680
|
+
* 自定义响应 Id。该 Id 可通过查询自定义错误页列表接口获取。默认值为default,使用系统默认页面。Type 类型是 page 时必填,且不能为空。
|
|
5681
|
+
*/
|
|
5682
|
+
CustomResponseId?: string;
|
|
5649
5683
|
}
|
|
5650
5684
|
/**
|
|
5651
5685
|
* DeleteRules返回参数结构体
|
|
@@ -5865,7 +5899,7 @@ export interface ModifyAliasDomainResponse {
|
|
|
5865
5899
|
*/
|
|
5866
5900
|
export interface RewriteAction {
|
|
5867
5901
|
/**
|
|
5868
|
-
* 功能名称,功能名称填写规范可调用接口 [查询规则引擎的设置参数](https://
|
|
5902
|
+
* 功能名称,功能名称填写规范可调用接口 [查询规则引擎的设置参数](https://cloud.tencent.com/document/product/1552/80618) 查看。
|
|
5869
5903
|
*/
|
|
5870
5904
|
Action: string;
|
|
5871
5905
|
/**
|
|
@@ -5971,7 +6005,7 @@ export interface StandardDebug {
|
|
|
5971
6005
|
*/
|
|
5972
6006
|
export interface RuleNormalActionParams {
|
|
5973
6007
|
/**
|
|
5974
|
-
* 参数名称,参数填写规范可调用接口 [查询规则引擎的设置参数](https://
|
|
6008
|
+
* 参数名称,参数填写规范可调用接口 [查询规则引擎的设置参数](https://cloud.tencent.com/document/product/1552/80618) 查看。
|
|
5975
6009
|
*/
|
|
5976
6010
|
Name: string;
|
|
5977
6011
|
/**
|
|
@@ -6124,10 +6158,10 @@ export interface AclUserRule {
|
|
|
6124
6158
|
<li>trans:放行;</li>
|
|
6125
6159
|
<li>drop:拦截;</li>
|
|
6126
6160
|
<li>monitor:观察;</li>
|
|
6127
|
-
<li>ban:IP封禁;</li>
|
|
6161
|
+
<li>ban:IP 封禁;</li>
|
|
6128
6162
|
<li>redirect:重定向;</li>
|
|
6129
6163
|
<li>page:指定页面;</li>
|
|
6130
|
-
<li>alg:
|
|
6164
|
+
<li>alg:JavaScript 挑战。</li>
|
|
6131
6165
|
*/
|
|
6132
6166
|
Action: string;
|
|
6133
6167
|
/**
|
|
@@ -6145,48 +6179,44 @@ export interface AclUserRule {
|
|
|
6145
6179
|
*/
|
|
6146
6180
|
RulePriority: number;
|
|
6147
6181
|
/**
|
|
6148
|
-
* 规则Id。仅出参使用。
|
|
6149
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6182
|
+
* 规则 Id。仅出参使用。
|
|
6150
6183
|
*/
|
|
6151
6184
|
RuleID?: number;
|
|
6152
6185
|
/**
|
|
6153
6186
|
* 更新时间。仅出参使用。
|
|
6154
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6155
6187
|
*/
|
|
6156
6188
|
UpdateTime?: string;
|
|
6157
6189
|
/**
|
|
6158
|
-
* ip
|
|
6159
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6190
|
+
* ip 封禁的惩罚时间。Action 是 ban 时必填,且不能为空,取值范围0-2天。
|
|
6160
6191
|
*/
|
|
6161
6192
|
PunishTime?: number;
|
|
6162
6193
|
/**
|
|
6163
|
-
* ip封禁的惩罚时间单位,取值有:
|
|
6194
|
+
* ip 封禁的惩罚时间单位,取值有:
|
|
6164
6195
|
<li>second:秒;</li>
|
|
6165
6196
|
<li>minutes:分;</li>
|
|
6166
|
-
<li>hour:小时。</li>默认为second。
|
|
6167
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6197
|
+
<li>hour:小时。</li>默认为 second。
|
|
6168
6198
|
*/
|
|
6169
6199
|
PunishTimeUnit?: string;
|
|
6170
6200
|
/**
|
|
6171
|
-
*
|
|
6172
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6201
|
+
* 自定义返回页面的名称。Action 是 page 时必填,且不能为空。
|
|
6173
6202
|
*/
|
|
6174
6203
|
Name?: string;
|
|
6175
6204
|
/**
|
|
6176
|
-
* 自定义返回页面的实例
|
|
6177
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6205
|
+
* 自定义返回页面的实例 Id。默认为0,代表使用系统默认拦截页面。该参数已废弃。
|
|
6178
6206
|
*/
|
|
6179
6207
|
PageId?: number;
|
|
6180
6208
|
/**
|
|
6181
|
-
*
|
|
6182
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6209
|
+
* 自定义响应 Id。该 Id 可通过查询自定义错误页列表接口获取。默认值为default,使用系统默认页面。Action 是 page 时必填,且不能为空。
|
|
6183
6210
|
*/
|
|
6184
|
-
|
|
6211
|
+
CustomResponseId?: string;
|
|
6185
6212
|
/**
|
|
6186
|
-
*
|
|
6187
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6213
|
+
* 自定义返回页面的响应码。Action 是 page 时必填,且不能为空,取值: 100~600,不支持 3xx 响应码。默认值:567。
|
|
6188
6214
|
*/
|
|
6189
6215
|
ResponseCode?: number;
|
|
6216
|
+
/**
|
|
6217
|
+
* 重定向时候的地址。Action 是 redirect 时必填,且不能为空。
|
|
6218
|
+
*/
|
|
6219
|
+
RedirectUrl?: string;
|
|
6190
6220
|
}
|
|
6191
6221
|
/**
|
|
6192
6222
|
* 刷新/预热 可用量及配额
|