@volcengine/vepfs 1.0.1 → 1.0.2

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.
Files changed (65) hide show
  1. package/.turbo/turbo-build.log +19 -19
  2. package/dist/cjs/index.js +64 -4
  3. package/dist/esm/api.d.ts +66 -0
  4. package/dist/esm/api.d.ts.map +1 -1
  5. package/dist/esm/index.mjs +43 -1
  6. package/dist/esm/types/audit-for-describe-audits-output.d.ts +125 -0
  7. package/dist/esm/types/audit-for-describe-audits-output.d.ts.map +1 -0
  8. package/dist/esm/types/create-audit-request.d.ts +70 -0
  9. package/dist/esm/types/create-audit-request.d.ts.map +1 -0
  10. package/dist/esm/types/create-audit-response.d.ts +25 -0
  11. package/dist/esm/types/create-audit-response.d.ts.map +1 -0
  12. package/dist/esm/types/create-data-flow-task-request.d.ts +8 -1
  13. package/dist/esm/types/create-data-flow-task-request.d.ts.map +1 -1
  14. package/dist/esm/types/data-flow-task-for-describe-data-flow-tasks-output.d.ts +6 -0
  15. package/dist/esm/types/data-flow-task-for-describe-data-flow-tasks-output.d.ts.map +1 -1
  16. package/dist/esm/types/delete-audit-request.d.ts +30 -0
  17. package/dist/esm/types/delete-audit-request.d.ts.map +1 -0
  18. package/dist/esm/types/delete-audit-response.d.ts +20 -0
  19. package/dist/esm/types/delete-audit-response.d.ts.map +1 -0
  20. package/dist/esm/types/delete-policy-for-create-data-flow-task-input.d.ts +39 -0
  21. package/dist/esm/types/delete-policy-for-create-data-flow-task-input.d.ts.map +1 -0
  22. package/dist/esm/types/delete-policy-for-describe-data-flow-tasks-output.d.ts +39 -0
  23. package/dist/esm/types/delete-policy-for-describe-data-flow-tasks-output.d.ts.map +1 -0
  24. package/dist/esm/types/describe-audits-request.d.ts +55 -0
  25. package/dist/esm/types/describe-audits-request.d.ts.map +1 -0
  26. package/dist/esm/types/describe-audits-response.d.ts +41 -0
  27. package/dist/esm/types/describe-audits-response.d.ts.map +1 -0
  28. package/dist/esm/types/fileset-info-for-describe-audits-output.d.ts +40 -0
  29. package/dist/esm/types/fileset-info-for-describe-audits-output.d.ts.map +1 -0
  30. package/dist/esm/types/index.d.ts +16 -0
  31. package/dist/esm/types/index.d.ts.map +1 -1
  32. package/dist/esm/types/start-audit-request.d.ts +30 -0
  33. package/dist/esm/types/start-audit-request.d.ts.map +1 -0
  34. package/dist/esm/types/start-audit-response.d.ts +20 -0
  35. package/dist/esm/types/start-audit-response.d.ts.map +1 -0
  36. package/dist/esm/types/stop-audit-request.d.ts +30 -0
  37. package/dist/esm/types/stop-audit-request.d.ts.map +1 -0
  38. package/dist/esm/types/stop-audit-response.d.ts +20 -0
  39. package/dist/esm/types/stop-audit-response.d.ts.map +1 -0
  40. package/dist/esm/types/update-audit-request.d.ts +55 -0
  41. package/dist/esm/types/update-audit-request.d.ts.map +1 -0
  42. package/dist/esm/types/update-audit-response.d.ts +20 -0
  43. package/dist/esm/types/update-audit-response.d.ts.map +1 -0
  44. package/dist/tsconfig.tsbuildinfo +1 -1
  45. package/package.json +1 -1
  46. package/src/api.ts +114 -1
  47. package/src/types/audit-for-describe-audits-output.ts +144 -0
  48. package/src/types/create-audit-request.ts +81 -0
  49. package/src/types/create-audit-response.ts +28 -0
  50. package/src/types/create-data-flow-task-request.ts +9 -1
  51. package/src/types/data-flow-task-for-describe-data-flow-tasks-output.ts +7 -0
  52. package/src/types/delete-audit-request.ts +34 -0
  53. package/src/types/delete-audit-response.ts +22 -0
  54. package/src/types/delete-policy-for-create-data-flow-task-input.ts +45 -0
  55. package/src/types/delete-policy-for-describe-data-flow-tasks-output.ts +45 -0
  56. package/src/types/describe-audits-request.ts +64 -0
  57. package/src/types/describe-audits-response.ts +47 -0
  58. package/src/types/fileset-info-for-describe-audits-output.ts +46 -0
  59. package/src/types/index.ts +16 -0
  60. package/src/types/start-audit-request.ts +34 -0
  61. package/src/types/start-audit-response.ts +22 -0
  62. package/src/types/stop-audit-request.ts +34 -0
  63. package/src/types/stop-audit-response.ts +22 -0
  64. package/src/types/update-audit-request.ts +64 -0
  65. package/src/types/update-audit-response.ts +22 -0
