tencentcloud-sdk-nodejs-cls 4.1.230 → 4.1.232

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-cls",
3
- "version": "4.1.230",
3
+ "version": "4.1.232",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -3498,40 +3498,23 @@ export interface DescribeWebCallbacksRequest {
3498
3498
  */
3499
3499
  export interface ConsumerContent {
3500
3500
  /**
3501
- * 是否投递 TAG 信息。
3502
- 当EnableTag为true时,表示投递TAG元信息。
3501
+ * <p>是否投递 TAG 信息。<br>当EnableTag为true时,表示投递TAG元信息。</p>
3503
3502
  */
3504
3503
  EnableTag: boolean;
3505
3504
  /**
3506
- * 需要投递的元数据列表,目前仅支持:\_\_SOURCE\_\_,\_\_FILENAME\_\_,\_\_TIMESTAMP\_\_,\_\_HOSTNAME\_\_和\_\_PKGID\_\_
3505
+ * <p>需要投递的元数据列表,目前仅支持:__SOURCE__,__FILENAME__,__TIMESTAMP__,__HOSTNAME__和__PKGID__</p>
3507
3506
  */
3508
3507
  MetaFields: Array<string>;
3509
3508
  /**
3510
- * EnableTag为true时,必须填写TagJsonNotTiled字段。
3511
- TagJsonNotTiled用于标识tag信息是否json平铺。
3512
-
3513
- TagJsonNotTiled为true时不平铺,示例:
3514
- TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
3515
- 不平铺:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
3516
-
3517
- TagJsonNotTiled为false时平铺,示例:
3518
- TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
3519
- 平铺:`{"__TAG__.fieldA":200,"__TAG__.fieldB":"text"}`
3509
+ * <p>当EnableTag为true时,必须填写TagJsonNotTiled字段。<br>TagJsonNotTiled用于标识tag信息是否json平铺。</p><p>TagJsonNotTiled为true时不平铺,示例:<br>TAG信息:<code>{&quot;__TAG__&quot;:{&quot;fieldA&quot;:200,&quot;fieldB&quot;:&quot;text&quot;}}</code><br>不平铺:<code>{&quot;__TAG__&quot;:{&quot;fieldA&quot;:200,&quot;fieldB&quot;:&quot;text&quot;}}</code></p><p>TagJsonNotTiled为false时平铺,示例:<br>TAG信息:<code>{&quot;__TAG__&quot;:{&quot;fieldA&quot;:200,&quot;fieldB&quot;:&quot;text&quot;}}</code><br>平铺:<code>{&quot;__TAG__.fieldA&quot;:200,&quot;__TAG__.fieldB&quot;:&quot;text&quot;}</code></p>
3520
3510
  */
3521
3511
  TagJsonNotTiled?: boolean;
3522
3512
  /**
3523
- * 投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1
3513
+ * <p>投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1。</p>
3524
3514
  */
3525
3515
  TimestampAccuracy?: number;
3526
3516
  /**
3527
- * 投递Json格式。
3528
- JsonType为0:和原始日志一致,不转义。示例:
3529
- 日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
3530
- 投递到Ckafka:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
3531
-
3532
- JsonType为1:转义。示例:
3533
- 日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
3534
- 投递到Ckafka:`{"a":"aa","b":"{\"b1\":\"b1b1\", \"c1\":\"c1c1\"}"}`
3517
+ * <p>投递Json格式。</p><p>枚举值:</p><ul><li>0: 转义。示例:<br>日志原文:<code>{&quot;a&quot;:&quot;aa&quot;, &quot;b&quot;:{&quot;b1&quot;:&quot;b1b1&quot;, &quot;c1&quot;:&quot;c1c1&quot;}}</code><br>投递到Ckafka:<code>{&quot;a&quot;:&quot;aa&quot;,&quot;b&quot;:&quot;{\&quot;b1\&quot;:\&quot;b1b1\&quot;, \&quot;c1\&quot;:\&quot;c1c1\&quot;}&quot;}</code></li><li>1: 和原始日志一致,不转义。示例:<br>日志原文:<code>{&quot;a&quot;:&quot;aa&quot;, &quot;b&quot;:{&quot;b1&quot;:&quot;b1b1&quot;, &quot;c1&quot;:&quot;c1c1&quot;}}</code><br>投递到Ckafka:<code>{&quot;a&quot;:&quot;aa&quot;, &quot;b&quot;:{&quot;b1&quot;:&quot;b1b1&quot;, &quot;c1&quot;:&quot;c1c1&quot;}}</code></li></ul>
3535
3518
  */
3536
3519
  JsonType?: number;
3537
3520
  }