tencentcloud-sdk-nodejs-intl-en 3.0.985 → 3.0.987
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/dbbrain/v20210527/models.js +4 -5
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/omics/index.js +3 -0
- package/tencentcloud/omics/v20221128/index.js +4 -0
- package/tencentcloud/omics/v20221128/models.js +4011 -0
- package/tencentcloud/omics/v20221128/omics_client.js +319 -0
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.987";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -981,7 +981,6 @@ class AuditInstanceInfo extends AbstractModel {
|
|
|
981
981
|
|
|
982
982
|
/**
|
|
983
983
|
* Resource tags
|
|
984
|
-
Note: u200dThis field may returnu200d·nullu200d, indicating that no valid values can be obtained.
|
|
985
984
|
* @type {Array.<string> || null}
|
|
986
985
|
*/
|
|
987
986
|
this.ResourceTags = null;
|
|
@@ -1283,7 +1282,7 @@ class DescribeAuditInstanceListResponse extends AbstractModel {
|
|
|
1283
1282
|
|
|
1284
1283
|
/**
|
|
1285
1284
|
* The number of eligible instances.
|
|
1286
|
-
Note:
|
|
1285
|
+
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
1287
1286
|
* @type {number || null}
|
|
1288
1287
|
*/
|
|
1289
1288
|
this.TotalCount = null;
|
|
@@ -1295,7 +1294,7 @@ Note: u200dThis field may return `null`, indicating that no valid values can be
|
|
|
1295
1294
|
this.Items = null;
|
|
1296
1295
|
|
|
1297
1296
|
/**
|
|
1298
|
-
* The unique request ID,
|
|
1297
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1299
1298
|
* @type {string || null}
|
|
1300
1299
|
*/
|
|
1301
1300
|
this.RequestId = null;
|
|
@@ -4778,7 +4777,7 @@ class DescribeAuditInstanceListRequest extends AbstractModel {
|
|
|
4778
4777
|
this.Product = null;
|
|
4779
4778
|
|
|
4780
4779
|
/**
|
|
4781
|
-
* Use the value of `
|
|
4780
|
+
* Use the value of `Product` for this parameter, such as `dcdb` and `mariadb`.
|
|
4782
4781
|
* @type {string || null}
|
|
4783
4782
|
*/
|
|
4784
4783
|
this.NodeRequestType = null;
|
|
@@ -5842,7 +5841,7 @@ class DescribeRedisTopKeyPrefixListResponse extends AbstractModel {
|
|
|
5842
5841
|
this.Timestamp = null;
|
|
5843
5842
|
|
|
5844
5843
|
/**
|
|
5845
|
-
* The unique request ID,
|
|
5844
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
5846
5845
|
* @type {string || null}
|
|
5847
5846
|
*/
|
|
5848
5847
|
this.RequestId = null;
|
package/tencentcloud/index.js
CHANGED