tencentcloud-sdk-nodejs-cfs 4.0.479 → 4.0.482

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