tencentcloud-sdk-nodejs-cynosdb 4.1.249 → 4.1.258
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
|
@@ -8681,27 +8681,27 @@ export interface DescribeClusterPasswordComplexityRequest {
|
|
|
8681
8681
|
ClusterId: string;
|
|
8682
8682
|
}
|
|
8683
8683
|
/**
|
|
8684
|
-
*
|
|
8684
|
+
* 查询过滤器。用于 DescribeClusterAndInstances 接口的过滤条件。
|
|
8685
8685
|
*/
|
|
8686
8686
|
export interface QueryFilter {
|
|
8687
8687
|
/**
|
|
8688
|
-
*
|
|
8688
|
+
* 字段值列表,与 Names 一一对应。InstanceId/ClusterId 为精确匹配,InstanceName 默认模糊匹配
|
|
8689
8689
|
*/
|
|
8690
8690
|
Values: Array<string>;
|
|
8691
8691
|
/**
|
|
8692
|
-
*
|
|
8692
|
+
* 搜索字段名称列表,仅支持以下 3 个字段(不区分大小写,多个值为 OR 关系):ClusterId(按集群 ID 过滤,精确匹配)、InstanceId(按实例 ID 反查所属集群)、InstanceName(按实例名称反查所属集群,默认 LIKE 模糊匹配,ExactMatch=true 时精确匹配)。InstanceId 与 InstanceName 同时传入时取交集(AND 语义)。
|
|
8693
8693
|
*/
|
|
8694
|
-
Names
|
|
8694
|
+
Names?: Array<string>;
|
|
8695
8695
|
/**
|
|
8696
|
-
*
|
|
8696
|
+
* 是否精确匹配。仅对 InstanceName 生效:true 精确匹配,false(默认)LIKE 模糊匹配。
|
|
8697
8697
|
*/
|
|
8698
8698
|
ExactMatch?: boolean;
|
|
8699
8699
|
/**
|
|
8700
|
-
*
|
|
8700
|
+
* 搜索字段名称(单个字段模式,与 Names 二选一)。支持:ClusterId、InstanceId、InstanceName
|
|
8701
8701
|
*/
|
|
8702
8702
|
Name?: string;
|
|
8703
8703
|
/**
|
|
8704
|
-
*
|
|
8704
|
+
* 操作符(预留字段,当前未启用)。可选值:>、>=、!=、=、<、<=
|
|
8705
8705
|
* @deprecated
|
|
8706
8706
|
*/
|
|
8707
8707
|
Operator?: string;
|