tencentcloud-sdk-nodejs-cdb 4.0.276 → 4.0.280

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.
@@ -1644,36 +1644,34 @@ export interface ReleaseResult {
1644
1644
  Message: string;
1645
1645
  }
1646
1646
  /**
1647
- * CreateAuditLogFile请求参数结构体
1647
+ * 数据代理组信息
1648
1648
  */
1649
- export interface CreateAuditLogFileRequest {
1650
- /**
1651
- * 实例 ID,格式如:cdb-c1nl9rpv 或者 cdbro-c1nl9rpv,与云数据库控制台页面中显示的实例 ID 相同。
1652
- */
1653
- InstanceId: string;
1649
+ export interface ProxyGroups {
1654
1650
  /**
1655
- * 开始时间,格式为:"2017-07-12 10:29:20"。
1656
- */
1657
- StartTime: string;
1651
+ * 代理基本信息
1652
+ 注意:此字段可能返回 null,表示取不到有效值。
1653
+ */
1654
+ BaseGroup: BaseGroupInfo;
1658
1655
  /**
1659
- * 结束时间,格式为:"2017-07-12 10:29:20"。
1660
- */
1661
- EndTime: string;
1656
+ * 代理地址信息
1657
+ 注意:此字段可能返回 null,表示取不到有效值。
1658
+ */
1659
+ Address: Array<Address>;
1662
1660
  /**
1663
- * 排序方式。支持值包括:"ASC" - 升序,"DESC" - 降序。
1664
- */
1665
- Order?: string;
1661
+ * 代理连接池信息
1662
+ 注意:此字段可能返回 null,表示取不到有效值。
1663
+ */
1664
+ ConnectionPoolInfo: ConnectionPoolInfo;
1666
1665
  /**
1667
- * 排序字段。支持值包括:
1668
- "timestamp" - 时间戳;
1669
- "affectRows" - 影响行数;
1670
- "execTime" - 执行时间。
1666
+ * 代理节点信息
1667
+ 注意:此字段可能返回 null,表示取不到有效值。
1671
1668
  */
1672
- OrderBy?: string;
1669
+ ProxyNode: Array<ProxyNodeInfo>;
1673
1670
  /**
1674
- * 过滤条件。可按设置的过滤条件过滤日志。
1675
- */
1676
- Filter?: AuditLogFilter;
1671
+ * 代理路由信息
1672
+ 注意:此字段可能返回 null,表示取不到有效值。
1673
+ */
1674
+ RWInstInfo: RWInfos;
1677
1675
  }
1678
1676
  /**
1679
1677
  * 审计规则
@@ -2754,6 +2752,19 @@ export interface BalanceRoGroupLoadRequest {
2754
2752
  */
2755
2753
  RoGroupId: string;
2756
2754
  }
2755
+ /**
2756
+ * QueryCDBProxy请求参数结构体
2757
+ */
2758
+ export interface QueryCDBProxyRequest {
2759
+ /**
2760
+ * 实例ID
2761
+ */
2762
+ InstanceId: string;
2763
+ /**
2764
+ * 代理ID
2765
+ */
2766
+ ProxyGroupId?: string;
2767
+ }
2757
2768
  /**
2758
2769
  * DescribeBackupOverview返回参数结构体
2759
2770
  */
@@ -2789,17 +2800,23 @@ export interface DescribeLocalBinlogConfigRequest {
2789
2800
  InstanceId: string;
2790
2801
  }
2791
2802
  /**
2792
- * 实例的标签信息
2803
+ * QueryCDBProxy返回参数结构体
2793
2804
  */
2794
- export interface TagsInfoOfInstance {
2805
+ export interface QueryCDBProxyResponse {
2795
2806
  /**
2796
- * 实例Id
2797
- */
2798
- InstanceId: string;
2807
+ * 代理数量
2808
+ 注意:此字段可能返回 null,表示取不到有效值。
2809
+ */
2810
+ Count: number;
2799
2811
  /**
2800
- * 标签信息
2812
+ * 代理信息
2813
+ 注意:此字段可能返回 null,表示取不到有效值。
2814
+ */
2815
+ ProxyGroup: Array<ProxyGroups>;
2816
+ /**
2817
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2801
2818
  */
2802
- Tags: Array<TagInfoUnit>;
2819
+ RequestId?: string;
2803
2820
  }
2804
2821
  /**
2805
2822
  * DescribeDeviceMonitorInfo请求参数结构体
@@ -2922,6 +2939,19 @@ export interface DescribeDeviceMonitorInfoResponse {
2922
2939
  */
2923
2940
  RequestId?: string;
2924
2941
  }
