@volcengine/vepfs 1.0.1 → 1.0.3
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 +7 -7
- 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 +13 -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 +12 -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 +17 -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/tls-info-for-describe-data-flow-tasks-output.d.ts +60 -0
- package/dist/esm/types/tls-info-for-describe-data-flow-tasks-output.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 +15 -1
- package/src/types/data-flow-task-for-describe-data-flow-tasks-output.ts +14 -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 +17 -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/tls-info-for-describe-data-flow-tasks-output.ts +70 -0
- package/src/types/update-audit-request.ts +64 -0
- package/src/types/update-audit-response.ts +22 -0
|
@@ -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 DeletePolicyForDescribeDataFlowTasksOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface DeletePolicyForDescribeDataFlowTasksOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof DeletePolicyForDescribeDataFlowTasksOutput
|
|
26
|
+
*/
|
|
27
|
+
DeleteTimeBefore?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof DeletePolicyForDescribeDataFlowTasksOutput
|
|
32
|
+
*/
|
|
33
|
+
Rule?: DeletePolicyForDescribeDataFlowTasksOutputRuleEnum;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @export
|
|
38
|
+
* @enum {string}
|
|
39
|
+
*/
|
|
40
|
+
export enum DeletePolicyForDescribeDataFlowTasksOutputRuleEnum {
|
|
41
|
+
DELETETYPEONLYFS = 'DELETE_TYPE_ONLY_FS',
|
|
42
|
+
DELETETYPEFSWITHLATESTOBJECT = 'DELETE_TYPE_FS_WITH_LATEST_OBJECT',
|
|
43
|
+
DELETETYPEFSWITHALLVERSIONOBJECT = 'DELETE_TYPE_FS_WITH_ALLVERSION_OBJECT'
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,64 @@
|
|
|
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 DescribeAuditsRequest
|
|
20
|
+
*/
|
|
21
|
+
export interface DescribeAuditsRequest {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof DescribeAuditsRequest
|
|
26
|
+
*/
|
|
27
|
+
AuditId?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {Array<string>}
|
|
31
|
+
* @memberof DescribeAuditsRequest
|
|
32
|
+
*/
|
|
33
|
+
AuditIds?: Array<string>;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof DescribeAuditsRequest
|
|
38
|
+
*/
|
|
39
|
+
AuditName?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof DescribeAuditsRequest
|
|
44
|
+
*/
|
|
45
|
+
FileSystemId?: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @type {number}
|
|
49
|
+
* @memberof DescribeAuditsRequest
|
|
50
|
+
*/
|
|
51
|
+
PageNumber?: number;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @type {number}
|
|
55
|
+
* @memberof DescribeAuditsRequest
|
|
56
|
+
*/
|
|
57
|
+
PageSize?: number;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @type {Array<string>}
|
|
61
|
+
* @memberof DescribeAuditsRequest
|
|
62
|
+
*/
|
|
63
|
+
ZoneIds?: Array<string>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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 { AuditForDescribeAuditsOutput } from './audit-for-describe-audits-output';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface DescribeAuditsResponse
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeAuditsResponse {
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @type {Array<AuditForDescribeAuditsOutput>}
|
|
26
|
+
* @memberof DescribeAuditsResponse
|
|
27
|
+
*/
|
|
28
|
+
Audits?: Array<AuditForDescribeAuditsOutput>;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof DescribeAuditsResponse
|
|
33
|
+
*/
|
|
34
|
+
PageNumber?: number;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof DescribeAuditsResponse
|
|
39
|
+
*/
|
|
40
|
+
PageSize?: number;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof DescribeAuditsResponse
|
|
45
|
+
*/
|
|
46
|
+
TotalCount?: number;
|
|
47
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
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 FilesetInfoForDescribeAuditsOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface FilesetInfoForDescribeAuditsOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof FilesetInfoForDescribeAuditsOutput
|
|
26
|
+
*/
|
|
27
|
+
FileSystemId?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof FilesetInfoForDescribeAuditsOutput
|
|
32
|
+
*/
|
|
33
|
+
FilesetId?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof FilesetInfoForDescribeAuditsOutput
|
|
38
|
+
*/
|
|
39
|
+
FilesetName?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof FilesetInfoForDescribeAuditsOutput
|
|
44
|
+
*/
|
|
45
|
+
FilesetPath?: string;
|
|
46
|
+
}
|
package/src/types/index.ts
CHANGED
|
@@ -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';
|
|
@@ -142,8 +156,11 @@ export * from './tag-resources-request';
|
|
|
142
156
|
export * from './tag-resources-response';
|
|
143
157
|
export * from './target-info-for-create-lens-task-input';
|
|
144
158
|
export * from './target-info-for-describe-lens-tasks-output';
|
|
159
|
+
export * from './tls-info-for-describe-data-flow-tasks-output';
|
|
145
160
|
export * from './untag-resources-request';
|
|
146
161
|
export * from './untag-resources-response';
|
|
162
|
+
export * from './update-audit-request';
|
|
163
|
+
export * from './update-audit-response';
|
|
147
164
|
export * from './update-file-system-request';
|
|
148
165
|
export * from './update-file-system-response';
|
|
149
166
|
export * from './update-fileset-request';
|
|
@@ -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 StartAuditRequest
|
|
20
|
+
*/
|
|
21
|
+
export interface StartAuditRequest {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof StartAuditRequest
|
|
26
|
+
*/
|
|
27
|
+
AuditId: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof StartAuditRequest
|
|
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 StartAuditResponse
|
|
20
|
+
*/
|
|
21
|
+
export interface StartAuditResponse {
|
|
22
|
+
}
|
|
@@ -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 StopAuditRequest
|
|
20
|
+
*/
|
|
21
|
+
export interface StopAuditRequest {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof StopAuditRequest
|
|
26
|
+
*/
|
|
27
|
+
AuditId: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof StopAuditRequest
|
|
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 StopAuditResponse
|
|
20
|
+
*/
|
|
21
|
+
export interface StopAuditResponse {
|
|
22
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
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 TlsInfoForDescribeDataFlowTasksOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface TlsInfoForDescribeDataFlowTasksOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {boolean}
|
|
25
|
+
* @memberof TlsInfoForDescribeDataFlowTasksOutput
|
|
26
|
+
*/
|
|
27
|
+
Enable?: boolean;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof TlsInfoForDescribeDataFlowTasksOutput
|
|
32
|
+
*/
|
|
33
|
+
ProjectId?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof TlsInfoForDescribeDataFlowTasksOutput
|
|
38
|
+
*/
|
|
39
|
+
ProjectName?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof TlsInfoForDescribeDataFlowTasksOutput
|
|
44
|
+
*/
|
|
45
|
+
ProjectUrl?: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof TlsInfoForDescribeDataFlowTasksOutput
|
|
50
|
+
*/
|
|
51
|
+
TopicEmbeddedUrl?: string;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof TlsInfoForDescribeDataFlowTasksOutput
|
|
56
|
+
*/
|
|
57
|
+
TopicId?: string;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof TlsInfoForDescribeDataFlowTasksOutput
|
|
62
|
+
*/
|
|
63
|
+
TopicName?: string;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof TlsInfoForDescribeDataFlowTasksOutput
|
|
68
|
+
*/
|
|
69
|
+
TopicUrl?: string;
|
|
70
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
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 UpdateAuditRequest
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateAuditRequest {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof UpdateAuditRequest
|
|
26
|
+
*/
|
|
27
|
+
AuditEvents?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof UpdateAuditRequest
|
|
32
|
+
*/
|
|
33
|
+
AuditId: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof UpdateAuditRequest
|
|
38
|
+
*/
|
|
39
|
+
AuditName?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof UpdateAuditRequest
|
|
44
|
+
*/
|
|
45
|
+
FileSystemId: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @type {Array<string>}
|
|
49
|
+
* @memberof UpdateAuditRequest
|
|
50
|
+
*/
|
|
51
|
+
FilesetIds?: Array<string>;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof UpdateAuditRequest
|
|
56
|
+
*/
|
|
57
|
+
TlsProjectId?: string;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof UpdateAuditRequest
|
|
62
|
+
*/
|
|
63
|
+
TlsTopicId?: string;
|
|
64
|
+
}
|
|
@@ -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 UpdateAuditResponse
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateAuditResponse {
|
|
22
|
+
}
|