package/src/api.ts CHANGED
@@ -22,6 +22,8 @@ import { CancelLensTaskRequest } from './types/index';
22
22
  import { CancelLensTaskResponse } from './types/index';
23
23
  import { ConfigDataFlowBandwidthRequest } from './types/index';
24
24
  import { ConfigDataFlowBandwidthResponse } from './types/index';
25
+ import { CreateAuditRequest } from './types/index';
26
+ import { CreateAuditResponse } from './types/index';
25
27
  import { CreateDataFlowTaskRequest } from './types/index';
26
28
  import { CreateDataFlowTaskResponse } from './types/index';
27
29
  import { CreateFileSystemRequest } from './types/index';
@@ -36,6 +38,8 @@ import { CreateMountServiceRequest } from './types/index';
36
38
  import { CreateMountServiceResponse } from './types/index';
37
39
  import { CreatePreSignedUrlRequest } from './types/index';
38
40
  import { CreatePreSignedUrlResponse } from './types/index';
41
+ import { DeleteAuditRequest } from './types/index';
42
+ import { DeleteAuditResponse } from './types/index';
39
43
  import { DeleteDataFlowTaskRequest } from './types/index';
40
44
  import { DeleteDataFlowTaskResponse } from './types/index';
41
45
  import { DeleteFileSystemRequest } from './types/index';
@@ -48,6 +52,8 @@ import { DeleteLensTaskRequest } from './types/index';
48
52
  import { DeleteLensTaskResponse } from './types/index';
49
53
  import { DeleteMountServiceRequest } from './types/index';
50
54
  import { DeleteMountServiceResponse } from './types/index';
55
+ import { DescribeAuditsRequest } from './types/index';
56
+ import { DescribeAuditsResponse } from './types/index';
51
57
  import { DescribeDataFlowBandwidthRequest } from './types/index';
52
58
  import { DescribeDataFlowBandwidthResponse } from './types/index';
53
59
  import { DescribeDataFlowTasksRequest } from './types/index';
@@ -84,14 +90,20 @@ import { SetFilesetQosRequest } from './types/index';
84
90
  import { SetFilesetQosResponse } from './types/index';
85
91
  import { SetFilesetQuotaRequest } from './types/index';
86
92
  import { SetFilesetQuotaResponse } from './types/index';
93
+ import { StartAuditRequest } from './types/index';
94
+ import { StartAuditResponse } from './types/index';
87
95
  import { StartLensServiceRequest } from './types/index';
88
96
  import { StartLensServiceResponse } from './types/index';
97
+ import { StopAuditRequest } from './types/index';
98
+ import { StopAuditResponse } from './types/index';
89
99
  import { StopLensServiceRequest } from './types/index';
90
100
  import { StopLensServiceResponse } from './types/index';
91
101
  import { TagResourcesRequest } from './types/index';
92
102
  import { TagResourcesResponse } from './types/index';
93
103
  import { UntagResourcesRequest } from './types/index';
94
104
  import { UntagResourcesResponse } from './types/index';
105
+ import { UpdateAuditRequest } from './types/index';
106
+ import { UpdateAuditResponse } from './types/index';
95
107
  import { UpdateFileSystemRequest } from './types/index';
