tencentcloud-sdk-nodejs-cfs 4.1.175 → 4.1.177

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.175",
3
+ "version": "4.1.177",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -209,7 +209,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
209
209
  */
210
210
  UpdateAutoSnapshotPolicy(req: UpdateAutoSnapshotPolicyRequest, cb?: (error: string, rep: UpdateAutoSnapshotPolicyResponse) => void): Promise<UpdateAutoSnapshotPolicyResponse>;
211
211
  /**
212
- * 文件系统目录操作接口
212
+ * 文件系统目录操作接口。当前仅 Turbo 系列文件系统支持调用此接口进行目录操作,通用系列文件系统(含增强型)不支持调用。
213
213
  */
214
214
  DoDirectoryOperation(req: DoDirectoryOperationRequest, cb?: (error: string, rep: DoDirectoryOperationResponse) => void): Promise<DoDirectoryOperationResponse>;
215
215
  /**
@@ -331,7 +331,7 @@ class Client extends TencentCloudCommon.AbstractClient {
331
331
  return this.request("UpdateAutoSnapshotPolicy", req, cb);
332
332
  }
333
333
  /**
334
- * 文件系统目录操作接口
334
+ * 文件系统目录操作接口。当前仅 Turbo 系列文件系统支持调用此接口进行目录操作,通用系列文件系统(含增强型)不支持调用。
335
335
  */
336
336
  async DoDirectoryOperation(req, cb) {
337
337
  return this.request("DoDirectoryOperation", req, cb);
@@ -900,7 +900,7 @@ export interface DescribeCfsFileSystemClientsResponse {
900
900
  */
901
901
  export interface DoDirectoryOperationResponse {
902
902
  /**
903
- * 1:成功 0:失败 创建目录的操作,1表示创建成功,0表示创建失败。 确认目录是否存在的操作,1表示目录存在,0表示目录不存在。 说明:创建目录操作若目录已存在,也会返回创建成功。
903
+ * 1:成功 0:失败。创建目录的操作,1表示创建成功,0表示创建失败。 确认目录是否存在的操作,1表示目录存在,0表示目录不存在。此外,创建目录操作若目录已存在,也会返回创建成功。
904
904
  */
905
905
  Result?: number;
906
906
  /**
@@ -3143,7 +3143,7 @@ export interface DescribeDataFlowResponse {
3143
3143
  */
3144
3144
  export interface DoDirectoryOperationRequest {
3145
3145
  /**
3146
- * 文件系统Id
3146
+ * 文件系统 ID。当前仅 Turbo 系列文件系统支持调用此接口,通用系列文件系统(含增强型)不支持调用。
3147
3147
  */
3148
3148
  FileSystemId: string;
3149
3149
  /**
@@ -3157,11 +3157,11 @@ export interface DoDirectoryOperationRequest {
3157
3157
  */
3158
3158
  DirectoryPath: string;
3159
3159
  /**
3160
- * 创建目录的权限,若不传,默认为0755 若Operation Type为check,此值无实际意义
3160
+ * 创建目录的权限,若不传,默认为0755。若OperationType为 check,此值无实际意义。
3161
3161
  */
3162
3162
  Mode?: string;
3163
3163
  /**
3164
- * mv操作的目标目录名称;如果是turbo文件系统必须以/cfs/开头
3164
+ * mv 操作的目标目录名称。路径必须以/cfs/开头
3165
3165
  */
3166
3166
  DestPath?: string;
3167
3167
  }