@coscine/api-client 3.17.0 → 3.19.0
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/dist/index.js +779 -676
- package/dist/types/Coscine.Api/@coscine/api/admin-api.d.ts +2 -11
- package/dist/types/Coscine.Api/@coscine/api/data-hamster-report-api.d.ts +263 -0
- package/dist/types/Coscine.Api/@coscine/api/project-sub-projects-api.d.ts +165 -0
- package/dist/types/Coscine.Api/@coscine/api/report-api.d.ts +272 -0
- package/dist/types/Coscine.Api/@coscine/model/data-hamster-kpi-dto-ienumerable-response.d.ts +43 -0
- package/dist/types/Coscine.Api/@coscine/model/data-hamster-kpi-dto-response.d.ts +43 -0
- package/dist/types/Coscine.Api/@coscine/model/data-hamster-kpi-dto.d.ts +56 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-resource-type-options-for-manipulation-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-s3-worm-resource-type-options-for-manipulation-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/data-storage-nrw-web-resource-type-options-for-manipulation-dto.d.ts +7 -0
- package/dist/types/Coscine.Api/@coscine/model/index.d.ts +6 -0
- package/dist/types/Coscine.Api/@coscine/model/lifecycle-options-for-manipulation-dto.d.ts +30 -0
- package/dist/types/Coscine.Api/@coscine/model/project-admin-dto.d.ts +1 -0
- package/dist/types/Coscine.Api/@coscine/model/project-dto.d.ts +1 -0
- package/dist/types/Coscine.Api/@coscine/model/public-user-dto.d.ts +8 -8
- package/dist/types/Coscine.Api/@coscine/model/storage-data-hamster-kpi-dto-response.d.ts +43 -0
- package/dist/types/Coscine.Api/@coscine/model/storage-data-hamster-kpi-dto.d.ts +31 -0
- package/dist/types/Coscine.Api/@coscine/model/user-organization-dto.d.ts +6 -0
- package/dist/types/Coscine.Api/api.d.ts +3 -0
- package/dist/types/apis.d.ts +4 -0
- package/dist/types/index.d.ts +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from '../../configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import { type RequestArgs, BaseAPI } from '../../base';
|
|
15
|
+
/**
|
|
16
|
+
* ReportApi - axios parameter creator
|
|
17
|
+
* @export
|
|
18
|
+
*/
|
|
19
|
+
export declare const ReportApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
23
|
+
* @param {*} [options] Override http request option.
|
|
24
|
+
* @throws {RequiredError}
|
|
25
|
+
*/
|
|
26
|
+
apiV2ReportsOptions: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27
|
+
/**
|
|
28
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
29
|
+
* @summary Download for the applicationprofile report.
|
|
30
|
+
* @param {*} [options] Override http request option.
|
|
31
|
+
* @throws {RequiredError}
|
|
32
|
+
*/
|
|
33
|
+
getApplicationProfileReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
|
+
/**
|
|
35
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
36
|
+
* @summary Download for the maintenance report.
|
|
37
|
+
* @param {*} [options] Override http request option.
|
|
38
|
+
* @throws {RequiredError}
|
|
39
|
+
*/
|
|
40
|
+
getMaintenanceReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
|
+
/**
|
|
42
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
43
|
+
* @summary Download for the project quota report.
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
getProjectQuotaReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
|
+
/**
|
|
49
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
50
|
+
* @summary Download for the project report.
|
|
51
|
+
* @param {*} [options] Override http request option.
|
|
52
|
+
* @throws {RequiredError}
|
|
53
|
+
*/
|
|
54
|
+
getProjectReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
|
+
/**
|
|
56
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
57
|
+
* @summary Download for the resource quota report.
|
|
58
|
+
* @param {*} [options] Override http request option.
|
|
59
|
+
* @throws {RequiredError}
|
|
60
|
+
*/
|
|
61
|
+
getResourceQuotaReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62
|
+
/**
|
|
63
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
64
|
+
* @summary Download for the resource report.
|
|
65
|
+
* @param {*} [options] Override http request option.
|
|
66
|
+
* @throws {RequiredError}
|
|
67
|
+
*/
|
|
68
|
+
getResourceReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
|
+
/**
|
|
70
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
71
|
+
* @summary Download for the user report.
|
|
72
|
+
* @param {*} [options] Override http request option.
|
|
73
|
+
* @throws {RequiredError}
|
|
74
|
+
*/
|
|
75
|
+
getUserReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* ReportApi - functional programming interface
|
|
79
|
+
* @export
|
|
80
|
+
*/
|
|
81
|
+
export declare const ReportApiFp: (configuration?: Configuration) => {
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
85
|
+
* @param {*} [options] Override http request option.
|
|
86
|
+
* @throws {RequiredError}
|
|
87
|
+
*/
|
|
88
|
+
apiV2ReportsOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
89
|
+
/**
|
|
90
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
91
|
+
* @summary Download for the applicationprofile report.
|
|
92
|
+
* @param {*} [options] Override http request option.
|
|
93
|
+
* @throws {RequiredError}
|
|
94
|
+
*/
|
|
95
|
+
getApplicationProfileReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
96
|
+
/**
|
|
97
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
98
|
+
* @summary Download for the maintenance report.
|
|
99
|
+
* @param {*} [options] Override http request option.
|
|
100
|
+
* @throws {RequiredError}
|
|
101
|
+
*/
|
|
102
|
+
getMaintenanceReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
103
|
+
/**
|
|
104
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
105
|
+
* @summary Download for the project quota report.
|
|
106
|
+
* @param {*} [options] Override http request option.
|
|
107
|
+
* @throws {RequiredError}
|
|
108
|
+
*/
|
|
109
|
+
getProjectQuotaReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
110
|
+
/**
|
|
111
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
112
|
+
* @summary Download for the project report.
|
|
113
|
+
* @param {*} [options] Override http request option.
|
|
114
|
+
* @throws {RequiredError}
|
|
115
|
+
*/
|
|
116
|
+
getProjectReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
117
|
+
/**
|
|
118
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
119
|
+
* @summary Download for the resource quota report.
|
|
120
|
+
* @param {*} [options] Override http request option.
|
|
121
|
+
* @throws {RequiredError}
|
|
122
|
+
*/
|
|
123
|
+
getResourceQuotaReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
124
|
+
/**
|
|
125
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
126
|
+
* @summary Download for the resource report.
|
|
127
|
+
* @param {*} [options] Override http request option.
|
|
128
|
+
* @throws {RequiredError}
|
|
129
|
+
*/
|
|
130
|
+
getResourceReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
131
|
+
/**
|
|
132
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
133
|
+
* @summary Download for the user report.
|
|
134
|
+
* @param {*} [options] Override http request option.
|
|
135
|
+
* @throws {RequiredError}
|
|
136
|
+
*/
|
|
137
|
+
getUserReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* ReportApi - factory interface
|
|
141
|
+
* @export
|
|
142
|
+
*/
|
|
143
|
+
export declare const ReportApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
144
|
+
/**
|
|
145
|
+
*
|
|
146
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
147
|
+
* @param {*} [options] Override http request option.
|
|
148
|
+
* @throws {RequiredError}
|
|
149
|
+
*/
|
|
150
|
+
apiV2ReportsOptions(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
151
|
+
/**
|
|
152
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
153
|
+
* @summary Download for the applicationprofile report.
|
|
154
|
+
* @param {*} [options] Override http request option.
|
|
155
|
+
* @throws {RequiredError}
|
|
156
|
+
*/
|
|
157
|
+
getApplicationProfileReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
158
|
+
/**
|
|
159
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
160
|
+
* @summary Download for the maintenance report.
|
|
161
|
+
* @param {*} [options] Override http request option.
|
|
162
|
+
* @throws {RequiredError}
|
|
163
|
+
*/
|
|
164
|
+
getMaintenanceReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
165
|
+
/**
|
|
166
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
167
|
+
* @summary Download for the project quota report.
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
getProjectQuotaReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
172
|
+
/**
|
|
173
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
174
|
+
* @summary Download for the project report.
|
|
175
|
+
* @param {*} [options] Override http request option.
|
|
176
|
+
* @throws {RequiredError}
|
|
177
|
+
*/
|
|
178
|
+
getProjectReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
179
|
+
/**
|
|
180
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
181
|
+
* @summary Download for the resource quota report.
|
|
182
|
+
* @param {*} [options] Override http request option.
|
|
183
|
+
* @throws {RequiredError}
|
|
184
|
+
*/
|
|
185
|
+
getResourceQuotaReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
186
|
+
/**
|
|
187
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
188
|
+
* @summary Download for the resource report.
|
|
189
|
+
* @param {*} [options] Override http request option.
|
|
190
|
+
* @throws {RequiredError}
|
|
191
|
+
*/
|
|
192
|
+
getResourceReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
193
|
+
/**
|
|
194
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
195
|
+
* @summary Download for the user report.
|
|
196
|
+
* @param {*} [options] Override http request option.
|
|
197
|
+
* @throws {RequiredError}
|
|
198
|
+
*/
|
|
199
|
+
getUserReport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
200
|
+
};
|
|
201
|
+
/**
|
|
202
|
+
* ReportApi - object-oriented interface
|
|
203
|
+
* @export
|
|
204
|
+
* @class ReportApi
|
|
205
|
+
* @extends {BaseAPI}
|
|
206
|
+
*/
|
|
207
|
+
export declare class ReportApi extends BaseAPI {
|
|
208
|
+
/**
|
|
209
|
+
*
|
|
210
|
+
* @summary Responds with the HTTP methods allowed for the endpoint.
|
|
211
|
+
* @param {*} [options] Override http request option.
|
|
212
|
+
* @throws {RequiredError}
|
|
213
|
+
* @memberof ReportApi
|
|
214
|
+
*/
|
|
215
|
+
apiV2ReportsOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
216
|
+
/**
|
|
217
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
218
|
+
* @summary Download for the applicationprofile report.
|
|
219
|
+
* @param {*} [options] Override http request option.
|
|
220
|
+
* @throws {RequiredError}
|
|
221
|
+
* @memberof ReportApi
|
|
222
|
+
*/
|
|
223
|
+
getApplicationProfileReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
224
|
+
/**
|
|
225
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
226
|
+
* @summary Download for the maintenance report.
|
|
227
|
+
* @param {*} [options] Override http request option.
|
|
228
|
+
* @throws {RequiredError}
|
|
229
|
+
* @memberof ReportApi
|
|
230
|
+
*/
|
|
231
|
+
getMaintenanceReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
232
|
+
/**
|
|
233
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
234
|
+
* @summary Download for the project quota report.
|
|
235
|
+
* @param {*} [options] Override http request option.
|
|
236
|
+
* @throws {RequiredError}
|
|
237
|
+
* @memberof ReportApi
|
|
238
|
+
*/
|
|
239
|
+
getProjectQuotaReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
240
|
+
/**
|
|
241
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
242
|
+
* @summary Download for the project report.
|
|
243
|
+
* @param {*} [options] Override http request option.
|
|
244
|
+
* @throws {RequiredError}
|
|
245
|
+
* @memberof ReportApi
|
|
246
|
+
*/
|
|
247
|
+
getProjectReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
248
|
+
/**
|
|
249
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
250
|
+
* @summary Download for the resource quota report.
|
|
251
|
+
* @param {*} [options] Override http request option.
|
|
252
|
+
* @throws {RequiredError}
|
|
253
|
+
* @memberof ReportApi
|
|
254
|
+
*/
|
|
255
|
+
getResourceQuotaReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
256
|
+
/**
|
|
257
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
258
|
+
* @summary Download for the resource report.
|
|
259
|
+
* @param {*} [options] Override http request option.
|
|
260
|
+
* @throws {RequiredError}
|
|
261
|
+
* @memberof ReportApi
|
|
262
|
+
*/
|
|
263
|
+
getResourceReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
264
|
+
/**
|
|
265
|
+
* <p><strong>Required JWT roles for access:</strong> <code>administrator</code>.</p>
|
|
266
|
+
* @summary Download for the user report.
|
|
267
|
+
* @param {*} [options] Override http request option.
|
|
268
|
+
* @throws {RequiredError}
|
|
269
|
+
* @memberof ReportApi
|
|
270
|
+
*/
|
|
271
|
+
getUserReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
272
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { DataHamsterKpiDto } from './data-hamster-kpi-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DataHamsterKpiDtoIEnumerableResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface DataHamsterKpiDtoIEnumerableResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<DataHamsterKpiDto>}
|
|
22
|
+
* @memberof DataHamsterKpiDtoIEnumerableResponse
|
|
23
|
+
*/
|
|
24
|
+
'data'?: Array<DataHamsterKpiDto> | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof DataHamsterKpiDtoIEnumerableResponse
|
|
29
|
+
*/
|
|
30
|
+
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof DataHamsterKpiDtoIEnumerableResponse
|
|
35
|
+
*/
|
|
36
|
+
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof DataHamsterKpiDtoIEnumerableResponse
|
|
41
|
+
*/
|
|
42
|
+
'traceId'?: string | null;
|
|
43
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { DataHamsterKpiDto } from './data-hamster-kpi-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface DataHamsterKpiDtoResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface DataHamsterKpiDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {DataHamsterKpiDto}
|
|
22
|
+
* @memberof DataHamsterKpiDtoResponse
|
|
23
|
+
*/
|
|
24
|
+
'data'?: DataHamsterKpiDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof DataHamsterKpiDtoResponse
|
|
29
|
+
*/
|
|
30
|
+
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof DataHamsterKpiDtoResponse
|
|
35
|
+
*/
|
|
36
|
+
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof DataHamsterKpiDtoResponse
|
|
41
|
+
*/
|
|
42
|
+
'traceId'?: string | null;
|
|
43
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface DataHamsterKpiDto
|
|
16
|
+
*/
|
|
17
|
+
export interface DataHamsterKpiDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof DataHamsterKpiDto
|
|
22
|
+
*/
|
|
23
|
+
'measurementId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof DataHamsterKpiDto
|
|
28
|
+
*/
|
|
29
|
+
'value'?: number | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DataHamsterKpiDto
|
|
34
|
+
*/
|
|
35
|
+
'start'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof DataHamsterKpiDto
|
|
40
|
+
*/
|
|
41
|
+
'end'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {{ [key: string]: string; }}
|
|
45
|
+
* @memberof DataHamsterKpiDto
|
|
46
|
+
*/
|
|
47
|
+
'additionalInfo'?: {
|
|
48
|
+
[key: string]: string;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof DataHamsterKpiDto
|
|
54
|
+
*/
|
|
55
|
+
'query'?: string;
|
|
56
|
+
}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { DsNrwReplicationGroupDto } from './ds-nrw-replication-group-dto';
|
|
13
|
+
import type { LifecycleOptionsForManipulationDto } from './lifecycle-options-for-manipulation-dto';
|
|
13
14
|
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
14
15
|
/**
|
|
15
16
|
* Represents the data transfer object (DTO) for manipulating DataStorage.nrw S3 resource type options.
|
|
@@ -23,6 +24,12 @@ export interface DataStorageNrwS3ResourceTypeOptionsForManipulationDto {
|
|
|
23
24
|
* @memberof DataStorageNrwS3ResourceTypeOptionsForManipulationDto
|
|
24
25
|
*/
|
|
25
26
|
'quota': QuotaForManipulationDto;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {LifecycleOptionsForManipulationDto}
|
|
30
|
+
* @memberof DataStorageNrwS3ResourceTypeOptionsForManipulationDto
|
|
31
|
+
*/
|
|
32
|
+
'lifecycleOptions'?: LifecycleOptionsForManipulationDto;
|
|
26
33
|
/**
|
|
27
34
|
*
|
|
28
35
|
* @type {DsNrwReplicationGroupDto}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { DsNrwReplicationGroupDto } from './ds-nrw-replication-group-dto';
|
|
13
|
+
import type { LifecycleOptionsForManipulationDto } from './lifecycle-options-for-manipulation-dto';
|
|
13
14
|
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
14
15
|
/**
|
|
15
16
|
* Represents the data transfer object (DTO) for manipulating DataStorage.nrw S3 WORM resource type options.
|
|
@@ -23,6 +24,12 @@ export interface DataStorageNrwS3WormResourceTypeOptionsForManipulationDto {
|
|
|
23
24
|
* @memberof DataStorageNrwS3WormResourceTypeOptionsForManipulationDto
|
|
24
25
|
*/
|
|
25
26
|
'quota': QuotaForManipulationDto;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {LifecycleOptionsForManipulationDto}
|
|
30
|
+
* @memberof DataStorageNrwS3WormResourceTypeOptionsForManipulationDto
|
|
31
|
+
*/
|
|
32
|
+
'lifecycleOptions'?: LifecycleOptionsForManipulationDto;
|
|
26
33
|
/**
|
|
27
34
|
*
|
|
28
35
|
* @type {DsNrwReplicationGroupDto}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { DsNrwReplicationGroupDto } from './ds-nrw-replication-group-dto';
|
|
13
|
+
import type { LifecycleOptionsForManipulationDto } from './lifecycle-options-for-manipulation-dto';
|
|
13
14
|
import type { QuotaForManipulationDto } from './quota-for-manipulation-dto';
|
|
14
15
|
/**
|
|
15
16
|
* Represents the data transfer object (DTO) for manipulating DataStorage.nrw Web resource type options.
|
|
@@ -23,6 +24,12 @@ export interface DataStorageNrwWebResourceTypeOptionsForManipulationDto {
|
|
|
23
24
|
* @memberof DataStorageNrwWebResourceTypeOptionsForManipulationDto
|
|
24
25
|
*/
|
|
25
26
|
'quota': QuotaForManipulationDto;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {LifecycleOptionsForManipulationDto}
|
|
30
|
+
* @memberof DataStorageNrwWebResourceTypeOptionsForManipulationDto
|
|
31
|
+
*/
|
|
32
|
+
'lifecycleOptions'?: LifecycleOptionsForManipulationDto;
|
|
26
33
|
/**
|
|
27
34
|
*
|
|
28
35
|
* @type {DsNrwReplicationGroupDto}
|
|
@@ -15,6 +15,9 @@ export * from './application-profile-minimal-dto';
|
|
|
15
15
|
export * from './coscine-http-method';
|
|
16
16
|
export * from './create-datasource-dto';
|
|
17
17
|
export * from './create-datasource-dto-response';
|
|
18
|
+
export * from './data-hamster-kpi-dto';
|
|
19
|
+
export * from './data-hamster-kpi-dto-ienumerable-response';
|
|
20
|
+
export * from './data-hamster-kpi-dto-response';
|
|
18
21
|
export * from './data-storage-nrw-s3-options-dto';
|
|
19
22
|
export * from './data-storage-nrw-s3-resource-type-options-for-manipulation-dto';
|
|
20
23
|
export * from './data-storage-nrw-s3-worm-options-dto';
|
|
@@ -63,6 +66,7 @@ export * from './license-dto';
|
|
|
63
66
|
export * from './license-dto-paged-response';
|
|
64
67
|
export * from './license-dto-response';
|
|
65
68
|
export * from './license-for-resource-manipulation-dto';
|
|
69
|
+
export * from './lifecycle-options-for-manipulation-dto';
|
|
66
70
|
export * from './maintenance-dto';
|
|
67
71
|
export * from './maintenance-dto-paged-response';
|
|
68
72
|
export * from './message-dto';
|
|
@@ -172,6 +176,8 @@ export * from './search-category';
|
|
|
172
176
|
export * from './search-category-type';
|
|
173
177
|
export * from './search-result-dto';
|
|
174
178
|
export * from './search-result-dto-paged-search-response';
|
|
179
|
+
export * from './storage-data-hamster-kpi-dto';
|
|
180
|
+
export * from './storage-data-hamster-kpi-dto-response';
|
|
175
181
|
export * from './terms-of-service-dto';
|
|
176
182
|
export * from './terms-of-service-dto-response';
|
|
177
183
|
export * from './title-dto';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Represents the data transfer object (DTO) for manipulating lifecycle options on an S3 bucket.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface LifecycleOptionsForManipulationDto
|
|
16
|
+
*/
|
|
17
|
+
export interface LifecycleOptionsForManipulationDto {
|
|
18
|
+
/**
|
|
19
|
+
* Gets the number of days after which incomplete multipart uploads are automatically aborted. A value of `null` means no rule is applied.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof LifecycleOptionsForManipulationDto
|
|
22
|
+
*/
|
|
23
|
+
'abortIncompleteMultipartAfterDays'?: number | null;
|
|
24
|
+
/**
|
|
25
|
+
* Gets the number of days after which noncurrent (previous) object versions expire. A value of `null` means no rule is applied.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof LifecycleOptionsForManipulationDto
|
|
28
|
+
*/
|
|
29
|
+
'noncurrentVersionExpireAfterDays'?: number | null;
|
|
30
|
+
}
|
|
@@ -17,35 +17,35 @@ import type { TitleDto } from './title-dto';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface PublicUserDto {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Gets the unique identifier of the user.
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof PublicUserDto
|
|
23
23
|
*/
|
|
24
24
|
'id': string;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Gets the display name of the user.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof PublicUserDto
|
|
29
29
|
*/
|
|
30
30
|
'displayName': string;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Gets the given name of the user.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof PublicUserDto
|
|
35
35
|
*/
|
|
36
|
-
'givenName'
|
|
36
|
+
'givenName'?: string | null;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Gets the family name of the user.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof PublicUserDto
|
|
41
41
|
*/
|
|
42
|
-
'familyName'
|
|
42
|
+
'familyName'?: string | null;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
44
|
+
* Gets the email address of the user.
|
|
45
45
|
* @type {string}
|
|
46
46
|
* @memberof PublicUserDto
|
|
47
47
|
*/
|
|
48
|
-
'email'
|
|
48
|
+
'email'?: string | null;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {TitleDto}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Coscine Web API
|
|
3
|
+
* Coscine (short for <b>CO</b>llaborative <b>SC</b>ientific <b>IN</b>tegration <b>E</b>nvironment) is the research data management platform for your research project.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0
|
|
6
|
+
* Contact: servicedesk@rwth-aachen.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { StorageDataHamsterKpiDto } from './storage-data-hamster-kpi-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface StorageDataHamsterKpiDtoResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface StorageDataHamsterKpiDtoResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {StorageDataHamsterKpiDto}
|
|
22
|
+
* @memberof StorageDataHamsterKpiDtoResponse
|
|
23
|
+
*/
|
|
24
|
+
'data'?: StorageDataHamsterKpiDto;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof StorageDataHamsterKpiDtoResponse
|
|
29
|
+
*/
|
|
30
|
+
'isSuccess'?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof StorageDataHamsterKpiDtoResponse
|
|
35
|
+
*/
|
|
36
|
+
'statusCode'?: number | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof StorageDataHamsterKpiDtoResponse
|
|
41
|
+
*/
|
|
42
|
+
'traceId'?: string | null;
|
|
43
|
+
}
|