2942
+ /**
2943
+ * 实例的标签信息
2944
+ */
2945
+ export interface TagsInfoOfInstance {
2946
+ /**
2947
+ * 实例Id
2948
+ */
2949
+ InstanceId: string;
2950
+ /**
2951
+ * 标签信息
2952
+ */
2953
+ Tags: Array<TagInfoUnit>;
2954
+ }
2925
2955
  /**
2926
2956
  * DescribeDBInstanceConfig请求参数结构体
2927
2957
  */
@@ -5267,6 +5297,38 @@ export interface ModifyAccountHostRequest {
5267
5297
  */
5268
5298
  NewHost: string;
5269
5299
  }
5300
+ /**
5301
+ * CreateAuditLogFile请求参数结构体
5302
+ */
5303
+ export interface CreateAuditLogFileRequest {
5304
+ /**
5305
+ * 实例 ID,格式如:cdb-c1nl9rpv 或者 cdbro-c1nl9rpv,与云数据库控制台页面中显示的实例 ID 相同。
5306
+ */
5307
+ InstanceId: string;
5308
+ /**
5309
+ * 开始时间,格式为:"2017-07-12 10:29:20"。
5310
+ */
5311
+ StartTime: string;
5312
+ /**
5313
+ * 结束时间,格式为:"2017-07-12 10:29:20"。
5314
+ */
5315
+ EndTime: string;
5316
+ /**
5317
+ * 排序方式。支持值包括:"ASC" - 升序,"DESC" - 降序。
5318
+ */
5319
+ Order?: string;
5320
+ /**
5321
+ * 排序字段。支持值包括:
5322
+ "timestamp" - 时间戳;
5323
+ "affectRows" - 影响行数;
5324
+ "execTime" - 执行时间。
5325
+ */
5326
+ OrderBy?: string;
5327
+ /**
5328
+ * 过滤条件。可按设置的过滤条件过滤日志。
5329
+ */
5330
+ Filter?: AuditLogFilter;
5331
+ }
5270
5332
  /**
5271
5333
  * CreateAuditRule请求参数结构体
5272
5334
  */
@@ -5486,6 +5548,52 @@ export interface DescribeTagsOfInstanceIdsRequest {
5486
5548
  */
5487
5549
  Limit?: number;
5488
5550
  }
5551
+ /**
5552
+ * proxy读写分离信息
5553
+ */
5554
+ export interface RWInfos {
5555
+ /**
5556
+ * 代理实例数量
5557
+ 注意:此字段可能返回 null,表示取不到有效值。
5558
+ */
5559
+ InstCount: number;
5560
+ /**
5561
+ * 权重分配模式;
5562
+ 系统自动分配:"system", 自定义:"custom"
5563
+ 注意:此字段可能返回 null,表示取不到有效值。
5564
+ */
5565
+ WeightMode: string;
5566
+ /**
5567
+ * 是否开启延迟剔除
5568
+ 注意:此字段可能返回 null,表示取不到有效值。
5569
+ */
5570
+ IsKickOut: boolean;
5571
+ /**
5572
+ * 最小保留数
5573
+ 注意:此字段可能返回 null,表示取不到有效值。
5574
+ */
5575
+ MinCount: number;
5576
+ /**
5577
+ * 延迟剔除阈值
5578
+ 注意:此字段可能返回 null,表示取不到有效值。
5579
+ */
5580
+ MaxDelay: number;
5581
+ /**
5582
+ * 是否开启故障转移
5583
+ 注意:此字段可能返回 null,表示取不到有效值。
5584
+ */
5585
+ FailOver: boolean;
5586
+ /**
5587
+ * 是否自动添加RO
5588
+ 注意:此字段可能返回 null,表示取不到有效值。
5589
+ */
5590
+ AutoAddRo: boolean;
5591
+ /**
5592
+ * 代理实例信息
5593
+ 注意:此字段可能返回 null,表示取不到有效值。
5594
+ */
5595
+ RWInstInfo: Array<RWInstanceInfo>;
5596
+ }
5489
5597
  /**
5490
5598
  * CloseCDBProxy返回参数结构体
5491
5599
  */