@veeroute/lss-registry-angular 7.25.3009

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 (100) hide show
  1. package/README.md +185 -0
  2. package/api/api.d.ts +13 -0
  3. package/api/backupsService.d.ts +56 -0
  4. package/api/backupsServiceInterface.d.ts +35 -0
  5. package/api/configurationsService.d.ts +256 -0
  6. package/api/configurationsServiceInterface.d.ts +132 -0
  7. package/api/explorerService.d.ts +279 -0
  8. package/api/explorerServiceInterface.d.ts +132 -0
  9. package/api/systemService.d.ts +78 -0
  10. package/api/systemServiceInterface.d.ts +37 -0
  11. package/api.base.service.d.ts +21 -0
  12. package/api.module.d.ts +11 -0
  13. package/cfg/process_types.json +172 -0
  14. package/configuration.d.ts +106 -0
  15. package/encoder.d.ts +11 -0
  16. package/esm2022/api/api.mjs +14 -0
  17. package/esm2022/api/backupsService.mjs +135 -0
  18. package/esm2022/api/backupsServiceInterface.mjs +2 -0
  19. package/esm2022/api/configurationsService.mjs +563 -0
  20. package/esm2022/api/configurationsServiceInterface.mjs +2 -0
  21. package/esm2022/api/explorerService.mjs +594 -0
  22. package/esm2022/api/explorerServiceInterface.mjs +2 -0
  23. package/esm2022/api/systemService.mjs +149 -0
  24. package/esm2022/api/systemServiceInterface.mjs +2 -0
  25. package/esm2022/api.base.service.mjs +79 -0
  26. package/esm2022/api.module.mjs +40 -0
  27. package/esm2022/configuration.mjs +145 -0
  28. package/esm2022/encoder.mjs +19 -0
  29. package/esm2022/index.mjs +8 -0
  30. package/esm2022/model/attribute.mjs +11 -0
  31. package/esm2022/model/checkResult.mjs +11 -0
  32. package/esm2022/model/configuration.mjs +2 -0
  33. package/esm2022/model/fileNamePath.mjs +11 -0
  34. package/esm2022/model/fileSpecification.mjs +11 -0
  35. package/esm2022/model/filesystem.mjs +2 -0
  36. package/esm2022/model/filesystemColumnType.mjs +23 -0
  37. package/esm2022/model/filesystemCounters.mjs +2 -0
  38. package/esm2022/model/filesystemPath.mjs +2 -0
  39. package/esm2022/model/folder.mjs +2 -0
  40. package/esm2022/model/folderCounters.mjs +11 -0
  41. package/esm2022/model/folderSpecification.mjs +2 -0
  42. package/esm2022/model/folderType.mjs +18 -0
  43. package/esm2022/model/general400.mjs +2 -0
  44. package/esm2022/model/general402.mjs +2 -0
  45. package/esm2022/model/general403.mjs +2 -0
  46. package/esm2022/model/general404.mjs +2 -0
  47. package/esm2022/model/general404Detail.mjs +2 -0
  48. package/esm2022/model/general429.mjs +2 -0
  49. package/esm2022/model/general500.mjs +2 -0
  50. package/esm2022/model/models.mjs +30 -0
  51. package/esm2022/model/schemaError.mjs +11 -0
  52. package/esm2022/model/service.mjs +26 -0
  53. package/esm2022/model/tableConfiguration.mjs +2 -0
  54. package/esm2022/model/tableConfigurationColumnType.mjs +22 -0
  55. package/esm2022/model/tableConfigurationList.mjs +2 -0
  56. package/esm2022/model/tableListCounters.mjs +2 -0
  57. package/esm2022/model/tableListCountersDetail.mjs +11 -0
  58. package/esm2022/model/tracedata.mjs +2 -0
  59. package/esm2022/model/versionResult.mjs +11 -0
  60. package/esm2022/param.mjs +2 -0
  61. package/esm2022/provide-api.mjs +15 -0
  62. package/esm2022/variables.mjs +9 -0
  63. package/esm2022/veeroute-lss-registry-angular.mjs +5 -0
  64. package/fesm2022/veeroute-lss-registry-angular.mjs +1887 -0
  65. package/fesm2022/veeroute-lss-registry-angular.mjs.map +1 -0
  66. package/index.d.ts +7 -0
  67. package/model/attribute.d.ts +23 -0
  68. package/model/checkResult.d.ts +19 -0
  69. package/model/configuration.d.ts +37 -0
  70. package/model/fileNamePath.d.ts +23 -0
  71. package/model/fileSpecification.d.ts +27 -0
  72. package/model/filesystem.d.ts +23 -0
  73. package/model/filesystemColumnType.d.ts +21 -0
  74. package/model/filesystemCounters.d.ts +24 -0
  75. package/model/filesystemPath.d.ts +20 -0
  76. package/model/folder.d.ts +60 -0
  77. package/model/folderCounters.d.ts +23 -0
  78. package/model/folderSpecification.d.ts +40 -0
  79. package/model/folderType.d.ts +16 -0
  80. package/model/general400.d.ts +26 -0
  81. package/model/general402.d.ts +21 -0
  82. package/model/general403.d.ts +21 -0
  83. package/model/general404.d.ts +21 -0
  84. package/model/general404Detail.d.ts +17 -0
  85. package/model/general429.d.ts +21 -0
  86. package/model/general500.d.ts +21 -0
  87. package/model/models.d.ts +29 -0
  88. package/model/schemaError.d.ts +23 -0
  89. package/model/service.d.ts +24 -0
  90. package/model/tableConfiguration.d.ts +29 -0
  91. package/model/tableConfigurationColumnType.d.ts +20 -0
  92. package/model/tableConfigurationList.d.ts +22 -0
  93. package/model/tableListCounters.d.ts +24 -0
  94. package/model/tableListCountersDetail.d.ts +19 -0
  95. package/model/tracedata.d.ts +49 -0
  96. package/model/versionResult.d.ts +27 -0
  97. package/package.json +33 -0
  98. package/param.d.ts +37 -0
  99. package/provide-api.d.ts +3 -0
  100. package/variables.d.ts +8 -0