96
108
  import { UpdateFileSystemResponse } from './types/index';
97
109
  import { UpdateFilesetRequest } from './types/index';
@@ -110,6 +122,7 @@ export type AttachMountServiceToSelfFileSystemCommandOutput = CommandOutput<Atta
110
122
  export type CancelDataFlowTaskCommandOutput = CommandOutput<CancelDataFlowTaskResponse>;
111
123
  export type CancelLensTaskCommandOutput = CommandOutput<CancelLensTaskResponse>;
112
124
  export type ConfigDataFlowBandwidthCommandOutput = CommandOutput<ConfigDataFlowBandwidthResponse>;
125
+ export type CreateAuditCommandOutput = CommandOutput<CreateAuditResponse>;
113
126
  export type CreateDataFlowTaskCommandOutput = CommandOutput<CreateDataFlowTaskResponse>;
114
127
  export type CreateFileSystemCommandOutput = CommandOutput<CreateFileSystemResponse>;
115
128
  export type CreateFilesetCommandOutput = CommandOutput<CreateFilesetResponse>;
@@ -117,12 +130,14 @@ export type CreateLensPolicyCommandOutput = CommandOutput<CreateLensPolicyRespon
117
130
  export type CreateLensTaskCommandOutput = CommandOutput<CreateLensTaskResponse>;
118
131
  export type CreateMountServiceCommandOutput = CommandOutput<CreateMountServiceResponse>;
119
132
  export type CreatePreSignedUrlCommandOutput = CommandOutput<CreatePreSignedUrlResponse>;
133
+ export type DeleteAuditCommandOutput = CommandOutput<DeleteAuditResponse>;
120
134
  export type DeleteDataFlowTaskCommandOutput = CommandOutput<DeleteDataFlowTaskResponse>;
121
135
  export type DeleteFileSystemCommandOutput = CommandOutput<DeleteFileSystemResponse>;
122
136
  export type DeleteFilesetCommandOutput = CommandOutput<DeleteFilesetResponse>;
123
137
  export type DeleteLensPolicyCommandOutput = CommandOutput<DeleteLensPolicyResponse>;
124
138
  export type DeleteLensTaskCommandOutput = CommandOutput<DeleteLensTaskResponse>;
125
139
  export type DeleteMountServiceCommandOutput = CommandOutput<DeleteMountServiceResponse>;
140
+ export type DescribeAuditsCommandOutput = CommandOutput<DescribeAuditsResponse>;
126
141
  export type DescribeDataFlowBandwidthCommandOutput = CommandOutput<DescribeDataFlowBandwidthResponse>;
127
142
  export type DescribeDataFlowTasksCommandOutput = CommandOutput<DescribeDataFlowTasksResponse>;
128
143
  export type DescribeFileSystemOverviewCommandOutput = CommandOutput<DescribeFileSystemOverviewResponse>;
@@ -141,17 +156,19 @@ export type ExpandFileSystemCommandOutput = CommandOutput<ExpandFileSystemRespon
141
156
  export type ListTagsForResourcesCommandOutput = CommandOutput<ListTagsForResourcesResponse>;
142
157
  export type SetFilesetQosCommandOutput = CommandOutput<SetFilesetQosResponse>;
143
158
  export type SetFilesetQuotaCommandOutput = CommandOutput<SetFilesetQuotaResponse>;
159
+ export type StartAuditCommandOutput = CommandOutput<StartAuditResponse>;
144
160
  export type StartLensServiceCommandOutput = CommandOutput<StartLensServiceResponse>;
161
+ export type StopAuditCommandOutput = CommandOutput<StopAuditResponse>;
145
162
  export type StopLensServiceCommandOutput = CommandOutput<StopLensServiceResponse>;
146
163
  export type TagResourcesCommandOutput = CommandOutput<TagResourcesResponse>;
147
164
  export type UntagResourcesCommandOutput = CommandOutput<UntagResourcesResponse>;
