tencentcloud-sdk-nodejs-cfs 4.0.437 → 4.0.440
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/CHANGELOG.md +979 -0
- package/SERVICE_CHANGELOG.md +817 -163
- package/package.json +1 -1
- package/products.md +36 -36
- package/src/services/cfs/v20190719/cfs_client.ts +253 -103
- package/src/services/cfs/v20190719/cfs_models.ts +1008 -313
- package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +79 -31
- package/tencentcloud/services/cfs/v20190719/cfs_client.js +117 -45
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +753 -168
|
@@ -26,68 +26,73 @@ export interface DeleteCfsFileSystemResponse {
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* 快照信息
|
|
30
30
|
*/
|
|
31
|
-
export interface
|
|
31
|
+
export interface SnapshotInfo {
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* 创建快照时间
|
|
34
34
|
*/
|
|
35
|
-
|
|
35
|
+
CreationTime: string
|
|
36
36
|
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* 快照名称
|
|
39
39
|
*/
|
|
40
|
-
|
|
40
|
+
SnapshotName: string
|
|
41
41
|
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* 快照ID
|
|
44
44
|
*/
|
|
45
|
-
|
|
45
|
+
SnapshotId: string
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* 快照状态
|
|
49
49
|
*/
|
|
50
|
-
|
|
50
|
+
Status: string
|
|
51
51
|
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* 地域名称
|
|
54
54
|
*/
|
|
55
|
-
|
|
56
|
-
}
|
|
55
|
+
RegionName: string
|
|
57
56
|
|
|
58
|
-
/**
|
|
59
|
-
* UpdateCfsRule请求参数结构体
|
|
60
|
-
*/
|
|
61
|
-
export interface UpdateCfsRuleRequest {
|
|
62
57
|
/**
|
|
63
|
-
*
|
|
58
|
+
* 文件系统ID
|
|
64
59
|
*/
|
|
65
|
-
|
|
60
|
+
FileSystemId: string
|
|
66
61
|
|
|
67
62
|
/**
|
|
68
|
-
*
|
|
63
|
+
* 快照大小
|
|
69
64
|
*/
|
|
70
|
-
|
|
65
|
+
Size: number
|
|
71
66
|
|
|
72
67
|
/**
|
|
73
|
-
*
|
|
68
|
+
* 保留时长天
|
|
74
69
|
*/
|
|
75
|
-
|
|
70
|
+
AliveDay: number
|
|
76
71
|
|
|
77
72
|
/**
|
|
78
|
-
*
|
|
73
|
+
* 快照进度
|
|
79
74
|
*/
|
|
80
|
-
|
|
75
|
+
Percent: number
|
|
81
76
|
|
|
82
77
|
/**
|
|
83
|
-
*
|
|
78
|
+
* 帐号ID
|
|
84
79
|
*/
|
|
85
|
-
|
|
80
|
+
AppId: number
|
|
86
81
|
|
|
87
82
|
/**
|
|
88
|
-
*
|
|
83
|
+
* 快照删除时间
|
|
89
84
|
*/
|
|
90
|
-
|
|
85
|
+
DeleteTime: string
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* 文件系统名称
|
|
89
|
+
*/
|
|
90
|
+
FsName: string
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* 快照标签
|
|
94
|
+
*/
|
|
95
|
+
Tags: Array<TagInfo>
|
|
91
96
|
}
|
|
92
97
|
|
|
93
98
|
/**
|
|
@@ -155,6 +160,111 @@ export interface CreateCfsRuleRequest {
|
|
|
155
160
|
UserPermission?: string
|
|
156
161
|
}
|
|
157
162
|
|
|
163
|
+
/**
|
|
164
|
+
* 文件系统基本信息
|
|
165
|
+
*/
|
|
166
|
+
export interface FileSystemInfo {
|
|
167
|
+
/**
|
|
168
|
+
* 创建时间
|
|
169
|
+
*/
|
|
170
|
+
CreationTime: string
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* 用户自定义名称
|
|
174
|
+
*/
|
|
175
|
+
CreationToken: string
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* 文件系统 ID
|
|
179
|
+
*/
|
|
180
|
+
FileSystemId: string
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* 文件系统状态
|
|
184
|
+
*/
|
|
185
|
+
LifeCycleState: string
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* 文件系统已使用容量
|
|
189
|
+
*/
|
|
190
|
+
SizeByte: number
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* 文件系统最大空间限制
|
|
194
|
+
*/
|
|
195
|
+
SizeLimit: number
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* 区域 ID
|
|
199
|
+
*/
|
|
200
|
+
ZoneId: number
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* 区域名称
|
|
204
|
+
*/
|
|
205
|
+
Zone: string
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* 文件系统协议类型
|
|
209
|
+
*/
|
|
210
|
+
Protocol: string
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* 文件系统存储类型
|
|
214
|
+
*/
|
|
215
|
+
StorageType: string
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* 文件系统绑定的预付费存储包
|
|
219
|
+
*/
|
|
220
|
+
StorageResourcePkg: string
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* 文件系统绑定的预付费带宽包(暂未支持)
|
|
224
|
+
*/
|
|
225
|
+
BandwidthResourcePkg: string
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* 文件系统绑定权限组信息
|
|
229
|
+
*/
|
|
230
|
+
PGroup: PGroup
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* 用户自定义名称
|
|
234
|
+
*/
|
|
235
|
+
FsName: string
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* 文件系统是否加密
|
|
239
|
+
*/
|
|
240
|
+
Encrypted: boolean
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* 加密所使用的密钥,可以为密钥的 ID 或者 ARN
|
|
244
|
+
*/
|
|
245
|
+
KmsKeyId: string
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* 应用ID
|
|
249
|
+
*/
|
|
250
|
+
AppId: number
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* 文件系统吞吐上限,吞吐上限是根据文件系统当前已使用存储量、绑定的存储资源包以及吞吐资源包一同确定
|
|
254
|
+
*/
|
|
255
|
+
BandwidthLimit: number
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* 文件系统总容量
|
|
259
|
+
*/
|
|
260
|
+
Capacity: number
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* 文件系统标签列表
|
|
264
|
+
*/
|
|
265
|
+
Tags: Array<TagInfo>
|
|
266
|
+
}
|
|
267
|
+
|
|
158
268
|
/**
|
|
159
269
|
* 文件系统绑定权限组信息
|
|
160
270
|
*/
|
|
@@ -186,28 +296,23 @@ export interface DescribeAvailableZoneInfoResponse {
|
|
|
186
296
|
}
|
|
187
297
|
|
|
188
298
|
/**
|
|
189
|
-
*
|
|
299
|
+
* 文件系统快照统计
|
|
190
300
|
*/
|
|
191
|
-
export interface
|
|
192
|
-
/**
|
|
193
|
-
* 用户自定义文件系统名称
|
|
194
|
-
*/
|
|
195
|
-
CreationToken: string
|
|
196
|
-
|
|
301
|
+
export interface SnapshotStatistics {
|
|
197
302
|
/**
|
|
198
|
-
*
|
|
303
|
+
* 地域
|
|
199
304
|
*/
|
|
200
|
-
|
|
305
|
+
Region: string
|
|
201
306
|
|
|
202
307
|
/**
|
|
203
|
-
*
|
|
308
|
+
* 快照总个数
|
|
204
309
|
*/
|
|
205
|
-
|
|
310
|
+
SnapshotNumber: number
|
|
206
311
|
|
|
207
312
|
/**
|
|
208
|
-
*
|
|
313
|
+
* 快照总容量
|
|
209
314
|
*/
|
|
210
|
-
|
|
315
|
+
SnapshotSize: number
|
|
211
316
|
}
|
|
212
317
|
|
|
213
318
|
/**
|
|
@@ -225,6 +330,21 @@ export interface UpdateCfsFileSystemNameRequest {
|
|
|
225
330
|
FsName?: string
|
|
226
331
|
}
|
|
227
332
|
|
|
333
|
+
/**
|
|
334
|
+
* DeleteCfsSnapshot返回参数结构体
|
|
335
|
+
*/
|
|
336
|
+
export interface DeleteCfsSnapshotResponse {
|
|
337
|
+
/**
|
|
338
|
+
* 文件系统ID
|
|
339
|
+
*/
|
|
340
|
+
SnapshotId: string
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
344
|
+
*/
|
|
345
|
+
RequestId?: string
|
|
346
|
+
}
|
|
347
|
+
|
|
228
348
|
/**
|
|
229
349
|
* DescribeCfsPGroups返回参数结构体
|
|
230
350
|
*/
|
|
@@ -256,48 +376,48 @@ export interface DescribeCfsFileSystemClientsResponse {
|
|
|
256
376
|
}
|
|
257
377
|
|
|
258
378
|
/**
|
|
259
|
-
*
|
|
379
|
+
* 快照操作日志
|
|
260
380
|
*/
|
|
261
|
-
export interface
|
|
381
|
+
export interface SnapshotOperateLog {
|
|
262
382
|
/**
|
|
263
|
-
*
|
|
383
|
+
* 操作类型
|
|
264
384
|
*/
|
|
265
|
-
|
|
266
|
-
}
|
|
385
|
+
Action: string
|
|
267
386
|
|
|
268
|
-
/**
|
|
269
|
-
* DescribeMountTargets返回参数结构体
|
|
270
|
-
*/
|
|
271
|
-
export interface DescribeMountTargetsResponse {
|
|
272
387
|
/**
|
|
273
|
-
*
|
|
388
|
+
* 操作时间
|
|
274
389
|
*/
|
|
275
|
-
|
|
390
|
+
ActionTime: string
|
|
276
391
|
|
|
277
392
|
/**
|
|
278
|
-
*
|
|
393
|
+
* 操作名称
|
|
279
394
|
*/
|
|
280
|
-
|
|
395
|
+
ActionName: string
|
|
281
396
|
|
|
282
397
|
/**
|
|
283
|
-
*
|
|
398
|
+
* 操作者
|
|
284
399
|
*/
|
|
285
|
-
|
|
400
|
+
Operator: string
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* 结果
|
|
404
|
+
*/
|
|
405
|
+
Result: number
|
|
286
406
|
}
|
|
287
407
|
|
|
288
408
|
/**
|
|
289
|
-
*
|
|
409
|
+
* DescribeSnapshotOperationLogs返回参数结构体
|
|
290
410
|
*/
|
|
291
|
-
export interface
|
|
411
|
+
export interface DescribeSnapshotOperationLogsResponse {
|
|
292
412
|
/**
|
|
293
|
-
*
|
|
413
|
+
* 快照ID
|
|
294
414
|
*/
|
|
295
|
-
|
|
415
|
+
SnapshotId: string
|
|
296
416
|
|
|
297
417
|
/**
|
|
298
|
-
*
|
|
418
|
+
* 操作日志
|
|
299
419
|
*/
|
|
300
|
-
|
|
420
|
+
SnapshotOperates: Array<SnapshotOperateLog>
|
|
301
421
|
|
|
302
422
|
/**
|
|
303
423
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -306,9 +426,9 @@ export interface DeleteCfsRuleResponse {
|
|
|
306
426
|
}
|
|
307
427
|
|
|
308
428
|
/**
|
|
309
|
-
*
|
|
429
|
+
* UpdateCfsRule请求参数结构体
|
|
310
430
|
*/
|
|
311
|
-
export interface
|
|
431
|
+
export interface UpdateCfsRuleRequest {
|
|
312
432
|
/**
|
|
313
433
|
* 权限组 ID
|
|
314
434
|
*/
|
|
@@ -318,71 +438,206 @@ export interface DeleteCfsRuleRequest {
|
|
|
318
438
|
* 规则 ID
|
|
319
439
|
*/
|
|
320
440
|
RuleId: string
|
|
321
|
-
}
|
|
322
441
|
|
|
323
|
-
/**
|
|
324
|
-
* UpdateCfsPGroup请求参数结构体
|
|
325
|
-
*/
|
|
326
|
-
export interface UpdateCfsPGroupRequest {
|
|
327
442
|
/**
|
|
328
|
-
*
|
|
443
|
+
* 可以填写单个 IP 或者单个网段,例如 10.1.10.11 或者 10.10.1.0/24。默认来访地址为*表示允许所有。同时需要注意,此处需填写 CVM 的内网 IP。
|
|
329
444
|
*/
|
|
330
|
-
|
|
445
|
+
AuthClientIp?: string
|
|
331
446
|
|
|
332
447
|
/**
|
|
333
|
-
*
|
|
448
|
+
* 读写权限, 值为RO、RW;其中 RO 为只读,RW 为读写,不填默认为只读
|
|
334
449
|
*/
|
|
335
|
-
|
|
450
|
+
RWPermission?: string
|
|
336
451
|
|
|
337
452
|
/**
|
|
338
|
-
*
|
|
453
|
+
* 用户权限,值为all_squash、no_all_squash、root_squash、no_root_squash。其中all_squash为所有访问用户都会被映射为匿名用户或用户组;no_all_squash为访问用户会先与本机用户匹配,匹配失败后再映射为匿名用户或用户组;root_squash为将来访的root用户映射为匿名用户或用户组;no_root_squash为来访的root用户保持root帐号权限。不填默认为root_squash。
|
|
339
454
|
*/
|
|
340
|
-
|
|
455
|
+
UserPermission?: string
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* 规则优先级,参数范围1-100。 其中 1 为最高,100为最低
|
|
459
|
+
*/
|
|
460
|
+
Priority?: number
|
|
341
461
|
}
|
|
342
462
|
|
|
343
463
|
/**
|
|
344
|
-
*
|
|
464
|
+
* DeleteAutoSnapshotPolicy返回参数结构体
|
|
345
465
|
*/
|
|
346
|
-
export interface
|
|
466
|
+
export interface DeleteAutoSnapshotPolicyResponse {
|
|
347
467
|
/**
|
|
348
|
-
*
|
|
468
|
+
* 快照策略ID
|
|
349
469
|
*/
|
|
350
|
-
|
|
470
|
+
AutoSnapshotPolicyId: string
|
|
351
471
|
|
|
352
472
|
/**
|
|
353
|
-
*
|
|
473
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
354
474
|
*/
|
|
355
|
-
|
|
475
|
+
RequestId?: string
|
|
476
|
+
}
|
|
356
477
|
|
|
478
|
+
/**
|
|
479
|
+
* CreateCfsSnapshot请求参数结构体
|
|
480
|
+
*/
|
|
481
|
+
export interface CreateCfsSnapshotRequest {
|
|
357
482
|
/**
|
|
358
|
-
*
|
|
483
|
+
* 文件系统id
|
|
359
484
|
*/
|
|
360
|
-
|
|
485
|
+
FileSystemId: string
|
|
361
486
|
|
|
362
487
|
/**
|
|
363
|
-
*
|
|
488
|
+
* 快照名称
|
|
364
489
|
*/
|
|
365
|
-
|
|
490
|
+
SnapshotName?: string
|
|
366
491
|
|
|
367
492
|
/**
|
|
368
|
-
*
|
|
493
|
+
* 快照标签
|
|
369
494
|
*/
|
|
370
|
-
|
|
495
|
+
ResourceTags?: Array<TagInfo>
|
|
496
|
+
}
|
|
371
497
|
|
|
498
|
+
/**
|
|
499
|
+
* DescribeSnapshotOperationLogs请求参数结构体
|
|
500
|
+
*/
|
|
501
|
+
export interface DescribeSnapshotOperationLogsRequest {
|
|
372
502
|
/**
|
|
373
|
-
*
|
|
503
|
+
* 文件系统快照ID
|
|
374
504
|
*/
|
|
375
|
-
|
|
505
|
+
SnapshotId: string
|
|
376
506
|
|
|
377
507
|
/**
|
|
378
|
-
*
|
|
508
|
+
* 起始时间
|
|
379
509
|
*/
|
|
380
|
-
|
|
510
|
+
StartTime: string
|
|
381
511
|
|
|
382
512
|
/**
|
|
383
|
-
*
|
|
513
|
+
* 结束时间
|
|
384
514
|
*/
|
|
385
|
-
|
|
515
|
+
EndTime: string
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
/**
|
|
519
|
+
* DeleteCfsRule返回参数结构体
|
|
520
|
+
*/
|
|
521
|
+
export interface DeleteCfsRuleResponse {
|
|
522
|
+
/**
|
|
523
|
+
* 规则 ID
|
|
524
|
+
*/
|
|
525
|
+
RuleId: string
|
|
526
|
+
|
|
527
|
+
/**
|
|
528
|
+
* 权限组 ID
|
|
529
|
+
*/
|
|
530
|
+
PGroupId: string
|
|
531
|
+
|
|
532
|
+
/**
|
|
533
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
534
|
+
*/
|
|
535
|
+
RequestId?: string
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
/**
|
|
539
|
+
* DescribeCfsSnapshotOverview返回参数结构体
|
|
540
|
+
*/
|
|
541
|
+
export interface DescribeCfsSnapshotOverviewResponse {
|
|
542
|
+
/**
|
|
543
|
+
* 统计信息
|
|
544
|
+
*/
|
|
545
|
+
StatisticsList: Array<SnapshotStatistics>
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
549
|
+
*/
|
|
550
|
+
RequestId?: string
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
/**
|
|
554
|
+
* DeleteCfsRule请求参数结构体
|
|
555
|
+
*/
|
|
556
|
+
export interface DeleteCfsRuleRequest {
|
|
557
|
+
/**
|
|
558
|
+
* 权限组 ID
|
|
559
|
+
*/
|
|
560
|
+
PGroupId: string
|
|
561
|
+
|
|
562
|
+
/**
|
|
563
|
+
* 规则 ID
|
|
564
|
+
*/
|
|
565
|
+
RuleId: string
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
/**
|
|
569
|
+
* DeleteMountTarget返回参数结构体
|
|
570
|
+
*/
|
|
571
|
+
export interface DeleteMountTargetResponse {
|
|
572
|
+
/**
|
|
573
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
574
|
+
*/
|
|
575
|
+
RequestId?: string
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
/**
|
|
579
|
+
* UpdateCfsPGroup请求参数结构体
|
|
580
|
+
*/
|
|
581
|
+
export interface UpdateCfsPGroupRequest {
|
|
582
|
+
/**
|
|
583
|
+
* 权限组 ID
|
|
584
|
+
*/
|
|
585
|
+
PGroupId: string
|
|
586
|
+
|
|
587
|
+
/**
|
|
588
|
+
* 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
|
|
589
|
+
*/
|
|
590
|
+
Name?: string
|
|
591
|
+
|
|
592
|
+
/**
|
|
593
|
+
* 权限组描述信息,1-255个字符
|
|
594
|
+
*/
|
|
595
|
+
DescInfo?: string
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
/**
|
|
599
|
+
* 挂载点信息
|
|
600
|
+
*/
|
|
601
|
+
export interface MountInfo {
|
|
602
|
+
/**
|
|
603
|
+
* 文件系统 ID
|
|
604
|
+
*/
|
|
605
|
+
FileSystemId: string
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* 挂载点 ID
|
|
609
|
+
*/
|
|
610
|
+
MountTargetId: string
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* 挂载点 IP
|
|
614
|
+
*/
|
|
615
|
+
IpAddress: string
|
|
616
|
+
|
|
617
|
+
/**
|
|
618
|
+
* 挂载根目录
|
|
619
|
+
*/
|
|
620
|
+
FSID: string
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* 挂载点状态
|
|
624
|
+
*/
|
|
625
|
+
LifeCycleState: string
|
|
626
|
+
|
|
627
|
+
/**
|
|
628
|
+
* 网络类型
|
|
629
|
+
*/
|
|
630
|
+
NetworkInterface: string
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* 私有网络 ID
|
|
634
|
+
*/
|
|
635
|
+
VpcId: string
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* 私有网络名称
|
|
639
|
+
*/
|
|
640
|
+
VpcName: string
|
|
386
641
|
|
|
387
642
|
/**
|
|
388
643
|
* 子网 Id
|
|
@@ -500,6 +755,26 @@ export interface DescribeCfsFileSystemsResponse {
|
|
|
500
755
|
RequestId?: string
|
|
501
756
|
}
|
|
502
757
|
|
|
758
|
+
/**
|
|
759
|
+
* DescribeAutoSnapshotPolicies返回参数结构体
|
|
760
|
+
*/
|
|
761
|
+
export interface DescribeAutoSnapshotPoliciesResponse {
|
|
762
|
+
/**
|
|
763
|
+
* 快照策略总个数
|
|
764
|
+
*/
|
|
765
|
+
TotalCount: number
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* 快照策略信息
|
|
769
|
+
*/
|
|
770
|
+
AutoSnapshotPolicies: Array<AutoSnapshotPolicyInfo>
|
|
771
|
+
|
|
772
|
+
/**
|
|
773
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
774
|
+
*/
|
|
775
|
+
RequestId?: string
|
|
776
|
+
}
|
|
777
|
+
|
|
503
778
|
/**
|
|
504
779
|
* CreateCfsFileSystem返回参数结构体
|
|
505
780
|
*/
|
|
@@ -551,168 +826,433 @@ export interface CreateCfsFileSystemResponse {
|
|
|
551
826
|
}
|
|
552
827
|
|
|
553
828
|
/**
|
|
554
|
-
*
|
|
829
|
+
* DescribeMountTargets返回参数结构体
|
|
555
830
|
*/
|
|
556
|
-
export interface
|
|
831
|
+
export interface DescribeMountTargetsResponse {
|
|
557
832
|
/**
|
|
558
|
-
*
|
|
833
|
+
* 挂载点详情
|
|
559
834
|
*/
|
|
560
|
-
|
|
835
|
+
MountTargets: Array<MountInfo>
|
|
561
836
|
|
|
562
837
|
/**
|
|
563
|
-
*
|
|
838
|
+
* 挂载点数量
|
|
564
839
|
*/
|
|
565
|
-
|
|
840
|
+
NumberOfMountTargets: number
|
|
566
841
|
|
|
567
842
|
/**
|
|
568
|
-
*
|
|
843
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
569
844
|
*/
|
|
570
|
-
|
|
845
|
+
RequestId?: string
|
|
846
|
+
}
|
|
571
847
|
|
|
848
|
+
/**
|
|
849
|
+
* BindAutoSnapshotPolicy请求参数结构体
|
|
850
|
+
*/
|
|
851
|
+
export interface BindAutoSnapshotPolicyRequest {
|
|
572
852
|
/**
|
|
573
|
-
*
|
|
853
|
+
* 快照策略ID
|
|
574
854
|
*/
|
|
575
|
-
|
|
855
|
+
AutoSnapshotPolicyId: string
|
|
576
856
|
|
|
577
857
|
/**
|
|
578
|
-
*
|
|
858
|
+
* 文件系统列表
|
|
579
859
|
*/
|
|
580
|
-
|
|
860
|
+
FileSystemIds: string
|
|
861
|
+
}
|
|
581
862
|
|
|
863
|
+
/**
|
|
864
|
+
* DescribeCfsFileSystemClients请求参数结构体
|
|
865
|
+
*/
|
|
866
|
+
export interface DescribeCfsFileSystemClientsRequest {
|
|
582
867
|
/**
|
|
583
|
-
*
|
|
868
|
+
* 文件系统 ID。
|
|
584
869
|
*/
|
|
585
|
-
|
|
870
|
+
FileSystemId: string
|
|
871
|
+
}
|
|
586
872
|
|
|
873
|
+
/**
|
|
874
|
+
* DeleteCfsSnapshot请求参数结构体
|
|
875
|
+
*/
|
|
876
|
+
export interface DeleteCfsSnapshotRequest {
|
|
587
877
|
/**
|
|
588
|
-
*
|
|
878
|
+
* 文件系统快照id
|
|
589
879
|
*/
|
|
590
|
-
|
|
880
|
+
SnapshotId: string
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
/**
|
|
884
|
+
* DescribeCfsPGroups请求参数结构体
|
|
885
|
+
*/
|
|
886
|
+
export type DescribeCfsPGroupsRequest = null
|
|
591
887
|
|
|
888
|
+
/**
|
|
889
|
+
* 版本控制-可用区数组
|
|
890
|
+
*/
|
|
891
|
+
export interface AvailableZone {
|
|
592
892
|
/**
|
|
593
|
-
*
|
|
893
|
+
* 可用区名称
|
|
594
894
|
*/
|
|
595
895
|
Zone: string
|
|
596
896
|
|
|
597
897
|
/**
|
|
598
|
-
*
|
|
898
|
+
* 可用区ID
|
|
599
899
|
*/
|
|
600
|
-
|
|
900
|
+
ZoneId: number
|
|
601
901
|
|
|
602
902
|
/**
|
|
603
|
-
*
|
|
903
|
+
* 可用区中文名称
|
|
604
904
|
*/
|
|
605
|
-
|
|
905
|
+
ZoneCnName: string
|
|
606
906
|
|
|
607
907
|
/**
|
|
608
|
-
*
|
|
908
|
+
* Type数组
|
|
609
909
|
*/
|
|
610
|
-
|
|
910
|
+
Types: Array<AvailableType>
|
|
611
911
|
|
|
612
912
|
/**
|
|
613
|
-
*
|
|
913
|
+
* 可用区中英文名称
|
|
614
914
|
*/
|
|
615
|
-
|
|
915
|
+
ZoneName: string
|
|
916
|
+
}
|
|
616
917
|
|
|
918
|
+
/**
|
|
919
|
+
* CreateCfsPGroup请求参数结构体
|
|
920
|
+
*/
|
|
921
|
+
export interface CreateCfsPGroupRequest {
|
|
617
922
|
/**
|
|
618
|
-
*
|
|
923
|
+
* 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
|
|
619
924
|
*/
|
|
620
|
-
|
|
925
|
+
Name: string
|
|
621
926
|
|
|
622
927
|
/**
|
|
623
|
-
*
|
|
928
|
+
* 权限组描述信息,1-255个字符
|
|
624
929
|
*/
|
|
625
|
-
|
|
930
|
+
DescInfo?: string
|
|
931
|
+
}
|
|
626
932
|
|
|
933
|
+
/**
|
|
934
|
+
* DeleteCfsPGroup返回参数结构体
|
|
935
|
+
*/
|
|
936
|
+
export interface DeleteCfsPGroupResponse {
|
|
627
937
|
/**
|
|
628
|
-
*
|
|
938
|
+
* 权限组 ID
|
|
629
939
|
*/
|
|
630
|
-
|
|
940
|
+
PGroupId: string
|
|
631
941
|
|
|
632
942
|
/**
|
|
633
|
-
*
|
|
943
|
+
* 用户 ID
|
|
634
944
|
*/
|
|
635
|
-
|
|
945
|
+
AppId: number
|
|
636
946
|
|
|
637
947
|
/**
|
|
638
|
-
*
|
|
948
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
639
949
|
*/
|
|
640
|
-
|
|
950
|
+
RequestId?: string
|
|
951
|
+
}
|
|
641
952
|
|
|
953
|
+
/**
|
|
954
|
+
* DescribeCfsSnapshots返回参数结构体
|
|
955
|
+
*/
|
|
956
|
+
export interface DescribeCfsSnapshotsResponse {
|
|
642
957
|
/**
|
|
643
|
-
*
|
|
958
|
+
* 总个数
|
|
644
959
|
*/
|
|
645
|
-
|
|
960
|
+
TotalCount: number
|
|
646
961
|
|
|
647
962
|
/**
|
|
648
|
-
*
|
|
963
|
+
* 快照信息描述
|
|
649
964
|
*/
|
|
650
|
-
|
|
965
|
+
Snapshots: Array<SnapshotInfo>
|
|
651
966
|
|
|
652
967
|
/**
|
|
653
|
-
*
|
|
968
|
+
* 快照列表快照汇总
|
|
654
969
|
*/
|
|
655
|
-
|
|
970
|
+
TotalSize: number
|
|
971
|
+
|
|
972
|
+
/**
|
|
973
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
974
|
+
*/
|
|
975
|
+
RequestId?: string
|
|
656
976
|
}
|
|
657
977
|
|
|
658
978
|
/**
|
|
659
|
-
*
|
|
979
|
+
* DescribeAutoSnapshotPolicies请求参数结构体
|
|
660
980
|
*/
|
|
661
|
-
export interface
|
|
981
|
+
export interface DescribeAutoSnapshotPoliciesRequest {
|
|
662
982
|
/**
|
|
663
|
-
*
|
|
983
|
+
* 快照策略ID
|
|
664
984
|
*/
|
|
665
|
-
|
|
985
|
+
AutoSnapshotPolicyId?: string
|
|
666
986
|
|
|
667
987
|
/**
|
|
668
|
-
*
|
|
988
|
+
* 分页码
|
|
669
989
|
*/
|
|
670
|
-
|
|
671
|
-
}
|
|
990
|
+
Offset?: number
|
|
672
991
|
|
|
673
|
-
/**
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
992
|
+
/**
|
|
993
|
+
* 页面长
|
|
994
|
+
*/
|
|
995
|
+
Limit?: number
|
|
677
996
|
|
|
678
|
-
/**
|
|
679
|
-
|
|
997
|
+
/**
|
|
998
|
+
* 过滤条件
|
|
999
|
+
*/
|
|
1000
|
+
Filters?: Array<Filter>
|
|
1001
|
+
|
|
1002
|
+
/**
|
|
1003
|
+
* 升序,降序
|
|
1004
|
+
*/
|
|
1005
|
+
Order?: string
|
|
1006
|
+
|
|
1007
|
+
/**
|
|
1008
|
+
* 排序字段
|
|
1009
|
+
*/
|
|
1010
|
+
OrderField?: string
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
/**
|
|
1014
|
+
* DeleteCfsFileSystem请求参数结构体
|
|
680
1015
|
*/
|
|
681
|
-
export interface
|
|
1016
|
+
export interface DeleteCfsFileSystemRequest {
|
|
682
1017
|
/**
|
|
683
|
-
* 文件系统 ID
|
|
1018
|
+
* 文件系统 ID。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
|
|
684
1019
|
*/
|
|
685
1020
|
FileSystemId: string
|
|
686
1021
|
}
|
|
687
1022
|
|
|
688
1023
|
/**
|
|
689
|
-
*
|
|
1024
|
+
* 版本控制-区域数组
|
|
690
1025
|
*/
|
|
691
|
-
export interface
|
|
1026
|
+
export interface AvailableRegion {
|
|
692
1027
|
/**
|
|
693
|
-
*
|
|
1028
|
+
* 区域名称,如“ap-beijing”
|
|
1029
|
+
*/
|
|
1030
|
+
Region: string
|
|
1031
|
+
|
|
1032
|
+
/**
|
|
1033
|
+
* 区域名称,如“bj”
|
|
1034
|
+
*/
|
|
1035
|
+
RegionName: string
|
|
1036
|
+
|
|
1037
|
+
/**
|
|
1038
|
+
* 区域可用情况,当区域内至少有一个可用区处于可售状态时,取值为AVAILABLE,否则为UNAVAILABLE
|
|
1039
|
+
*/
|
|
1040
|
+
RegionStatus: string
|
|
1041
|
+
|
|
1042
|
+
/**
|
|
1043
|
+
* 可用区数组
|
|
1044
|
+
*/
|
|
1045
|
+
Zones: Array<AvailableZone>
|
|
1046
|
+
|
|
1047
|
+
/**
|
|
1048
|
+
* 区域中文名称,如“广州”
|
|
1049
|
+
*/
|
|
1050
|
+
RegionCnName: string
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
/**
|
|
1054
|
+
* UpdateCfsSnapshotAttribute请求参数结构体
|
|
1055
|
+
*/
|
|
1056
|
+
export interface UpdateCfsSnapshotAttributeRequest {
|
|
1057
|
+
/**
|
|
1058
|
+
* 文件系统快照ID
|
|
1059
|
+
*/
|
|
1060
|
+
SnapshotId: string
|
|
1061
|
+
|
|
1062
|
+
/**
|
|
1063
|
+
* 文件系统快照名称
|
|
1064
|
+
*/
|
|
1065
|
+
SnapshotName?: string
|
|
1066
|
+
|
|
1067
|
+
/**
|
|
1068
|
+
* 文件系统快照保留天数
|
|
1069
|
+
*/
|
|
1070
|
+
AliveDays?: number
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
/**
|
|
1074
|
+
* CreateCfsFileSystem请求参数结构体
|
|
1075
|
+
*/
|
|
1076
|
+
export interface CreateCfsFileSystemRequest {
|
|
1077
|
+
/**
|
|
1078
|
+
* 可用区名称,例如ap-beijing-1,请参考 [概览](https://cloud.tencent.com/document/product/582/13225) 文档中的地域与可用区列表
|
|
1079
|
+
*/
|
|
1080
|
+
Zone: string
|
|
1081
|
+
|
|
1082
|
+
/**
|
|
1083
|
+
* 网络类型,可选值为 VPC,BASIC,CCN;其中 VPC 为私有网络,BASIC 为基础网络, CCN 为云联网,Turbo系列当前必须选择云联网。目前基础网络已逐渐淘汰,不推荐使用。
|
|
1084
|
+
*/
|
|
1085
|
+
NetInterface: string
|
|
1086
|
+
|
|
1087
|
+
/**
|
|
1088
|
+
* 权限组 ID,通用标准型和性能型必填,turbo系列请填写pgroupbasic
|
|
1089
|
+
*/
|
|
1090
|
+
PGroupId: string
|
|
1091
|
+
|
|
1092
|
+
/**
|
|
1093
|
+
* 文件系统协议类型, 值为 NFS、CIFS、TURBO ; 若留空则默认为 NFS协议,turbo系列必须选择turbo,不支持NFS、CIFS
|
|
1094
|
+
*/
|
|
1095
|
+
Protocol?: string
|
|
1096
|
+
|
|
1097
|
+
/**
|
|
1098
|
+
* 文件系统存储类型,默认值为 SD ;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。
|
|
1099
|
+
*/
|
|
1100
|
+
StorageType?: string
|
|
1101
|
+
|
|
1102
|
+
/**
|
|
1103
|
+
* 私有网络(VPC) ID,若网络类型选择的是VPC,该字段为必填。
|
|
1104
|
+
*/
|
|
1105
|
+
VpcId?: string
|
|
1106
|
+
|
|
1107
|
+
/**
|
|
1108
|
+
* 子网 ID,若网络类型选择的是VPC,该字段为必填。
|
|
1109
|
+
*/
|
|
1110
|
+
SubnetId?: string
|
|
1111
|
+
|
|
1112
|
+
/**
|
|
1113
|
+
* 指定IP地址,仅VPC网络支持;若不填写、将在该子网下随机分配 IP,Turbo系列当前不支持指定
|
|
1114
|
+
*/
|
|
1115
|
+
MountIP?: string
|
|
1116
|
+
|
|
1117
|
+
/**
|
|
1118
|
+
* 用户自定义文件系统名称
|
|
1119
|
+
*/
|
|
1120
|
+
FsName?: string
|
|
1121
|
+
|
|
1122
|
+
/**
|
|
1123
|
+
* 文件系统标签
|
|
1124
|
+
*/
|
|
1125
|
+
ResourceTags?: Array<TagInfo>
|
|
1126
|
+
|
|
1127
|
+
/**
|
|
1128
|
+
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。用于保证请求幂等性的字符串失效时间为2小时。
|
|
1129
|
+
*/
|
|
1130
|
+
ClientToken?: string
|
|
1131
|
+
|
|
1132
|
+
/**
|
|
1133
|
+
* 云联网ID, 若网络类型选择的是CCN,该字段为必填
|
|
1134
|
+
*/
|
|
1135
|
+
CcnId?: string
|
|
1136
|
+
|
|
1137
|
+
/**
|
|
1138
|
+
* 云联网中CFS使用的网段, 若网络类型选择的是Ccn,该字段为必填,且不能和Ccn中已经绑定的网段冲突
|
|
1139
|
+
*/
|
|
1140
|
+
CidrBlock?: string
|
|
1141
|
+
|
|
1142
|
+
/**
|
|
1143
|
+
* 文件系统容量,turbo系列必填,单位为GiB。 turbo标准型单位GB,起售40TiB,即40960 GiB;扩容步长20TiB,即20480 GiB。turbo性能型起售20TiB,即20480 GiB;扩容步长10TiB,10240 GiB。
|
|
1144
|
+
*/
|
|
1145
|
+
Capacity?: number
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
/**
|
|
1149
|
+
* DescribeMountTargets请求参数结构体
|
|
1150
|
+
*/
|
|
1151
|
+
export interface DescribeMountTargetsRequest {
|
|
1152
|
+
/**
|
|
1153
|
+
* 文件系统 ID
|
|
1154
|
+
*/
|
|
1155
|
+
FileSystemId: string
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
/**
|
|
1159
|
+
* CreateCfsPGroup返回参数结构体
|
|
1160
|
+
*/
|
|
1161
|
+
export interface CreateCfsPGroupResponse {
|
|
1162
|
+
/**
|
|
1163
|
+
* 权限组 ID
|
|
1164
|
+
*/
|
|
1165
|
+
PGroupId: string
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* 权限组名字
|
|
694
1169
|
*/
|
|
695
1170
|
Name: string
|
|
696
1171
|
|
|
697
1172
|
/**
|
|
698
|
-
*
|
|
1173
|
+
* 权限组描述信息
|
|
699
1174
|
*/
|
|
700
|
-
DescInfo
|
|
1175
|
+
DescInfo: string
|
|
1176
|
+
|
|
1177
|
+
/**
|
|
1178
|
+
* 已经与该权限组绑定的文件系统个数
|
|
1179
|
+
*/
|
|
1180
|
+
BindCfsNum: number
|
|
1181
|
+
|
|
1182
|
+
/**
|
|
1183
|
+
* 权限组创建时间
|
|
1184
|
+
*/
|
|
1185
|
+
CDate: string
|
|
1186
|
+
|
|
1187
|
+
/**
|
|
1188
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1189
|
+
*/
|
|
1190
|
+
RequestId?: string
|
|
701
1191
|
}
|
|
702
1192
|
|
|
703
1193
|
/**
|
|
704
|
-
*
|
|
1194
|
+
* UpdateCfsFileSystemPGroup请求参数结构体
|
|
705
1195
|
*/
|
|
706
|
-
export interface
|
|
1196
|
+
export interface UpdateCfsFileSystemPGroupRequest {
|
|
707
1197
|
/**
|
|
708
1198
|
* 权限组 ID
|
|
709
1199
|
*/
|
|
710
1200
|
PGroupId: string
|
|
711
1201
|
|
|
712
1202
|
/**
|
|
713
|
-
*
|
|
1203
|
+
* 文件系统 ID
|
|
714
1204
|
*/
|
|
715
|
-
|
|
1205
|
+
FileSystemId: string
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
/**
|
|
1209
|
+
* 权限组规则列表
|
|
1210
|
+
*/
|
|
1211
|
+
export interface PGroupRuleInfo {
|
|
1212
|
+
/**
|
|
1213
|
+
* 规则ID
|
|
1214
|
+
*/
|
|
1215
|
+
RuleId: string
|
|
1216
|
+
|
|
1217
|
+
/**
|
|
1218
|
+
* 允许访问的客户端IP
|
|
1219
|
+
*/
|
|
1220
|
+
AuthClientIp: string
|
|
1221
|
+
|
|
1222
|
+
/**
|
|
1223
|
+
* 读写权限, ro为只读,rw为读写
|
|
1224
|
+
*/
|
|
1225
|
+
RWPermission: string
|
|
1226
|
+
|
|
1227
|
+
/**
|
|
1228
|
+
* 用户权限。其中all_squash为所有访问用户都会被映射为匿名用户或用户组;no_all_squash为访问用户会先与本机用户匹配,匹配失败后再映射为匿名用户或用户组;root_squash为将来访的root用户映射为匿名用户或用户组;no_root_squash为来访的root用户保持root帐号权限。
|
|
1229
|
+
*/
|
|
1230
|
+
UserPermission: string
|
|
1231
|
+
|
|
1232
|
+
/**
|
|
1233
|
+
* 规则优先级,1-100。 其中 1 为最高,100为最低
|
|
1234
|
+
*/
|
|
1235
|
+
Priority: number
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
/**
|
|
1239
|
+
* UpdateCfsFileSystemName返回参数结构体
|
|
1240
|
+
*/
|
|
1241
|
+
export interface UpdateCfsFileSystemNameResponse {
|
|
1242
|
+
/**
|
|
1243
|
+
* 用户自定义文件系统名称
|
|
1244
|
+
*/
|
|
1245
|
+
CreationToken: string
|
|
1246
|
+
|
|
1247
|
+
/**
|
|
1248
|
+
* 文件系统ID
|
|
1249
|
+
*/
|
|
1250
|
+
FileSystemId: string
|
|
1251
|
+
|
|
1252
|
+
/**
|
|
1253
|
+
* 用户自定义文件系统名称
|
|
1254
|
+
*/
|
|
1255
|
+
FsName: string
|
|
716
1256
|
|
|
717
1257
|
/**
|
|
718
1258
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -721,9 +1261,19 @@ export interface DeleteCfsPGroupResponse {
|
|
|
721
1261
|
}
|
|
722
1262
|
|
|
723
1263
|
/**
|
|
724
|
-
*
|
|
1264
|
+
* DescribeCfsServiceStatus请求参数结构体
|
|
725
1265
|
*/
|
|
726
|
-
export
|
|
1266
|
+
export type DescribeCfsServiceStatusRequest = null
|
|
1267
|
+
|
|
1268
|
+
/**
|
|
1269
|
+
* UpdateCfsSnapshotAttribute返回参数结构体
|
|
1270
|
+
*/
|
|
1271
|
+
export interface UpdateCfsSnapshotAttributeResponse {
|
|
1272
|
+
/**
|
|
1273
|
+
* 文件系统快照ID
|
|
1274
|
+
*/
|
|
1275
|
+
SnapshotId: string
|
|
1276
|
+
|
|
727
1277
|
/**
|
|
728
1278
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
729
1279
|
*/
|
|
@@ -731,153 +1281,238 @@ export interface UpdateCfsFileSystemSizeLimitResponse {
|
|
|
731
1281
|
}
|
|
732
1282
|
|
|
733
1283
|
/**
|
|
734
|
-
*
|
|
1284
|
+
* 绑定快照策略的文件系统信息
|
|
735
1285
|
*/
|
|
736
|
-
export
|
|
1286
|
+
export interface FileSystemByPolicy {
|
|
1287
|
+
/**
|
|
1288
|
+
* 文件系统名称
|
|
1289
|
+
*/
|
|
1290
|
+
CreationToken: string
|
|
1291
|
+
|
|
1292
|
+
/**
|
|
1293
|
+
* 文件系统ID
|
|
1294
|
+
*/
|
|
1295
|
+
FileSystemId: string
|
|
1296
|
+
|
|
1297
|
+
/**
|
|
1298
|
+
* 文件系统大小
|
|
1299
|
+
*/
|
|
1300
|
+
SizeByte: number
|
|
1301
|
+
|
|
1302
|
+
/**
|
|
1303
|
+
* 存储类型
|
|
1304
|
+
*/
|
|
1305
|
+
StorageType: string
|
|
1306
|
+
|
|
1307
|
+
/**
|
|
1308
|
+
* 快照总大小
|
|
1309
|
+
*/
|
|
1310
|
+
TotalSnapshotSize: number
|
|
1311
|
+
|
|
1312
|
+
/**
|
|
1313
|
+
* 文件系统创建时间
|
|
1314
|
+
*/
|
|
1315
|
+
CreationTime: string
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* 文件系统所在区ID
|
|
1319
|
+
*/
|
|
1320
|
+
ZoneId: number
|
|
1321
|
+
}
|
|
737
1322
|
|
|
738
1323
|
/**
|
|
739
|
-
*
|
|
1324
|
+
* 权限组数组
|
|
740
1325
|
*/
|
|
741
|
-
export interface
|
|
1326
|
+
export interface PGroupInfo {
|
|
742
1327
|
/**
|
|
743
|
-
*
|
|
1328
|
+
* 权限组ID
|
|
744
1329
|
*/
|
|
745
|
-
|
|
1330
|
+
PGroupId: string
|
|
746
1331
|
|
|
747
1332
|
/**
|
|
748
|
-
*
|
|
1333
|
+
* 权限组名称
|
|
749
1334
|
*/
|
|
750
|
-
|
|
1335
|
+
Name: string
|
|
751
1336
|
|
|
752
1337
|
/**
|
|
753
|
-
*
|
|
1338
|
+
* 描述信息
|
|
754
1339
|
*/
|
|
755
|
-
|
|
1340
|
+
DescInfo: string
|
|
756
1341
|
|
|
757
1342
|
/**
|
|
758
|
-
*
|
|
1343
|
+
* 创建时间
|
|
759
1344
|
*/
|
|
760
|
-
|
|
1345
|
+
CDate: string
|
|
761
1346
|
|
|
762
1347
|
/**
|
|
763
|
-
*
|
|
1348
|
+
* 关联文件系统个数
|
|
764
1349
|
*/
|
|
765
|
-
|
|
1350
|
+
BindCfsNum: number
|
|
766
1351
|
}
|
|
767
1352
|
|
|
768
1353
|
/**
|
|
769
|
-
*
|
|
1354
|
+
* 条件过滤
|
|
770
1355
|
*/
|
|
771
|
-
export interface
|
|
1356
|
+
export interface Filter {
|
|
772
1357
|
/**
|
|
773
|
-
*
|
|
1358
|
+
* 值
|
|
774
1359
|
*/
|
|
775
|
-
|
|
1360
|
+
Values: Array<string>
|
|
1361
|
+
|
|
1362
|
+
/**
|
|
1363
|
+
* 名称
|
|
1364
|
+
*/
|
|
1365
|
+
Name: string
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
/**
|
|
1369
|
+
* UnbindAutoSnapshotPolicy请求参数结构体
|
|
1370
|
+
*/
|
|
1371
|
+
export interface UnbindAutoSnapshotPolicyRequest {
|
|
1372
|
+
/**
|
|
1373
|
+
* 需要解绑的文件系统ID列表,用"," 分割
|
|
1374
|
+
*/
|
|
1375
|
+
FileSystemIds: string
|
|
1376
|
+
|
|
1377
|
+
/**
|
|
1378
|
+
* 解绑的快照ID
|
|
1379
|
+
*/
|
|
1380
|
+
AutoSnapshotPolicyId: string
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
/**
|
|
1384
|
+
* SignUpCfsService返回参数结构体
|
|
1385
|
+
*/
|
|
1386
|
+
export interface SignUpCfsServiceResponse {
|
|
1387
|
+
/**
|
|
1388
|
+
* 该用户当前 CFS 服务的状态,creating 是开通中,created 是已开通
|
|
1389
|
+
*/
|
|
1390
|
+
CfsServiceStatus: string
|
|
1391
|
+
|
|
1392
|
+
/**
|
|
1393
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1394
|
+
*/
|
|
1395
|
+
RequestId?: string
|
|
1396
|
+
}
|
|
776
1397
|
|
|
1398
|
+
/**
|
|
1399
|
+
* 快照策略信息
|
|
1400
|
+
*/
|
|
1401
|
+
export interface AutoSnapshotPolicyInfo {
|
|
777
1402
|
/**
|
|
778
|
-
*
|
|
1403
|
+
* 快照策略ID
|
|
779
1404
|
*/
|
|
780
|
-
|
|
1405
|
+
AutoSnapshotPolicyId: string
|
|
781
1406
|
|
|
782
1407
|
/**
|
|
783
|
-
*
|
|
1408
|
+
* 快照策略ID
|
|
784
1409
|
*/
|
|
785
|
-
|
|
1410
|
+
PolicyName: string
|
|
786
1411
|
|
|
787
1412
|
/**
|
|
788
|
-
*
|
|
1413
|
+
* 快照策略创建时间
|
|
789
1414
|
*/
|
|
790
|
-
|
|
1415
|
+
CreationTime: string
|
|
791
1416
|
|
|
792
1417
|
/**
|
|
793
|
-
*
|
|
1418
|
+
* 关联的文件系统个数
|
|
794
1419
|
*/
|
|
795
|
-
|
|
1420
|
+
FileSystemNums: number
|
|
796
1421
|
|
|
797
1422
|
/**
|
|
798
|
-
*
|
|
1423
|
+
* 快照定期备份在一星期哪一天
|
|
799
1424
|
*/
|
|
800
|
-
|
|
1425
|
+
DayOfWeek: string
|
|
801
1426
|
|
|
802
1427
|
/**
|
|
803
|
-
*
|
|
1428
|
+
* 快照定期备份在一天的哪一小时
|
|
804
1429
|
*/
|
|
805
|
-
|
|
1430
|
+
Hour: string
|
|
806
1431
|
|
|
807
1432
|
/**
|
|
808
|
-
*
|
|
1433
|
+
* 是否激活定期快照功能
|
|
809
1434
|
*/
|
|
810
|
-
|
|
1435
|
+
IsActivated: number
|
|
811
1436
|
|
|
812
1437
|
/**
|
|
813
|
-
*
|
|
1438
|
+
* 下一次触发快照时间
|
|
814
1439
|
*/
|
|
815
|
-
|
|
1440
|
+
NextActiveTime: string
|
|
816
1441
|
|
|
817
1442
|
/**
|
|
818
|
-
*
|
|
1443
|
+
* 快照策略状态
|
|
819
1444
|
*/
|
|
820
|
-
|
|
1445
|
+
Status: string
|
|
821
1446
|
|
|
822
1447
|
/**
|
|
823
|
-
*
|
|
1448
|
+
* 帐号ID
|
|
824
1449
|
*/
|
|
825
|
-
|
|
1450
|
+
AppId: number
|
|
826
1451
|
|
|
827
1452
|
/**
|
|
828
|
-
*
|
|
1453
|
+
* 保留时间
|
|
829
1454
|
*/
|
|
830
|
-
|
|
1455
|
+
AliveDays: number
|
|
831
1456
|
|
|
832
1457
|
/**
|
|
833
|
-
*
|
|
1458
|
+
* 地域
|
|
834
1459
|
*/
|
|
835
|
-
|
|
1460
|
+
RegionName: string
|
|
836
1461
|
|
|
837
1462
|
/**
|
|
838
|
-
*
|
|
1463
|
+
* 文件系统信息
|
|
839
1464
|
*/
|
|
840
|
-
|
|
1465
|
+
FileSystems: Array<FileSystemByPolicy>
|
|
841
1466
|
}
|
|
842
1467
|
|
|
843
1468
|
/**
|
|
844
|
-
*
|
|
1469
|
+
* DescribeCfsServiceStatus返回参数结构体
|
|
845
1470
|
*/
|
|
846
|
-
export interface
|
|
1471
|
+
export interface DescribeCfsServiceStatusResponse {
|
|
847
1472
|
/**
|
|
848
|
-
*
|
|
1473
|
+
* 该用户当前 CFS 服务的状态,none 为未开通,creating 为开通中,created 为已开通
|
|
849
1474
|
*/
|
|
850
|
-
|
|
1475
|
+
CfsServiceStatus: string
|
|
1476
|
+
|
|
1477
|
+
/**
|
|
1478
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1479
|
+
*/
|
|
1480
|
+
RequestId?: string
|
|
851
1481
|
}
|
|
852
1482
|
|
|
853
1483
|
/**
|
|
854
|
-
*
|
|
1484
|
+
* CreateCfsRule返回参数结构体
|
|
855
1485
|
*/
|
|
856
|
-
export interface
|
|
1486
|
+
export interface CreateCfsRuleResponse {
|
|
1487
|
+
/**
|
|
1488
|
+
* 规则 ID
|
|
1489
|
+
*/
|
|
1490
|
+
RuleId: string
|
|
1491
|
+
|
|
857
1492
|
/**
|
|
858
1493
|
* 权限组 ID
|
|
859
1494
|
*/
|
|
860
1495
|
PGroupId: string
|
|
861
1496
|
|
|
862
1497
|
/**
|
|
863
|
-
*
|
|
1498
|
+
* 客户端 IP
|
|
864
1499
|
*/
|
|
865
|
-
|
|
1500
|
+
AuthClientIp: string
|
|
866
1501
|
|
|
867
1502
|
/**
|
|
868
|
-
*
|
|
1503
|
+
* 读写权限
|
|
869
1504
|
*/
|
|
870
|
-
|
|
1505
|
+
RWPermission: string
|
|
871
1506
|
|
|
872
1507
|
/**
|
|
873
|
-
*
|
|
1508
|
+
* 用户权限
|
|
874
1509
|
*/
|
|
875
|
-
|
|
1510
|
+
UserPermission: string
|
|
876
1511
|
|
|
877
1512
|
/**
|
|
878
|
-
*
|
|
1513
|
+
* 优先级
|
|
879
1514
|
*/
|
|
880
|
-
|
|
1515
|
+
Priority: number
|
|
881
1516
|
|
|
882
1517
|
/**
|
|
883
1518
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -886,83 +1521,89 @@ export interface CreateCfsPGroupResponse {
|
|
|
886
1521
|
}
|
|
887
1522
|
|
|
888
1523
|
/**
|
|
889
|
-
*
|
|
1524
|
+
* CreateAutoSnapshotPolicy返回参数结构体
|
|
890
1525
|
*/
|
|
891
|
-
export
|
|
1526
|
+
export interface CreateAutoSnapshotPolicyResponse {
|
|
1527
|
+
/**
|
|
1528
|
+
* 快照策略ID
|
|
1529
|
+
*/
|
|
1530
|
+
AutoSnapshotPolicyId: string
|
|
892
1531
|
|
|
893
|
-
/**
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
1532
|
+
/**
|
|
1533
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1534
|
+
*/
|
|
1535
|
+
RequestId?: string
|
|
1536
|
+
}
|
|
897
1537
|
|
|
898
1538
|
/**
|
|
899
|
-
*
|
|
1539
|
+
* UpdateCfsFileSystemPGroup返回参数结构体
|
|
900
1540
|
*/
|
|
901
|
-
export interface
|
|
1541
|
+
export interface UpdateCfsFileSystemPGroupResponse {
|
|
902
1542
|
/**
|
|
903
|
-
* 权限组ID
|
|
1543
|
+
* 权限组 ID
|
|
904
1544
|
*/
|
|
905
1545
|
PGroupId: string
|
|
906
1546
|
|
|
907
1547
|
/**
|
|
908
|
-
*
|
|
1548
|
+
* 文件系统 ID
|
|
909
1549
|
*/
|
|
910
|
-
|
|
1550
|
+
FileSystemId: string
|
|
911
1551
|
|
|
912
1552
|
/**
|
|
913
|
-
*
|
|
1553
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
914
1554
|
*/
|
|
915
|
-
|
|
1555
|
+
RequestId?: string
|
|
1556
|
+
}
|
|
916
1557
|
|
|
1558
|
+
/**
|
|
1559
|
+
* Tag信息单元
|
|
1560
|
+
*/
|
|
1561
|
+
export interface TagInfo {
|
|
917
1562
|
/**
|
|
918
|
-
*
|
|
1563
|
+
* 标签键
|
|
919
1564
|
*/
|
|
920
|
-
|
|
1565
|
+
TagKey: string
|
|
921
1566
|
|
|
922
1567
|
/**
|
|
923
|
-
*
|
|
1568
|
+
* 标签值
|
|
924
1569
|
*/
|
|
925
|
-
|
|
1570
|
+
TagValue: string
|
|
926
1571
|
}
|
|
927
1572
|
|
|
928
1573
|
/**
|
|
929
|
-
*
|
|
1574
|
+
* 版本控制-协议详情
|
|
1575
|
+
|
|
930
1576
|
*/
|
|
931
|
-
export interface
|
|
1577
|
+
export interface AvailableProtoStatus {
|
|
932
1578
|
/**
|
|
933
|
-
*
|
|
1579
|
+
* 售卖状态。可选值有 sale_out 售罄、saling可售、no_saling不可销售
|
|
934
1580
|
*/
|
|
935
|
-
|
|
1581
|
+
SaleStatus: string
|
|
936
1582
|
|
|
937
1583
|
/**
|
|
938
|
-
*
|
|
1584
|
+
* 协议类型。可选值有 NFS、CIFS
|
|
939
1585
|
*/
|
|
940
|
-
|
|
1586
|
+
Protocol: string
|
|
941
1587
|
}
|
|
942
1588
|
|
|
943
1589
|
/**
|
|
944
|
-
*
|
|
1590
|
+
* DescribeCfsRules请求参数结构体
|
|
945
1591
|
*/
|
|
946
|
-
export interface
|
|
1592
|
+
export interface DescribeCfsRulesRequest {
|
|
947
1593
|
/**
|
|
948
1594
|
* 权限组 ID
|
|
949
1595
|
*/
|
|
950
1596
|
PGroupId: string
|
|
951
|
-
|
|
952
|
-
/**
|
|
953
|
-
* 文件系统 ID
|
|
954
|
-
*/
|
|
955
|
-
FileSystemId: string
|
|
956
1597
|
}
|
|
957
1598
|
|
|
958
1599
|
/**
|
|
959
|
-
*
|
|
1600
|
+
* BindAutoSnapshotPolicy返回参数结构体
|
|
960
1601
|
*/
|
|
961
|
-
export interface
|
|
1602
|
+
export interface BindAutoSnapshotPolicyResponse {
|
|
962
1603
|
/**
|
|
963
|
-
*
|
|
1604
|
+
* 快照策略ID
|
|
964
1605
|
*/
|
|
965
|
-
|
|
1606
|
+
AutoSnapshotPolicyId: string
|
|
966
1607
|
|
|
967
1608
|
/**
|
|
968
1609
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -971,65 +1612,59 @@ export interface DescribeCfsServiceStatusResponse {
|
|
|
971
1612
|
}
|
|
972
1613
|
|
|
973
1614
|
/**
|
|
974
|
-
*
|
|
1615
|
+
* DescribeCfsSnapshots请求参数结构体
|
|
975
1616
|
*/
|
|
976
|
-
export interface
|
|
1617
|
+
export interface DescribeCfsSnapshotsRequest {
|
|
977
1618
|
/**
|
|
978
|
-
*
|
|
1619
|
+
* 文件系统ID
|
|
979
1620
|
*/
|
|
980
|
-
|
|
1621
|
+
FileSystemId?: string
|
|
981
1622
|
|
|
982
1623
|
/**
|
|
983
|
-
*
|
|
1624
|
+
* 快照ID
|
|
984
1625
|
*/
|
|
985
|
-
|
|
1626
|
+
SnapshotId?: string
|
|
986
1627
|
|
|
987
1628
|
/**
|
|
988
|
-
*
|
|
1629
|
+
* 分页起始位置
|
|
989
1630
|
*/
|
|
990
|
-
|
|
1631
|
+
Offset?: number
|
|
991
1632
|
|
|
992
1633
|
/**
|
|
993
|
-
*
|
|
1634
|
+
* 页面长度
|
|
994
1635
|
*/
|
|
995
|
-
|
|
1636
|
+
Limit?: number
|
|
996
1637
|
|
|
997
1638
|
/**
|
|
998
|
-
*
|
|
1639
|
+
* 过滤条件
|
|
999
1640
|
*/
|
|
1000
|
-
|
|
1641
|
+
Filters?: Array<Filter>
|
|
1001
1642
|
|
|
1002
1643
|
/**
|
|
1003
|
-
*
|
|
1644
|
+
* 排序取值
|
|
1004
1645
|
*/
|
|
1005
|
-
|
|
1646
|
+
OrderField?: string
|
|
1006
1647
|
|
|
1007
1648
|
/**
|
|
1008
|
-
*
|
|
1649
|
+
* 排序 升序或者降序
|
|
1009
1650
|
*/
|
|
1010
|
-
|
|
1651
|
+
Order?: string
|
|
1011
1652
|
}
|
|
1012
1653
|
|
|
1013
1654
|
/**
|
|
1014
|
-
*
|
|
1015
|
-
|
|
1655
|
+
* UpdateCfsFileSystemSizeLimit返回参数结构体
|
|
1016
1656
|
*/
|
|
1017
|
-
export interface
|
|
1018
|
-
/**
|
|
1019
|
-
* 售卖状态。可选值有 sale_out 售罄、saling可售、no_saling不可销售
|
|
1020
|
-
*/
|
|
1021
|
-
SaleStatus: string
|
|
1022
|
-
|
|
1657
|
+
export interface UpdateCfsFileSystemSizeLimitResponse {
|
|
1023
1658
|
/**
|
|
1024
|
-
*
|
|
1659
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1025
1660
|
*/
|
|
1026
|
-
|
|
1661
|
+
RequestId?: string
|
|
1027
1662
|
}
|
|
1028
1663
|
|
|
1029
1664
|
/**
|
|
1030
|
-
*
|
|
1665
|
+
* DeleteCfsPGroup请求参数结构体
|
|
1031
1666
|
*/
|
|
1032
|
-
export interface
|
|
1667
|
+
export interface DeleteCfsPGroupRequest {
|
|
1033
1668
|
/**
|
|
1034
1669
|
* 权限组 ID
|
|
1035
1670
|
*/
|
|
@@ -1037,45 +1672,45 @@ export interface DescribeCfsRulesRequest {
|
|
|
1037
1672
|
}
|
|
1038
1673
|
|
|
1039
1674
|
/**
|
|
1040
|
-
*
|
|
1675
|
+
* UpdateAutoSnapshotPolicy请求参数结构体
|
|
1041
1676
|
*/
|
|
1042
|
-
export interface
|
|
1677
|
+
export interface UpdateAutoSnapshotPolicyRequest {
|
|
1043
1678
|
/**
|
|
1044
|
-
*
|
|
1679
|
+
* 快照策略ID
|
|
1045
1680
|
*/
|
|
1046
|
-
|
|
1681
|
+
AutoSnapshotPolicyId: string
|
|
1047
1682
|
|
|
1048
1683
|
/**
|
|
1049
|
-
*
|
|
1684
|
+
* 快照策略名称
|
|
1050
1685
|
*/
|
|
1051
|
-
|
|
1686
|
+
PolicyName?: string
|
|
1052
1687
|
|
|
1053
1688
|
/**
|
|
1054
|
-
*
|
|
1689
|
+
* 快照定期备份在一星期哪一天
|
|
1055
1690
|
*/
|
|
1056
|
-
|
|
1691
|
+
DayOfWeek?: string
|
|
1057
1692
|
|
|
1058
1693
|
/**
|
|
1059
|
-
*
|
|
1694
|
+
* 快照定期备份在一天的哪一小时
|
|
1060
1695
|
*/
|
|
1061
|
-
|
|
1696
|
+
Hour?: string
|
|
1062
1697
|
|
|
1063
1698
|
/**
|
|
1064
|
-
*
|
|
1699
|
+
* 快照保留日期
|
|
1065
1700
|
*/
|
|
1066
|
-
|
|
1067
|
-
}
|
|
1701
|
+
AliveDays?: number
|
|
1068
1702
|
|
|
1069
|
-
/**
|
|
1070
|
-
* DeleteCfsPGroup请求参数结构体
|
|
1071
|
-
*/
|
|
1072
|
-
export interface DeleteCfsPGroupRequest {
|
|
1073
1703
|
/**
|
|
1074
|
-
*
|
|
1704
|
+
* 是否激活定期快照功能
|
|
1075
1705
|
*/
|
|
1076
|
-
|
|
1706
|
+
IsActivated?: number
|
|
1077
1707
|
}
|
|
1078
1708
|
|
|
1709
|
+
/**
|
|
1710
|
+
* DescribeCfsSnapshotOverview请求参数结构体
|
|
1711
|
+
*/
|
|
1712
|
+
export type DescribeCfsSnapshotOverviewRequest = null
|
|
1713
|
+
|
|
1079
1714
|
/**
|
|
1080
1715
|
* 版本控制-类型数组
|
|
1081
1716
|
*/
|
|
@@ -1096,6 +1731,21 @@ export interface AvailableType {
|
|
|
1096
1731
|
Prepayment: boolean
|
|
1097
1732
|
}
|
|
1098
1733
|
|
|
1734
|
+
/**
|
|
1735
|
+
* UnbindAutoSnapshotPolicy返回参数结构体
|
|
1736
|
+
*/
|
|
1737
|
+
export interface UnbindAutoSnapshotPolicyResponse {
|
|
1738
|
+
/**
|
|
1739
|
+
* 快照策略ID
|
|
1740
|
+
*/
|
|
1741
|
+
AutoSnapshotPolicyId: string
|
|
1742
|
+
|
|
1743
|
+
/**
|
|
1744
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1745
|
+
*/
|
|
1746
|
+
RequestId?: string
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1099
1749
|
/**
|
|
1100
1750
|
* UpdateCfsFileSystemSizeLimit请求参数结构体
|
|
1101
1751
|
*/
|
|
@@ -1112,14 +1762,9 @@ export interface UpdateCfsFileSystemSizeLimitRequest {
|
|
|
1112
1762
|
}
|
|
1113
1763
|
|
|
1114
1764
|
/**
|
|
1115
|
-
*
|
|
1765
|
+
* DescribeAvailableZoneInfo请求参数结构体
|
|
1116
1766
|
*/
|
|
1117
|
-
export
|
|
1118
|
-
/**
|
|
1119
|
-
* 文件系统 ID。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
|
|
1120
|
-
*/
|
|
1121
|
-
FileSystemId: string
|
|
1122
|
-
}
|
|
1767
|
+
export type DescribeAvailableZoneInfoRequest = null
|
|
1123
1768
|
|
|
1124
1769
|
/**
|
|
1125
1770
|
* UpdateCfsPGroup返回参数结构体
|
|
@@ -1162,18 +1807,68 @@ export interface DescribeCfsRulesResponse {
|
|
|
1162
1807
|
}
|
|
1163
1808
|
|
|
1164
1809
|
/**
|
|
1165
|
-
*
|
|
1810
|
+
* SignUpCfsService请求参数结构体
|
|
1166
1811
|
*/
|
|
1167
|
-
export
|
|
1812
|
+
export type SignUpCfsServiceRequest = null
|
|
1813
|
+
|
|
1814
|
+
/**
|
|
1815
|
+
* DeleteAutoSnapshotPolicy请求参数结构体
|
|
1816
|
+
*/
|
|
1817
|
+
export interface DeleteAutoSnapshotPolicyRequest {
|
|
1168
1818
|
/**
|
|
1169
|
-
*
|
|
1819
|
+
* 快照策略ID
|
|
1170
1820
|
*/
|
|
1171
|
-
|
|
1821
|
+
AutoSnapshotPolicyId: string
|
|
1822
|
+
}
|
|
1172
1823
|
|
|
1824
|
+
/**
|
|
1825
|
+
* CreateAutoSnapshotPolicy请求参数结构体
|
|
1826
|
+
*/
|
|
1827
|
+
export interface CreateAutoSnapshotPolicyRequest {
|
|
1173
1828
|
/**
|
|
1174
|
-
*
|
|
1829
|
+
* 快照重复日期,星期一到星期日
|
|
1175
1830
|
*/
|
|
1176
|
-
|
|
1831
|
+
DayOfWeek: string
|
|
1832
|
+
|
|
1833
|
+
/**
|
|
1834
|
+
* 快照重复时间点
|
|
1835
|
+
*/
|
|
1836
|
+
Hour: string
|
|
1837
|
+
|
|
1838
|
+
/**
|
|
1839
|
+
* 策略名称
|
|
1840
|
+
*/
|
|
1841
|
+
PolicyName?: string
|
|
1842
|
+
|
|
1843
|
+
/**
|
|
1844
|
+
* 快照保留时长
|
|
1845
|
+
*/
|
|
1846
|
+
AliveDays?: number
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
/**
|
|
1850
|
+
* UpdateAutoSnapshotPolicy返回参数结构体
|
|
1851
|
+
*/
|
|
1852
|
+
export interface UpdateAutoSnapshotPolicyResponse {
|
|
1853
|
+
/**
|
|
1854
|
+
* 快照策略ID
|
|
1855
|
+
*/
|
|
1856
|
+
AutoSnapshotPolicyId: string
|
|
1857
|
+
|
|
1858
|
+
/**
|
|
1859
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1860
|
+
*/
|
|
1861
|
+
RequestId?: string
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
/**
|
|
1865
|
+
* CreateCfsSnapshot返回参数结构体
|
|
1866
|
+
*/
|
|
1867
|
+
export interface CreateCfsSnapshotResponse {
|
|
1868
|
+
/**
|
|
1869
|
+
* 文件系统快照id
|
|
1870
|
+
*/
|
|
1871
|
+
SnapshotId: string
|
|
1177
1872
|
|
|
1178
1873
|
/**
|
|
1179
1874
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|