-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapispec.py
More file actions
497 lines (434 loc) · 15.3 KB
/
apispec.py
File metadata and controls
497 lines (434 loc) · 15.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
# generated by datamodel-codegen:
# filename: api.spec.yaml
# timestamp: 2026-01-27T08:42:00+00:00
from __future__ import annotations
from datetime import datetime
from enum import Enum
from typing import Any, Dict, List, Optional, Union
from pydantic import ConfigDict, Field, RootModel
from renku_data_services.data_connectors.apispec_base import BaseAPISpec
class Example(BaseAPISpec):
value: str = Field(..., description="a potential value for the option (think enum)")
help: str = Field(..., description="help text for the value")
provider: Optional[str] = Field(
None,
description="The provider this value is applicable for. Empty if valid for all providers.",
)
class Type(Enum):
int = "int"
bool = "bool"
string = "string"
stringArray = "stringArray"
Time = "Time"
Duration = "Duration"
MultiEncoder = "MultiEncoder"
SizeSuffix = "SizeSuffix"
SpaceSepList = "SpaceSepList"
CommaSepList = "CommaSepList"
Tristate = "Tristate"
Encoding = "Encoding"
Bits = "Bits"
class RCloneOption(BaseAPISpec):
name: str = Field(..., description="name of the option")
help: str = Field(..., description="help text for the option")
provider: Optional[str] = Field(
None,
description="The cloud provider the option is for (See 'provider' RCloneOption in the schema for potential values)",
examples=["AWS"],
)
default: Union[float, str, bool, Dict[str, Any], List] = Field(
..., description="default value for the option"
)
default_str: str = Field(
..., description="string representation of the default value"
)
examples: Optional[List[Example]] = Field(
None,
description="These list potential values for this option, like an enum. With `exclusive: true`, only a value from the list is allowed.",
)
required: bool = Field(..., description="whether the option is required or not")
ispassword: bool = Field(
..., description="whether the field is a password (use **** for display)"
)
sensitive: bool = Field(
...,
description="whether the value is sensitive (not stored in the service). Do not send this in requests to the service.",
)
advanced: bool = Field(
...,
description="whether this is an advanced config option (probably don't show these to users)",
)
exclusive: bool = Field(
..., description="if true, only values from 'examples' can be used"
)
type: Type = Field(
...,
description="data type of option value. RClone has more options but they map to the ones listed here.",
)
class Visibility(Enum):
private = "private"
public = "public"
class Keyword(RootModel[str]):
root: str = Field(..., description="A single keyword", max_length=99, min_length=1)
class DataConnectorPermissions(BaseAPISpec):
write: Optional[bool] = Field(
None, description="The user can edit the data connector"
)
delete: Optional[bool] = Field(
None, description="The user can delete the data connector"
)
change_membership: Optional[bool] = Field(
None, description="The user can manage data connector members"
)
class PaginationRequest(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
page: int = Field(1, description="Result's page number starting from 1", ge=1)
per_page: int = Field(
20, description="The number of results per page", ge=1, le=100
)
class Error(BaseAPISpec):
code: int = Field(..., examples=[1404], gt=0)
detail: Optional[str] = Field(
None, examples=["A more detailed optional message showing what the problem was"]
)
message: str = Field(
..., examples=["Something went wrong - please try again later"]
)
class ErrorResponse(BaseAPISpec):
error: Error
class InaccessibleDataConnectorLinks(BaseAPISpec):
count: Optional[int] = Field(
None,
description="The number of data links the user does not have access to",
ge=0,
)
class DataConnectorsSearchGetParametersQuery(BaseAPISpec):
doi: str = Field(..., description="A DOI.", examples=["10.16904/envidat.33"])
class DataConnectorsDataConnectorIdProjectLinksGetParametersQuery(BaseAPISpec):
params: Optional[PaginationRequest] = None
class CloudStorageCore(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
storage_type: str = Field(
...,
description="same as rclone prefix/ rclone config type. Ignored in requests, but returned in responses for convenience.",
)
configuration: Dict[str, Union[int, Optional[str], bool, Dict[str, Any]]]
source_path: str = Field(
...,
description="the source path to mount, usually starts with bucket/container name",
examples=["bucket/my/storage/folder/"],
)
target_path: str = Field(
...,
description="the target path relative to the working directory where the storage should be mounted",
examples=["my/project/folder"],
)
readonly: bool = Field(
..., description="Whether this storage should be mounted readonly or not"
)
sensitive_fields: List[RCloneOption]
class CloudStorageCorePost(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
storage_type: Optional[str] = Field(
None,
description="same as rclone prefix/ rclone config type. Ignored in requests, but returned in responses for convenience.",
)
configuration: Dict[str, Union[int, Optional[str], bool, Dict[str, Any]]]
source_path: str = Field(
...,
description="the source path to mount, usually starts with bucket/container name",
examples=["bucket/my/storage/folder/"],
)
target_path: str = Field(
...,
description="the target path relative to the working directory where the storage should be mounted",
examples=["my/project/folder"],
)
readonly: bool = Field(
True, description="Whether this storage should be mounted readonly or not"
)
class CloudStorageCorePatch(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
storage_type: Optional[str] = Field(
None,
description="same as rclone prefix/ rclone config type. Ignored in requests, but returned in responses for convenience.",
)
configuration: Optional[
Dict[str, Union[int, Optional[str], bool, Dict[str, Any]]]
] = None
source_path: Optional[str] = Field(
None,
description="the source path to mount, usually starts with bucket/container name",
examples=["bucket/my/storage/folder/"],
)
target_path: Optional[str] = Field(
None,
description="the target path relative to the working directory where the storage should be mounted",
examples=["my/project/folder"],
)
readonly: Optional[bool] = Field(
True, description="Whether this storage should be mounted readonly or not"
)
class CloudStorageUrlV2(BaseAPISpec):
storage_url: str
target_path: str = Field(
...,
description="the target path relative to the working directory where the storage should be mounted",
examples=["my/project/folder"],
)
readonly: bool = Field(
True, description="Whether this storage should be mounted readonly or not"
)
class DataConnectorToProjectLink(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
id: str = Field(
...,
description="ULID identifier",
max_length=26,
min_length=26,
pattern="^[0-7][0-9A-HJKMNP-TV-Z]{25}$",
)
data_connector_id: str = Field(
...,
description="ULID identifier",
max_length=26,
min_length=26,
pattern="^[0-7][0-9A-HJKMNP-TV-Z]{25}$",
)
project_id: str = Field(
...,
description="ULID identifier",
max_length=26,
min_length=26,
pattern="^[0-7][0-9A-HJKMNP-TV-Z]{25}$",
)
project_path: str = Field(
...,
description="The path to the project page",
examples=["namespace/project-slug"],
)
creation_date: datetime = Field(
...,
description="The date and time the resource was created (in UTC and ISO-8601 format)",
examples=["2023-11-01T17:32:28Z"],
)
created_by: str = Field(
...,
description="Keycloak user ID",
examples=["f74a228b-1790-4276-af5f-25c2424e9b0c"],
pattern="^[A-Za-z0-9]{1}[A-Za-z0-9-]+$",
)
class DataConnectorToProjectLinkPost(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
project_id: str = Field(
...,
description="ULID identifier",
max_length=26,
min_length=26,
pattern="^[0-7][0-9A-HJKMNP-TV-Z]{25}$",
)
class DataConnectorSecret(BaseAPISpec):
name: str = Field(
...,
description="Name of the credential field",
examples=["secret_key"],
max_length=99,
min_length=1,
)
secret_id: str = Field(
...,
description="ULID identifier",
max_length=26,
min_length=26,
pattern="^[0-7][0-9A-HJKMNP-TV-Z]{25}$",
)
class DataConnectorSecretPatch(BaseAPISpec):
name: str = Field(
...,
description="Name of the credential field",
examples=["secret_key"],
max_length=99,
min_length=1,
)
value: Optional[str] = Field(
...,
description="Secret value that can be any text",
examples=["My secret value"],
max_length=5000,
min_length=1,
)
class DataConnectorsGetQuery(PaginationRequest):
namespace: str = Field("", description="A namespace, used as a filter.")
class DataConnectorsGetParametersQuery(BaseAPISpec):
params: Optional[DataConnectorsGetQuery] = None
class DataConnector(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
id: str = Field(
...,
description="ULID identifier",
max_length=26,
min_length=26,
pattern="^[0-7][0-9A-HJKMNP-TV-Z]{25}$",
)
name: str = Field(
...,
description="Renku data connector name",
examples=["My Remote Data :)"],
max_length=99,
min_length=1,
)
namespace: Optional[str] = Field(
None,
description="A command-line/url friendly name for a namespace",
examples=["a-slug-example"],
min_length=1,
)
slug: str = Field(
...,
description="A command-line/url friendly name for a namespace",
examples=["a-slug-example"],
min_length=1,
)
storage: CloudStorageCore
creation_date: datetime = Field(
...,
description="The date and time the resource was created (in UTC and ISO-8601 format)",
examples=["2023-11-01T17:32:28Z"],
)
created_by: str = Field(
...,
description="Keycloak user ID",
examples=["f74a228b-1790-4276-af5f-25c2424e9b0c"],
pattern="^[A-Za-z0-9]{1}[A-Za-z0-9-]+$",
)
visibility: Visibility
description: Optional[str] = Field(
None, description="A description for the resource", max_length=500
)
etag: str = Field(
..., description="Entity Tag", examples=["9EE498F9D565D0C41E511377425F32F3"]
)
keywords: Optional[List[Keyword]] = Field(
None,
description="Project keywords",
examples=[["project", "keywords"]],
min_length=0,
)
doi: Optional[str] = Field(
None, description="A DOI.", examples=["10.16904/envidat.33"]
)
publisher_name: Optional[str] = Field(
None, description="The publisher of the dataset."
)
publisher_url: Optional[str] = Field(
None, description="The URL for the publisher of the dataset."
)
class DataConnectorPost(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
name: str = Field(
...,
description="Renku data connector name",
examples=["My Remote Data :)"],
max_length=99,
min_length=1,
)
namespace: Optional[str] = Field(
None,
description="A command-line/url friendly name for a single slug or two slugs separated by /",
examples=["user1/project-1"],
max_length=200,
min_length=1,
pattern="^(?!.*\\.git$|.*\\.atom$|.*[\\-._][\\-._].*)[a-z0-9][a-z0-9\\-_.]*(?<!\\.git)(?<!\\.atom)(?:/[a-z0-9][a-z0-9\\-_.]*){0,1}$",
)
slug: Optional[str] = Field(
None,
description="A command-line/url friendly name for a namespace",
examples=["a-slug-example"],
max_length=99,
min_length=1,
pattern="^(?!.*\\.git$|.*\\.atom$|.*[\\-._][\\-._].*)[a-z0-9][a-z0-9\\-_.]*$",
)
storage: Union[CloudStorageCorePost, CloudStorageUrlV2]
visibility: Visibility = Visibility.private
description: Optional[str] = Field(
None, description="A description for the resource", max_length=500
)
keywords: Optional[List[Keyword]] = Field(
None,
description="Project keywords",
examples=[["project", "keywords"]],
min_length=0,
)
class GlobalDataConnectorPost(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
storage: Union[CloudStorageCorePost, CloudStorageUrlV2]
class DataConnectorPatch(BaseAPISpec):
model_config = ConfigDict(
extra="forbid",
)
name: Optional[str] = Field(
None,
description="Renku data connector name",
examples=["My Remote Data :)"],
max_length=99,
min_length=1,
)
namespace: Optional[str] = Field(
None,
description="A command-line/url friendly name for a single slug or two slugs separated by /",
examples=["user1/project-1"],
max_length=200,
min_length=1,
pattern="^(?!.*\\.git$|.*\\.atom$|.*[\\-._][\\-._].*)[a-z0-9][a-z0-9\\-_.]*(?<!\\.git)(?<!\\.atom)(?:/[a-z0-9][a-z0-9\\-_.]*){0,1}$",
)
slug: Optional[str] = Field(
None,
description="A command-line/url friendly name for a namespace",
examples=["a-slug-example"],
max_length=99,
min_length=1,
pattern="^(?!.*\\.git$|.*\\.atom$|.*[\\-._][\\-._].*)[a-z0-9][a-z0-9\\-_.]*$",
)
storage: Optional[CloudStorageCorePatch] = None
visibility: Optional[Visibility] = None
description: Optional[str] = Field(
None, description="A description for the resource", max_length=500
)
keywords: Optional[List[Keyword]] = Field(
None,
description="Project keywords",
examples=[["project", "keywords"]],
min_length=0,
)
class DataConnectorToProjectLinksList(RootModel[List[DataConnectorToProjectLink]]):
root: List[DataConnectorToProjectLink] = Field(
..., description="A list of links from a data connector to a project"
)
class DataConnectorSecretsList(RootModel[List[DataConnectorSecret]]):
root: List[DataConnectorSecret] = Field(
..., description="A list of data connectors"
)
class DataConnectorSecretPatchList(RootModel[List[DataConnectorSecretPatch]]):
root: List[DataConnectorSecretPatch] = Field(
..., description="List of secrets to be saved for a data connector"
)
class DataConnectorsList(RootModel[List[DataConnector]]):
root: List[DataConnector] = Field(..., description="A list of data connectors")