165
+ export type UpdateAuditCommandOutput = CommandOutput<UpdateAuditResponse>;
148
166
  export type UpdateFileSystemCommandOutput = CommandOutput<UpdateFileSystemResponse>;
149
167
  export type UpdateFilesetCommandOutput = CommandOutput<UpdateFilesetResponse>;
150
168
  export type UpdateLensPolicyCommandOutput = CommandOutput<UpdateLensPolicyResponse>;
151
169
  export type UpdateLensTaskCommandOutput = CommandOutput<UpdateLensTaskResponse>;
152
170
  export type UpdateMountServiceCommandOutput = CommandOutput<UpdateMountServiceResponse>;
153
171
 
154
-
155
172
  /**
156
173
  * VEPFSClient Service Client
157
174
  */
@@ -225,6 +242,21 @@ export class ConfigDataFlowBandwidthCommand extends Command<
225
242
  this.requestConfig = buildRequestConfigFromMetaPath(ConfigDataFlowBandwidthCommand.metaPath);
226
243
  }
227
244
  }
245
+ /**
246
+ * Command to CreateAudit
247
+ */
248
+ export class CreateAuditCommand extends Command<
249
+ CreateAuditRequest,
250
+ CreateAuditCommandOutput,
251
+ 'CreateAuditCommand'
252
+ > {
253
+ static readonly metaPath = '/CreateAudit/2022-01-01/vepfs/post/application_json/';
254
+
255
+ constructor(input: CreateAuditRequest) {
256
+ super(input);
257
+ this.requestConfig = buildRequestConfigFromMetaPath(CreateAuditCommand.metaPath);
258
+ }
259
+ }
228
260
  /**
229
261
  * Command to CreateDataFlowTask
230
262
  */
@@ -330,6 +362,21 @@ export class CreatePreSignedUrlCommand extends Command<
330
362
  this.requestConfig = buildRequestConfigFromMetaPath(CreatePreSignedUrlCommand.metaPath);
331
363
  }
332
364
  }
365
+ /**
366
+ * Command to DeleteAudit
367
+ */
368
+ export class DeleteAuditCommand extends Command<
369
+ DeleteAuditRequest,
370
+ DeleteAuditCommandOutput,
371
+ 'DeleteAuditCommand'
372
+ > {
373
+ static readonly metaPath = '/DeleteAudit/2022-01-01/vepfs/post/application_json/';
374
+
375
+ constructor(input: DeleteAuditRequest) {
376
+ super(input);
377
+ this.requestConfig = buildRequestConfigFromMetaPath(DeleteAuditCommand.metaPath);
378
+ }
379
+ }
333
380
  /**
334
381
  * Command to DeleteDataFlowTask
335
382
  */
@@ -420,6 +467,21 @@ export class DeleteMountServiceCommand extends Command<
420
467
  this.requestConfig = buildRequestConfigFromMetaPath(DeleteMountServiceCommand.metaPath);
421
468
  }
422
469
  }
470
+ /**
471
+ * Command to DescribeAudits
472
+ */
473
+ export class DescribeAuditsCommand extends Command<
474
+ DescribeAuditsRequest,
475
+ DescribeAuditsCommandOutput,
476
+ 'DescribeAuditsCommand'
477
+ > {
478
+ static readonly metaPath = '/DescribeAudits/2022-01-01/vepfs/post/application_json/';
479
+
480
+ constructor(input: DescribeAuditsRequest) {
481
+ super(input);
482
+ this.requestConfig = buildRequestConfigFromMetaPath(DescribeAuditsCommand.metaPath);
483
+ }
484
+ }
423
485
  /**
424
486
  * Command to DescribeDataFlowBandwidth
425
487
  */
@@ -690,6 +752,21 @@ export class SetFilesetQuotaCommand extends Command<
690
752
  this.requestConfig = buildRequestConfigFromMetaPath(SetFilesetQuotaCommand.metaPath);
691
753
  }
692
754
  }
