tencentcloud-sdk-nodejs-dbbrain 4.1.134 → 4.1.137
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,10 +1,10 @@
|
|
|
1
1
|
export declare const dbbrain: {
|
|
2
|
-
v20191016: {
|
|
3
|
-
Client: typeof import("./v20191016/dbbrain_client").Client;
|
|
4
|
-
Models: typeof import("./v20191016/dbbrain_models");
|
|
5
|
-
};
|
|
6
2
|
v20210527: {
|
|
7
3
|
Client: typeof import("./v20210527/dbbrain_client").Client;
|
|
8
4
|
Models: typeof import("./v20210527/dbbrain_models");
|
|
9
5
|
};
|
|
6
|
+
v20191016: {
|
|
7
|
+
Client: typeof import("./v20191016/dbbrain_client").Client;
|
|
8
|
+
Models: typeof import("./v20191016/dbbrain_models");
|
|
9
|
+
};
|
|
10
10
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.dbbrain = void 0;
|
|
4
|
-
const v20191016_1 = require("./v20191016");
|
|
5
4
|
const v20210527_1 = require("./v20210527");
|
|
5
|
+
const v20191016_1 = require("./v20191016");
|
|
6
6
|
exports.dbbrain = {
|
|
7
|
-
v20191016: v20191016_1.v20191016,
|
|
8
7
|
v20210527: v20210527_1.v20210527,
|
|
8
|
+
v20191016: v20191016_1.v20191016,
|
|
9
9
|
};
|
|
@@ -3075,7 +3075,7 @@ export interface DescribeRedisCommandCostStatisticsResponse {
|
|
|
3075
3075
|
RequestId?: string;
|
|
3076
3076
|
}
|
|
3077
3077
|
/**
|
|
3078
|
-
* redis key
|
|
3078
|
+
* redis key的内存占用等信息。
|
|
3079
3079
|
*/
|
|
3080
3080
|
export interface RedisKeySpaceData {
|
|
3081
3081
|
/**
|
|
@@ -3087,7 +3087,7 @@ export interface RedisKeySpaceData {
|
|
|
3087
3087
|
*/
|
|
3088
3088
|
Type?: string;
|
|
3089
3089
|
/**
|
|
3090
|
-
* key
|
|
3090
|
+
* key编码方式。包括 int、string、linkedlist、hashtable、skiplist、zipmap、ziplist、intset、quicklist、listpack。
|
|
3091
3091
|
*/
|
|
3092
3092
|
Encoding?: string;
|
|
3093
3093
|
/**
|
|
@@ -3114,6 +3114,10 @@ export interface RedisKeySpaceData {
|
|
|
3114
3114
|
* 所属分片序号。
|
|
3115
3115
|
*/
|
|
3116
3116
|
ShardId?: string;
|
|
3117
|
+
/**
|
|
3118
|
+
* key所属数据库编号。
|
|
3119
|
+
*/
|
|
3120
|
+
Db?: number;
|
|
3117
3121
|
}
|
|
3118
3122
|
/**
|
|
3119
3123
|
* CancelDBAutonomyEvent返回参数结构体
|