@@ -0,0 +1,279 @@
1
+ import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { FilesystemCountersRegistry } from '../model/filesystemCounters';
4
+ import { FilesystemPathRegistry } from '../model/filesystemPath';
5
+ import { FilesystemRegistry } from '../model/filesystem';
6
+ import { FolderSpecificationRegistry } from '../model/folderSpecification';
7
+ import { Configuration } from '../configuration';
8
+ import { BaseService } from '../api.base.service';
9
+ import { ExplorerServiceInterface, CreateFolderRequestParams, CreateFoldersBatchRequestParams, DeleteFilesBatchRequestParams, DeleteFolderRequestParams, DeleteFoldersBatchRequestParams, ReadFileKeyRequestParams, ReadFilesystemRequestParams, ReadFolderKeyRequestParams, ReadFolderPathRequestParams, ReadFolderSpecificationRequestParams, UpdateFolderRequestParams } from './explorerServiceInterface';
10
+ import * as i0 from "@angular/core";
11
+ export declare class ExplorerService extends BaseService implements ExplorerServiceInterface {
12
+ protected httpClient: HttpClient;
13
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
14
+ /**
15
+ * Create folder
16
+ * Create new folder.
17
+ * @param requestParameters
18
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
19
+ * @param reportProgress flag to report request and response progress.
20
+ */
21
+ createFolder(requestParameters: CreateFolderRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
22
+ httpHeaderAccept?: 'application/json';
23
+ context?: HttpContext;
24
+ transferCache?: boolean;
25
+ }): Observable<string>;
26
+ createFolder(requestParameters: CreateFolderRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
27
+ httpHeaderAccept?: 'application/json';
28
+ context?: HttpContext;
29
+ transferCache?: boolean;
30
+ }): Observable<HttpResponse<string>>;
31
+ createFolder(requestParameters: CreateFolderRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
32
+ httpHeaderAccept?: 'application/json';
33
+ context?: HttpContext;
34
+ transferCache?: boolean;
35
+ }): Observable<HttpEvent<string>>;
36
+ /**
37
+ * Create folders (batch)
38
+ * Create new folder (batch).
39
+ * @param requestParameters
40
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
41
+ * @param reportProgress flag to report request and response progress.
42
+ */
43
+ createFoldersBatch(requestParameters: CreateFoldersBatchRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
44
+ httpHeaderAccept?: 'application/json';
45
+ context?: HttpContext;
46
+ transferCache?: boolean;
47
+ }): Observable<string>;
48
+ createFoldersBatch(requestParameters: CreateFoldersBatchRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
49
+ httpHeaderAccept?: 'application/json';
50
+ context?: HttpContext;
51
+ transferCache?: boolean;
52
+ }): Observable<HttpResponse<string>>;
53
+ createFoldersBatch(requestParameters: CreateFoldersBatchRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
54
+ httpHeaderAccept?: 'application/json';
55
+ context?: HttpContext;
56
+ transferCache?: boolean;
57
+ }): Observable<HttpEvent<string>>;
58
+ /**
59
+ * Files removal (batch)
60
+ * Batch delete files.
61
+ * @param requestParameters
62
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
63
+ * @param reportProgress flag to report request and response progress.
64
+ */
65
+ deleteFilesBatch(requestParameters: DeleteFilesBatchRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
66
+ httpHeaderAccept?: 'application/json';
67
+ context?: HttpContext;
68
+ transferCache?: boolean;
69
+ }): Observable<any>;
70
+ deleteFilesBatch(requestParameters: DeleteFilesBatchRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
71
+ httpHeaderAccept?: 'application/json';
72
+ context?: HttpContext;
73
+ transferCache?: boolean;
74
+ }): Observable<HttpResponse<any>>;
75
+ deleteFilesBatch(requestParameters: DeleteFilesBatchRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
76
+ httpHeaderAccept?: 'application/json';
77
+ context?: HttpContext;
78
+ transferCache?: boolean;
79
+ }): Observable<HttpEvent<any>>;
80
+ /**
81
+ * Folder removal
82
+ * Folder removal by key.
83
+ * @param requestParameters
84
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
85
+ * @param reportProgress flag to report request and response progress.
86
+ */
87
+ deleteFolder(requestParameters: DeleteFolderRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
88
+ httpHeaderAccept?: 'application/json';
89
+ context?: HttpContext;
90
+ transferCache?: boolean;
91
+ }): Observable<any>;
92
+ deleteFolder(requestParameters: DeleteFolderRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
93
+ httpHeaderAccept?: 'application/json';
94
+ context?: HttpContext;
95
+ transferCache?: boolean;
96
+ }): Observable<HttpResponse<any>>;
97
+ deleteFolder(requestParameters: DeleteFolderRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
98
+ httpHeaderAccept?: 'application/json';
99
+ context?: HttpContext;
100
+ transferCache?: boolean;
101
+ }): Observable<HttpEvent<any>>;
102
+ /**
103
+ * Folders removal (batch)
104
+ * Batch delete folders.
105
+ * @param requestParameters
106
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
107
+ * @param reportProgress flag to report request and response progress.
108
+ */
109
+ deleteFoldersBatch(requestParameters: DeleteFoldersBatchRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
110
+ httpHeaderAccept?: 'application/json';
111
+ context?: HttpContext;
112
+ transferCache?: boolean;
113
+ }): Observable<any>;
114
+ deleteFoldersBatch(requestParameters: DeleteFoldersBatchRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
115
+ httpHeaderAccept?: 'application/json';
116
+ context?: HttpContext;
117
+ transferCache?: boolean;
118
+ }): Observable<HttpResponse<any>>;
119
+ deleteFoldersBatch(requestParameters: DeleteFoldersBatchRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
120
+ httpHeaderAccept?: 'application/json';
121
+ context?: HttpContext;
122
+ transferCache?: boolean;
123
+ }): Observable<HttpEvent<any>>;
124
+ /**
125
+ * File key
126
+ * Getting a file key by path.
127
+ * @param requestParameters
128
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
129
+ * @param reportProgress flag to report request and response progress.
130
+ */
131
+ readFileKey(requestParameters: ReadFileKeyRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
132
+ httpHeaderAccept?: 'application/json';
133
+ context?: HttpContext;
134
+ transferCache?: boolean;
135
+ }): Observable<string>;
136
+ readFileKey(requestParameters: ReadFileKeyRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
137
+ httpHeaderAccept?: 'application/json';
138
+ context?: HttpContext;
139
+ transferCache?: boolean;
140
+ }): Observable<HttpResponse<string>>;
141
+ readFileKey(requestParameters: ReadFileKeyRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
142
+ httpHeaderAccept?: 'application/json';
143
+ context?: HttpContext;
144
+ transferCache?: boolean;
145
+ }): Observable<HttpEvent<string>>;
146
+ /**
147
+ * Getting a filesystem
148
+ * Getting a filesystem.
149
+ * @param requestParameters
150
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
151
+ * @param reportProgress flag to report request and response progress.
152
+ */
153
+ readFilesystem(requestParameters?: ReadFilesystemRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
154
+ httpHeaderAccept?: 'application/json';
155
+ context?: HttpContext;
156
+ transferCache?: boolean;
157
+ }): Observable<FilesystemRegistry>;
158
+ readFilesystem(requestParameters?: ReadFilesystemRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
159
+ httpHeaderAccept?: 'application/json';
160
+ context?: HttpContext;
161
+ transferCache?: boolean;
162
+ }): Observable<HttpResponse<FilesystemRegistry>>;
163
+ readFilesystem(requestParameters?: ReadFilesystemRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
164
+ httpHeaderAccept?: 'application/json';
165
+ context?: HttpContext;
166
+ transferCache?: boolean;
167
+ }): Observable<HttpEvent<FilesystemRegistry>>;
168
+ /**
169
+ * Filesystem counters
170
+ * Getting a virtual filesystem counters.
171
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
172
+ * @param reportProgress flag to report request and response progress.
173
+ */
174
+ readFilesystemCounters(observe?: 'body', reportProgress?: boolean, options?: {
175
+ httpHeaderAccept?: 'application/json';
176
+ context?: HttpContext;
177
+ transferCache?: boolean;
178
+ }): Observable<FilesystemCountersRegistry>;
179
+ readFilesystemCounters(observe?: 'response', reportProgress?: boolean, options?: {
180
+ httpHeaderAccept?: 'application/json';
181
+ context?: HttpContext;
182
+ transferCache?: boolean;
183
+ }): Observable<HttpResponse<FilesystemCountersRegistry>>;
184
+ readFilesystemCounters(observe?: 'events', reportProgress?: boolean, options?: {
185
+ httpHeaderAccept?: 'application/json';
186
+ context?: HttpContext;
187
+ transferCache?: boolean;
188
+ }): Observable<HttpEvent<FilesystemCountersRegistry>>;
189
+ /**
190
+ * Folder key
191
+ * Getting a folder key by path.
192
+ * @param requestParameters
193
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
194
+ * @param reportProgress flag to report request and response progress.
195
+ */
196
+ readFolderKey(requestParameters: ReadFolderKeyRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
197
+ httpHeaderAccept?: 'application/json';
198
+ context?: HttpContext;
199
+ transferCache?: boolean;
200
+ }): Observable<string>;
201
+ readFolderKey(requestParameters: ReadFolderKeyRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
202
+ httpHeaderAccept?: 'application/json';
203
+ context?: HttpContext;
204
+ transferCache?: boolean;
205
+ }): Observable<HttpResponse<string>>;
206
+ readFolderKey(requestParameters: ReadFolderKeyRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
207
+ httpHeaderAccept?: 'application/json';
208
+ context?: HttpContext;
209
+ transferCache?: boolean;
210
+ }): Observable<HttpEvent<string>>;
211
+ /**
212
+ * Folder path
213
+ * Folder path.
214
+ * @param requestParameters
215
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
216
+ * @param reportProgress flag to report request and response progress.
217
+ */
218
+ readFolderPath(requestParameters: ReadFolderPathRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
219
+ httpHeaderAccept?: 'application/json';
220
+ context?: HttpContext;
221
+ transferCache?: boolean;
222
+ }): Observable<FilesystemPathRegistry>;
223
+ readFolderPath(requestParameters: ReadFolderPathRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
224
+ httpHeaderAccept?: 'application/json';
225
+ context?: HttpContext;
226
+ transferCache?: boolean;
227
+ }): Observable<HttpResponse<FilesystemPathRegistry>>;
228
+ readFolderPath(requestParameters: ReadFolderPathRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
229
+ httpHeaderAccept?: 'application/json';
230
+ context?: HttpContext;
231
+ transferCache?: boolean;
232
+ }): Observable<HttpEvent<FilesystemPathRegistry>>;
233
+ /**
234
+ * Folder specification
235
+ * Getting a folder specification.
236
+ * @param requestParameters
237
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
238
+ * @param reportProgress flag to report request and response progress.
239
+ */
240
+ readFolderSpecification(requestParameters: ReadFolderSpecificationRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
241
+ httpHeaderAccept?: 'application/json';
242
+ context?: HttpContext;
243
+ transferCache?: boolean;
244
+ }): Observable<FolderSpecificationRegistry>;
245
+ readFolderSpecification(requestParameters: ReadFolderSpecificationRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
246
+ httpHeaderAccept?: 'application/json';
247
+ context?: HttpContext;
248
+ transferCache?: boolean;
249
+ }): Observable<HttpResponse<FolderSpecificationRegistry>>;
250
+ readFolderSpecification(requestParameters: ReadFolderSpecificationRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
251
+ httpHeaderAccept?: 'application/json';
252
+ context?: HttpContext;
253
+ transferCache?: boolean;
254
+ }): Observable<HttpEvent<FolderSpecificationRegistry>>;
255
+ /**
256
+ * Update folder
257
+ * Rename and move folder.
258
+ * @param requestParameters
259
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
260
+ * @param reportProgress flag to report request and response progress.
261
+ */
262
+ updateFolder(requestParameters: UpdateFolderRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
263
+ httpHeaderAccept?: 'application/json';
264
+ context?: HttpContext;
265
+ transferCache?: boolean;
266
+ }): Observable<FilesystemRegistry>;
267
+ updateFolder(requestParameters: UpdateFolderRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
268
+ httpHeaderAccept?: 'application/json';
269
+ context?: HttpContext;
270
+ transferCache?: boolean;
271
+ }): Observable<HttpResponse<FilesystemRegistry>>;
272
+ updateFolder(requestParameters: UpdateFolderRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
273
+ httpHeaderAccept?: 'application/json';
274
+ context?: HttpContext;
275
+ transferCache?: boolean;
276
+ }): Observable<HttpEvent<FilesystemRegistry>>;
277
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExplorerService, [null, { optional: true; }, { optional: true; }]>;
278
+ static ɵprov: i0.ɵɵInjectableDeclaration<ExplorerService>;
279
+ }
@@ -0,0 +1,132 @@
1
+ /**
2
+ * VRt.Registry [RG]
3
+ *
4
+ * The version of the OpenAPI document: 7.25.3009
5
+ * Contact: servicedesk@veeroute.com
6
+ *
7
+ * NOTE: This class is auto generated by OpenAPI Generator.
8
+ * Do not edit the class manually.
9
+ */
10
+ import { HttpHeaders } from '@angular/common/http';
11
+ import { Observable } from 'rxjs';
12
+ import { FileNamePathRegistry } from '../model/models';
13
+ import { FilesystemColumnTypeRegistry } from '../model/models';
14
+ import { FilesystemCountersRegistry } from '../model/models';
15
+ import { FilesystemPathRegistry } from '../model/models';
16
+ import { FilesystemRegistry } from '../model/models';
17
+ import { FolderSpecificationRegistry } from '../model/models';
18
+ import { Configuration } from '../configuration';
19
+ export interface CreateFolderRequestParams {
20
+ folderSpecificationRegistry: FolderSpecificationRegistry;
21
+ }
22
+ export interface CreateFoldersBatchRequestParams {
23
+ requestBody: Array<string>;
24
+ }
25
+ export interface DeleteFilesBatchRequestParams {
26
+ requestBody: Array<string>;
27
+ }
28
+ export interface DeleteFolderRequestParams {
29
+ folderKey: string;
30
+ }
31
+ export interface DeleteFoldersBatchRequestParams {
32
+ requestBody: Array<string>;
33
+ }
34
+ export interface ReadFileKeyRequestParams {
35
+ fileNamePathRegistry: FileNamePathRegistry;
36
+ }
37
+ export interface ReadFilesystemRequestParams {
38
+ folderKey?: string;
39
+ filter?: string;
40
+ offset?: number;
41
+ limit?: number;
42
+ sortField?: FilesystemColumnTypeRegistry;
43
+ sortDirection?: 'ASC' | 'DESC';
44
+ }
45
+ export interface ReadFolderKeyRequestParams {
46
+ requestBody: Array<string>;
47
+ }
48
+ export interface ReadFolderPathRequestParams {
49
+ folderKey: string;
50
+ }
51
+ export interface ReadFolderSpecificationRequestParams {
52
+ folderKey: string;
53
+ }
54
+ export interface UpdateFolderRequestParams {
55
+ folderKey: string;
56
+ folderSpecificationRegistry: FolderSpecificationRegistry;
57
+ }
58
+ export interface ExplorerServiceInterface {
59
+ defaultHeaders: HttpHeaders;
60
+ configuration: Configuration;
61
+ /**
62
+ * Create folder
63
+ * Create new folder.
64
+ * @param requestParameters
65
+ */
66
+ createFolder(requestParameters: CreateFolderRequestParams, extraHttpRequestParams?: any): Observable<string>;
67
+ /**
68
+ * Create folders (batch)
69
+ * Create new folder (batch).
70
+ * @param requestParameters
71
+ */
72
+ createFoldersBatch(requestParameters: CreateFoldersBatchRequestParams, extraHttpRequestParams?: any): Observable<string>;
73
+ /**
74
+ * Files removal (batch)
75
+ * Batch delete files.
76
+ * @param requestParameters
77
+ */
78
+ deleteFilesBatch(requestParameters: DeleteFilesBatchRequestParams, extraHttpRequestParams?: any): Observable<{}>;
79
+ /**
80
+ * Folder removal
81
+ * Folder removal by key.
82
+ * @param requestParameters
83
+ */
84
+ deleteFolder(requestParameters: DeleteFolderRequestParams, extraHttpRequestParams?: any): Observable<{}>;
85
+ /**
86
+ * Folders removal (batch)
87
+ * Batch delete folders.
88
+ * @param requestParameters
89
+ */
90
+ deleteFoldersBatch(requestParameters: DeleteFoldersBatchRequestParams, extraHttpRequestParams?: any): Observable<{}>;
91
+ /**
92
+ * File key
93
+ * Getting a file key by path.
94
+ * @param requestParameters
95
+ */
96
+ readFileKey(requestParameters: ReadFileKeyRequestParams, extraHttpRequestParams?: any): Observable<string>;
97
+ /**
98
+ * Getting a filesystem
99
+ * Getting a filesystem.
100
+ * @param requestParameters
101
+ */
102
+ readFilesystem(requestParameters: ReadFilesystemRequestParams, extraHttpRequestParams?: any): Observable<FilesystemRegistry>;
103
+ /**
104
+ * Filesystem counters
105
+ * Getting a virtual filesystem counters.
106
+ */
107
+ readFilesystemCounters(extraHttpRequestParams?: any): Observable<FilesystemCountersRegistry>;
108
+ /**
109
+ * Folder key
110
+ * Getting a folder key by path.
111
+ * @param requestParameters
112
+ */
113
+ readFolderKey(requestParameters: ReadFolderKeyRequestParams, extraHttpRequestParams?: any): Observable<string>;
114
+ /**
115
+ * Folder path
116
+ * Folder path.
117
+ * @param requestParameters
118
+ */
119
+ readFolderPath(requestParameters: ReadFolderPathRequestParams, extraHttpRequestParams?: any): Observable<FilesystemPathRegistry>;
120
+ /**
121
+ * Folder specification
122
+ * Getting a folder specification.
123
+ * @param requestParameters
124
+ */
125
+ readFolderSpecification(requestParameters: ReadFolderSpecificationRequestParams, extraHttpRequestParams?: any): Observable<FolderSpecificationRegistry>;
126
+ /**
127
+ * Update folder
128
+ * Rename and move folder.
129
+ * @param requestParameters
130
+ */
131
+ updateFolder(requestParameters: UpdateFolderRequestParams, extraHttpRequestParams?: any): Observable<FilesystemRegistry>;
132
+ }
@@ -0,0 +1,78 @@
1
+ import { HttpClient, HttpResponse, HttpEvent, HttpContext } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { CheckResultRegistry } from '../model/checkResult';
4
+ import { VersionResultRegistry } from '../model/versionResult';
5
+ import { Configuration } from '../configuration';
6
+ import { BaseService } from '../api.base.service';
7
+ import { SystemServiceInterface, FileRequestParams } from './systemServiceInterface';
8
+ import * as i0 from "@angular/core";
9
+ export declare class SystemService extends BaseService implements SystemServiceInterface {
10
+ protected httpClient: HttpClient;
11
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
12
+ /**
13
+ * Checking the availability
14
+ * Checking the service availability.
15
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
16
+ * @param reportProgress flag to report request and response progress.
17
+ */
18
+ check(observe?: 'body', reportProgress?: boolean, options?: {
19
+ httpHeaderAccept?: 'application/json';
20
+ context?: HttpContext;
21
+ transferCache?: boolean;
22
+ }): Observable<CheckResultRegistry>;
23
+ check(observe?: 'response', reportProgress?: boolean, options?: {
24
+ httpHeaderAccept?: 'application/json';
25
+ context?: HttpContext;
26
+ transferCache?: boolean;
27
+ }): Observable<HttpResponse<CheckResultRegistry>>;
28
+ check(observe?: 'events', reportProgress?: boolean, options?: {
29
+ httpHeaderAccept?: 'application/json';
30
+ context?: HttpContext;
31
+ transferCache?: boolean;
32
+ }): Observable<HttpEvent<CheckResultRegistry>>;
33
+ /**
34
+ * Getting the documentation
35
+ * Getting the file with this service documentation.
36
+ * @param requestParameters
37
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
38
+ * @param reportProgress flag to report request and response progress.
39
+ */
40
+ file(requestParameters: FileRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
41
+ httpHeaderAccept?: 'text/html' | 'text/plain' | 'application/json';
42
+ context?: HttpContext;
43
+ transferCache?: boolean;
44
+ }): Observable<string>;
45
+ file(requestParameters: FileRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
46
+ httpHeaderAccept?: 'text/html' | 'text/plain' | 'application/json';
47
+ context?: HttpContext;
48
+ transferCache?: boolean;
49
+ }): Observable<HttpResponse<string>>;
50
+ file(requestParameters: FileRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
51
+ httpHeaderAccept?: 'text/html' | 'text/plain' | 'application/json';
52
+ context?: HttpContext;
53
+ transferCache?: boolean;
54
+ }): Observable<HttpEvent<string>>;
55
+ /**
56
+ * Getting the service version
57
+ * Getting the service version.
58
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
59
+ * @param reportProgress flag to report request and response progress.
60
+ */
61
+ version(observe?: 'body', reportProgress?: boolean, options?: {
62
+ httpHeaderAccept?: 'application/json';
63
+ context?: HttpContext;
64
+ transferCache?: boolean;
65
+ }): Observable<VersionResultRegistry>;
66
+ version(observe?: 'response', reportProgress?: boolean, options?: {
67
+ httpHeaderAccept?: 'application/json';
68
+ context?: HttpContext;
69
+ transferCache?: boolean;
70
+ }): Observable<HttpResponse<VersionResultRegistry>>;
71
+ version(observe?: 'events', reportProgress?: boolean, options?: {
72
+ httpHeaderAccept?: 'application/json';
73
+ context?: HttpContext;
74
+ transferCache?: boolean;
75
+ }): Observable<HttpEvent<VersionResultRegistry>>;
76
+ static ɵfac: i0.ɵɵFactoryDeclaration<SystemService, [null, { optional: true; }, { optional: true; }]>;
77
+ static ɵprov: i0.ɵɵInjectableDeclaration<SystemService>;
78
+ }
@@ -0,0 +1,37 @@
1
+ /**
2
+ * VRt.Registry [RG]
3
+ *
4
+ * The version of the OpenAPI document: 7.25.3009
5
+ * Contact: servicedesk@veeroute.com
6
+ *
7
+ * NOTE: This class is auto generated by OpenAPI Generator.
8
+ * Do not edit the class manually.
9
+ */
10
+ import { HttpHeaders } from '@angular/common/http';
11
+ import { Observable } from 'rxjs';
12
+ import { CheckResultRegistry } from '../model/models';
13
+ import { VersionResultRegistry } from '../model/models';
14
+ import { Configuration } from '../configuration';
15
+ export interface FileRequestParams {
16
+ filename: string;
17
+ }
18
+ export interface SystemServiceInterface {
19
+ defaultHeaders: HttpHeaders;
20
+ configuration: Configuration;
21
+ /**
22
+ * Checking the availability
23
+ * Checking the service availability.
24
+ */
25
+ check(extraHttpRequestParams?: any): Observable<CheckResultRegistry>;
26
+ /**
27
+ * Getting the documentation
28
+ * Getting the file with this service documentation.
29
+ * @param requestParameters
30
+ */
31
+ file(requestParameters: FileRequestParams, extraHttpRequestParams?: any): Observable<string>;
32
+ /**
33
+ * Getting the service version
34
+ * Getting the service version.
35
+ */
36
+ version(extraHttpRequestParams?: any): Observable<VersionResultRegistry>;
37
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * VRt.Registry [RG]
3
+ *
4
+ * The version of the OpenAPI document: 7.25.3009
5
+ * Contact: servicedesk@veeroute.com
6
+ *
7
+ * NOTE: This class is auto generated by OpenAPI Generator.
8
+ * Do not edit the class manually.
9
+ */
10
+ import { HttpHeaders, HttpParams, HttpParameterCodec } from '@angular/common/http';
11
+ import { Configuration } from './configuration';
12
+ export declare class BaseService {
13
+ protected basePath: string;
14
+ defaultHeaders: HttpHeaders;
15
+ configuration: Configuration;
16
+ encoder: HttpParameterCodec;
17
+ constructor(basePath?: string | string[], configuration?: Configuration);
18
+ protected canConsumeForm(consumes: string[]): boolean;
19
+ protected addToHttpParams(httpParams: HttpParams, value: any, key?: string, isDeep?: boolean): HttpParams;
20
+ protected addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string, isDeep?: boolean): HttpParams;
21
+ }
@@ -0,0 +1,11 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import { Configuration } from './configuration';
3
+ import { HttpClient } from '@angular/common/http';
4
+ import * as i0 from "@angular/core";
5
+ export declare class LssRegistryApiModule {
6
+ static forRoot(configurationFactory: () => Configuration): ModuleWithProviders<LssRegistryApiModule>;
7
+ constructor(parentModule: LssRegistryApiModule, http: HttpClient);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<LssRegistryApiModule, [{ optional: true; skipSelf: true; }, { optional: true; }]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LssRegistryApiModule, never, never, never>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<LssRegistryApiModule>;
11
+ }