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 +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/models.js +9 -9
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/ocr/v20181119/models.js +249 -117
- package/tencentcloud/ocr/v20181119/ocr_client.js +2 -2
- package/tencentcloud/rum/v20210622/models.js +1 -1
- package/tencentcloud/tokenhub/index.js +3 -0
- package/tencentcloud/tokenhub/v20260322/index.js +4 -0
- package/tencentcloud/tokenhub/v20260322/models.js +975 -0
- package/tencentcloud/tokenhub/v20260322/tokenhub_client.js +145 -0
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
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
|
-
*
|
|
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.
|
|
19099
|
+
this.Values = null;
|
|
19100
19100
|
|
|
19101
19101
|
/**
|
|
19102
|
-
* Search
|
|
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.
|
|
19105
|
+
this.Names = null;
|
|
19106
19106
|
|
|
19107
19107
|
/**
|
|
19108
|
-
*
|
|
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;
|
package/tencentcloud/index.js
CHANGED