@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.
- package/.turbo/turbo-build.log +19 -19
- package/dist/cjs/index.js +64 -4
- package/dist/esm/api.d.ts +66 -0
- package/dist/esm/api.d.ts.map +1 -1
- package/dist/esm/index.mjs +43 -1
- package/dist/esm/types/audit-for-describe-audits-output.d.ts +125 -0
- package/dist/esm/types/audit-for-describe-audits-output.d.ts.map +1 -0
- package/dist/esm/types/create-audit-request.d.ts +70 -0
- package/dist/esm/types/create-audit-request.d.ts.map +1 -0
- package/dist/esm/types/create-audit-response.d.ts +25 -0
- package/dist/esm/types/create-audit-response.d.ts.map +1 -0
- package/dist/esm/types/create-data-flow-task-request.d.ts +8 -1
- package/dist/esm/types/create-data-flow-task-request.d.ts.map +1 -1
- package/dist/esm/types/data-flow-task-for-describe-data-flow-tasks-output.d.ts +6 -0
- package/dist/esm/types/data-flow-task-for-describe-data-flow-tasks-output.d.ts.map +1 -1
- package/dist/esm/types/delete-audit-request.d.ts +30 -0
- package/dist/esm/types/delete-audit-request.d.ts.map +1 -0
- package/dist/esm/types/delete-audit-response.d.ts +20 -0
- package/dist/esm/types/delete-audit-response.d.ts.map +1 -0
- package/dist/esm/types/delete-policy-for-create-data-flow-task-input.d.ts +39 -0
- package/dist/esm/types/delete-policy-for-create-data-flow-task-input.d.ts.map +1 -0
- package/dist/esm/types/delete-policy-for-describe-data-flow-tasks-output.d.ts +39 -0
- package/dist/esm/types/delete-policy-for-describe-data-flow-tasks-output.d.ts.map +1 -0
- package/dist/esm/types/describe-audits-request.d.ts +55 -0
- package/dist/esm/types/describe-audits-request.d.ts.map +1 -0
- package/dist/esm/types/describe-audits-response.d.ts +41 -0
- package/dist/esm/types/describe-audits-response.d.ts.map +1 -0
- package/dist/esm/types/fileset-info-for-describe-audits-output.d.ts +40 -0
- package/dist/esm/types/fileset-info-for-describe-audits-output.d.ts.map +1 -0
- package/dist/esm/types/index.d.ts +16 -0
- package/dist/esm/types/index.d.ts.map +1 -1
- package/dist/esm/types/start-audit-request.d.ts +30 -0
- package/dist/esm/types/start-audit-request.d.ts.map +1 -0
- package/dist/esm/types/start-audit-response.d.ts +20 -0
- package/dist/esm/types/start-audit-response.d.ts.map +1 -0
- package/dist/esm/types/stop-audit-request.d.ts +30 -0
- package/dist/esm/types/stop-audit-request.d.ts.map +1 -0
- package/dist/esm/types/stop-audit-response.d.ts +20 -0
- package/dist/esm/types/stop-audit-response.d.ts.map +1 -0
- package/dist/esm/types/update-audit-request.d.ts +55 -0
- package/dist/esm/types/update-audit-request.d.ts.map +1 -0
- package/dist/esm/types/update-audit-response.d.ts +20 -0
- package/dist/esm/types/update-audit-response.d.ts.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/api.ts +114 -1
- package/src/types/audit-for-describe-audits-output.ts +144 -0
- package/src/types/create-audit-request.ts +81 -0
- package/src/types/create-audit-response.ts +28 -0
- package/src/types/create-data-flow-task-request.ts +9 -1
- package/src/types/data-flow-task-for-describe-data-flow-tasks-output.ts +7 -0
- package/src/types/delete-audit-request.ts +34 -0
- package/src/types/delete-audit-response.ts +22 -0
- package/src/types/delete-policy-for-create-data-flow-task-input.ts +45 -0
- package/src/types/delete-policy-for-describe-data-flow-tasks-output.ts +45 -0
- package/src/types/describe-audits-request.ts +64 -0
- package/src/types/describe-audits-response.ts +47 -0
- package/src/types/fileset-info-for-describe-audits-output.ts +46 -0
- package/src/types/index.ts +16 -0
- package/src/types/start-audit-request.ts +34 -0
- package/src/types/start-audit-response.ts +22 -0
- package/src/types/stop-audit-request.ts +34 -0
- package/src/types/stop-audit-response.ts +22 -0
- package/src/types/update-audit-request.ts +64 -0
- package/src/types/update-audit-response.ts +22 -0
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { FilesetInfoForDescribeAuditsOutput } from './fileset-info-for-describe-audits-output';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface AuditForDescribeAuditsOutput
|
|
18
|
+
*/
|
|
19
|
+
export interface AuditForDescribeAuditsOutput {
|
|
20
|
+
/**
|
|
21
|
+
* @type {Array<string>}
|
|
22
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
23
|
+
*/
|
|
24
|
+
AuditEvents?: Array<AuditForDescribeAuditsOutputAuditEventsEnum>;
|
|
25
|
+
/**
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
28
|
+
*/
|
|
29
|
+
AuditId?: string;
|
|
30
|
+
/**
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
33
|
+
*/
|
|
34
|
+
AuditName?: string;
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
38
|
+
*/
|
|
39
|
+
CreateTime?: string;
|
|
40
|
+
/**
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
43
|
+
*/
|
|
44
|
+
FileSystemId?: string;
|
|
45
|
+
/**
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
48
|
+
*/
|
|
49
|
+
FileSystemName?: string;
|
|
50
|
+
/**
|
|
51
|
+
* @type {Array<FilesetInfoForDescribeAuditsOutput>}
|
|
52
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
53
|
+
*/
|
|
54
|
+
FilesetInfos?: Array<FilesetInfoForDescribeAuditsOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
58
|
+
*/
|
|
59
|
+
ModifyTime?: string;
|
|
60
|
+
/**
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
63
|
+
*/
|
|
64
|
+
Status?: AuditForDescribeAuditsOutputStatusEnum;
|
|
65
|
+
/**
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
68
|
+
*/
|
|
69
|
+
StoreType?: string;
|
|
70
|
+
/**
|
|
71
|
+
* @type {string}
|
|
72
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
73
|
+
*/
|
|
74
|
+
TlsProjectId?: string;
|
|
75
|
+
/**
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
78
|
+
*/
|
|
79
|
+
TlsProjectName?: string;
|
|
80
|
+
/**
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
83
|
+
*/
|
|
84
|
+
TlsTopicId?: string;
|
|
85
|
+
/**
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
88
|
+
*/
|
|
89
|
+
TlsTopicName?: string;
|
|
90
|
+
/**
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof AuditForDescribeAuditsOutput
|
|
93
|
+
*/
|
|
94
|
+
ZoneId?: string;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* @export
|
|
98
|
+
* @enum {string}
|
|
99
|
+
*/
|
|
100
|
+
export declare enum AuditForDescribeAuditsOutputAuditEventsEnum {
|
|
101
|
+
RENAME = "RENAME",
|
|
102
|
+
RMDIR = "RMDIR",
|
|
103
|
+
UNLINK = "UNLINK",
|
|
104
|
+
OPEN = "OPEN",
|
|
105
|
+
CREATE = "CREATE",
|
|
106
|
+
CLOSE = "CLOSE",
|
|
107
|
+
ACCESSDENIED = "ACCESS_DENIED",
|
|
108
|
+
ACLCHANGE = "ACLCHANGE",
|
|
109
|
+
XATTRCHANGE = "XATTRCHANGE"
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* @export
|
|
113
|
+
* @enum {string}
|
|
114
|
+
*/
|
|
115
|
+
export declare enum AuditForDescribeAuditsOutputStatusEnum {
|
|
116
|
+
Running = "Running",
|
|
117
|
+
Stopping = "Stopping",
|
|
118
|
+
Stopped = "Stopped",
|
|
119
|
+
Abnormal = "Abnormal",
|
|
120
|
+
Creating = "Creating",
|
|
121
|
+
Starting = "Starting",
|
|
122
|
+
Updating = "Updating",
|
|
123
|
+
Deleting = "Deleting"
|
|
124
|
+
}
|
|
125
|
+
//# sourceMappingURL=audit-for-describe-audits-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"audit-for-describe-audits-output.d.ts","sourceRoot":"","sources":["../../../src/types/audit-for-describe-audits-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,kCAAkC,EAAE,MAAM,2CAA2C,CAAC;AAC9F;;;;;EAKE;AACH,MAAM,WAAW,4BAA4B;IAEzC;;;OAGG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,2CAA2C,CAAC,CAAC;IAEjE;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,kCAAkC,CAAC,CAAC;IAEzD;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,MAAM,CAAC,EAAE,sCAAsC,CAAC;IAEhD;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;GAGG;AACH,oBAAY,2CAA2C;IACnD,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,YAAY,kBAAkB;IAC9B,SAAS,cAAc;IACvB,WAAW,gBAAgB;CAC9B;AACD;;;GAGG;AACH,oBAAY,sCAAsC;IAC9C,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;CACxB"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateAuditRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateAuditRequest {
|
|
19
|
+
/**
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof CreateAuditRequest
|
|
22
|
+
*/
|
|
23
|
+
AuditEvents?: Array<CreateAuditRequestAuditEventsEnum>;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateAuditRequest
|
|
27
|
+
*/
|
|
28
|
+
AuditName: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {boolean}
|
|
31
|
+
* @memberof CreateAuditRequest
|
|
32
|
+
*/
|
|
33
|
+
AutoStart?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof CreateAuditRequest
|
|
37
|
+
*/
|
|
38
|
+
FileSystemId: string;
|
|
39
|
+
/**
|
|
40
|
+
* @type {Array<string>}
|
|
41
|
+
* @memberof CreateAuditRequest
|
|
42
|
+
*/
|
|
43
|
+
FilesetIds?: Array<string>;
|
|
44
|
+
/**
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof CreateAuditRequest
|
|
47
|
+
*/
|
|
48
|
+
TlsProjectId: string;
|
|
49
|
+
/**
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateAuditRequest
|
|
52
|
+
*/
|
|
53
|
+
TlsTopicId: string;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* @export
|
|
57
|
+
* @enum {string}
|
|
58
|
+
*/
|
|
59
|
+
export declare enum CreateAuditRequestAuditEventsEnum {
|
|
60
|
+
RENAME = "RENAME",
|
|
61
|
+
RMDIR = "RMDIR",
|
|
62
|
+
UNLINK = "UNLINK",
|
|
63
|
+
OPEN = "OPEN",
|
|
64
|
+
CREATE = "CREATE",
|
|
65
|
+
CLOSE = "CLOSE",
|
|
66
|
+
ACCESSDENIED = "ACCESS_DENIED",
|
|
67
|
+
ACLCHANGE = "ACLCHANGE",
|
|
68
|
+
XATTRCHANGE = "XATTRCHANGE"
|
|
69
|
+
}
|
|
70
|
+
//# sourceMappingURL=create-audit-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-audit-request.d.ts","sourceRoot":"","sources":["../../../src/types/create-audit-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,kBAAkB;IAE/B;;;OAGG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iCAAiC,CAAC,CAAC;IAEvD;;;OAGG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;OAGG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAE3B;;;OAGG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,oBAAY,iCAAiC;IACzC,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,YAAY,kBAAkB;IAC9B,SAAS,cAAc;IACvB,WAAW,gBAAgB;CAC9B"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateAuditResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateAuditResponse {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateAuditResponse
|
|
22
|
+
*/
|
|
23
|
+
AuditId?: string;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=create-audit-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-audit-response.d.ts","sourceRoot":"","sources":["../../../src/types/create-audit-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,mBAAmB;IAEhC;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { DeletePolicyForCreateDataFlowTaskInput } from './delete-policy-for-create-data-flow-task-input';
|
|
12
13
|
import { EntryListFileInfoForCreateDataFlowTaskInput } from './entry-list-file-info-for-create-data-flow-task-input';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
@@ -32,6 +33,11 @@ export interface CreateDataFlowTaskRequest {
|
|
|
32
33
|
* @memberof CreateDataFlowTaskRequest
|
|
33
34
|
*/
|
|
34
35
|
DataType: CreateDataFlowTaskRequestDataTypeEnum;
|
|
36
|
+
/**
|
|
37
|
+
* @type {DeletePolicyForCreateDataFlowTaskInput}
|
|
38
|
+
* @memberof CreateDataFlowTaskRequest
|
|
39
|
+
*/
|
|
40
|
+
DeletePolicy?: DeletePolicyForCreateDataFlowTaskInput;
|
|
35
41
|
/**
|
|
36
42
|
* @type {EntryListFileInfoForCreateDataFlowTaskInput}
|
|
37
43
|
* @memberof CreateDataFlowTaskRequest
|
|
@@ -100,6 +106,7 @@ export declare enum CreateDataFlowTaskRequestSameNameFilePolicyEnum {
|
|
|
100
106
|
export declare enum CreateDataFlowTaskRequestTaskActionEnum {
|
|
101
107
|
Import = "Import",
|
|
102
108
|
Export = "Export",
|
|
103
|
-
Inventory = "Inventory"
|
|
109
|
+
Inventory = "Inventory",
|
|
110
|
+
Delete = "Delete"
|
|
104
111
|
}
|
|
105
112
|
//# sourceMappingURL=create-data-flow-task-request.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-data-flow-task-request.d.ts","sourceRoot":"","sources":["../../../src/types/create-data-flow-task-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,2CAA2C,EAAE,MAAM,wDAAwD,CAAC;AACpH;;;;;EAKE;AACH,MAAM,WAAW,yBAAyB;IAEtC;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;;OAGG;IACH,QAAQ,EAAE,qCAAqC,CAAC;IAEhD;;;OAGG;IACH,iBAAiB,CAAC,EAAE,2CAA2C,CAAC;IAEhE;;;OAGG;IACH,mBAAmB,CAAC,EAAE,gDAAgD,CAAC;IAEvE;;;OAGG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,kBAAkB,CAAC,EAAE,+CAA+C,CAAC;IAErE;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,UAAU,EAAE,uCAAuC,CAAC;CACvD;AAED;;;GAGG;AACH,oBAAY,qCAAqC;IAC7C,QAAQ,aAAa;IACrB,WAAW,gBAAgB;CAC9B;AACD;;;GAGG;AACH,oBAAY,gDAAgD;IACxD,IAAI,SAAS;IACb,UAAU,eAAe;CAC5B;AACD;;;GAGG;AACH,oBAAY,+CAA+C;IACvD,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,SAAS,cAAc;CAC1B;AACD;;;GAGG;AACH,oBAAY,uCAAuC;IAC/C,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,SAAS,cAAc;
|
|
1
|
+
{"version":3,"file":"create-data-flow-task-request.d.ts","sourceRoot":"","sources":["../../../src/types/create-data-flow-task-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,sCAAsC,EAAE,MAAM,iDAAiD,CAAC;AACzG,OAAO,EAAE,2CAA2C,EAAE,MAAM,wDAAwD,CAAC;AACpH;;;;;EAKE;AACH,MAAM,WAAW,yBAAyB;IAEtC;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;;OAGG;IACH,QAAQ,EAAE,qCAAqC,CAAC;IAEhD;;;OAGG;IACH,YAAY,CAAC,EAAE,sCAAsC,CAAC;IAEtD;;;OAGG;IACH,iBAAiB,CAAC,EAAE,2CAA2C,CAAC;IAEhE;;;OAGG;IACH,mBAAmB,CAAC,EAAE,gDAAgD,CAAC;IAEvE;;;OAGG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,kBAAkB,CAAC,EAAE,+CAA+C,CAAC;IAErE;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,UAAU,EAAE,uCAAuC,CAAC;CACvD;AAED;;;GAGG;AACH,oBAAY,qCAAqC;IAC7C,QAAQ,aAAa;IACrB,WAAW,gBAAgB;CAC9B;AACD;;;GAGG;AACH,oBAAY,gDAAgD;IACxD,IAAI,SAAS;IACb,UAAU,eAAe;CAC5B;AACD;;;GAGG;AACH,oBAAY,+CAA+C;IACvD,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,SAAS,cAAc;CAC1B;AACD;;;GAGG;AACH,oBAAY,uCAAuC;IAC/C,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,MAAM,WAAW;CACpB"}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { DeletePolicyForDescribeDataFlowTasksOutput } from './delete-policy-for-describe-data-flow-tasks-output';
|
|
12
13
|
import { EntryListFileInfoForDescribeDataFlowTasksOutput } from './entry-list-file-info-for-describe-data-flow-tasks-output';
|
|
13
14
|
import { ReportForDescribeDataFlowTasksOutput } from './report-for-describe-data-flow-tasks-output';
|
|
14
15
|
/**
|
|
@@ -43,6 +44,11 @@ export interface DataFlowTaskForDescribeDataFlowTasksOutput {
|
|
|
43
44
|
* @memberof DataFlowTaskForDescribeDataFlowTasksOutput
|
|
44
45
|
*/
|
|
45
46
|
DataType?: DataFlowTaskForDescribeDataFlowTasksOutputDataTypeEnum;
|
|
47
|
+
/**
|
|
48
|
+
* @type {DeletePolicyForDescribeDataFlowTasksOutput}
|
|
49
|
+
* @memberof DataFlowTaskForDescribeDataFlowTasksOutput
|
|
50
|
+
*/
|
|
51
|
+
DeletePolicy?: DeletePolicyForDescribeDataFlowTasksOutput;
|
|
46
52
|
/**
|
|
47
53
|
* @type {string}
|
|
48
54
|
* @memberof DataFlowTaskForDescribeDataFlowTasksOutput
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-flow-task-for-describe-data-flow-tasks-output.d.ts","sourceRoot":"","sources":["../../../src/types/data-flow-task-for-describe-data-flow-tasks-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,+CAA+C,EAAE,MAAM,4DAA4D,CAAC;AAC7H,OAAO,EAAE,oCAAoC,EAAE,MAAM,8CAA8C,CAAC;AACnG;;;;;EAKE;AACH,MAAM,WAAW,0CAA0C;IAEvD;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;;OAGG;IACH,QAAQ,CAAC,EAAE,sDAAsD,CAAC;IAElE;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,+CAA+C,CAAC;IAEpE;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,mBAAmB,CAAC,EAAE,iEAAiE,CAAC;IAExF;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,oCAAoC,CAAC,CAAC;IAEtD;;;OAGG;IACH,kBAAkB,CAAC,EAAE,gEAAgE,CAAC;IAEtF;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,CAAC,EAAE,oDAAoD,CAAC;IAE9D;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,UAAU,CAAC,EAAE,wDAAwD,CAAC;IAEtE;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,oBAAY,sDAAsD;IAC9D,QAAQ,aAAa;IACrB,WAAW,gBAAgB;CAC9B;AACD;;;GAGG;AACH,oBAAY,iEAAiE;IACzE,IAAI,SAAS;IACb,UAAU,eAAe;CAC5B;AACD;;;GAGG;AACH,oBAAY,gEAAgE;IACxE,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,SAAS,cAAc;CAC1B;AACD;;;GAGG;AACH,oBAAY,oDAAoD;IAC5D,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,OAAO,YAAY;CACtB;AACD;;;GAGG;AACH,oBAAY,wDAAwD;IAChE,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,MAAM,WAAW;CACpB"}
|
|
1
|
+
{"version":3,"file":"data-flow-task-for-describe-data-flow-tasks-output.d.ts","sourceRoot":"","sources":["../../../src/types/data-flow-task-for-describe-data-flow-tasks-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,0CAA0C,EAAE,MAAM,qDAAqD,CAAC;AACjH,OAAO,EAAE,+CAA+C,EAAE,MAAM,4DAA4D,CAAC;AAC7H,OAAO,EAAE,oCAAoC,EAAE,MAAM,8CAA8C,CAAC;AACnG;;;;;EAKE;AACH,MAAM,WAAW,0CAA0C;IAEvD;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;;OAGG;IACH,QAAQ,CAAC,EAAE,sDAAsD,CAAC;IAElE;;;OAGG;IACH,YAAY,CAAC,EAAE,0CAA0C,CAAC;IAE1D;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,+CAA+C,CAAC;IAEpE;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,mBAAmB,CAAC,EAAE,iEAAiE,CAAC;IAExF;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,oCAAoC,CAAC,CAAC;IAEtD;;;OAGG;IACH,kBAAkB,CAAC,EAAE,gEAAgE,CAAC;IAEtF;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,CAAC,EAAE,oDAAoD,CAAC;IAE9D;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,UAAU,CAAC,EAAE,wDAAwD,CAAC;IAEtE;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,oBAAY,sDAAsD;IAC9D,QAAQ,aAAa;IACrB,WAAW,gBAAgB;CAC9B;AACD;;;GAGG;AACH,oBAAY,iEAAiE;IACzE,IAAI,SAAS;IACb,UAAU,eAAe;CAC5B;AACD;;;GAGG;AACH,oBAAY,gEAAgE;IACxE,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,SAAS,cAAc;CAC1B;AACD;;;GAGG;AACH,oBAAY,oDAAoD;IAC5D,QAAQ,aAAa;IACrB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,OAAO,YAAY;CACtB;AACD;;;GAGG;AACH,oBAAY,wDAAwD;IAChE,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,MAAM,WAAW;CACpB"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DeleteAuditRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface DeleteAuditRequest {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DeleteAuditRequest
|
|
22
|
+
*/
|
|
23
|
+
AuditId: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof DeleteAuditRequest
|
|
27
|
+
*/
|
|
28
|
+
FileSystemId: string;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=delete-audit-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-audit-request.d.ts","sourceRoot":"","sources":["../../../src/types/delete-audit-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,kBAAkB;IAE/B;;;OAGG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,YAAY,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DeleteAuditResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface DeleteAuditResponse {
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=delete-audit-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-audit-response.d.ts","sourceRoot":"","sources":["../../../src/types/delete-audit-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,mBAAmB;CACnC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DeletePolicyForCreateDataFlowTaskInput
|
|
17
|
+
*/
|
|
18
|
+
export interface DeletePolicyForCreateDataFlowTaskInput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DeletePolicyForCreateDataFlowTaskInput
|
|
22
|
+
*/
|
|
23
|
+
DeleteTimeBefore?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof DeletePolicyForCreateDataFlowTaskInput
|
|
27
|
+
*/
|
|
28
|
+
Rule?: DeletePolicyForCreateDataFlowTaskInputRuleEnum;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* @export
|
|
32
|
+
* @enum {string}
|
|
33
|
+
*/
|
|
34
|
+
export declare enum DeletePolicyForCreateDataFlowTaskInputRuleEnum {
|
|
35
|
+
DELETETYPEONLYFS = "DELETE_TYPE_ONLY_FS",
|
|
36
|
+
DELETETYPEFSWITHLATESTOBJECT = "DELETE_TYPE_FS_WITH_LATEST_OBJECT",
|
|
37
|
+
DELETETYPEFSWITHALLVERSIONOBJECT = "DELETE_TYPE_FS_WITH_ALLVERSION_OBJECT"
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=delete-policy-for-create-data-flow-task-input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-policy-for-create-data-flow-task-input.d.ts","sourceRoot":"","sources":["../../../src/types/delete-policy-for-create-data-flow-task-input.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,sCAAsC;IAEnD;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,IAAI,CAAC,EAAE,8CAA8C,CAAC;CACzD;AAED;;;GAGG;AACH,oBAAY,8CAA8C;IACtD,gBAAgB,wBAAwB;IACxC,4BAA4B,sCAAsC;IAClE,gCAAgC,0CAA0C;CAC7E"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DeletePolicyForDescribeDataFlowTasksOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface DeletePolicyForDescribeDataFlowTasksOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DeletePolicyForDescribeDataFlowTasksOutput
|
|
22
|
+
*/
|
|
23
|
+
DeleteTimeBefore?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof DeletePolicyForDescribeDataFlowTasksOutput
|
|
27
|
+
*/
|
|
28
|
+
Rule?: DeletePolicyForDescribeDataFlowTasksOutputRuleEnum;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* @export
|
|
32
|
+
* @enum {string}
|
|
33
|
+
*/
|
|
34
|
+
export declare enum DeletePolicyForDescribeDataFlowTasksOutputRuleEnum {
|
|
35
|
+
DELETETYPEONLYFS = "DELETE_TYPE_ONLY_FS",
|
|
36
|
+
DELETETYPEFSWITHLATESTOBJECT = "DELETE_TYPE_FS_WITH_LATEST_OBJECT",
|
|
37
|
+
DELETETYPEFSWITHALLVERSIONOBJECT = "DELETE_TYPE_FS_WITH_ALLVERSION_OBJECT"
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=delete-policy-for-describe-data-flow-tasks-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-policy-for-describe-data-flow-tasks-output.d.ts","sourceRoot":"","sources":["../../../src/types/delete-policy-for-describe-data-flow-tasks-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,0CAA0C;IAEvD;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,IAAI,CAAC,EAAE,kDAAkD,CAAC;CAC7D;AAED;;;GAGG;AACH,oBAAY,kDAAkD;IAC1D,gBAAgB,wBAAwB;IACxC,4BAA4B,sCAAsC;IAClE,gCAAgC,0CAA0C;CAC7E"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DescribeAuditsRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface DescribeAuditsRequest {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DescribeAuditsRequest
|
|
22
|
+
*/
|
|
23
|
+
AuditId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {Array<string>}
|
|
26
|
+
* @memberof DescribeAuditsRequest
|
|
27
|
+
*/
|
|
28
|
+
AuditIds?: Array<string>;
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof DescribeAuditsRequest
|
|
32
|
+
*/
|
|
33
|
+
AuditName?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof DescribeAuditsRequest
|
|
37
|
+
*/
|
|
38
|
+
FileSystemId?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof DescribeAuditsRequest
|
|
42
|
+
*/
|
|
43
|
+
PageNumber?: number;
|
|
44
|
+
/**
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof DescribeAuditsRequest
|
|
47
|
+
*/
|
|
48
|
+
PageSize?: number;
|
|
49
|
+
/**
|
|
50
|
+
* @type {Array<string>}
|
|
51
|
+
* @memberof DescribeAuditsRequest
|
|
52
|
+
*/
|
|
53
|
+
ZoneIds?: Array<string>;
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=describe-audits-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"describe-audits-request.d.ts","sourceRoot":"","sources":["../../../src/types/describe-audits-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,qBAAqB;IAElC;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEzB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC3B"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AuditForDescribeAuditsOutput } from './audit-for-describe-audits-output';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface DescribeAuditsResponse
|
|
18
|
+
*/
|
|
19
|
+
export interface DescribeAuditsResponse {
|
|
20
|
+
/**
|
|
21
|
+
* @type {Array<AuditForDescribeAuditsOutput>}
|
|
22
|
+
* @memberof DescribeAuditsResponse
|
|
23
|
+
*/
|
|
24
|
+
Audits?: Array<AuditForDescribeAuditsOutput>;
|
|
25
|
+
/**
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof DescribeAuditsResponse
|
|
28
|
+
*/
|
|
29
|
+
PageNumber?: number;
|
|
30
|
+
/**
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof DescribeAuditsResponse
|
|
33
|
+
*/
|
|
34
|
+
PageSize?: number;
|
|
35
|
+
/**
|
|
36
|
+
* @type {number}
|
|
37
|
+
* @memberof DescribeAuditsResponse
|
|
38
|
+
*/
|
|
39
|
+
TotalCount?: number;
|
|
40
|
+
}
|
|
41
|
+
//# sourceMappingURL=describe-audits-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"describe-audits-response.d.ts","sourceRoot":"","sources":["../../../src/types/describe-audits-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AACjF;;;;;EAKE;AACH,MAAM,WAAW,sBAAsB;IAEnC;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,CAAC;IAE7C;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* vepfs
|
|
3
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: common-version
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface FilesetInfoForDescribeAuditsOutput
|
|
17
|
+
*/
|
|
18
|
+
export interface FilesetInfoForDescribeAuditsOutput {
|
|
19
|
+
/**
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof FilesetInfoForDescribeAuditsOutput
|
|
22
|
+
*/
|
|
23
|
+
FileSystemId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof FilesetInfoForDescribeAuditsOutput
|
|
27
|
+
*/
|
|
28
|
+
FilesetId?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof FilesetInfoForDescribeAuditsOutput
|
|
32
|
+
*/
|
|
33
|
+
FilesetName?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof FilesetInfoForDescribeAuditsOutput
|
|
37
|
+
*/
|
|
38
|
+
FilesetPath?: string;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=fileset-info-for-describe-audits-output.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fileset-info-for-describe-audits-output.d.ts","sourceRoot":"","sources":["../../../src/types/fileset-info-for-describe-audits-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,kCAAkC;IAE/C;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './attach-file-system-for-describe-mount-services-output';
|
|
2
2
|
export * from './attach-mount-service-to-self-file-system-request';
|
|
3
3
|
export * from './attach-mount-service-to-self-file-system-response';
|
|
4
|
+
export * from './audit-for-describe-audits-output';
|
|
4
5
|
export * from './cancel-data-flow-task-request';
|
|
5
6
|
export * from './cancel-data-flow-task-response';
|
|
6
7
|
export * from './cancel-lens-task-request';
|
|
@@ -14,6 +15,8 @@ export * from './condition-for-describe-lens-tasks-output';
|
|
|
14
15
|
export * from './condition-for-update-lens-policy-input';
|
|
15
16
|
export * from './config-data-flow-bandwidth-request';
|
|
16
17
|
export * from './config-data-flow-bandwidth-response';
|
|
18
|
+
export * from './create-audit-request';
|
|
19
|
+
export * from './create-audit-response';
|
|
17
20
|
export * from './create-data-flow-task-request';
|
|
18
21
|
export * from './create-data-flow-task-response';
|
|
19
22
|
export * from './create-file-system-request';
|
|
@@ -29,6 +32,8 @@ export * from './create-mount-service-response';
|
|
|
29
32
|
export * from './create-pre-signed-url-request';
|
|
30
33
|
export * from './create-pre-signed-url-response';
|
|
31
34
|
export * from './data-flow-task-for-describe-data-flow-tasks-output';
|
|
35
|
+
export * from './delete-audit-request';
|
|
36
|
+
export * from './delete-audit-response';
|
|
32
37
|
export * from './delete-data-flow-task-request';
|
|
33
38
|
export * from './delete-data-flow-task-response';
|
|
34
39
|
export * from './delete-file-system-request';
|
|
@@ -41,6 +46,10 @@ export * from './delete-lens-task-request';
|
|
|
41
46
|
export * from './delete-lens-task-response';
|
|
42
47
|
export * from './delete-mount-service-request';
|
|
43
48
|
export * from './delete-mount-service-response';
|
|
49
|
+
export * from './delete-policy-for-create-data-flow-task-input';
|
|
50
|
+
export * from './delete-policy-for-describe-data-flow-tasks-output';
|
|
51
|
+
export * from './describe-audits-request';
|
|
52
|
+
export * from './describe-audits-response';
|
|
44
53
|
export * from './describe-data-flow-bandwidth-request';
|
|
45
54
|
export * from './describe-data-flow-bandwidth-response';
|
|
46
55
|
export * from './describe-data-flow-tasks-request';
|
|
@@ -76,6 +85,7 @@ export * from './expand-file-system-response';
|
|
|
76
85
|
export * from './feature-info-for-describe-lens-services-output';
|
|
77
86
|
export * from './file-system-for-describe-file-systems-output';
|
|
78
87
|
export * from './fileset-for-describe-filesets-output';
|
|
88
|
+
export * from './fileset-info-for-describe-audits-output';
|
|
79
89
|
export * from './filter-for-describe-file-systems-input';
|
|
80
90
|
export * from './filter-for-describe-filesets-input';
|
|
81
91
|
export * from './filter-for-describe-mount-services-input';
|
|
@@ -122,9 +132,13 @@ export * from './set-fileset-qos-request';
|
|
|
122
132
|
export * from './set-fileset-qos-response';
|
|
123
133
|
export * from './set-fileset-quota-request';
|
|
124
134
|
export * from './set-fileset-quota-response';
|
|
135
|
+
export * from './start-audit-request';
|
|
136
|
+
export * from './start-audit-response';
|
|
125
137
|
export * from './start-lens-service-request';
|
|
126
138
|
export * from './start-lens-service-response';
|
|
127
139
|
export * from './statistic-for-describe-file-system-statistics-output';
|
|
140
|
+
export * from './stop-audit-request';
|
|
141
|
+
export * from './stop-audit-response';
|
|
128
142
|
export * from './stop-lens-service-request';
|
|
129
143
|
export * from './stop-lens-service-response';
|
|
130
144
|
export * from './string-value-for-create-lens-policy-input';
|
|
@@ -144,6 +158,8 @@ export * from './target-info-for-create-lens-task-input';
|
|
|
144
158
|
export * from './target-info-for-describe-lens-tasks-output';
|
|
145
159
|
export * from './untag-resources-request';
|
|
146
160
|
export * from './untag-resources-response';
|
|
161
|
+
export * from './update-audit-request';
|
|
162
|
+
export * from './update-audit-response';
|
|
147
163
|
export * from './update-file-system-request';
|
|
148
164
|
export * from './update-file-system-response';
|
|
149
165
|
export * from './update-fileset-request';
|