755
+ /**
756
+ * Command to StartAudit
757
+ */
758
+ export class StartAuditCommand extends Command<
759
+ StartAuditRequest,
760
+ StartAuditCommandOutput,
761
+ 'StartAuditCommand'
762
+ > {
763
+ static readonly metaPath = '/StartAudit/2022-01-01/vepfs/post/application_json/';
764
+
765
+ constructor(input: StartAuditRequest) {
766
+ super(input);
767
+ this.requestConfig = buildRequestConfigFromMetaPath(StartAuditCommand.metaPath);
768
+ }
769
+ }
693
770
  /**
694
771
  * Command to StartLensService
695
772
  */
@@ -705,6 +782,21 @@ export class StartLensServiceCommand extends Command<
705
782
  this.requestConfig = buildRequestConfigFromMetaPath(StartLensServiceCommand.metaPath);
706
783
  }
707
784
  }
785
+ /**
786
+ * Command to StopAudit
787
+ */
788
+ export class StopAuditCommand extends Command<
789
+ StopAuditRequest,
790
+ StopAuditCommandOutput,
791
+ 'StopAuditCommand'
792
+ > {
793
+ static readonly metaPath = '/StopAudit/2022-01-01/vepfs/post/application_json/';
794
+
795
+ constructor(input: StopAuditRequest) {
796
+ super(input);
797
+ this.requestConfig = buildRequestConfigFromMetaPath(StopAuditCommand.metaPath);
798
+ }
799
+ }
708
800
  /**
709
801
  * Command to StopLensService
710
802
  */
@@ -750,6 +842,21 @@ export class UntagResourcesCommand extends Command<
750
842
  this.requestConfig = buildRequestConfigFromMetaPath(UntagResourcesCommand.metaPath);
751
843
  }
752
844
  }
845
+ /**
846
+ * Command to UpdateAudit
847
+ */
848
+ export class UpdateAuditCommand extends Command<
849
+ UpdateAuditRequest,
850
+ UpdateAuditCommandOutput,
851
+ 'UpdateAuditCommand'
852
+ > {
853
+ static readonly metaPath = '/UpdateAudit/2022-01-01/vepfs/post/application_json/';
854
+
855
+ constructor(input: UpdateAuditRequest) {
856
+ super(input);
857
+ this.requestConfig = buildRequestConfigFromMetaPath(UpdateAuditCommand.metaPath);
858
+ }
859
+ }
753
860
  /**
754
861
  * Command to UpdateFileSystem
755
862
  */
