tencentcloud-sdk-nodejs-tcb 4.1.190 → 4.1.192

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-tcb",
3
- "version": "4.1.190",
3
+ "version": "4.1.192",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -127,8 +127,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
127
127
  */
128
128
  DescribeStaticStore(req: DescribeStaticStoreRequest, cb?: (error: string, rep: DescribeStaticStoreResponse) => void): Promise<DescribeStaticStoreResponse>;
129
129
  /**
130
- * 查询表的相关信息,包括索引等信息
131
- */
130
+ * 查询表的相关信息,包括索引等信息
131
+
132
+ 接口入参中的 Tag 为 flexdb 的实例 Id,可以通过 [DescribeEnvs](https://cloud.tencent.com/document/api/876/34820) 接口返回的 EnvList[0].Databases[0].InstanceId 获取
133
+ */
132
134
  DescribeTable(req: DescribeTableRequest, cb?: (error: string, rep: DescribeTableResponse) => void): Promise<DescribeTableResponse>;
133
135
  /**
134
136
  * 本接口(UpdateTable)用于修改表信息,当前可以支持创建和删除索引
@@ -188,8 +190,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
188
190
  */
189
191
  RunSql(req: RunSqlRequest, cb?: (error: string, rep: RunSqlResponse) => void): Promise<RunSqlResponse>;
190
192
  /**
191
- * 本接口(DeleteTable)用于删除表,删除表后表中数据将会被删除且无法恢复,请谨慎操作
192
- */
193
+ * 本接口(DeleteTable)用于删除表,删除表后表中数据将会被删除且无法恢复,请谨慎操作
194
+
195
+ 接口入参中的 Tag 为 flexdb 的实例 Id,可以通过 [DescribeEnvs](https://cloud.tencent.com/document/api/876/34820) 接口返回的 EnvList[0].Databases[0].InstanceId 获取
196
+ */
193
197
  DeleteTable(req: DeleteTableRequest, cb?: (error: string, rep: DeleteTableResponse) => void): Promise<DeleteTableResponse>;
194
198
  /**
195
199
  * 本接口用于销毁云开发环境。
@@ -276,7 +280,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
276
280
  */
277
281
  DescribeEnvAccountCircle(req: DescribeEnvAccountCircleRequest, cb?: (error: string, rep: DescribeEnvAccountCircleResponse) => void): Promise<DescribeEnvAccountCircleResponse>;
278
282
  /**
279
- * 本接口(ListTables)用于查询所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
283
+ * 本接口(DescribeTables)用于查询所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
280
284
  */
281
285
  DescribeTables(req: DescribeTablesRequest, cb?: (error: string, rep: DescribeTablesResponse) => void): Promise<DescribeTablesResponse>;
282
286
  }
@@ -197,8 +197,10 @@ class Client extends TencentCloudCommon.AbstractClient {
197
197
  return this.request("DescribeStaticStore", req, cb);
198
198
  }
199
199
  /**
200
- * 查询表的相关信息,包括索引等信息
201
- */
200
+ * 查询表的相关信息,包括索引等信息
201
+
202
+ 接口入参中的 Tag 为 flexdb 的实例 Id,可以通过 [DescribeEnvs](https://cloud.tencent.com/document/api/876/34820) 接口返回的 EnvList[0].Databases[0].InstanceId 获取
203
+ */
202
204
  async DescribeTable(req, cb) {
203
205
  return this.request("DescribeTable", req, cb);
204
206
  }
@@ -286,8 +288,10 @@ class Client extends TencentCloudCommon.AbstractClient {
286
288
  return this.request("RunSql", req, cb);
287
289
  }
288
290
  /**
289
- * 本接口(DeleteTable)用于删除表,删除表后表中数据将会被删除且无法恢复,请谨慎操作
290
- */
291
+ * 本接口(DeleteTable)用于删除表,删除表后表中数据将会被删除且无法恢复,请谨慎操作
292
+
293
+ 接口入参中的 Tag 为 flexdb 的实例 Id,可以通过 [DescribeEnvs](https://cloud.tencent.com/document/api/876/34820) 接口返回的 EnvList[0].Databases[0].InstanceId 获取
294
+ */
291
295
  async DeleteTable(req, cb) {
292
296
  return this.request("DeleteTable", req, cb);
293
297
  }
@@ -404,7 +408,7 @@ class Client extends TencentCloudCommon.AbstractClient {
404
408
  return this.request("DescribeEnvAccountCircle", req, cb);
405
409
  }
406
410
  /**
407
- * 本接口(ListTables)用于查询所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
411
+ * 本接口(DescribeTables)用于查询所有表信息,包括表名、表中数据条数、表中数据量、索引个数及索引的大小等
408
412
  */
409
413
  async DescribeTables(req, cb) {
410
414
  return this.request("DescribeTables", req, cb);
@@ -1965,6 +1965,10 @@ export interface DescribeTablesRequest {
1965
1965
  * MongoConnector
1966
1966
  */
1967
1967
  MongoConnector?: MongoConnector;
1968
+ /**
1969
+ * 指定表名过滤,为空时返回所有表
1970
+ */
1971
+ TableNames?: Array<string>;
1968
1972
  }
1969
1973
  /**
1970
1974
  * DescribeUserList请求参数结构体