tencentcloud-sdk-nodejs-cfs 4.1.100 → 4.1.102

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.100",
3
+ "version": "4.1.102",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -3050,7 +3050,7 @@ export interface DoDirectoryOperationRequest {
3050
3050
  */
3051
3051
  FileSystemId: string;
3052
3052
  /**
3053
- * create:创建目录 check:确认目录是否存在
3053
+ * create:创建目录 check:确认目录是否存在 move: 对目录做mv 操作
3054
3054
  */
3055
3055
  OpetationType: string;
3056
3056
  /**
@@ -3061,4 +3061,8 @@ export interface DoDirectoryOperationRequest {
3061
3061
  * 创建目录的权限,若不传,默认为0755 若Operation Type为check,此值无实际意义
3062
3062
  */
3063
3063
  Mode?: string;
3064
+ /**
3065
+ * mv操作的目标目录名称;如果是turbo文件系统必须以/cfs/开头
3066
+ */
3067
+ DestPath?: string;
3064
3068
  }