tencentcloud-sdk-nodejs-cbs 4.1.54 → 4.1.55

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-cbs",
3
- "version": "4.1.54",
3
+ "version": "4.1.55",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -201,7 +201,6 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
201
201
  * 本接口 (ModifyDisksChargeType) 用于切换云硬盘的计费模式。
202
202
 
203
203
  非弹性云硬盘不支持此接口,请通过修改实例计费模式接口将实例连同非弹性云硬盘一起转换。
204
- 默认接口请求频率限制:10次/秒。
205
204
  */
206
205
  ModifyDisksChargeType(req: ModifyDisksChargeTypeRequest, cb?: (error: string, rep: ModifyDisksChargeTypeResponse) => void): Promise<ModifyDisksChargeTypeResponse>;
207
206
  /**
@@ -285,7 +285,6 @@ class Client extends TencentCloudCommon.AbstractClient {
285
285
  * 本接口 (ModifyDisksChargeType) 用于切换云硬盘的计费模式。
286
286
 
287
287
  非弹性云硬盘不支持此接口,请通过修改实例计费模式接口将实例连同非弹性云硬盘一起转换。
288
- 默认接口请求频率限制:10次/秒。
289
288
  */
290
289
  async ModifyDisksChargeType(req, cb) {
291
290
  return this.request("ModifyDisksChargeType", req, cb);
@@ -41,7 +41,7 @@ export interface DescribeDiskBackupsRequest {
41
41
  */
42
42
  Limit?: number;
43
43
  /**
44
- * 输出云硬盘备份点列表的排列顺序。取值范围:<br><li>ASC:升序排列</li><br><li>DESC:降序排列。</li>
44
+ * 输出云硬盘备份点列表的排列顺序,默认排序:ASC。取值范围:<br><li>ASC:升序排列</li><br><li>DESC:降序排列。</li>
45
45
  */
46
46
  Order?: string;
47
47
  /**
@@ -72,6 +72,7 @@ export interface CreateSnapshotGroupRequest {
72
72
  export interface AutoSnapshotPolicy {
73
73
  /**
74
74
  * 已绑定当前定期快照策略的云盘ID列表。
75
+ DescribeDiskAssociatedAutoSnapshotPolicy场景下该字段返回为空。
75
76
  */
76
77
  DiskIdSet?: Array<string>;
77
78
  /**
@@ -87,7 +88,7 @@ export interface AutoSnapshotPolicy {
87
88
  */
88
89
  AutoSnapshotPolicyState?: string;
89
90
  /**
90
- * 是否是跨账号复制快照快照, 1:是, 0: 不是
91
+ * 是否是跨账号复制快照, 1:是, 0: 不是
91
92
  */
92
93
  IsCopyToRemote?: number;
93
94
  /**
@@ -546,7 +547,7 @@ export interface CreateDisksRequest {
546
547
  */
547
548
  DiskBackupQuota?: number;
548
549
  /**
549
- * 创建云盘时是否开启性能突发。当前仅支持极速型云盘(CLOUD_TSSD)和增强型SSD云硬盘(CLOUD_HSSD)。
550
+ * 创建云盘时是否开启性能突发。当前仅支持极速型云盘(CLOUD_TSSD)和增强型SSD云硬盘(CLOUD_HSSD)且云盘大小不小于460GiB。
550
551
  */
551
552
  BurstPerformance?: boolean;
552
553
  /**
@@ -1140,7 +1141,7 @@ export interface Placement {
1140
1141
  */
1141
1142
  Zone: string;
1142
1143
  /**
1143
- * 围笼Id。作为入参时,表示对指定的CageId的资源进行操作,可为空。 作为出参时,表示资源所属围笼ID,可为空。
1144
+ * 围笼Id,可通过 [DescribeDiskStoragePool](https://cloud.tencent.com/document/api/362/62143) 获取。作为入参时,表示对指定的CageId的资源进行操作,可为空。 作为出参时,表示资源所属围笼ID,可为空。
1144
1145
  注意:此字段可能返回 null,表示取不到有效值。
1145
1146
  */
1146
1147
  CageId?: string;
@@ -1159,7 +1160,7 @@ export interface Placement {
1159
1160
  */
1160
1161
  CdcName?: string;
1161
1162
  /**
1162
- * 实例所属的独享集群ID。作为入参时,表示对指定的CdcId独享集群的资源进行操作,可为空。 作为出参时,表示资源所属的独享集群的ID,可为空。
1163
+ * 实例所属的独享集群ID。可通过 [DescribeDiskStoragePool](https://cloud.tencent.com/document/api/362/62143) 获取。作为入参时,表示对指定的CdcId独享集群的资源进行操作,可为空。 作为出参时,表示资源所属的独享集群的ID,可为空。
1163
1164
  注意:此字段可能返回 null,表示取不到有效值。
1164
1165
  */
1165
1166
  CdcId?: string;
@@ -2474,6 +2475,7 @@ export interface ApplySnapshotRequest {
2474
2475
  DiskId: string;
2475
2476
  /**
2476
2477
  * 回滚前是否执行自动关机,仅支持回滚快照至已挂载的云硬盘时传入。
2478
+ 此参数为true时,AutoStartInstance才能为true。
2477
2479
  */
2478
2480
  AutoStopInstance?: boolean;
2479
2481
  /**