tencentcloud-sdk-nodejs-intl-en 3.0.1384 → 3.0.1385

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-intl-en",
3
- "version": "3.0.1384",
3
+ "version": "3.0.1385",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1384";
1
+ const sdkVersion = "3.0.1385";
2
2
  module.exports = sdkVersion
@@ -19085,7 +19085,7 @@ class DescribeClusterPasswordComplexityRequest extends AbstractModel {
19085
19085
  }
19086
19086
 
19087
19087
  /**
19088
- * Query filter
19088
+ * Query filter. Filter criteria for the DescribeClusterAndInstances API.
19089
19089
  * @class
19090
19090
  */
19091
19091
  class QueryFilter extends AbstractModel {
@@ -19093,31 +19093,31 @@ class QueryFilter extends AbstractModel {
19093
19093
  super();
19094
19094
 
19095
19095
  /**
19096
- * Search field. Valid values: "InstanceId", "ProjectId", "InstanceName", "Vip"
19096
+ * Field value list, in one-to-one correspondence with Names. InstanceId/ClusterId uses exact matching, and InstanceName uses fuzzy matching by default.
19097
19097
  * @type {Array.<string> || null}
19098
19098
  */
19099
- this.Names = null;
19099
+ this.Values = null;
19100
19100
 
19101
19101
  /**
19102
- * Search string
19102
+ * Search field name list, support the following 3 fields (case-insensitive, multiple values are OR relationship): ClusterId (filter by cluster ID, exact match), InstanceId (reverse-check cluster by instance ID), InstanceName (reverse-check cluster by instance name, default LIKE fuzzy matching, exact match when ExactMatch=true). Take the intersection when InstanceId and InstanceName are input at the same time (AND semantics).
19103
19103
  * @type {Array.<string> || null}
19104
19104
  */
19105
- this.Values = null;
19105
+ this.Names = null;
19106
19106
 
19107
19107
  /**
19108
- * Whether to use exact match
19108
+ * Exact match. Only applicable to InstanceName: true for exact matching, false (default) for LIKE fuzzy matching.
19109
19109
  * @type {boolean || null}
19110
19110
  */
19111
19111
  this.ExactMatch = null;
19112
19112
 
19113
19113
  /**
19114
- * Search field
19114
+ * Search field name (single field mode, choose between this and Names). ClusterId, InstanceId, and InstanceName are supported.
19115
19115
  * @type {string || null}
19116
19116
  */
19117
19117
  this.Name = null;
19118
19118
 
19119
19119
  /**
19120
- * Operator
19120
+ * Operator (reserved field, currently disabled). Available values: >, >=, !=, =, <, <=
19121
19121
  * @type {string || null}
19122
19122
  */
19123
19123
  this.Operator = null;
@@ -19131,8 +19131,8 @@ class QueryFilter extends AbstractModel {
19131
19131
  if (!params) {
19132
19132
  return;
19133
19133
  }
19134
- this.Names = 'Names' in params ? params.Names : null;
19135
19134
  this.Values = 'Values' in params ? params.Values : null;
19135
+ this.Names = 'Names' in params ? params.Names : null;
19136
19136
  this.ExactMatch = 'ExactMatch' in params ? params.ExactMatch : null;
19137
19137
  this.Name = 'Name' in params ? params.Name : null;
19138
19138
  this.Operator = 'Operator' in params ? params.Operator : null;
@@ -126,6 +126,7 @@ module.exports = {
126
126
  tke: require("./tke"),
127
127
  tms: require("./tms"),
128
128
  tmt: require("./tmt"),
129
+ tokenhub: require("./tokenhub"),
129
130
  trabbit: require("./trabbit"),
130
131
  trocket: require("./trocket"),
131
132
  trro: require("./trro"),