tencentcloud-sdk-nodejs 4.1.77 → 4.1.78
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/es/common/sdk_version.js +1 -1
- package/es/services/ctem/v20231128/ctem_client.js +14 -2
- package/es/services/ess/v20201111/ess_client.js +12 -6
- package/es/services/mps/v20190612/mps_client.js +3 -0
- package/es/services/teo/v20220901/teo_client.js +59 -17
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ai3d/v20250513/ai3d_models.d.ts +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +2 -2
- package/tencentcloud/services/ctem/v20231128/ctem_client.d.ts +19 -3
- package/tencentcloud/services/ctem/v20231128/ctem_client.js +27 -3
- package/tencentcloud/services/ctem/v20231128/ctem_models.d.ts +1817 -1377
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +4 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +12 -0
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +66 -52
- package/tencentcloud/services/ess/v20201111/ess_client.js +72 -54
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +164 -33
- package/tencentcloud/services/iss/v20230517/iss_models.d.ts +2 -4
- package/tencentcloud/services/live/v20180801/live_client.d.ts +4 -4
- package/tencentcloud/services/live/v20180801/live_models.d.ts +150 -7
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.d.ts +3 -0
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.js +3 -0
- package/tencentcloud/services/lkeap/v20240522/lkeap_models.d.ts +66 -24
- package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +2 -1
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +18 -6
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +8 -1
- package/tencentcloud/services/mps/v20190612/mps_client.js +9 -0
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +173 -85
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +14 -12
- package/tencentcloud/services/omics/v20221128/omics_models.d.ts +4 -0
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +77 -21
- package/tencentcloud/services/teo/v20220901/teo_client.js +113 -29
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +672 -158
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +4 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +12 -12
@@ -211,40 +211,21 @@ export interface RateLimitingRules {
|
|
211
211
|
Rules?: Array<RateLimitingRule>;
|
212
212
|
}
|
213
213
|
/**
|
214
|
-
*
|
214
|
+
* DescribeMultiPathGatewayLine请求参数结构体
|
215
215
|
*/
|
216
|
-
export interface
|
217
|
-
/**
|
218
|
-
* 源站记录值,不包含端口信息,可以为:IPv4,IPv6,域名格式。
|
219
|
-
*/
|
220
|
-
Record: string;
|
221
|
-
/**
|
222
|
-
* 源站类型,取值有:
|
223
|
-
<li>IP_DOMAIN:IPV4、IPV6、域名类型源站;</li>
|
224
|
-
<li>COS:COS源。</li>
|
225
|
-
<li>AWS_S3:AWS S3对象存储源站。</li>
|
226
|
-
*/
|
227
|
-
Type?: string;
|
228
|
-
/**
|
229
|
-
* 源站记录ID。
|
230
|
-
*/
|
231
|
-
RecordId?: string;
|
216
|
+
export interface DescribeMultiPathGatewayLineRequest {
|
232
217
|
/**
|
233
|
-
*
|
234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
218
|
+
* 站点 ID。
|
235
219
|
*/
|
236
|
-
|
220
|
+
ZoneId: string;
|
237
221
|
/**
|
238
|
-
*
|
239
|
-
<li>true:使用私有鉴权;</li>
|
240
|
-
<li>false:不使用私有鉴权。</li>不填写,默认值为:false。
|
241
|
-
|
222
|
+
* 网关 ID。
|
242
223
|
*/
|
243
|
-
|
224
|
+
GatewayId: string;
|
244
225
|
/**
|
245
|
-
*
|
226
|
+
* 线路 ID。
|
246
227
|
*/
|
247
|
-
|
228
|
+
LineId: string;
|
248
229
|
}
|
249
230
|
/**
|
250
231
|
* 需要配置特定回源 IP 网段回源的实例。
|
@@ -813,6 +794,49 @@ export interface DescribeEnvironmentsRequest {
|
|
813
794
|
*/
|
814
795
|
ZoneId: string;
|
815
796
|
}
|
797
|
+
/**
|
798
|
+
* 多通道安全网关详情
|
799
|
+
*/
|
800
|
+
export interface MultiPathGateway {
|
801
|
+
/**
|
802
|
+
* 网关 ID。
|
803
|
+
*/
|
804
|
+
GatewayId?: string;
|
805
|
+
/**
|
806
|
+
* 网关名。
|
807
|
+
*/
|
808
|
+
GatewayName?: string;
|
809
|
+
/**
|
810
|
+
* 网关类型,取值有:
|
811
|
+
<li> cloud:云上网关,腾讯云创建和管理的网关。</li>
|
812
|
+
<li> private:自有网关,用户部署的私有网关。</li>
|
813
|
+
*/
|
814
|
+
GatewayType?: string;
|
815
|
+
/**
|
816
|
+
* 网关端口,范围 1~65535(除去 8888 )。
|
817
|
+
*/
|
818
|
+
GatewayPort?: number;
|
819
|
+
/**
|
820
|
+
* 网关状态,取值有:
|
821
|
+
<li> creating : 创建中;</li>
|
822
|
+
<li> online : 在线;</li>
|
823
|
+
<li> offline : 离线;</li>
|
824
|
+
<li> disable : 已停用。</li>
|
825
|
+
*/
|
826
|
+
Status?: string;
|
827
|
+
/**
|
828
|
+
* 网关 IP, 格式为 IPv4。
|
829
|
+
*/
|
830
|
+
GatewayIP?: string;
|
831
|
+
/**
|
832
|
+
* 网关地域 Id,可以从接口 DescribeMultiPathGatewayRegions 获取 RegionId 列表。
|
833
|
+
*/
|
834
|
+
RegionId?: string;
|
835
|
+
/**
|
836
|
+
* 线路信息,当查询网关信息详情 DescribeMultiPathGateway 的时候会返回,当查询网关列表 DescribeMultiPathGateways 的时候不会返回。
|
837
|
+
*/
|
838
|
+
Lines?: Array<MultiPathGatewayLine>;
|
839
|
+
}
|
816
840
|
/**
|
817
841
|
* DescribeAliasDomains请求参数结构体
|
818
842
|
*/
|
@@ -1087,38 +1111,17 @@ export interface ModifyContentIdentifierResponse {
|
|
1087
1111
|
RequestId?: string;
|
1088
1112
|
}
|
1089
1113
|
/**
|
1090
|
-
*
|
1114
|
+
* 刷新预热附带的头部信息
|
1091
1115
|
*/
|
1092
|
-
export interface
|
1093
|
-
/**
|
1094
|
-
* WafConfig开关,取值有:
|
1095
|
-
<li> on:开启;</li>
|
1096
|
-
<li> off:关闭。</li>开关仅与配置是否生效有关,即使为off(关闭),也可以正常修改配置的内容。
|
1097
|
-
*/
|
1098
|
-
Switch: string;
|
1099
|
-
/**
|
1100
|
-
* 上一次设置的防护级别,取值有:
|
1101
|
-
<li> loose:宽松;</li>
|
1102
|
-
<li> normal:正常;</li>
|
1103
|
-
<li> strict:严格;</li>
|
1104
|
-
<li> stricter:超严格;</li>
|
1105
|
-
<li> custom:自定义。</li>
|
1106
|
-
*/
|
1107
|
-
Level: string;
|
1108
|
-
/**
|
1109
|
-
* 全局WAF模式,取值有:
|
1110
|
-
<li> block:阻断(全局阻断,但可对详细规则配置观察);</li>
|
1111
|
-
<li> observe:观察(无论详细规则配置什么,都为观察)。</li>
|
1112
|
-
*/
|
1113
|
-
Mode: string;
|
1116
|
+
export interface Header {
|
1114
1117
|
/**
|
1115
|
-
*
|
1118
|
+
* HTTP头部名称。
|
1116
1119
|
*/
|
1117
|
-
|
1120
|
+
Name: string;
|
1118
1121
|
/**
|
1119
|
-
*
|
1122
|
+
* HTTP头部值。
|
1120
1123
|
*/
|
1121
|
-
|
1124
|
+
Value: string;
|
1122
1125
|
}
|
1123
1126
|
/**
|
1124
1127
|
* CreateAliasDomain请求参数结构体
|
@@ -1320,6 +1323,15 @@ export interface DescribeTopL7AnalysisDataRequest {
|
|
1320
1323
|
*/
|
1321
1324
|
Area?: string;
|
1322
1325
|
}
|
1326
|
+
/**
|
1327
|
+
* CreateMultiPathGatewaySecretKey返回参数结构体
|
1328
|
+
*/
|
1329
|
+
export interface CreateMultiPathGatewaySecretKeyResponse {
|
1330
|
+
/**
|
1331
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1332
|
+
*/
|
1333
|
+
RequestId?: string;
|
1334
|
+
}
|
1323
1335
|
/**
|
1324
1336
|
* DescribeAccelerationDomains返回参数结构体
|
1325
1337
|
*/
|
@@ -1865,6 +1877,20 @@ export interface CodeAction {
|
|
1865
1877
|
*/
|
1866
1878
|
Parameters: Array<RuleCodeActionParams>;
|
1867
1879
|
}
|
1880
|
+
/**
|
1881
|
+
* 站点配置相关信息。
|
1882
|
+
*/
|
1883
|
+
export interface ZoneConfigParameters {
|
1884
|
+
/**
|
1885
|
+
* 站点名称。
|
1886
|
+
*/
|
1887
|
+
ZoneName?: string;
|
1888
|
+
/**
|
1889
|
+
* 站点配置信息。
|
1890
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1891
|
+
*/
|
1892
|
+
ZoneConfig?: ZoneConfig;
|
1893
|
+
}
|
1868
1894
|
/**
|
1869
1895
|
* CreateL7AccRules返回参数结构体
|
1870
1896
|
*/
|
@@ -2678,17 +2704,17 @@ export interface DescribeZonesResponse {
|
|
2678
2704
|
RequestId?: string;
|
2679
2705
|
}
|
2680
2706
|
/**
|
2681
|
-
*
|
2707
|
+
* DeleteMultiPathGateway请求参数结构体
|
2682
2708
|
*/
|
2683
|
-
export interface
|
2709
|
+
export interface DeleteMultiPathGatewayRequest {
|
2684
2710
|
/**
|
2685
|
-
*
|
2711
|
+
* 站点 ID。
|
2686
2712
|
*/
|
2687
|
-
|
2713
|
+
ZoneId: string;
|
2688
2714
|
/**
|
2689
|
-
*
|
2715
|
+
* 网关 ID。
|
2690
2716
|
*/
|
2691
|
-
|
2717
|
+
GatewayId: string;
|
2692
2718
|
}
|
2693
2719
|
/**
|
2694
2720
|
* DeleteCustomErrorPage请求参数结构体
|
@@ -2901,43 +2927,30 @@ export interface ModifyPlanRequest {
|
|
2901
2927
|
RenewFlag?: RenewFlag;
|
2902
2928
|
}
|
2903
2929
|
/**
|
2904
|
-
*
|
2930
|
+
* DescribeOriginACL返回参数结构体
|
2905
2931
|
*/
|
2906
|
-
export interface
|
2907
|
-
/**
|
2908
|
-
* 例外规则类型。其中complete模式代表全量数据进行例外,partial模式代表可选择指定模块指定字段进行例外,该字段取值有:
|
2909
|
-
<li>complete:完全跳过模式;</li>
|
2910
|
-
<li>partial:部分跳过模式。</li>
|
2911
|
-
*/
|
2912
|
-
Type?: string;
|
2913
|
-
/**
|
2914
|
-
* 生效的模块,该字段取值有:
|
2915
|
-
<li>waf:托管规则;</li>
|
2916
|
-
<li>rate:速率限制;</li>
|
2917
|
-
<li>acl:自定义规则;</li>
|
2918
|
-
<li>cc:cc攻击防护;</li>
|
2919
|
-
<li>bot:Bot防护。</li>
|
2920
|
-
*/
|
2921
|
-
Modules?: Array<string>;
|
2932
|
+
export interface DescribeOriginACLResponse {
|
2922
2933
|
/**
|
2923
|
-
*
|
2934
|
+
* 七层加速域名/四层代理实例与回源 IP 网段的绑定关系详情。
|
2924
2935
|
*/
|
2925
|
-
|
2936
|
+
OriginACLInfo?: OriginACLInfo;
|
2926
2937
|
/**
|
2927
|
-
*
|
2938
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2928
2939
|
*/
|
2929
|
-
|
2940
|
+
RequestId?: string;
|
2930
2941
|
}
|
2931
2942
|
/**
|
2932
|
-
*
|
2943
|
+
* 失败原因
|
2933
2944
|
*/
|
2934
|
-
export interface
|
2945
|
+
export interface FailReason {
|
2935
2946
|
/**
|
2936
|
-
*
|
2937
|
-
<li>on:开启;</li>
|
2938
|
-
<li>off:关闭。</li>
|
2947
|
+
* 失败原因。
|
2939
2948
|
*/
|
2940
|
-
|
2949
|
+
Reason: string;
|
2950
|
+
/**
|
2951
|
+
* 处理失败的资源列表。
|
2952
|
+
*/
|
2953
|
+
Targets: Array<string>;
|
2941
2954
|
}
|
2942
2955
|
/**
|
2943
2956
|
* ModifyL4ProxyRules请求参数结构体
|
@@ -3000,30 +3013,30 @@ export interface DisableOriginACLResponse {
|
|
3000
3013
|
RequestId?: string;
|
3001
3014
|
}
|
3002
3015
|
/**
|
3003
|
-
*
|
3016
|
+
* CreateFunctionRule返回参数结构体
|
3004
3017
|
*/
|
3005
|
-
export interface
|
3018
|
+
export interface CreateFunctionRuleResponse {
|
3006
3019
|
/**
|
3007
|
-
*
|
3020
|
+
* 规则 ID。
|
3008
3021
|
*/
|
3009
|
-
|
3022
|
+
RuleId?: string;
|
3010
3023
|
/**
|
3011
3024
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3012
3025
|
*/
|
3013
3026
|
RequestId?: string;
|
3014
3027
|
}
|
3015
3028
|
/**
|
3016
|
-
*
|
3029
|
+
* CreateMultiPathGatewaySecretKey请求参数结构体
|
3017
3030
|
*/
|
3018
|
-
export interface
|
3031
|
+
export interface CreateMultiPathGatewaySecretKeyRequest {
|
3019
3032
|
/**
|
3020
|
-
*
|
3033
|
+
* 站点 ID。
|
3021
3034
|
*/
|
3022
|
-
|
3035
|
+
ZoneId: string;
|
3023
3036
|
/**
|
3024
|
-
*
|
3037
|
+
* 多通道安全加速网关接入密钥,base64字符串,编码前字符串长度为 32-48 个字符,非必填,不填系统自动生成,可通过接口 DescribeMultiPathGatewaySecretKey 查询。
|
3025
3038
|
*/
|
3026
|
-
|
3039
|
+
SecretKey?: string;
|
3027
3040
|
}
|
3028
3041
|
/**
|
3029
3042
|
* 七层回源超时配置。
|
@@ -3034,6 +3047,19 @@ export interface HTTPUpstreamTimeoutParameters {
|
|
3034
3047
|
*/
|
3035
3048
|
ResponseTimeout?: number;
|
3036
3049
|
}
|
3050
|
+
/**
|
3051
|
+
* DescribeMultiPathGateway请求参数结构体
|
3052
|
+
*/
|
3053
|
+
export interface DescribeMultiPathGatewayRequest {
|
3054
|
+
/**
|
3055
|
+
* 站点 ID。
|
3056
|
+
*/
|
3057
|
+
ZoneId: string;
|
3058
|
+
/**
|
3059
|
+
* 网关 ID。
|
3060
|
+
*/
|
3061
|
+
GatewayId: string;
|
3062
|
+
}
|
3037
3063
|
/**
|
3038
3064
|
* 对象存储源站私有鉴权参数
|
3039
3065
|
*/
|
@@ -3156,6 +3182,15 @@ export interface CreateSharedCNAMEResponse {
|
|
3156
3182
|
*/
|
3157
3183
|
RequestId?: string;
|
3158
3184
|
}
|
3185
|
+
/**
|
3186
|
+
* DeleteMultiPathGateway返回参数结构体
|
3187
|
+
*/
|
3188
|
+
export interface DeleteMultiPathGatewayResponse {
|
3189
|
+
/**
|
3190
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3191
|
+
*/
|
3192
|
+
RequestId?: string;
|
3193
|
+
}
|
3159
3194
|
/**
|
3160
3195
|
* DescribeAvailablePlans返回参数结构体
|
3161
3196
|
*/
|
@@ -3419,6 +3454,31 @@ export interface DescribeDDoSAttackTopDataResponse {
|
|
3419
3454
|
*/
|
3420
3455
|
RequestId?: string;
|
3421
3456
|
}
|
3457
|
+
/**
|
3458
|
+
* ModifyMultiPathGateway请求参数结构体
|
3459
|
+
*/
|
3460
|
+
export interface ModifyMultiPathGatewayRequest {
|
3461
|
+
/**
|
3462
|
+
* 站点 ID。
|
3463
|
+
*/
|
3464
|
+
ZoneId: string;
|
3465
|
+
/**
|
3466
|
+
* 网关 ID。
|
3467
|
+
*/
|
3468
|
+
GatewayId: string;
|
3469
|
+
/**
|
3470
|
+
* 网关名称,16 个字符以内,可用字符(a-z,A-Z,0-9,-,_)。
|
3471
|
+
*/
|
3472
|
+
GatewayName?: string;
|
3473
|
+
/**
|
3474
|
+
* 网关地址,GatewayType 取值为 private(自有网关)可填入进行修改,使用该地址时,请确保该地址已录入腾讯云多通道安全加速网关系统。如未录入,需要在本接口调用前通过工单或者联系架构师把网关 IP 地址提前录入腾讯云多通道安全加速网关系统。
|
3475
|
+
*/
|
3476
|
+
GatewayIP?: string;
|
3477
|
+
/**
|
3478
|
+
* 网关端口,范围 1~65535(除去 8888 ),只支持修改 GatewayType 取值为 private 的自有网关。
|
3479
|
+
*/
|
3480
|
+
GatewayPort?: number;
|
3481
|
+
}
|
3422
3482
|
/**
|
3423
3483
|
* 负载均衡实例信息。
|
3424
3484
|
*/
|
@@ -3828,6 +3888,15 @@ export interface NextOriginACL {
|
|
3828
3888
|
*/
|
3829
3889
|
NoChangeAddresses?: Addresses;
|
3830
3890
|
}
|
3891
|
+
/**
|
3892
|
+
* DescribeMultiPathGatewayRegions请求参数结构体
|
3893
|
+
*/
|
3894
|
+
export interface DescribeMultiPathGatewayRegionsRequest {
|
3895
|
+
/**
|
3896
|
+
* 站点 ID。
|
3897
|
+
*/
|
3898
|
+
ZoneId: string;
|
3899
|
+
}
|
3831
3900
|
/**
|
3832
3901
|
* DescribeZoneSetting请求参数结构体
|
3833
3902
|
*/
|
@@ -4484,6 +4553,37 @@ export interface AclCondition {
|
|
4484
4553
|
*/
|
4485
4554
|
MatchContent: string;
|
4486
4555
|
}
|
4556
|
+
/**
|
4557
|
+
* 站点验证信息
|
4558
|
+
*/
|
4559
|
+
export interface Identification {
|
4560
|
+
/**
|
4561
|
+
* 站点名称。
|
4562
|
+
*/
|
4563
|
+
ZoneName?: string;
|
4564
|
+
/**
|
4565
|
+
* 验证子域名。验证站点时,该值为空。验证子域名是为具体子域名。
|
4566
|
+
*/
|
4567
|
+
Domain?: string;
|
4568
|
+
/**
|
4569
|
+
* 验证状态,取值有:
|
4570
|
+
<li> pending:验证中;</li>
|
4571
|
+
<li> finished:验证完成。</li>
|
4572
|
+
*/
|
4573
|
+
Status?: string;
|
4574
|
+
/**
|
4575
|
+
* 站点归属权校验:Dns校验信息。
|
4576
|
+
*/
|
4577
|
+
Ascription?: AscriptionInfo;
|
4578
|
+
/**
|
4579
|
+
* 域名当前的 NS 记录。
|
4580
|
+
*/
|
4581
|
+
OriginalNameServers?: Array<string>;
|
4582
|
+
/**
|
4583
|
+
* 站点归属权校验:文件校验信息。
|
4584
|
+
*/
|
4585
|
+
FileAscription?: FileAscriptionInfo;
|
4586
|
+
}
|
4487
4587
|
/**
|
4488
4588
|
* 正文传输超时时长的具体配置。
|
4489
4589
|
*/
|
@@ -4852,6 +4952,21 @@ export interface DDoSAttackEvent {
|
|
4852
4952
|
*/
|
4853
4953
|
DDoSBlockData: Array<DDoSBlockData>;
|
4854
4954
|
}
|
4955
|
+
/**
|
4956
|
+
* 存储客户端请求IP的头部信息配置
|
4957
|
+
*/
|
4958
|
+
export interface ClientIpHeader {
|
4959
|
+
/**
|
4960
|
+
* 配置开关,取值有:
|
4961
|
+
<li>on:开启;</li>
|
4962
|
+
<li>off:关闭。</li>
|
4963
|
+
*/
|
4964
|
+
Switch: string;
|
4965
|
+
/**
|
4966
|
+
* 回源时,存放客户端 IP 的请求头名称。当 Switch 为 on 时,该参数必填。该参数不允许填写 X-Forwarded-For。
|
4967
|
+
*/
|
4968
|
+
HeaderName?: string;
|
4969
|
+
}
|
4855
4970
|
/**
|
4856
4971
|
* DescribeConfigGroupVersionDetail请求参数结构体
|
4857
4972
|
*/
|
@@ -4923,9 +5038,43 @@ export interface CnameStatus {
|
|
4923
5038
|
Status?: string;
|
4924
5039
|
}
|
4925
5040
|
/**
|
4926
|
-
*
|
5041
|
+
* Waf配置。
|
4927
5042
|
*/
|
4928
|
-
export interface
|
5043
|
+
export interface WafConfig {
|
5044
|
+
/**
|
5045
|
+
* WafConfig开关,取值有:
|
5046
|
+
<li> on:开启;</li>
|
5047
|
+
<li> off:关闭。</li>开关仅与配置是否生效有关,即使为off(关闭),也可以正常修改配置的内容。
|
5048
|
+
*/
|
5049
|
+
Switch: string;
|
5050
|
+
/**
|
5051
|
+
* 上一次设置的防护级别,取值有:
|
5052
|
+
<li> loose:宽松;</li>
|
5053
|
+
<li> normal:正常;</li>
|
5054
|
+
<li> strict:严格;</li>
|
5055
|
+
<li> stricter:超严格;</li>
|
5056
|
+
<li> custom:自定义。</li>
|
5057
|
+
*/
|
5058
|
+
Level: string;
|
5059
|
+
/**
|
5060
|
+
* 全局WAF模式,取值有:
|
5061
|
+
<li> block:阻断(全局阻断,但可对详细规则配置观察);</li>
|
5062
|
+
<li> observe:观察(无论详细规则配置什么,都为观察)。</li>
|
5063
|
+
*/
|
5064
|
+
Mode: string;
|
5065
|
+
/**
|
5066
|
+
* 托管规则详细配置。如果为null,默认使用历史配置。
|
5067
|
+
*/
|
5068
|
+
WafRule?: WafRule;
|
5069
|
+
/**
|
5070
|
+
* AI规则引擎防护配置。如果为null,默认使用历史配置。
|
5071
|
+
*/
|
5072
|
+
AiRule?: AiRule;
|
5073
|
+
}
|
5074
|
+
/**
|
5075
|
+
* 流量防盗刷(仅适用中国大陆地区)的具体配置。
|
5076
|
+
*/
|
5077
|
+
export interface BandwidthAbuseDefense {
|
4929
5078
|
/**
|
4930
5079
|
* 流量防盗刷(仅适用中国大陆地区)是否开启。取值有:<li>on:开启;</li><li>off:关闭。</li>
|
4931
5080
|
*/
|
@@ -5311,6 +5460,23 @@ export interface DescribeDefaultCertificatesRequest {
|
|
5311
5460
|
*/
|
5312
5461
|
Limit?: number;
|
5313
5462
|
}
|
5463
|
+
/**
|
5464
|
+
* DescribeMultiPathGateways返回参数结构体
|
5465
|
+
*/
|
5466
|
+
export interface DescribeMultiPathGatewaysResponse {
|
5467
|
+
/**
|
5468
|
+
* 网关详情。
|
5469
|
+
*/
|
5470
|
+
Gateways?: Array<MultiPathGateway>;
|
5471
|
+
/**
|
5472
|
+
* 总条数。
|
5473
|
+
*/
|
5474
|
+
TotalCount?: number;
|
5475
|
+
/**
|
5476
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5477
|
+
*/
|
5478
|
+
RequestId?: string;
|
5479
|
+
}
|
5314
5480
|
/**
|
5315
5481
|
* 浏览器缓存 TTL 配置参数。
|
5316
5482
|
*/
|
@@ -5336,17 +5502,15 @@ export interface ModifyApplicationProxyRuleResponse {
|
|
5336
5502
|
RequestId?: string;
|
5337
5503
|
}
|
5338
5504
|
/**
|
5339
|
-
*
|
5505
|
+
* DDoS配置
|
5340
5506
|
*/
|
5341
|
-
export interface
|
5342
|
-
/**
|
5343
|
-
* 失败原因。
|
5344
|
-
*/
|
5345
|
-
Reason: string;
|
5507
|
+
export interface DDoS {
|
5346
5508
|
/**
|
5347
|
-
*
|
5509
|
+
* 开关,取值有:
|
5510
|
+
<li>on:开启;</li>
|
5511
|
+
<li>off:关闭。</li>
|
5348
5512
|
*/
|
5349
|
-
|
5513
|
+
Switch: string;
|
5350
5514
|
}
|
5351
5515
|
/**
|
5352
5516
|
* ModifyL7AccRulePriority返回参数结构体
|
@@ -6242,6 +6406,19 @@ export interface ModifyOriginParameters {
|
|
6242
6406
|
*/
|
6243
6407
|
PrivateParameters?: OriginPrivateParameters;
|
6244
6408
|
}
|
6409
|
+
/**
|
6410
|
+
* DescribeMultiPathGatewayRegions返回参数结构体
|
6411
|
+
*/
|
6412
|
+
export interface DescribeMultiPathGatewayRegionsResponse {
|
6413
|
+
/**
|
6414
|
+
* 网关可用地域列表。
|
6415
|
+
*/
|
6416
|
+
GatewayRegions?: Array<GatewayRegion>;
|
6417
|
+
/**
|
6418
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6419
|
+
*/
|
6420
|
+
RequestId?: string;
|
6421
|
+
}
|
6245
6422
|
/**
|
6246
6423
|
* DescribeL4Proxy请求参数结构体
|
6247
6424
|
*/
|
@@ -6417,6 +6594,19 @@ export interface DescribeZoneSettingResponse {
|
|
6417
6594
|
*/
|
6418
6595
|
RequestId?: string;
|
6419
6596
|
}
|
6597
|
+
/**
|
6598
|
+
* CreateMultiPathGateway返回参数结构体
|
6599
|
+
*/
|
6600
|
+
export interface CreateMultiPathGatewayResponse {
|
6601
|
+
/**
|
6602
|
+
* 网关 ID。
|
6603
|
+
*/
|
6604
|
+
GatewayId?: string;
|
6605
|
+
/**
|
6606
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6607
|
+
*/
|
6608
|
+
RequestId?: string;
|
6609
|
+
}
|
6420
6610
|
/**
|
6421
6611
|
* DescribePurgeTasks请求参数结构体
|
6422
6612
|
*/
|
@@ -6833,13 +7023,17 @@ export interface CacheConfigParameters {
|
|
6833
7023
|
CustomTime?: CacheConfigCustomTime;
|
6834
7024
|
}
|
6835
7025
|
/**
|
6836
|
-
*
|
7026
|
+
* CreateL4Proxy返回参数结构体
|
6837
7027
|
*/
|
6838
|
-
export interface
|
7028
|
+
export interface CreateL4ProxyResponse {
|
6839
7029
|
/**
|
6840
|
-
*
|
7030
|
+
* 四层实例 ID。
|
6841
7031
|
*/
|
6842
|
-
|
7032
|
+
ProxyId?: string;
|
7033
|
+
/**
|
7034
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7035
|
+
*/
|
7036
|
+
RequestId?: string;
|
6843
7037
|
}
|
6844
7038
|
/**
|
6845
7039
|
* 自定义 Cache Key 配置参数。该配置参数的 FullURLCache 和 QueryString 采用组合表达,具体示例可以参考:
|
@@ -7190,6 +7384,37 @@ export interface VerifyOwnershipRequest {
|
|
7190
7384
|
*/
|
7191
7385
|
Domain: string;
|
7192
7386
|
}
|
7387
|
+
/**
|
7388
|
+
* 多通道安全网关线路信息
|
7389
|
+
*/
|
7390
|
+
export interface MultiPathGatewayLine {
|
7391
|
+
/**
|
7392
|
+
* 线路 ID , 其中 line-0 和 line-1 为系统内置线路 ID,取值有:
|
7393
|
+
<li> line-0:直连线路,不支持添加、编辑和删除;</li>
|
7394
|
+
<li> line-1: EdgeOne 四层代理线路,支持修改实例和规则,不支持删除;</li>
|
7395
|
+
<li> line-2 及以上:EdgeOne 四层代理线路或者自定义线路,支持修改、删除实例和规则。</li>
|
7396
|
+
*/
|
7397
|
+
LineId?: string;
|
7398
|
+
/**
|
7399
|
+
* 线路类型,取值有:
|
7400
|
+
<li>direct :直连线路,不支持编辑、不支持删除;</li>
|
7401
|
+
<li>proxy :EdgeOne 四层代理线路,支持编辑修改实例和规则,不支持删除;</li>
|
7402
|
+
<li>custom :自定义线路,支持编辑、支持删除。</li>
|
7403
|
+
*/
|
7404
|
+
LineType?: string;
|
7405
|
+
/**
|
7406
|
+
* 线路地址,格式为 host:port 。
|
7407
|
+
*/
|
7408
|
+
LineAddress?: string;
|
7409
|
+
/**
|
7410
|
+
* 四层代理实例 ID ,当线路类型 LineType 取值为 proxy(EdgeOne 四层代理)返回。
|
7411
|
+
*/
|
7412
|
+
ProxyId?: string;
|
7413
|
+
/**
|
7414
|
+
* 转发规则 ID ,当线路类型 LineType 取值为 proxy(EdgeOne 四层代理)返回。
|
7415
|
+
*/
|
7416
|
+
RuleId?: string;
|
7417
|
+
}
|
7193
7418
|
/**
|
7194
7419
|
* 单连接下载限速配置参数。
|
7195
7420
|
*/
|
@@ -7215,6 +7440,15 @@ export interface ResponseSpeedLimitParameters {
|
|
7215
7440
|
*/
|
7216
7441
|
StartAt?: string;
|
7217
7442
|
}
|
7443
|
+
/**
|
7444
|
+
* ModifyMultiPathGateway返回参数结构体
|
7445
|
+
*/
|
7446
|
+
export interface ModifyMultiPathGatewayResponse {
|
7447
|
+
/**
|
7448
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7449
|
+
*/
|
7450
|
+
RequestId?: string;
|
7451
|
+
}
|
7218
7452
|
/**
|
7219
7453
|
* Web 安全的 BOT 规则结构。
|
7220
7454
|
*/
|
@@ -7451,6 +7685,21 @@ export interface DescribeDeployHistoryRequest {
|
|
7451
7685
|
*/
|
7452
7686
|
Filters?: Array<AdvancedFilter>;
|
7453
7687
|
}
|
7688
|
+
/**
|
7689
|
+
* CreateMultiPathGatewayLine返回参数结构体
|
7690
|
+
*/
|
7691
|
+
export interface CreateMultiPathGatewayLineResponse {
|
7692
|
+
/**
|
7693
|
+
* 线路 ID , 取值有:
|
7694
|
+
<li> line-1: EdgeOne 四层代理线路,支持修改实例和规则,不支持删除;</li>
|
7695
|
+
<li> line-2 及以上:EdgeOne 四层代理线路或者自定义线路,支持修改、删除实例和规则。</li>
|
7696
|
+
*/
|
7697
|
+
LineId?: string;
|
7698
|
+
/**
|
7699
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7700
|
+
*/
|
7701
|
+
RequestId?: string;
|
7702
|
+
}
|
7454
7703
|
/**
|
7455
7704
|
* 计费数据项
|
7456
7705
|
*/
|
@@ -7524,6 +7773,19 @@ export interface ModifyOriginGroupRequest {
|
|
7524
7773
|
*/
|
7525
7774
|
HostHeader?: string;
|
7526
7775
|
}
|
7776
|
+
/**
|
7777
|
+
* RefreshMultiPathGatewaySecretKey返回参数结构体
|
7778
|
+
*/
|
7779
|
+
export interface RefreshMultiPathGatewaySecretKeyResponse {
|
7780
|
+
/**
|
7781
|
+
* 多通道安全加速网关接入密钥。
|
7782
|
+
*/
|
7783
|
+
SecretKey?: string;
|
7784
|
+
/**
|
7785
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7786
|
+
*/
|
7787
|
+
RequestId?: string;
|
7788
|
+
}
|
7527
7789
|
/**
|
7528
7790
|
* DeleteZone返回参数结构体
|
7529
7791
|
*/
|
@@ -8932,6 +9194,36 @@ export interface ModifyL4ProxyStatusRequest {
|
|
8932
9194
|
*/
|
8933
9195
|
Status: string;
|
8934
9196
|
}
|
9197
|
+
/**
|
9198
|
+
* CreateMultiPathGatewayLine请求参数结构体
|
9199
|
+
*/
|
9200
|
+
export interface CreateMultiPathGatewayLineRequest {
|
9201
|
+
/**
|
9202
|
+
* 站点 ID 。
|
9203
|
+
*/
|
9204
|
+
ZoneId: string;
|
9205
|
+
/**
|
9206
|
+
* 多通道安全网关 ID 。
|
9207
|
+
*/
|
9208
|
+
GatewayId: string;
|
9209
|
+
/**
|
9210
|
+
* 线路类型,取值有:
|
9211
|
+
<li>direct :直连线路,不支持修改和删除。</li> <li>proxy :EdgeOne 四层代理线路,支持修改实例 ID 和规则 ID,不支持删除。</li> <li>custom :自定义线路,支持修改、删除实例 ID 和规则 ID。</li>
|
9212
|
+
*/
|
9213
|
+
LineType: string;
|
9214
|
+
/**
|
9215
|
+
* 线路地址,格式为 ip:port。
|
9216
|
+
*/
|
9217
|
+
LineAddress: string;
|
9218
|
+
/**
|
9219
|
+
* 四层代理实例 ID,当线路类型 LineType 取值为 proxy(EdgeOne 四层代理)必传,可由接口 [DescribeL4Proxy](https://cloud.tencent.com/document/api/1552/103413) 获取。
|
9220
|
+
*/
|
9221
|
+
ProxyId?: string;
|
9222
|
+
/**
|
9223
|
+
* 转发规则 ID ,当线路类型 LineType 取值为 proxy(EdgeOne 四层代理)必传,可以从接口 [DescribeL4ProxyRules](https://cloud.tencent.com/document/api/1552/103412) 获取。
|
9224
|
+
*/
|
9225
|
+
RuleId?: string;
|
9226
|
+
}
|
8935
9227
|
/**
|
8936
9228
|
* 套餐信息
|
8937
9229
|
*/
|
@@ -9280,6 +9572,23 @@ export interface DescribeCustomErrorPagesRequest {
|
|
9280
9572
|
*/
|
9281
9573
|
Limit?: number;
|
9282
9574
|
}
|
9575
|
+
/**
|
9576
|
+
* 多通道安全网关可用地域
|
9577
|
+
*/
|
9578
|
+
export interface GatewayRegion {
|
9579
|
+
/**
|
9580
|
+
* 地域 ID 。
|
9581
|
+
*/
|
9582
|
+
RegionId?: string;
|
9583
|
+
/**
|
9584
|
+
* 中文地域名称。
|
9585
|
+
*/
|
9586
|
+
CNName?: string;
|
9587
|
+
/**
|
9588
|
+
* 英文地域名称。
|
9589
|
+
*/
|
9590
|
+
ENName?: string;
|
9591
|
+
}
|
9283
9592
|
/**
|
9284
9593
|
* 缓存预刷新 配置参数。
|
9285
9594
|
*/
|
@@ -9347,6 +9656,42 @@ export interface Action {
|
|
9347
9656
|
*/
|
9348
9657
|
CodeAction?: CodeAction;
|
9349
9658
|
}
|
9659
|
+
/**
|
9660
|
+
* 源站组记录
|
9661
|
+
*/
|
9662
|
+
export interface OriginRecord {
|
9663
|
+
/**
|
9664
|
+
* 源站记录值,不包含端口信息,可以为:IPv4,IPv6,域名格式。
|
9665
|
+
*/
|
9666
|
+
Record: string;
|
9667
|
+
/**
|
9668
|
+
* 源站类型,取值有:
|
9669
|
+
<li>IP_DOMAIN:IPV4、IPV6、域名类型源站;</li>
|
9670
|
+
<li>COS:COS源。</li>
|
9671
|
+
<li>AWS_S3:AWS S3对象存储源站。</li>
|
9672
|
+
*/
|
9673
|
+
Type?: string;
|
9674
|
+
/**
|
9675
|
+
* 源站记录ID。
|
9676
|
+
*/
|
9677
|
+
RecordId?: string;
|
9678
|
+
/**
|
9679
|
+
* 源站权重,取值为0-100, 不填表示不设置权重,由系统自由调度,填0表示权重为0, 流量将不会调度到此源站。
|
9680
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9681
|
+
*/
|
9682
|
+
Weight?: number;
|
9683
|
+
/**
|
9684
|
+
* 是否私有鉴权,当源站类型 RecordType=COS/AWS_S3 时生效,取值有:
|
9685
|
+
<li>true:使用私有鉴权;</li>
|
9686
|
+
<li>false:不使用私有鉴权。</li>不填写,默认值为:false。
|
9687
|
+
|
9688
|
+
*/
|
9689
|
+
Private?: boolean;
|
9690
|
+
/**
|
9691
|
+
* 私有鉴权参数,当源站类型Private=true时有效。
|
9692
|
+
*/
|
9693
|
+
PrivateParameters?: Array<PrivateParameter>;
|
9694
|
+
}
|
9350
9695
|
/**
|
9351
9696
|
* 回源跟随重定向参数配置。
|
9352
9697
|
*/
|
@@ -9687,6 +10032,34 @@ export interface DescribeSecurityIPGroupInfoRequest {
|
|
9687
10032
|
*/
|
9688
10033
|
Offset?: number;
|
9689
10034
|
}
|
10035
|
+
/**
|
10036
|
+
* 例外规则的生效范围。
|
10037
|
+
*/
|
10038
|
+
export interface ExceptUserRuleScope {
|
10039
|
+
/**
|
10040
|
+
* 例外规则类型。其中complete模式代表全量数据进行例外,partial模式代表可选择指定模块指定字段进行例外,该字段取值有:
|
10041
|
+
<li>complete:完全跳过模式;</li>
|
10042
|
+
<li>partial:部分跳过模式。</li>
|
10043
|
+
*/
|
10044
|
+
Type?: string;
|
10045
|
+
/**
|
10046
|
+
* 生效的模块,该字段取值有:
|
10047
|
+
<li>waf:托管规则;</li>
|
10048
|
+
<li>rate:速率限制;</li>
|
10049
|
+
<li>acl:自定义规则;</li>
|
10050
|
+
<li>cc:cc攻击防护;</li>
|
10051
|
+
<li>bot:Bot防护。</li>
|
10052
|
+
*/
|
10053
|
+
Modules?: Array<string>;
|
10054
|
+
/**
|
10055
|
+
* 跳过部分规则ID的例外规则详情。如果为null,默认使用历史配置。
|
10056
|
+
*/
|
10057
|
+
PartialModules?: Array<PartialModule>;
|
10058
|
+
/**
|
10059
|
+
* 跳过具体字段不去扫描的例外规则详情。如果为null,默认使用历史配置。
|
10060
|
+
*/
|
10061
|
+
SkipConditions?: Array<SkipCondition>;
|
10062
|
+
}
|
9690
10063
|
/**
|
9691
10064
|
* 例外规则的详细模块配置。
|
9692
10065
|
*/
|
@@ -9835,6 +10208,19 @@ export interface FollowOrigin {
|
|
9835
10208
|
*/
|
9836
10209
|
DefaultCacheTime?: number;
|
9837
10210
|
}
|
10211
|
+
/**
|
10212
|
+
* DescribeMultiPathGateway返回参数结构体
|
10213
|
+
*/
|
10214
|
+
export interface DescribeMultiPathGatewayResponse {
|
10215
|
+
/**
|
10216
|
+
* 网关详情。
|
10217
|
+
*/
|
10218
|
+
GatewayDetail?: MultiPathGateway;
|
10219
|
+
/**
|
10220
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10221
|
+
*/
|
10222
|
+
RequestId?: string;
|
10223
|
+
}
|
9838
10224
|
/**
|
9839
10225
|
* IP 归属信息查询
|
9840
10226
|
*/
|
@@ -10040,19 +10426,21 @@ export interface ModifyContentIdentifierRequest {
|
|
10040
10426
|
Description: string;
|
10041
10427
|
}
|
10042
10428
|
/**
|
10043
|
-
*
|
10429
|
+
* DeleteMultiPathGatewayLine请求参数结构体
|
10044
10430
|
*/
|
10045
|
-
export interface
|
10431
|
+
export interface DeleteMultiPathGatewayLineRequest {
|
10046
10432
|
/**
|
10047
|
-
*
|
10048
|
-
<li>on:开启;</li>
|
10049
|
-
<li>off:关闭。</li>
|
10433
|
+
* 站点 ID。
|
10050
10434
|
*/
|
10051
|
-
|
10435
|
+
ZoneId: string;
|
10052
10436
|
/**
|
10053
|
-
*
|
10437
|
+
* 网关 ID。
|
10054
10438
|
*/
|
10055
|
-
|
10439
|
+
GatewayId: string;
|
10440
|
+
/**
|
10441
|
+
* 线路 ID。
|
10442
|
+
*/
|
10443
|
+
LineId: string;
|
10056
10444
|
}
|
10057
10445
|
/**
|
10058
10446
|
* 计费资源
|
@@ -10507,6 +10895,15 @@ export interface ModifyZoneResponse {
|
|
10507
10895
|
*/
|
10508
10896
|
RequestId?: string;
|
10509
10897
|
}
|
10898
|
+
/**
|
10899
|
+
* DeleteMultiPathGatewayLine返回参数结构体
|
10900
|
+
*/
|
10901
|
+
export interface DeleteMultiPathGatewayLineResponse {
|
10902
|
+
/**
|
10903
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10904
|
+
*/
|
10905
|
+
RequestId?: string;
|
10906
|
+
}
|
10510
10907
|
/**
|
10511
10908
|
* 智能客户端过滤
|
10512
10909
|
*/
|
@@ -11049,6 +11446,15 @@ export interface DeleteContentIdentifierRequest {
|
|
11049
11446
|
*/
|
11050
11447
|
ContentId: string;
|
11051
11448
|
}
|
11449
|
+
/**
|
11450
|
+
* RefreshMultiPathGatewaySecretKey请求参数结构体
|
11451
|
+
*/
|
11452
|
+
export interface RefreshMultiPathGatewaySecretKeyRequest {
|
11453
|
+
/**
|
11454
|
+
* 站点 ID。
|
11455
|
+
*/
|
11456
|
+
ZoneId: string;
|
11457
|
+
}
|
11052
11458
|
/**
|
11053
11459
|
* CreateContentIdentifier请求参数结构体
|
11054
11460
|
*/
|
@@ -12073,6 +12479,37 @@ export interface DescribeOverviewL7DataRequest {
|
|
12073
12479
|
*/
|
12074
12480
|
Area?: string;
|
12075
12481
|
}
|
12482
|
+
/**
|
12483
|
+
* CreateMultiPathGateway请求参数结构体
|
12484
|
+
*/
|
12485
|
+
export interface CreateMultiPathGatewayRequest {
|
12486
|
+
/**
|
12487
|
+
* 站点 ID。
|
12488
|
+
*/
|
12489
|
+
ZoneId: string;
|
12490
|
+
/**
|
12491
|
+
* 网关类型,取值有:
|
12492
|
+
<li> cloud:云上网关,腾讯云创建和管理的网关;</li>
|
12493
|
+
<li> private:自有网关,用户部署的私有网关。</li>
|
12494
|
+
*/
|
12495
|
+
GatewayType: string;
|
12496
|
+
/**
|
12497
|
+
* 网关名称,16 个字符以内,可用字符(a-z,A-Z,0-9,-,_)。
|
12498
|
+
*/
|
12499
|
+
GatewayName: string;
|
12500
|
+
/**
|
12501
|
+
* 网关端口,范围 1~65535(除去 8888 )。
|
12502
|
+
*/
|
12503
|
+
GatewayPort: number;
|
12504
|
+
/**
|
12505
|
+
* 网关地域,GatewayType 取值为 cloud(云上网关)必填。可以从接口 DescribeMultiPathGatewayRegions 获取 RegionId 列表。
|
12506
|
+
*/
|
12507
|
+
RegionId?: string;
|
12508
|
+
/**
|
12509
|
+
* 网关地址,GatewayType 取值为 private(自有网关)必填,使用该地址时,请确保该地址已录入腾讯云多通道安全加速网关系统。如未录入,需要在本接口调用前通过工单或者联系架构师把网关 IP 地址提前录入腾讯云多通道安全加速网关系统。
|
12510
|
+
*/
|
12511
|
+
GatewayIP?: string;
|
12512
|
+
}
|
12076
12513
|
/**
|
12077
12514
|
* DeleteSharedCNAME返回参数结构体
|
12078
12515
|
*/
|
@@ -12082,6 +12519,24 @@ export interface DeleteSharedCNAMEResponse {
|
|
12082
12519
|
*/
|
12083
12520
|
RequestId?: string;
|
12084
12521
|
}
|
12522
|
+
/**
|
12523
|
+
* ModifyMultiPathGatewaySecretKey返回参数结构体
|
12524
|
+
*/
|
12525
|
+
export interface ModifyMultiPathGatewaySecretKeyResponse {
|
12526
|
+
/**
|
12527
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12528
|
+
*/
|
12529
|
+
RequestId?: string;
|
12530
|
+
}
|
12531
|
+
/**
|
12532
|
+
* DescribeMultiPathGatewaySecretKey请求参数结构体
|
12533
|
+
*/
|
12534
|
+
export interface DescribeMultiPathGatewaySecretKeyRequest {
|
12535
|
+
/**
|
12536
|
+
* 站点 ID。
|
12537
|
+
*/
|
12538
|
+
ZoneId: string;
|
12539
|
+
}
|
12085
12540
|
/**
|
12086
12541
|
* DDoS封禁解封信息
|
12087
12542
|
*/
|
@@ -12099,6 +12554,29 @@ export interface DDoSBlockData {
|
|
12099
12554
|
*/
|
12100
12555
|
BlockArea: string;
|
12101
12556
|
}
|
12557
|
+
/**
|
12558
|
+
* DescribeMultiPathGateways请求参数结构体
|
12559
|
+
*/
|
12560
|
+
export interface DescribeMultiPathGatewaysRequest {
|
12561
|
+
/**
|
12562
|
+
* 站点 ID。
|
12563
|
+
*/
|
12564
|
+
ZoneId: string;
|
12565
|
+
/**
|
12566
|
+
* 分页查询偏移量。默认值:0。
|
12567
|
+
*/
|
12568
|
+
Offset?: number;
|
12569
|
+
/**
|
12570
|
+
* 分页查询限制数目。默认值:20,最大值:1000。
|
12571
|
+
*/
|
12572
|
+
Limit?: number;
|
12573
|
+
/**
|
12574
|
+
* 网关列表的过滤字段,该参数不填写时,返回当前 appid 下所有网关信息,详细的过滤条件如下:
|
12575
|
+
<li> gateway-type:按照网关类型进行过滤,支持取值 cloud 和 private,分别代表过滤云上网关和自由网关;</li>
|
12576
|
+
<li> keyword:按照网关名的关键字进行过滤。</li>
|
12577
|
+
*/
|
12578
|
+
Filters?: Array<Filter>;
|
12579
|
+
}
|
12102
12580
|
/**
|
12103
12581
|
* DescribePrefetchTasks请求参数结构体
|
12104
12582
|
*/
|
@@ -12129,18 +12607,17 @@ export interface DescribePrefetchTasksRequest {
|
|
12129
12607
|
Filters?: Array<AdvancedFilter>;
|
12130
12608
|
}
|
12131
12609
|
/**
|
12132
|
-
*
|
12610
|
+
* ModifyMultiPathGatewaySecretKey请求参数结构体
|
12133
12611
|
*/
|
12134
|
-
export interface
|
12612
|
+
export interface ModifyMultiPathGatewaySecretKeyRequest {
|
12135
12613
|
/**
|
12136
|
-
*
|
12614
|
+
* 站点 ID。
|
12137
12615
|
*/
|
12138
|
-
|
12616
|
+
ZoneId: string;
|
12139
12617
|
/**
|
12140
|
-
*
|
12141
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12618
|
+
* 多通道安全加速网关接入密钥,base64 字符串,编码前字符串长度为 32-48 个字符。
|
12142
12619
|
*/
|
12143
|
-
|
12620
|
+
SecretKey: string;
|
12144
12621
|
}
|
12145
12622
|
/**
|
12146
12623
|
* DNS 记录
|
@@ -12380,35 +12857,17 @@ export interface ModifyApplicationProxyStatusResponse {
|
|
12380
12857
|
RequestId?: string;
|
12381
12858
|
}
|
12382
12859
|
/**
|
12383
|
-
*
|
12860
|
+
* DescribeMultiPathGatewayLine返回参数结构体
|
12384
12861
|
*/
|
12385
|
-
export interface
|
12862
|
+
export interface DescribeMultiPathGatewayLineResponse {
|
12386
12863
|
/**
|
12387
|
-
*
|
12864
|
+
* 线路信息。
|
12388
12865
|
*/
|
12389
|
-
|
12390
|
-
/**
|
12391
|
-
* 验证子域名。验证站点时,该值为空。验证子域名是为具体子域名。
|
12392
|
-
*/
|
12393
|
-
Domain?: string;
|
12394
|
-
/**
|
12395
|
-
* 验证状态,取值有:
|
12396
|
-
<li> pending:验证中;</li>
|
12397
|
-
<li> finished:验证完成。</li>
|
12398
|
-
*/
|
12399
|
-
Status?: string;
|
12400
|
-
/**
|
12401
|
-
* 站点归属权校验:Dns校验信息。
|
12402
|
-
*/
|
12403
|
-
Ascription?: AscriptionInfo;
|
12404
|
-
/**
|
12405
|
-
* 域名当前的 NS 记录。
|
12406
|
-
*/
|
12407
|
-
OriginalNameServers?: Array<string>;
|
12866
|
+
Line?: MultiPathGatewayLine;
|
12408
12867
|
/**
|
12409
|
-
*
|
12868
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12410
12869
|
*/
|
12411
|
-
|
12870
|
+
RequestId?: string;
|
12412
12871
|
}
|
12413
12872
|
/**
|
12414
12873
|
* 负载均衡实例中需要绑定的源站组和优先级关系。
|
@@ -12793,17 +13252,13 @@ export interface CreateZoneResponse {
|
|
12793
13252
|
RequestId?: string;
|
12794
13253
|
}
|
12795
13254
|
/**
|
12796
|
-
*
|
13255
|
+
* 边缘函数触发规则条件。
|
12797
13256
|
*/
|
12798
|
-
export interface
|
12799
|
-
/**
|
12800
|
-
* 四层实例 ID。
|
12801
|
-
*/
|
12802
|
-
ProxyId?: string;
|
13257
|
+
export interface FunctionRuleCondition {
|
12803
13258
|
/**
|
12804
|
-
*
|
13259
|
+
* 边缘函数触发规则条件,该列表内所有项全部满足即判断该条件满足。
|
12805
13260
|
*/
|
12806
|
-
|
13261
|
+
RuleConditions: Array<RuleCondition>;
|
12807
13262
|
}
|
12808
13263
|
/**
|
12809
13264
|
* ModifySecurityPolicy返回参数结构体
|
@@ -12915,6 +13370,19 @@ export interface SecurityTemplateBinding {
|
|
12915
13370
|
*/
|
12916
13371
|
TemplateScope?: Array<TemplateScope>;
|
12917
13372
|
}
|
13373
|
+
/**
|
13374
|
+
* DescribeMultiPathGatewaySecretKey返回参数结构体
|
13375
|
+
*/
|
13376
|
+
export interface DescribeMultiPathGatewaySecretKeyResponse {
|
13377
|
+
/**
|
13378
|
+
* 接入密钥。
|
13379
|
+
*/
|
13380
|
+
SecretKey?: string;
|
13381
|
+
/**
|
13382
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13383
|
+
*/
|
13384
|
+
RequestId?: string;
|
13385
|
+
}
|
12918
13386
|
/**
|
12919
13387
|
* 节点缓存清除类型取值为 purge_cache_tag 时附带的信息。
|
12920
13388
|
*/
|
@@ -12924,6 +13392,15 @@ export interface CacheTag {
|
|
12924
13392
|
*/
|
12925
13393
|
Domains: Array<string>;
|
12926
13394
|
}
|
13395
|
+
/**
|
13396
|
+
* ModifyMultiPathGatewayLine返回参数结构体
|
13397
|
+
*/
|
13398
|
+
export interface ModifyMultiPathGatewayLineResponse {
|
13399
|
+
/**
|
13400
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13401
|
+
*/
|
13402
|
+
RequestId?: string;
|
13403
|
+
}
|
12927
13404
|
/**
|
12928
13405
|
* DescribeDefaultCertificates返回参数结构体
|
12929
13406
|
*/
|
@@ -13318,6 +13795,43 @@ export interface CheckRegionHealthStatus {
|
|
13318
13795
|
*/
|
13319
13796
|
OriginHealthStatus?: Array<OriginHealthStatus>;
|
13320
13797
|
}
|
13798
|
+
/**
|
13799
|
+
* ModifyMultiPathGatewayLine请求参数结构体
|
13800
|
+
*/
|
13801
|
+
export interface ModifyMultiPathGatewayLineRequest {
|
13802
|
+
/**
|
13803
|
+
* 站点 ID。
|
13804
|
+
*/
|
13805
|
+
ZoneId: string;
|
13806
|
+
/**
|
13807
|
+
* 多通道安全加速网关 ID 。
|
13808
|
+
*/
|
13809
|
+
GatewayId: string;
|
13810
|
+
/**
|
13811
|
+
* 线路 ID , 取值有:
|
13812
|
+
<li> line-1: EdgeOne 四层代理线路,支持修改实例和规则,不支持删除;</li>
|
13813
|
+
<li> line-2 及以上:EdgeOne 四层代理线路或者自定义线路,支持修改、删除实例和规则。</li>
|
13814
|
+
*/
|
13815
|
+
LineId: string;
|
13816
|
+
/**
|
13817
|
+
* 线路类型,取值有:
|
13818
|
+
<li>proxy :EdgeOne 四层代理线路,支持修改实例和规则,不支持删除;</li>
|
13819
|
+
<li>custom :自定义线路,支持编辑、删除实例和规则。</li>
|
13820
|
+
*/
|
13821
|
+
LineType?: string;
|
13822
|
+
/**
|
13823
|
+
* 线路地址,格式为 host:port,直连线路( LineType 取值为 direct )不允许修改,其余类型支持修改。
|
13824
|
+
*/
|
13825
|
+
LineAddress?: string;
|
13826
|
+
/**
|
13827
|
+
* 四层代理实例 ID ,当线路类型 LineType 取值为 proxy(EdgeOne 四层代理)可传入,进行修改。
|
13828
|
+
*/
|
13829
|
+
ProxyId?: string;
|
13830
|
+
/**
|
13831
|
+
* 转发规则 ID ,当线路类型 LineType 取值为 proxy(EdgeOne 四层代理)可传入,进行修改。
|
13832
|
+
*/
|
13833
|
+
RuleId?: string;
|
13834
|
+
}
|
13321
13835
|
/**
|
13322
13836
|
* DescribeFunctionRules请求参数结构体
|
13323
13837
|
*/
|