tencentcloud-sdk-nodejs-cynosdb 4.1.233 → 4.1.235

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.233",
3
+ "version": "4.1.235",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -614,18 +614,22 @@ export interface DescribeSlaveZonesResponse {
614
614
  */
615
615
  export interface DescribeProxiesResponse {
616
616
  /**
617
- * 数据库代理组数
617
+ * <p>数据库代理组数</p>
618
618
  */
619
619
  TotalCount?: number;
620
620
  /**
621
- * 数据库代理组列表
621
+ * <p>数据库代理组列表</p>
622
622
  */
623
623
  ProxyGroupInfos?: Array<ProxyGroupInfo>;
624
624
  /**
625
- * 数据库代理节点
625
+ * <p>数据库代理节点</p>
626
626
  注意:此字段可能返回 null,表示取不到有效值。
627
627
  */
628
628
  ProxyNodeInfos?: Array<ProxyNodeInfo>;
629
+ /**
630
+ * <p>sql自动转发</p>
631
+ */
632
+ ColumnStoreProxyForward?: string;
629
633
  /**
630
634
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
631
635
  */
@@ -4570,32 +4574,27 @@ export interface SaveBackupClusterInfo {
4570
4574
  */
4571
4575
  export interface DescribeProxiesRequest {
4572
4576
  /**
4573
- * 集群 ID(该参数必传,例如 cynosdbmysql-2u2mh111)。
4577
+ * <p>集群 ID(该参数必传,例如 cynosdbmysql-2u2mh111)。</p>
4574
4578
  */
4575
4579
  ClusterId?: string;
4576
4580
  /**
4577
- * 返回数量,默认为 20,最大值为 100
4581
+ * <p>返回数量,默认为 20,最大值为 100</p>
4578
4582
  */
4579
4583
  Limit?: number;
4580
4584
  /**
4581
- * 记录偏移量,默认值为0
4585
+ * <p>记录偏移量,默认值为0</p>
4582
4586
  */
4583
4587
  Offset?: number;
4584
4588
  /**
4585
- * 排序字段,取值范围:
4586
- <li> CREATETIME:创建时间</li>
4587
- <li> PERIODENDTIME:过期时间</li>
4589
+ * <p>排序字段,取值范围:</p><li> CREATETIME:创建时间</li><li> PERIODENDTIME:过期时间</li>
4588
4590
  */
4589
4591
  OrderBy?: string;
4590
4592
  /**
4591
- * 排序类型,取值范围:
4592
- <li> ASC:升序排序 </li>
4593
- <li> DESC:降序排序 </li>
4593
+ * <p>排序类型,取值范围:</p><li> ASC:升序排序 </li><li> DESC:降序排序 </li>
4594
4594
  */
4595
4595
  OrderByType?: string;
4596
4596
  /**
4597
- * 搜索条件,若存在多个 Filter 时,Filter 间的关系为逻辑与(AND)关系。
4598
- 说明:此参数当前仅支持 Status 和 ProxyGroupId 两种过滤条件。
4597
+ * <p>搜索条件,若存在多个 Filter 时,Filter 间的关系为逻辑与(AND)关系。<br>说明:此参数当前仅支持 Status 和 ProxyGroupId 两种过滤条件。</p>
4599
4598
  */
4600
4599
  Filters?: Array<QueryParamFilter>;
4601
4600
  }