tencentcloud-sdk-nodejs-cynosdb 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-cynosdb",
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",
@@ -379,7 +379,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
379
379
  */
380
380
  ModifyLibraDBClusterAccountDescription(req: ModifyLibraDBClusterAccountDescriptionRequest, cb?: (error: string, rep: ModifyLibraDBClusterAccountDescriptionResponse) => void): Promise<ModifyLibraDBClusterAccountDescriptionResponse>;
381
381
  /**
382
- * 此接口(DescribeInstanceSlowQueries)用于查询实例慢日志详情。
382
+ * 此接口(DescribeInstanceSlowQueries)用于查询实例慢日志详情。受到平台返回大小限制,当返回结果过大时,可能会对超过限制的内容进行截断。
383
383
  */
384
384
  DescribeInstanceSlowQueries(req: DescribeInstanceSlowQueriesRequest, cb?: (error: string, rep: DescribeInstanceSlowQueriesResponse) => void): Promise<DescribeInstanceSlowQueriesResponse>;
385
385
  /**
@@ -587,7 +587,7 @@ class Client extends TencentCloudCommon.AbstractClient {
587
587
  return this.request("ModifyLibraDBClusterAccountDescription", req, cb);
588
588
  }
589
589
  /**
590
- * 此接口(DescribeInstanceSlowQueries)用于查询实例慢日志详情。
590
+ * 此接口(DescribeInstanceSlowQueries)用于查询实例慢日志详情。受到平台返回大小限制,当返回结果过大时,可能会对超过限制的内容进行截断。
591
591
  */
592
592
  async DescribeInstanceSlowQueries(req, cb) {
593
593
  return this.request("DescribeInstanceSlowQueries", req, cb);
@@ -10258,11 +10258,11 @@ export interface DescribeAuditInstanceListRequest {
10258
10258
  */
10259
10259
  export interface DescribeInstanceSlowQueriesResponse {
10260
10260
  /**
10261
- * 总条数
10261
+ * <p>总条数</p>
10262
10262
  */
10263
10263
  TotalCount?: number;
10264
10264
  /**
10265
- * 慢查询记录
10265
+ * <p>慢查询记录</p>
10266
10266
  */
10267
10267
  SlowQueries?: Array<SlowQueriesItem>;
10268
10268
  /**
@@ -11789,47 +11789,47 @@ export interface DescribeClusterDetailResponse {
11789
11789
  */
11790
11790
  export interface DescribeInstanceSlowQueriesRequest {
11791
11791
  /**
11792
- * 实例ID
11792
+ * <p>实例ID</p>
11793
11793
  */
11794
11794
  InstanceId: string;
11795
11795
  /**
11796
- * 事务开始最早时间
11796
+ * <p>事务开始最早时间</p>
11797
11797
  */
11798
11798
  StartTime?: string;
11799
11799
  /**
11800
- * 事务开始最晚时间
11800
+ * <p>事务开始最晚时间</p>
11801
11801
  */
11802
11802
  EndTime?: string;
11803
11803
  /**
11804
- * 限制条数
11804
+ * <p>限制条数</p><p>建议控制 limit 大小,当 limit 过大时,由于平台返回结果大小限制,可能会造成截断</p>
11805
11805
  */
11806
11806
  Limit?: number;
11807
11807
  /**
11808
- * 偏移量
11808
+ * <p>偏移量</p>
11809
11809
  */
11810
11810
  Offset?: number;
11811
11811
  /**
11812
- * 用户名
11812
+ * <p>用户名</p>
11813
11813
  */
11814
11814
  Username?: string;
11815
11815
  /**
11816
- * 客户端host
11816
+ * <p>客户端host</p>
11817
11817
  */
11818
11818
  Host?: string;
11819
11819
  /**
11820
- * 数据库名
11820
+ * <p>数据库名</p>
11821
11821
  */
11822
11822
  Database?: string;
11823
11823
  /**
11824
- * 排序字段,可选值:QueryTime,LockTime,RowsExamined,RowsSent
11824
+ * <p>排序字段</p><p>枚举值:</p><ul><li>QueryTime: 按照 SQL 语句的总执行时长排序</li><li>LockTime: 按照 SQL 语句在等待锁(如表锁、行锁)上消耗的时间排序</li><li>RowsExamined: 按照 SQL 语句在执行过程中扫描的行数排序</li><li>RowsSent: 按照 SQL 语句最终返回给客户端的结果行数排序</li><li>Timestamp: 按照慢查询语句发生的时间戳排序</li></ul>
11825
11825
  */
11826
11826
  OrderBy?: string;
11827
11827
  /**
11828
- * 排序类型,可选值:asc,desc
11828
+ * <p>排序类型,可选值:asc,desc</p>
11829
11829
  */
11830
11830
  OrderByType?: string;
11831
11831
  /**
11832
- * sql语句
11832
+ * <p>sql语句</p>
11833
11833
  */
11834
11834
  SqlText?: string;
11835
11835
  }