tencentcloud-sdk-nodejs-cfs 4.1.257 → 4.1.266

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-cfs",
3
- "version": "4.1.257",
3
+ "version": "4.1.266",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -237,11 +237,11 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
237
237
  */
238
238
  UpdateAutoSnapshotPolicy(req: UpdateAutoSnapshotPolicyRequest, cb?: (error: string, rep: UpdateAutoSnapshotPolicyResponse) => void): Promise<UpdateAutoSnapshotPolicyResponse>;
239
239
  /**
240
- * 执行数据检索任务。
241
-
240
+ * RunDataRetrievalTask 执行数据检索任务。
242
241
  手动触发指定数据检索的执行,创建一个新的数据检索任务。单个文件系统同时执行的任务数不超过 20 个。
242
+ 仅Turbo系列文件系统支持。
243
243
  */
244
- RunDataRetrievalTask(req?: RunDataRetrievalTaskRequest, cb?: (error: string, rep: RunDataRetrievalTaskResponse) => void): Promise<RunDataRetrievalTaskResponse>;
244
+ RunDataRetrievalTask(req: RunDataRetrievalTaskRequest, cb?: (error: string, rep: RunDataRetrievalTaskResponse) => void): Promise<RunDataRetrievalTaskResponse>;
245
245
  /**
246
246
  * 查询数据检索任务
247
247
  */
@@ -371,9 +371,9 @@ class Client extends TencentCloudCommon.AbstractClient {
371
371
  return this.request("UpdateAutoSnapshotPolicy", req, cb);
372
372
  }
373
373
  /**
374
- * 执行数据检索任务。
375
-
374
+ * RunDataRetrievalTask 执行数据检索任务。
376
375
  手动触发指定数据检索的执行,创建一个新的数据检索任务。单个文件系统同时执行的任务数不超过 20 个。
376
+ 仅Turbo系列文件系统支持。
377
377
  */
378
378
  async RunDataRetrievalTask(req, cb) {
379
379
  return this.request("RunDataRetrievalTask", req, cb);
@@ -2513,7 +2513,12 @@ export interface AvailableZone {
2513
2513
  /**
2514
2514
  * RunDataRetrievalTask请求参数结构体
2515
2515
  */
2516
- export type RunDataRetrievalTaskRequest = null;
2516
+ export interface RunDataRetrievalTaskRequest {
2517
+ /**
2518
+ * <p>数据检索 ID。可通过 DescribeDataRetrieval 接口获取。</p>
2519
+ */
2520
+ DataRetrievalId: string;
2521
+ }
2517
2522
  /**
2518
2523
  * DescribeMigrationTasks请求参数结构体
2519
2524
  */