tencentcloud-sdk-nodejs-cbs 4.1.299 → 4.1.312
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.
|
|
3
|
+
"version": "4.1.312",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
"@types/json-bigint": "^1.0.1",
|
|
50
50
|
"@types/node": "^18.0.0",
|
|
51
51
|
"@types/node-fetch": "^2.5.7",
|
|
52
|
-
"@types/uuid": "^9.0.8",
|
|
53
52
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
54
53
|
"@typescript-eslint/parser": "^2.34.0",
|
|
55
54
|
"babel-eslint": "^10.0.2",
|
|
@@ -413,7 +413,7 @@ export interface BindAutoSnapshotPolicyRequest {
|
|
|
413
413
|
*/
|
|
414
414
|
export interface CreateSnapshotResponse {
|
|
415
415
|
/**
|
|
416
|
-
*
|
|
416
|
+
* <p>新创建的快照ID。</p>
|
|
417
417
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
418
418
|
*/
|
|
419
419
|
SnapshotId?: string;
|
|
@@ -1169,27 +1169,31 @@ export interface ModifyDisksChargeTypeResponse {
|
|
|
1169
1169
|
*/
|
|
1170
1170
|
export interface CreateSnapshotRequest {
|
|
1171
1171
|
/**
|
|
1172
|
-
*
|
|
1172
|
+
* <p>需要创建快照的云硬盘ID,可通过<a href="/document/product/362/16315">DescribeDisks</a>接口查询。</p>
|
|
1173
1173
|
*/
|
|
1174
1174
|
DiskId?: string;
|
|
1175
1175
|
/**
|
|
1176
|
-
*
|
|
1176
|
+
* <p>快照名称,不传则新快照名称默认为“未命名”。</p>
|
|
1177
1177
|
*/
|
|
1178
1178
|
SnapshotName?: string;
|
|
1179
1179
|
/**
|
|
1180
|
-
*
|
|
1180
|
+
* <p>快照的到期时间,到期后该快照将会自动删除,需要传入UTC时间下的ISO-8601标准时间格式,例如:2022-01-08T09:47:55+00:00。到期时间最小可设置为一天后的当前时间。</p>
|
|
1181
1181
|
*/
|
|
1182
1182
|
Deadline?: string;
|
|
1183
1183
|
/**
|
|
1184
|
-
*
|
|
1184
|
+
* <p>云硬盘备份点ID。传入此参数时,将通过备份点创建快照。备份点 ID 可以通过<a href="/document/product/362/80278">DescribeDiskBackups</a>接口查询。</p>
|
|
1185
1185
|
*/
|
|
1186
1186
|
DiskBackupId?: string;
|
|
1187
1187
|
/**
|
|
1188
|
-
*
|
|
1188
|
+
* <p>快照绑定的标签。</p>
|
|
1189
1189
|
*/
|
|
1190
1190
|
Tags?: Array<Tag>;
|
|
1191
1191
|
/**
|
|
1192
|
-
*
|
|
1192
|
+
* <p>是否创建极速快照。</p><p>极速快照数据存储在云硬盘所在的存储集群上,可实现秒级创建和回滚。该功能当前通过白名单控制开放。</p>
|
|
1193
|
+
*/
|
|
1194
|
+
LocalSnap?: boolean;
|
|
1195
|
+
/**
|
|
1196
|
+
* <p>快照关联云硬盘类型, SYSTEM_DISK: 系统盘, DATA_DISK: 数据盘,非必填参数,不填时快照类型与云盘类型保持一致, 该参数基于某些场景用户需要将系统盘创建出数据盘快照共享使用。</p>
|
|
1193
1197
|
*/
|
|
1194
1198
|
DiskUsage?: string;
|
|
1195
1199
|
}
|