@@ -832,6 +939,7 @@ export default {
832
939
  CancelDataFlowTaskCommand,
833
940
  CancelLensTaskCommand,
834
941
  ConfigDataFlowBandwidthCommand,
942
+ CreateAuditCommand,
835
943
  CreateDataFlowTaskCommand,
836
944
  CreateFileSystemCommand,
837
945
  CreateFilesetCommand,
@@ -839,12 +947,14 @@ export default {
839
947
  CreateLensTaskCommand,
840
948
  CreateMountServiceCommand,
841
949
  CreatePreSignedUrlCommand,
950
+ DeleteAuditCommand,
842
951
  DeleteDataFlowTaskCommand,
843
952
  DeleteFileSystemCommand,
844
953
  DeleteFilesetCommand,
845
954
  DeleteLensPolicyCommand,
846
955
  DeleteLensTaskCommand,
847
956
  DeleteMountServiceCommand,
957
+ DescribeAuditsCommand,
848
958
  DescribeDataFlowBandwidthCommand,
849
959
  DescribeDataFlowTasksCommand,
850
960
  DescribeFileSystemOverviewCommand,
@@ -863,10 +973,13 @@ export default {
863
973
  ListTagsForResourcesCommand,
864
974
  SetFilesetQosCommand,
865
975
  SetFilesetQuotaCommand,
976
+ StartAuditCommand,
866
977
  StartLensServiceCommand,
978
+ StopAuditCommand,
867
979
  StopLensServiceCommand,
868
980
  TagResourcesCommand,
869
981
  UntagResourcesCommand,
982
+ UpdateAuditCommand,
870
983
  UpdateFileSystemCommand,
871
984
  UpdateFilesetCommand,
872
985
  UpdateLensPolicyCommand,
@@ -0,0 +1,144 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * vepfs
5
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6
+ *
7
+ * OpenAPI spec version: common-version
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by the swagger code generator program.
11
+ * https://github.com/swagger-api/swagger-codegen.git
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { FilesetInfoForDescribeAuditsOutput } from './fileset-info-for-describe-audits-output';
16
+ /**
17
+ *
18
+ *
19
+ * @export
20
+ * @interface AuditForDescribeAuditsOutput
21
+ */
22
+ export interface AuditForDescribeAuditsOutput {
23
+
24
+ /**
25
+ * @type {Array<string>}
26
+ * @memberof AuditForDescribeAuditsOutput
27
+ */
28
+ AuditEvents?: Array<AuditForDescribeAuditsOutputAuditEventsEnum>;
29
+
30
+ /**
31
+ * @type {string}
32
+ * @memberof AuditForDescribeAuditsOutput
33
+ */
34
+ AuditId?: string;
35
+
36
+ /**
37
+ * @type {string}
38
+ * @memberof AuditForDescribeAuditsOutput
39
+ */
40
+ AuditName?: string;
41
+
42
+ /**
43
+ * @type {string}
44
+ * @memberof AuditForDescribeAuditsOutput
45
+ */
46
+ CreateTime?: string;
47
+
48
+ /**
49
+ * @type {string}
50
+ * @memberof AuditForDescribeAuditsOutput
51
+ */
52
+ FileSystemId?: string;
53
+
54
+ /**
55
+ * @type {string}
56
+ * @memberof AuditForDescribeAuditsOutput
57
+ */
58
+ FileSystemName?: string;
59
+
60
+ /**
61
+ * @type {Array<FilesetInfoForDescribeAuditsOutput>}
62
+ * @memberof AuditForDescribeAuditsOutput
63
+ */
64
+ FilesetInfos?: Array<FilesetInfoForDescribeAuditsOutput>;
65
+
66
+ /**
67
+ * @type {string}
68
+ * @memberof AuditForDescribeAuditsOutput
69
+ */
70
+ ModifyTime?: string;
71
+
72
+ /**
73
+ * @type {string}
74
+ * @memberof AuditForDescribeAuditsOutput
75
+ */
76
+ Status?: AuditForDescribeAuditsOutputStatusEnum;
77
+
78
+ /**
79
+ * @type {string}
80
+ * @memberof AuditForDescribeAuditsOutput
81
+ */
82
+ StoreType?: string;
83
+
84
+ /**
85
+ * @type {string}
86
+ * @memberof AuditForDescribeAuditsOutput
87
+ */
88
+ TlsProjectId?: string;
89
+
90
+ /**
91
+ * @type {string}
92
+ * @memberof AuditForDescribeAuditsOutput
93
+ */
94
+ TlsProjectName?: string;
95
+
96
+ /**
97
+ * @type {string}
98
+ * @memberof AuditForDescribeAuditsOutput
99
+ */
100
+ TlsTopicId?: string;
101
+
102
+ /**
103
+ * @type {string}
104
+ * @memberof AuditForDescribeAuditsOutput
105
+ */
106
+ TlsTopicName?: string;
107
+
108
+ /**
109
+ * @type {string}
110
+ * @memberof AuditForDescribeAuditsOutput
111
+ */
112
+ ZoneId?: string;
113
+ }
114
+
115
+ /**
116
+ * @export
117
+ * @enum {string}
118
+ */
119
+ export enum AuditForDescribeAuditsOutputAuditEventsEnum {
120
+ RENAME = 'RENAME',
121
+ RMDIR = 'RMDIR',
122
+ UNLINK = 'UNLINK',
123
+ OPEN = 'OPEN',
124
+ CREATE = 'CREATE',
125
+ CLOSE = 'CLOSE',
126
+ ACCESSDENIED = 'ACCESS_DENIED',
127
+ ACLCHANGE = 'ACLCHANGE',
128
+ XATTRCHANGE = 'XATTRCHANGE'
129
+ }
130
+ /**
131
+ * @export
132
+ * @enum {string}
133
+ */
134
+ export enum AuditForDescribeAuditsOutputStatusEnum {
135
+ Running = 'Running',
136
+ Stopping = 'Stopping',
137
+ Stopped = 'Stopped',
138
+ Abnormal = 'Abnormal',
139
+ Creating = 'Creating',
140
+ Starting = 'Starting',
141
+ Updating = 'Updating',
142
+ Deleting = 'Deleting'
143
+ }
144
+
@@ -0,0 +1,81 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * vepfs
5
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6
+ *
7
+ * OpenAPI spec version: common-version
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by the swagger code generator program.
11
+ * https://github.com/swagger-api/swagger-codegen.git
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ /**
16
+ *
17
+ *
18
+ * @export
19
+ * @interface CreateAuditRequest
20
+ */
21
+ export interface CreateAuditRequest {
22
+
23
+ /**
24
+ * @type {Array<string>}
25
+ * @memberof CreateAuditRequest
26
+ */
27
+ AuditEvents?: Array<CreateAuditRequestAuditEventsEnum>;
28
+
29
+ /**
30
+ * @type {string}
31
+ * @memberof CreateAuditRequest
32
+ */
33
+ AuditName: string;
34
+
35
+ /**
36
+ * @type {boolean}
37
+ * @memberof CreateAuditRequest
38
+ */
39
+ AutoStart?: boolean;
40
+
41
+ /**
42
+ * @type {string}
43
+ * @memberof CreateAuditRequest
44
+ */
45
+ FileSystemId: string;
46
+
47
+ /**
48
+ * @type {Array<string>}
49
+ * @memberof CreateAuditRequest
50
+ */
51
+ FilesetIds?: Array<string>;
52
+
53
+ /**
54
+ * @type {string}
55
+ * @memberof CreateAuditRequest
56
+ */
57
+ TlsProjectId: string;
58
+
59
+ /**
60
+ * @type {string}
61
+ * @memberof CreateAuditRequest
62
+ */
63
+ TlsTopicId: string;
64
+ }
65
+
66
+ /**
67
+ * @export
68
+ * @enum {string}
69
+ */
70
+ export enum CreateAuditRequestAuditEventsEnum {
71
+ RENAME = 'RENAME',
72
+ RMDIR = 'RMDIR',
73
+ UNLINK = 'UNLINK',
74
+ OPEN = 'OPEN',
75
+ CREATE = 'CREATE',
76
+ CLOSE = 'CLOSE',
77
+ ACCESSDENIED = 'ACCESS_DENIED',
78
+ ACLCHANGE = 'ACLCHANGE',
79
+ XATTRCHANGE = 'XATTRCHANGE'
80
+ }
81
+
@@ -0,0 +1,28 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * vepfs
5
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6
+ *
7
+ * OpenAPI spec version: common-version
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by the swagger code generator program.
11
+ * https://github.com/swagger-api/swagger-codegen.git
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ /**
16
+ *
17
+ *
18
+ * @export
19
+ * @interface CreateAuditResponse
20
+ */
21
+ export interface CreateAuditResponse {
22
+
23
+ /**
24
+ * @type {string}
25
+ * @memberof CreateAuditResponse
26
+ */
27
+ AuditId?: string;
28
+ }
@@ -12,6 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
+ import { DeletePolicyForCreateDataFlowTaskInput } from './delete-policy-for-create-data-flow-task-input';
15
16
  import { EntryListFileInfoForCreateDataFlowTaskInput } from './entry-list-file-info-for-create-data-flow-task-input';
16
17
  /**
17
18
  *
@@ -39,6 +40,12 @@ export interface CreateDataFlowTaskRequest {
39
40
  */
40
41
  DataType: CreateDataFlowTaskRequestDataTypeEnum;
41
42
 
43
+ /**
44
+ * @type {DeletePolicyForCreateDataFlowTaskInput}
45
+ * @memberof CreateDataFlowTaskRequest
46
+ */
47
+ DeletePolicy?: DeletePolicyForCreateDataFlowTaskInput;
48
+
42
49
  /**
43
50
  * @type {EntryListFileInfoForCreateDataFlowTaskInput}
44
51
  * @memberof CreateDataFlowTaskRequest
@@ -114,6 +121,7 @@ export enum CreateDataFlowTaskRequestSameNameFilePolicyEnum {
114
121
  export enum CreateDataFlowTaskRequestTaskActionEnum {
115
122
  Import = 'Import',
116
123
  Export = 'Export',
117
- Inventory = 'Inventory'
124
+ Inventory = 'Inventory',
125
+ Delete = 'Delete'
118
126
  }
119
127
 
@@ -12,6 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
 
15
+ import { DeletePolicyForDescribeDataFlowTasksOutput } from './delete-policy-for-describe-data-flow-tasks-output';
15
16
  import { EntryListFileInfoForDescribeDataFlowTasksOutput } from './entry-list-file-info-for-describe-data-flow-tasks-output';
16
17
  import { ReportForDescribeDataFlowTasksOutput } from './report-for-describe-data-flow-tasks-output';
17
18
  /**
@@ -52,6 +53,12 @@ export interface DataFlowTaskForDescribeDataFlowTasksOutput {
52
53
  */
53
54
  DataType?: DataFlowTaskForDescribeDataFlowTasksOutputDataTypeEnum;
54
55
 
56
+ /**
57
+ * @type {DeletePolicyForDescribeDataFlowTasksOutput}
58
+ * @memberof DataFlowTaskForDescribeDataFlowTasksOutput
59
+ */
60
+ DeletePolicy?: DeletePolicyForDescribeDataFlowTasksOutput;
61
+
55
62
  /**
56
63
  * @type {string}
57
64
  * @memberof DataFlowTaskForDescribeDataFlowTasksOutput
@@ -0,0 +1,34 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * vepfs
5
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6
+ *
7
+ * OpenAPI spec version: common-version
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by the swagger code generator program.
11
+ * https://github.com/swagger-api/swagger-codegen.git
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ /**
16
+ *
17
+ *
18
+ * @export
19
+ * @interface DeleteAuditRequest
20
+ */
21
+ export interface DeleteAuditRequest {
22
+
23
+ /**
24
+ * @type {string}
25
+ * @memberof DeleteAuditRequest
26
+ */
27
+ AuditId: string;
28
+
29
+ /**
30
+ * @type {string}
31
+ * @memberof DeleteAuditRequest
32
+ */
33
+ FileSystemId: string;
34
+ }
@@ -0,0 +1,22 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * vepfs
5
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6
+ *
7
+ * OpenAPI spec version: common-version
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by the swagger code generator program.
11
+ * https://github.com/swagger-api/swagger-codegen.git
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ /**
16
+ *
17
+ *
18
+ * @export
19
+ * @interface DeleteAuditResponse
20
+ */
21
+ export interface DeleteAuditResponse {
22
+ }
@@ -0,0 +1,45 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * vepfs
5
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6
+ *
7
+ * OpenAPI spec version: common-version
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by the swagger code generator program.
11
+ * https://github.com/swagger-api/swagger-codegen.git
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ /**
16
+ *
17
+ *
18
+ * @export
19
+ * @interface DeletePolicyForCreateDataFlowTaskInput
20
+ */
21
+ export interface DeletePolicyForCreateDataFlowTaskInput {
22
+
23
+ /**
24
+ * @type {string}
25
+ * @memberof DeletePolicyForCreateDataFlowTaskInput
26
+ */
27
+ DeleteTimeBefore?: string;
28
+
29
+ /**
30
+ * @type {string}
31
+ * @memberof DeletePolicyForCreateDataFlowTaskInput
32
+ */
33
+ Rule?: DeletePolicyForCreateDataFlowTaskInputRuleEnum;
34
+ }
35
+
36
+ /**
37
+ * @export
38
+ * @enum {string}
39
+ */
40
+ export enum DeletePolicyForCreateDataFlowTaskInputRuleEnum {
41
+ DELETETYPEONLYFS = 'DELETE_TYPE_ONLY_FS',
42
+ DELETETYPEFSWITHLATESTOBJECT = 'DELETE_TYPE_FS_WITH_LATEST_OBJECT',
43
+ DELETETYPEFSWITHALLVERSIONOBJECT = 'DELETE_TYPE_FS_WITH_ALLVERSION_OBJECT'
44
+ }
45
+