tencentcloud-sdk-nodejs-cfs 4.1.58 → 4.1.60

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.58",
3
+ "version": "4.1.60",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -480,7 +480,7 @@ export interface BindAutoSnapshotPolicyRequest {
480
480
  */
481
481
  export interface ModifyFileSystemAutoScaleUpRuleRequest {
482
482
  /**
483
- * 文件系统ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
483
+ * 文件系统 ID,通过查询文件系统列表获取;[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)
484
484
  */
485
485
  FileSystemId: string;
486
486
  /**
@@ -488,11 +488,11 @@ export interface ModifyFileSystemAutoScaleUpRuleRequest {
488
488
  */
489
489
  ScaleUpThreshold: number;
490
490
  /**
491
- * 扩容后目标阈值,范围[10-90],该值要小于ScaleUpThreshold
491
+ * 扩容后目标阈值,范围[1-90],该值要小于 ScaleUpThreshold
492
492
  */
493
493
  TargetThreshold: number;
494
494
  /**
495
- * 规则状态0:关闭,1 开启;不传保留原状态
495
+ * 规则状态 0:关闭,1:开启;不传保留原状态
496
496
  */
497
497
  Status?: number;
498
498
  }
@@ -1140,19 +1140,19 @@ export interface CreateAutoSnapshotPolicyResponse {
1140
1140
  */
1141
1141
  export interface ModifyFileSystemAutoScaleUpRuleResponse {
1142
1142
  /**
1143
- * 文件系统id
1143
+ * 文件系统 ID
1144
1144
  */
1145
1145
  FileSystemId?: string;
1146
1146
  /**
1147
- * 规则状态0:关闭,1 开启
1147
+ * 规则状态 0:关闭,1:开启
1148
1148
  */
1149
1149
  Status?: number;
1150
1150
  /**
1151
- * 扩容阈值,范围[10-90]
1151
+ * 扩容阈值,范围[10-90]
1152
1152
  */
1153
1153
  ScaleUpThreshold?: number;
1154
1154
  /**
1155
- * 扩容后达到阈值,范围[10-90]
1155
+ * 扩容后达到阈值,范围[1-90]
1156
1156
  */
1157
1157
  TargetThreshold?: number;
1158
1158
  /**