-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathopenapi.yaml
More file actions
19119 lines (19089 loc) · 442 KB
/
openapi.yaml
File metadata and controls
19119 lines (19089 loc) · 442 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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: Artifact Keeper API
description: Enterprise artifact registry supporting 45+ package formats.
contact:
name: Artifact Keeper
url: https://artifactkeeper.com
license:
name: MIT
url: https://opensource.org/licenses/MIT
version: 1.0.0-rc.3
servers:
- url: /
description: Current server
paths:
/api/v1/admin/analytics/artifacts/stale:
get:
tags:
- analytics
summary: GET /api/v1/admin/analytics/artifacts/stale
operationId: get_stale_artifacts
parameters:
- name: days
in: query
required: false
schema:
type:
- integer
- 'null'
format: int32
- name: limit
in: query
required: false
schema:
type:
- integer
- 'null'
format: int64
responses:
'200':
description: List of stale artifacts
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/StaleArtifact'
security:
- bearer_auth: []
/api/v1/admin/analytics/downloads/trend:
get:
tags:
- analytics
summary: GET /api/v1/admin/analytics/downloads/trend
operationId: get_download_trends
parameters:
- name: from
in: query
required: false
schema:
type:
- string
- 'null'
- name: to
in: query
required: false
schema:
type:
- string
- 'null'
responses:
'200':
description: Download trends over date range
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/DownloadTrend'
security:
- bearer_auth: []
/api/v1/admin/analytics/repositories/{id}/trend:
get:
tags:
- analytics
summary: GET /api/v1/admin/analytics/repositories/{id}/trend
operationId: get_repository_trend
parameters:
- name: id
in: path
description: Repository ID
required: true
schema:
type: string
format: uuid
- name: from
in: query
required: false
schema:
type:
- string
- 'null'
- name: to
in: query
required: false
schema:
type:
- string
- 'null'
responses:
'200':
description: Repository storage trend over date range
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/RepositorySnapshot'
security:
- bearer_auth: []
/api/v1/admin/analytics/snapshot:
post:
tags:
- analytics
summary: POST /api/v1/admin/analytics/snapshot - manually trigger a snapshot
operationId: capture_snapshot
responses:
'200':
description: Snapshot captured successfully
content:
application/json:
schema:
$ref: '#/components/schemas/StorageSnapshot'
security:
- bearer_auth: []
/api/v1/admin/analytics/storage/breakdown:
get:
tags:
- analytics
summary: GET /api/v1/admin/analytics/storage/breakdown
operationId: get_storage_breakdown
responses:
'200':
description: Per-repository storage breakdown
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/RepositoryStorageBreakdown'
security:
- bearer_auth: []
/api/v1/admin/analytics/storage/growth:
get:
tags:
- analytics
summary: GET /api/v1/admin/analytics/storage/growth
operationId: get_growth_summary
parameters:
- name: from
in: query
required: false
schema:
type:
- string
- 'null'
- name: to
in: query
required: false
schema:
type:
- string
- 'null'
responses:
'200':
description: Growth summary for date range
content:
application/json:
schema:
$ref: '#/components/schemas/GrowthSummary'
security:
- bearer_auth: []
/api/v1/admin/analytics/storage/trend:
get:
tags:
- analytics
summary: GET /api/v1/admin/analytics/storage/trend
operationId: get_storage_trend
parameters:
- name: from
in: query
required: false
schema:
type:
- string
- 'null'
- name: to
in: query
required: false
schema:
type:
- string
- 'null'
responses:
'200':
description: Storage trend over date range
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/StorageSnapshot'
security:
- bearer_auth: []
/api/v1/admin/backups:
get:
tags:
- admin
summary: List backups
operationId: list_backups
parameters:
- name: status
in: query
required: false
schema:
type:
- string
- 'null'
- name: type
in: query
required: false
schema:
type:
- string
- 'null'
- name: page
in: query
required: false
schema:
type:
- integer
- 'null'
format: int32
minimum: 0
- name: per_page
in: query
required: false
schema:
type:
- integer
- 'null'
format: int32
minimum: 0
responses:
'200':
description: List of backups
content:
application/json:
schema:
$ref: '#/components/schemas/BackupListResponse'
'500':
description: Internal server error
security:
- bearer_auth: []
post:
tags:
- admin
summary: Create backup
operationId: create_backup
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateBackupRequest'
required: true
responses:
'200':
description: Backup created
content:
application/json:
schema:
$ref: '#/components/schemas/BackupResponse'
'500':
description: Internal server error
security:
- bearer_auth: []
/api/v1/admin/backups/{id}:
get:
tags:
- admin
summary: Get backup by ID
operationId: get_backup
parameters:
- name: id
in: path
description: Backup ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Backup details
content:
application/json:
schema:
$ref: '#/components/schemas/BackupResponse'
'404':
description: Backup not found
'500':
description: Internal server error
security:
- bearer_auth: []
delete:
tags:
- admin
summary: Delete a backup
operationId: delete_backup
parameters:
- name: id
in: path
description: Backup ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Backup deleted
'404':
description: Backup not found
'500':
description: Internal server error
security:
- bearer_auth: []
/api/v1/admin/backups/{id}/cancel:
post:
tags:
- admin
summary: Cancel a running backup
operationId: cancel_backup
parameters:
- name: id
in: path
description: Backup ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Backup cancelled
'404':
description: Backup not found
'500':
description: Internal server error
security:
- bearer_auth: []
/api/v1/admin/backups/{id}/execute:
post:
tags:
- admin
summary: Execute a pending backup
operationId: execute_backup
parameters:
- name: id
in: path
description: Backup ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Backup executed
content:
application/json:
schema:
$ref: '#/components/schemas/BackupResponse'
'404':
description: Backup not found
'500':
description: Internal server error
security:
- bearer_auth: []
/api/v1/admin/backups/{id}/restore:
post:
tags:
- admin
summary: Restore from backup
operationId: restore_backup
parameters:
- name: id
in: path
description: Backup ID
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/RestoreRequest'
required: true
responses:
'200':
description: Backup restored
content:
application/json:
schema:
$ref: '#/components/schemas/RestoreResponse'
'404':
description: Backup not found
'500':
description: Internal server error
security:
- bearer_auth: []
/api/v1/admin/cleanup:
post:
tags:
- admin
summary: Run cleanup tasks
operationId: run_cleanup
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CleanupRequest'
required: true
responses:
'200':
description: Cleanup completed
content:
application/json:
schema:
$ref: '#/components/schemas/CleanupResponse'
'500':
description: Internal server error
security:
- bearer_auth: []
/api/v1/admin/lifecycle:
get:
tags:
- lifecycle
summary: GET /api/v1/admin/lifecycle
operationId: list_lifecycle_policies
parameters:
- name: repository_id
in: query
required: false
schema:
type:
- string
- 'null'
format: uuid
responses:
'200':
description: List lifecycle policies
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/LifecyclePolicy'
security:
- bearer_auth: []
post:
tags:
- lifecycle
summary: POST /api/v1/admin/lifecycle
operationId: create_lifecycle_policy
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreatePolicyRequest'
required: true
responses:
'200':
description: Policy created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/LifecyclePolicy'
security:
- bearer_auth: []
/api/v1/admin/lifecycle/execute-all:
post:
tags:
- lifecycle
summary: POST /api/v1/admin/lifecycle/execute-all
operationId: execute_all_policies
responses:
'200':
description: All enabled policies executed
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/PolicyExecutionResult'
security:
- bearer_auth: []
/api/v1/admin/lifecycle/{id}:
get:
tags:
- lifecycle
summary: GET /api/v1/admin/lifecycle/:id
operationId: get_lifecycle_policy
parameters:
- name: id
in: path
description: Policy ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Lifecycle policy details
content:
application/json:
schema:
$ref: '#/components/schemas/LifecyclePolicy'
security:
- bearer_auth: []
delete:
tags:
- lifecycle
summary: DELETE /api/v1/admin/lifecycle/:id
operationId: delete_lifecycle_policy
parameters:
- name: id
in: path
description: Policy ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Policy deleted
security:
- bearer_auth: []
patch:
tags:
- lifecycle
summary: PATCH /api/v1/admin/lifecycle/:id
operationId: update_lifecycle_policy
parameters:
- name: id
in: path
description: Policy ID
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdatePolicyRequest'
required: true
responses:
'200':
description: Policy updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/LifecyclePolicy'
security:
- bearer_auth: []
/api/v1/admin/lifecycle/{id}/execute:
post:
tags:
- lifecycle
summary: POST /api/v1/admin/lifecycle/:id/execute
operationId: execute_policy
parameters:
- name: id
in: path
description: Policy ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Policy executed
content:
application/json:
schema:
$ref: '#/components/schemas/PolicyExecutionResult'
security:
- bearer_auth: []
/api/v1/admin/lifecycle/{id}/preview:
post:
tags:
- lifecycle
summary: POST /api/v1/admin/lifecycle/:id/preview - dry-run
operationId: preview_policy
parameters:
- name: id
in: path
description: Policy ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Policy preview (dry-run)
content:
application/json:
schema:
$ref: '#/components/schemas/PolicyExecutionResult'
security:
- bearer_auth: []
/api/v1/admin/metrics:
get:
tags:
- health
summary: 'Prometheus metrics endpoint.
Renders all registered metrics from the metrics-exporter-prometheus recorder.'
operationId: metrics
responses:
'200':
description: Prometheus metrics in text format
content:
text/plain: {}
/api/v1/admin/monitoring/alerts:
get:
tags:
- monitoring
summary: GET /api/v1/admin/monitoring/alerts
operationId: get_alert_states
responses:
'200':
description: Current alert states
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/AlertState'
security:
- bearer_auth: []
/api/v1/admin/monitoring/alerts/suppress:
post:
tags:
- monitoring
summary: POST /api/v1/admin/monitoring/alerts/suppress
operationId: suppress_alert
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SuppressRequest'
required: true
responses:
'200':
description: Alert suppressed
security:
- bearer_auth: []
/api/v1/admin/monitoring/check:
post:
tags:
- monitoring
summary: POST /api/v1/admin/monitoring/check - manually trigger health checks
operationId: run_health_check
responses:
'200':
description: Health check results
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ServiceHealthEntry'
security:
- bearer_auth: []
/api/v1/admin/monitoring/health-log:
get:
tags:
- monitoring
summary: GET /api/v1/admin/monitoring/health-log
operationId: get_health_log
parameters:
- name: service
in: query
required: false
schema:
type:
- string
- 'null'
- name: limit
in: query
required: false
schema:
type:
- integer
- 'null'
format: int64
responses:
'200':
description: Health log entries
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ServiceHealthEntry'
security:
- bearer_auth: []
/api/v1/admin/reindex:
post:
tags:
- admin
summary: Trigger a full Meilisearch reindex of all artifacts and repositories.
description: Requires admin privileges and Meilisearch to be configured.
operationId: trigger_reindex
responses:
'200':
description: Reindex completed
content:
application/json:
schema:
$ref: '#/components/schemas/ReindexResponse'
'401':
description: Admin privileges required
'500':
description: Internal server error
security:
- bearer_auth: []
/api/v1/admin/search/reindex:
post:
tags:
- admin
summary: Trigger a full reindex of all artifacts and repositories in Meilisearch.
description: 'The reindex runs asynchronously in the background. The endpoint returns
immediately with a confirmation that the task was started.'
operationId: trigger_search_reindex
responses:
'200':
description: Reindex started in background
content:
application/json:
schema:
$ref: '#/components/schemas/ReindexResponse'
'500':
description: Meilisearch is not configured
/api/v1/admin/settings:
get:
tags:
- admin
summary: Get system settings
operationId: get_settings
responses:
'200':
description: System settings
content:
application/json:
schema:
$ref: '#/components/schemas/SystemSettings'
'500':
description: Internal server error
security:
- bearer_auth: []
post:
tags:
- admin
summary: Update system settings
operationId: update_settings
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SystemSettings'
required: true
responses:
'200':
description: Settings updated
content:
application/json:
schema:
$ref: '#/components/schemas/SystemSettings'
'500':
description: Internal server error
security:
- bearer_auth: []
/api/v1/admin/sso/ldap:
get:
tags:
- sso
summary: List all LDAP provider configurations
operationId: list_ldap
responses:
'200':
description: List of LDAP configurations
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/LdapConfigResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- bearer_auth: []
post:
tags:
- sso
summary: Create a new LDAP provider configuration
operationId: create_ldap
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateLdapConfigRequest'
required: true
responses:
'200':
description: LDAP configuration created
content:
application/json:
schema:
$ref: '#/components/schemas/LdapConfigResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- bearer_auth: []
/api/v1/admin/sso/ldap/{id}:
get:
tags:
- sso
summary: Get LDAP provider configuration by ID
operationId: get_ldap
parameters:
- name: id
in: path
description: LDAP configuration ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: LDAP configuration details
content:
application/json:
schema:
$ref: '#/components/schemas/LdapConfigResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'404':
description: Configuration not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- bearer_auth: []
put:
tags:
- sso
summary: Update an LDAP provider configuration
operationId: update_ldap
parameters:
- name: id
in: path
description: LDAP configuration ID
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateLdapConfigRequest'
required: true
responses:
'200':
description: LDAP configuration updated
content:
application/json:
schema:
$ref: '#/components/schemas/LdapConfigResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'404':
description: Configuration not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- bearer_auth: []
delete:
tags:
- sso
summary: Delete an LDAP provider configuration
operationId: delete_ldap
parameters:
- name: id
in: path
description: LDAP configuration ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: LDAP configuration deleted
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'404':
description: Configuration not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- bearer_auth: []
/api/v1/admin/sso/ldap/{id}/test:
post:
tags:
- sso
summary: Test an LDAP provider connection
operationId: test_ldap
parameters:
- name: id
in: path
description: LDAP configuration ID
required: true
schema:
type: string
format: uuid
responses:
'200':
description: LDAP connection test result
content:
application/json:
schema:
$ref: '#/components/schemas/LdapTestResult'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'404':
description: Configuration not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
security:
- bearer_auth: []
/api/v1/admin/sso/ldap/{id}/toggle:
patch:
tags:
- sso
summary: Toggle an LDAP provider enabled/disabled
operationId: toggle_ldap
parameters:
- name: id
in: path
description: LDAP configuration ID
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema: