tencentcloud-sdk-nodejs-teo 4.1.146 → 4.1.147

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-teo",
3
- "version": "4.1.146",
3
+ "version": "4.1.147",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -2857,6 +2857,10 @@ export interface ModifyZoneSettingRequest {
2857
2857
  不填写表示保持原有配置。
2858
2858
  */
2859
2859
  Grpc?: Grpc;
2860
+ /**
2861
+ * 网络错误日志记录配置。不填写表示保持原有配置。
2862
+ */
2863
+ NetworkErrorLogging?: NetworkErrorLogging;
2860
2864
  /**
2861
2865
  * 图片优化配置。
2862
2866
  不填写表示关闭。
@@ -4730,6 +4734,11 @@ export interface ZoneConfig {
4730
4734
  注意:此字段可能返回 null,表示取不到有效值。
4731
4735
  */
4732
4736
  Grpc?: GrpcParameters;
4737
+ /**
4738
+ * 网络错误日志记录配置。
4739
+ 注意:此字段可能返回 null,表示取不到有效值。
4740
+ */
4741
+ NetworkErrorLogging?: NetworkErrorLoggingParameters;
4733
4742
  /**
4734
4743
  * 中国大陆加速优化配置。
4735
4744
  注意:此字段可能返回 null,表示取不到有效值。
@@ -11059,6 +11068,11 @@ export interface ZoneSetting {
11059
11068
  注意:此字段可能返回 null,表示取不到有效值。
11060
11069
  */
11061
11070
  Grpc?: Grpc;
11071
+ /**
11072
+ * 网络错误日志记录配置。
11073
+ 注意:此字段可能返回 null,表示取不到有效值。
11074
+ */
11075
+ NetworkErrorLogging?: NetworkErrorLogging;
11062
11076
  /**
11063
11077
  * 图片优化相关配置。
11064
11078
  注意:此字段可能返回 null,表示取不到有效值。
@@ -12461,6 +12475,17 @@ export interface L4ProxyRule {
12461
12475
  */
12462
12476
  RemoteAuth?: L4ProxyRemoteAuth;
12463
12477
  }
12478
+ /**
12479
+ * 网络错误日志记录配置项。
12480
+ */
12481
+ export interface NetworkErrorLoggingParameters {
12482
+ /**
12483
+ * 网络错误日志记录配置开关,取值有:
12484
+ <li>on:开启;</li>
12485
+ <li>off:关闭。</li>
12486
+ */
12487
+ Switch?: string;
12488
+ }
12464
12489
  /**
12465
12490
  * 自定义 Cache Key 查询字符串配置参数。
12466
12491
  */
@@ -13185,6 +13210,17 @@ export interface UpstreamRequestCookie {
13185
13210
  */
13186
13211
  Values?: Array<string>;
13187
13212
  }
13213
+ /**
13214
+ * 网络错误日志记录配置项
13215
+ */
13216
+ export interface NetworkErrorLogging {
13217
+ /**
13218
+ * 是否开启网络错误日志记录配置,取值有:
13219
+ <li>on:开启;</li>
13220
+ <li>off:关闭。</li>
13221
+ */
13222
+ Switch: string;
13223
+ }
13188
13224
  /**
13189
13225
  * DescribeDDoSAttackTopData请求参数结构体
13190
13226
  */