-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchdfs.d.ts
1136 lines (1003 loc) · 40.3 KB
/
chdfs.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/// <reference types="node" />
import { AxiosPromise, AxiosRequestConfig } from "axios";
/** 权限组 */
declare interface AccessGroup {
/** 权限组ID */
AccessGroupId?: string;
/** 权限组名称 */
AccessGroupName?: string;
/** 权限组描述 */
Description?: string;
/** 创建时间 */
CreateTime?: string;
/** VPC网络类型(1:CVM) */
VpcType?: number;
/** VPC网络ID */
VpcId?: string;
}
/** 权限规则 */
declare interface AccessRule {
/** 权限规则ID */
AccessRuleId?: number;
/** 权限规则地址(网段或IP) */
Address?: string;
/** 权限规则访问模式(1:只读;2:读写) */
AccessMode?: number;
/** 优先级(取值范围1~100,值越小优先级越高) */
Priority?: number;
/** 创建时间 */
CreateTime?: string;
}
/** 文件系统 */
declare interface FileSystem {
/** 资源所属用户AppId */
AppId?: number;
/** 文件系统名称 */
FileSystemName?: string;
/** 文件系统描述 */
Description?: string;
/** 地域 */
Region?: string;
/** 文件系统ID */
FileSystemId?: string;
/** 创建时间 */
CreateTime?: string;
/** 文件系统块大小(byte) */
BlockSize?: number;
/** 文件系统容量(byte) */
CapacityQuota?: number;
/** 文件系统状态(1:创建中;2:创建成功;3:创建失败) */
Status?: number;
/** 超级用户名列表 */
SuperUsers?: string[];
/** POSIX权限控制 */
PosixAcl?: boolean;
/** 是否打开Ranger地址校验 */
EnableRanger?: boolean | null;
/** Ranger地址列表 */
RangerServiceAddresses?: string[] | null;
}
/** 生命周期规则 */
declare interface LifeCycleRule {
/** 生命周期规则ID */
LifeCycleRuleId?: number;
/** 生命周期规则名称 */
LifeCycleRuleName?: string;
/** 生命周期规则路径(目录或文件) */
Path?: string;
/** 生命周期规则转换列表 */
Transitions?: Transition[];
/** 生命周期规则状态(1:打开;2:关闭) */
Status?: number;
/** 创建时间 */
CreateTime?: string;
/** 生命周期规则当前路径具体存储量 */
Summary?: Summary;
/** Summary更新时间 */
LastSummaryTime?: string;
}
/** 挂载点 */
declare interface MountPoint {
/** 挂载点ID */
MountPointId?: string;
/** 挂载点名称 */
MountPointName?: string;
/** 文件系统ID */
FileSystemId?: string;
/** 挂载点状态(1:打开;2:关闭) */
Status?: number;
/** 创建时间 */
CreateTime?: string;
/** 绑定的权限组ID列表 */
AccessGroupIds?: string[];
}
/** 回热任务 */
declare interface RestoreTask {
/** 回热任务ID */
RestoreTaskId?: number;
/** 回热任务文件路径 */
FilePath?: string;
/** 回热任务类型(1:标准;2:极速;3:批量,暂时仅支持极速) */
Type?: number;
/** 指定恢复出的临时副本的有效时长(单位天) */
Days?: number;
/** 回热任务状态(1:绑定文件中;2:绑定文件完成;3:文件回热中;4:文件回热完成) */
Status?: number;
/** 创建时间 */
CreateTime?: string;
}
/** 生命周期规则当前路径具体存储量信息 */
declare interface Summary {
/** 已使用容量(byte) */
CapacityUsed?: number;
/** 已使用COS标准存储容量(byte) */
StandardCapacityUsed?: number;
/** 已使用COS低频存储容量(byte) */
DegradeCapacityUsed?: number;
/** 已使用COS归档存储容量(byte) */
ArchiveCapacityUsed?: number;
/** 已使用COS深度归档存储容量(byte) */
DeepArchiveCapacityUsed?: number;
/** 已使用COS智能分层存储容量(byte) */
IntelligentCapacityUsed?: number;
}
/** 资源标签。 */
declare interface Tag {
/** 标签键 */
Key: string;
/** 标签值 */
Value: string;
}
/** 生命周期规则转换属性 */
declare interface Transition {
/** 触发时间(单位天) */
Days: number;
/** 转换类型(1:归档;2:删除;3:低频;4:深度归档;5:智能分层) */
Type: number;
}
declare interface AssociateAccessGroupsRequest {
/** 挂载点ID */
MountPointId: string;
/** 权限组ID列表 */
AccessGroupIds: string[];
}
declare interface AssociateAccessGroupsResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface CreateAccessGroupRequest {
/** 权限组名称 */
AccessGroupName: string;
/** VPC网络类型(1:CVM) */
VpcType: number;
/** VPC网络ID */
VpcId: string;
/** 权限组描述,默认为空字符串 */
Description?: string;
}
declare interface CreateAccessGroupResponse {
/** 权限组 */
AccessGroup?: AccessGroup;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface CreateAccessRulesRequest {
/** 多个权限规则,上限为10 */
AccessRules: AccessRule[];
/** 权限组ID */
AccessGroupId: string;
}
declare interface CreateAccessRulesResponse {
/** 权限规则列表 */
AccessRules: AccessRule[] | null;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface CreateFileSystemRequest {
/** 文件系统名称 */
FileSystemName: string;
/** 是否校验POSIX ACL */
PosixAcl: boolean;
/** 文件系统描述,默认为空字符串 */
Description?: string;
/** 文件系统容量(byte),下限为1GB,上限为1PB,且必须是1GB的整数倍 */
CapacityQuota?: number;
/** 超级用户名列表,默认为空数组 */
SuperUsers?: string[];
/** 根目录Inode用户名,默认为hadoop */
RootInodeUser?: string;
/** 根目录Inode组名,默认为supergroup */
RootInodeGroup?: string;
/** 是否打开Ranger地址校验 */
EnableRanger?: boolean;
/** Ranger地址列表,默认为空数组 */
RangerServiceAddresses?: string[];
/** 多个资源标签,可以为空数组 */
Tags?: Tag[];
}
declare interface CreateFileSystemResponse {
/** 文件系统 */
FileSystem?: FileSystem;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface CreateLifeCycleRulesRequest {
/** 文件系统ID */
FileSystemId: string;
/** 多个生命周期规则,上限为10 */
LifeCycleRules: LifeCycleRule[];
}
declare interface CreateLifeCycleRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface CreateMountPointRequest {
/** 挂载点名称 */
MountPointName: string;
/** 文件系统ID */
FileSystemId: string;
/** 挂载点状态(1:打开;2:关闭) */
MountPointStatus: number;
}
declare interface CreateMountPointResponse {
/** 挂载点 */
MountPoint?: MountPoint;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface CreateRestoreTasksRequest {
/** 文件系统ID */
FileSystemId: string;
/** 多个回热任务,上限为10 */
RestoreTasks: RestoreTask[];
}
declare interface CreateRestoreTasksResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DeleteAccessGroupRequest {
/** 权限组ID */
AccessGroupId: string;
}
declare interface DeleteAccessGroupResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DeleteAccessRulesRequest {
/** 多个权限规则ID,上限为10 */
AccessRuleIds: number[];
}
declare interface DeleteAccessRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DeleteFileSystemRequest {
/** 文件系统ID */
FileSystemId: string;
}
declare interface DeleteFileSystemResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DeleteLifeCycleRulesRequest {
/** 多个生命周期规则ID,上限为10 */
LifeCycleRuleIds: number[];
}
declare interface DeleteLifeCycleRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DeleteMountPointRequest {
/** 挂载点ID */
MountPointId: string;
}
declare interface DeleteMountPointResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeAccessGroupRequest {
/** 权限组ID */
AccessGroupId: string;
}
declare interface DescribeAccessGroupResponse {
/** 权限组 */
AccessGroup?: AccessGroup;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeAccessGroupsRequest {
/** VPC网络ID备注:入参只能指定VpcId和OwnerUin的其中一个 */
VpcId?: string;
/** 资源所属者Uin */
OwnerUin?: number;
}
declare interface DescribeAccessGroupsResponse {
/** 权限组列表 */
AccessGroups?: AccessGroup[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeAccessRulesRequest {
/** 权限组ID */
AccessGroupId: string;
}
declare interface DescribeAccessRulesResponse {
/** 权限规则列表 */
AccessRules: AccessRule[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeFileSystemRequest {
/** 文件系统ID */
FileSystemId: string;
}
declare interface DescribeFileSystemResponse {
/** 文件系统 */
FileSystem?: FileSystem;
/** 文件系统已使用容量(byte) */
CapacityUsed?: number | null;
/** 已使用COS归档存储容量(byte) */
ArchiveCapacityUsed?: number | null;
/** 已使用COS标准存储容量(byte) */
StandardCapacityUsed?: number | null;
/** 已使用COS低频存储容量(byte) */
DegradeCapacityUsed?: number | null;
/** 已使用COS深度归档存储容量(byte) */
DeepArchiveCapacityUsed?: number | null;
/** 已使用COS智能分层存储容量(byte) */
IntelligentCapacityUsed?: number | null;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeFileSystemsRequest {
}
declare interface DescribeFileSystemsResponse {
/** 文件系统列表 */
FileSystems?: FileSystem[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeLifeCycleRulesRequest {
/** 文件系统ID */
FileSystemId: string;
}
declare interface DescribeLifeCycleRulesResponse {
/** 生命周期规则列表 */
LifeCycleRules?: LifeCycleRule[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeMountPointRequest {
/** 挂载点ID */
MountPointId: string;
}
declare interface DescribeMountPointResponse {
/** 挂载点 */
MountPoint?: MountPoint;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeMountPointsRequest {
/** 文件系统ID备注:入参只能指定AccessGroupId、FileSystemId和OwnerUin的其中一个 */
FileSystemId?: string;
/** 权限组ID */
AccessGroupId?: string;
/** 资源所属者Uin */
OwnerUin?: number;
}
declare interface DescribeMountPointsResponse {
/** 挂载点列表 */
MountPoints?: MountPoint[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeResourceTagsRequest {
/** 文件系统ID */
FileSystemId: string;
}
declare interface DescribeResourceTagsResponse {
/** 资源标签列表 */
Tags: Tag[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DescribeRestoreTasksRequest {
/** 文件系统ID */
FileSystemId: string;
}
declare interface DescribeRestoreTasksResponse {
/** 回热任务列表 */
RestoreTasks: RestoreTask[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface DisassociateAccessGroupsRequest {
/** 挂载点ID */
MountPointId: string;
/** 权限组ID列表 */
AccessGroupIds: string[];
}
declare interface DisassociateAccessGroupsResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface ModifyAccessGroupRequest {
/** 权限组ID */
AccessGroupId: string;
/** 权限组名称 */
AccessGroupName?: string;
/** 权限组描述 */
Description?: string;
}
declare interface ModifyAccessGroupResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface ModifyAccessRulesRequest {
/** 多个权限规则,上限为10 */
AccessRules: AccessRule[];
}
declare interface ModifyAccessRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface ModifyFileSystemRequest {
/** 文件系统ID */
FileSystemId: string;
/** 文件系统名称 */
FileSystemName?: string;
/** 文件系统描述 */
Description?: string;
/** 文件系统容量(byte),下限为1GB,上限为1PB,且必须是1GB的整数倍注意:修改的文件系统容量不能小于当前使用量 */
CapacityQuota?: number;
/** 超级用户名列表,可以为空数组 */
SuperUsers?: string[];
/** 是否校验POSIX ACL */
PosixAcl?: boolean;
/** 是否打开Ranger地址校验 */
EnableRanger?: boolean;
/** Ranger地址列表,可以为空数组 */
RangerServiceAddresses?: string[];
}
declare interface ModifyFileSystemResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface ModifyLifeCycleRulesRequest {
/** 多个生命周期规则,上限为10 */
LifeCycleRules: LifeCycleRule[];
}
declare interface ModifyLifeCycleRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface ModifyMountPointRequest {
/** 挂载点ID */
MountPointId: string;
/** 挂载点名称 */
MountPointName?: string;
/** 挂载点状态 */
MountPointStatus?: number;
}
declare interface ModifyMountPointResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare interface ModifyResourceTagsRequest {
/** 文件系统ID */
FileSystemId: string;
/** 多个资源标签,可以为空数组 */
Tags?: Tag[];
}
declare interface ModifyResourceTagsResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
declare namespace V20190718 {
type VersionHeader = { headers: { 'X-TC-Version': '2019-07-18' } }
/** 权限组 */
interface AccessGroup {
/** 权限组ID */
AccessGroupId: string;
/** 权限组名称 */
AccessGroupName: string;
/** 权限组描述 */
Description: string;
/** 创建时间 */
CreateTime: string;
}
/** 权限规则 */
interface AccessRule {
/** 权限规则ID */
AccessRuleId?: number;
/** 权限规则地址(网段或IP) */
Address?: string;
/** 权限规则访问模式(1:只读;2:读写) */
AccessMode?: number;
/** 优先级(取值范围1~100,值越小优先级越高) */
Priority?: number;
/** 创建时间 */
CreateTime?: string;
}
/** 文件系统 */
interface FileSystem {
/** appid */
AppId: number;
/** 文件系统名称 */
FileSystemName: string;
/** 文件系统描述 */
Description: string;
/** 地域 */
Region: string;
/** 文件系统ID */
FileSystemId: string;
/** 创建时间 */
CreateTime: string;
/** 文件系统块大小(byte) */
BlockSize: number;
/** 文件系统容量(byte) */
CapacityQuota: number;
/** 文件系统状态(1:创建中;2:创建成功;3:创建失败) */
Status: number;
}
/** 过滤条件 */
interface Filter {
/** 过滤字段 */
Name: string;
/** 过滤值 */
Values: string[];
}
/** 生命周期规则 */
interface LifeCycleRule {
/** 生命周期规则ID */
LifeCycleRuleId?: number;
/** 生命周期规则名称 */
LifeCycleRuleName?: string;
/** 生命周期规则路径(目录或文件) */
Path?: string;
/** 生命周期规则转换列表 */
Transitions?: Transition[];
/** 生命周期规则状态(1:打开;2:关闭) */
Status?: number;
/** 创建时间 */
CreateTime?: string;
}
/** 挂载点 */
interface MountPoint {
/** 挂载点ID */
MountPointId: string;
/** 挂载点名称 */
MountPointName?: string;
/** 文件系统ID */
FileSystemId: string;
/** 权限组ID */
AccessGroupId: string;
/** VPC网络ID */
VpcId: string;
/** 挂载点状态(1:打开;2:关闭) */
Status: number;
/** 创建时间 */
CreateTime: string;
/** VPC网络类型 */
VpcType: number;
}
/** 回热任务 */
interface RestoreTask {
/** 回热任务ID */
RestoreTaskId?: number;
/** 回热任务文件路径 */
FilePath?: string;
/** 回热任务类型(1:标准;2:极速;3:批量) */
Type?: number;
/** 指定恢复出的临时副本的有效时长(单位天) */
Days?: number;
/** 回热任务状态(1:绑定文件中;2:绑定文件完成;3:文件回热中;4:文件回热完成) */
Status?: number;
/** 创建时间 */
CreateTime?: string;
}
/** 资源标签。 */
interface Tag {
/** 标签键 */
Key: string;
/** 标签值 */
Value: string;
}
/** 生命周期规则转换属性 */
interface Transition {
/** 触发时间(单位天) */
Days: number;
/** 转换类型(1:归档;2:删除) */
Type: number;
}
interface CreateAccessGroupRequest {
/** 权限组名称 */
AccessGroupName: string;
/** 权限组描述 */
Description?: string;
}
interface CreateAccessGroupResponse {
/** 权限组 */
AccessGroup?: AccessGroup;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface CreateAccessRulesRequest {
/** 多个权限规则,上限为10 */
AccessRules: AccessRule[];
/** 权限组ID */
AccessGroupId: string;
}
interface CreateAccessRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface CreateFileSystemRequest {
/** 文件系统名称 */
FileSystemName: string;
/** 文件系统容量(byte),下限为1G,上限为1P,且必须是1G的整数倍 */
CapacityQuota: number;
/** 文件系统描述 */
Description?: string;
}
interface CreateFileSystemResponse {
/** 文件系统 */
FileSystem?: FileSystem;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface CreateLifeCycleRulesRequest {
/** 文件系统ID */
FileSystemId: string;
/** 多个生命周期规则,上限为10 */
LifeCycleRules: LifeCycleRule[];
}
interface CreateLifeCycleRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface CreateMountPointRequest {
/** 挂载点名称 */
MountPointName: string;
/** 文件系统ID */
FileSystemId: string;
/** 权限组ID */
AccessGroupId: string;
/** VPC网络ID */
VpcId: string;
/** 挂载点状态(1:打开;2:关闭) */
MountPointStatus: number;
/** VPC网络类型(1:CVM;2:黑石1.0;3:黑石2.0) */
VpcType: number;
}
interface CreateMountPointResponse {
/** 挂载点 */
MountPoint?: MountPoint;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface CreateRestoreTasksRequest {
/** 文件系统ID */
FileSystemId: string;
/** 多个回热任务,上限为10 */
RestoreTasks: RestoreTask[];
}
interface CreateRestoreTasksResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DeleteAccessGroupRequest {
/** 权限组ID */
AccessGroupId: string;
}
interface DeleteAccessGroupResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DeleteAccessRulesRequest {
/** 多个权限规则ID,上限为10 */
AccessRuleIds: number[];
}
interface DeleteAccessRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DeleteFileSystemRequest {
/** 文件系统ID */
FileSystemId: string;
}
interface DeleteFileSystemResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DeleteLifeCycleRulesRequest {
/** 多个生命周期规则ID,上限为10 */
LifeCycleRuleIds: number[];
}
interface DeleteLifeCycleRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DeleteMountPointRequest {
/** 挂载点ID */
MountPointId: string;
}
interface DeleteMountPointResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DescribeAccessGroupsRequest {
/** 过滤条件,Name可选“AccessGroupId“和“AccessGroupName”,Values上限为10 */
Filters?: Filter[];
/** 偏移量,默认为0 */
Offset?: number;
/** 返回数量,默认为所有 */
Limit?: number;
}
interface DescribeAccessGroupsResponse {
/** 权限组列表 */
AccessGroups?: AccessGroup[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DescribeAccessRulesRequest {
/** 权限组ID */
AccessGroupId: string;
/** 偏移量,默认为0 */
Offset?: number;
/** 返回数量,默认为所有 */
Limit?: number;
}
interface DescribeAccessRulesResponse {
/** 权限规则列表 */
AccessRules?: AccessRule[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DescribeFileSystemRequest {
/** 文件系统ID */
FileSystemId: string;
}
interface DescribeFileSystemResponse {
/** 文件系统 */
FileSystem?: FileSystem;
/** 文件系统已使用容量(已弃用) */
FileSystemCapacityUsed?: number | null;
/** 已使用容量(byte),包括标准和归档存储 */
CapacityUsed?: number | null;
/** 已使用归档存储容量(byte) */
ArchiveCapacityUsed?: number | null;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DescribeFileSystemsRequest {
/** 偏移量,默认为0 */
Offset?: number;
/** 返回数量,默认为所有 */
Limit?: number;
}
interface DescribeFileSystemsResponse {
/** 文件系统列表 */
FileSystems?: FileSystem[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DescribeLifeCycleRulesRequest {
/** 文件系统ID */
FileSystemId: string;
}
interface DescribeLifeCycleRulesResponse {
/** 生命周期规则列表 */
LifeCycleRules?: LifeCycleRule[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DescribeMountPointRequest {
/** 挂载点ID */
MountPointId: string;
}
interface DescribeMountPointResponse {
/** 挂载点 */
MountPoint?: MountPoint;
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DescribeMountPointsRequest {
/** 文件系统ID注意:若根据AccessGroupId查看挂载点列表,则无需设置FileSystemId */
FileSystemId?: string;
/** 权限组ID注意:若根据FileSystemId查看挂载点列表,则无需设置AccessGroupId */
AccessGroupId?: string;
/** 偏移量,默认为0 */
Offset?: number;
/** 返回数量,默认为所有 */
Limit?: number;
}
interface DescribeMountPointsResponse {
/** 挂载点列表 */
MountPoints?: MountPoint[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DescribeResourceTagsRequest {
/** 文件系统ID */
FileSystemId: string;
}
interface DescribeResourceTagsResponse {
/** 资源标签列表 */
Tags?: Tag[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface DescribeRestoreTasksRequest {
/** 文件系统ID */
FileSystemId: string;
}
interface DescribeRestoreTasksResponse {
/** 回热任务列表 */
RestoreTasks?: RestoreTask[];
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface ModifyAccessGroupRequest {
/** 权限组ID */
AccessGroupId: string;
/** 权限组名称 */
AccessGroupName?: string;
/** 权限组描述 */
Description?: string;
}
interface ModifyAccessGroupResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface ModifyAccessRulesRequest {
/** 多个权限规则,上限为10 */
AccessRules: AccessRule[];
}
interface ModifyAccessRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface ModifyFileSystemRequest {
/** 文件系统ID */
FileSystemId: string;
/** 文件系统名称 */
FileSystemName?: string;
/** 文件系统描述 */
Description?: string;
/** 文件系统容量(byte),下限为1G,上限为1P,且必须是1G的整数倍注意:修改的文件系统容量不能小于当前使用量 */
CapacityQuota?: number;
}
interface ModifyFileSystemResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface ModifyLifeCycleRulesRequest {
/** 多个生命周期规则,上限为10 */
LifeCycleRules: LifeCycleRule[];
}
interface ModifyLifeCycleRulesResponse {
/** 唯一请求 ID,每次请求都会返回。 */
RequestId?: string;
}
interface ModifyMountPointRequest {
/** 挂载点ID */
MountPointId: string;
/** 挂载点名称 */
MountPointName?: string;
/** 挂载点状态 */
MountPointStatus?: number;
/** 权限组ID */
AccessGroupId?: string;
}