tencentcloud-sdk-nodejs-chdfs 4.1.171 → 4.1.190

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.
@@ -1,6 +1,6 @@
1
- import { v20201112 } from "./v20201112";
2
1
  import { v20190718 } from "./v20190718";
2
+ import { v20201112 } from "./v20201112";
3
3
  export const chdfs = {
4
- v20201112: v20201112,
5
4
  v20190718: v20190718,
5
+ v20201112: v20201112,
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-chdfs",
3
- "version": "4.1.171",
3
+ "version": "4.1.190",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1,10 +1,10 @@
1
1
  export declare const chdfs: {
2
- v20201112: {
3
- Client: typeof import("./v20201112/chdfs_client").Client;
4
- Models: typeof import("./v20201112/chdfs_models");
5
- };
6
2
  v20190718: {
7
3
  Client: typeof import("./v20190718/chdfs_client").Client;
8
4
  Models: typeof import("./v20190718/chdfs_models");
9
5
  };
6
+ v20201112: {
7
+ Client: typeof import("./v20201112/chdfs_client").Client;
8
+ Models: typeof import("./v20201112/chdfs_models");
9
+ };
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.chdfs = void 0;
4
- const v20201112_1 = require("./v20201112");
5
4
  const v20190718_1 = require("./v20190718");
5
+ const v20201112_1 = require("./v20201112");
6
6
  exports.chdfs = {
7
- v20201112: v20201112_1.v20201112,
8
7
  v20190718: v20190718_1.v20190718,
8
+ v20201112: v20201112_1.v20201112,
9
9
  };
@@ -643,15 +643,15 @@ export interface RestoreTask {
643
643
  */
644
644
  export interface ModifyMountPointRequest {
645
645
  /**
646
- * 挂载点ID
646
+ * <p>挂载点ID</p>
647
647
  */
648
648
  MountPointId: string;
649
649
  /**
650
- * 挂载点名称
650
+ * <p>挂载点名称</p>
651
651
  */
652
652
  MountPointName?: string;
653
653
  /**
654
- * 挂载点状态
654
+ * <p>挂载点状态</p><p>枚举值:</p><ul><li>1: 打开</li><li>2: 关闭</li></ul>
655
655
  */
656
656
  MountPointStatus?: number;
657
657
  }