forked from feldera/feldera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.json
5862 lines (5862 loc) · 193 KB
/
openapi.json
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.0.3",
"info": {
"title": "Feldera API",
"description": "\nWith Feldera, users create data pipelines out of SQL programs and data connectors. A SQL program comprises tables and views. Connectors feed data to input tables in a program or receive outputs computed by views.\n\nThis API allows users to create and manage data pipelines, and the programs\nand connectors that comprise these pipelines.\n\n# API concepts\n\n* *Program*. A SQL program with a unique name and a unique ID\n attached to it. A program contains tables and views. A program\n needs to be compiled before it can be executed in a pipeline.\n\n* *Connector*. A data connector that can be used to feed input data to\nSQL tables or consume outputs from SQL views. Every connector\nhas a unique name and identifier. We currently support Kafka and Redpanda.\nWe also support directly ingesting and consuming data via HTTP;\nsee the `pipelines/{pipeline_id}/ingress` and `pipelines/{pipeline_id}/egress`\nendpoints.\n\n* *Service*. A service with a unique name and ID.\n It represents a service (such as Kafka, etc.) that a connector can refer to in\n its config. Services are declared separately to reduce duplication and to make it\n easier to create connectors. A service has its own configuration, which\n generally includes hostname, port, authentication, and any service parameters.\n\n* *Pipeline*. A pipeline is a running instance of a program and\nsome attached connectors. A client can create multiple pipelines that make use of\nthe same program and connectors. Every pipeline has a unique name and identifier.\nDeploying a pipeline instantiates the pipeline with the then latest version of\nthe referenced program and connectors. This allows the API to accumulate edits\nto programs and connectors before use in a pipeline.\n\n# Concurrency\n\nAll programs have an associated *version*. This is done to prevent\nrace conditions due to multiple users accessing the same\nprogram concurrently. An example is user 1 modifying the program,\nwhile user 2 is starting a pipeline for the same program. It would be confusing\nif the pipeline could end up running the old or the new version.\n\nA version is a monotonically increasing number, associated with each\nprogram and pipeline. Every request to compile the program or start a\npipeline must include the program id and version number. If the version number\nisn't equal to the current version in the database, this means that the\nlast version of the program observed by the client is outdated, so the\nrequest is rejected.",
"license": {
"name": "MIT OR Apache-2.0"
},
"version": "0.19.0"
},
"paths": {
"/config/authentication": {
"get": {
"tags": [
"Authentication"
],
"summary": "Get authentication provider configuration",
"operationId": "get_authentication_config",
"responses": {
"200": {
"description": "The response body contains Authentication Provider configuration, or is empty if no auth is configured.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AuthProvider"
}
}
}
},
"500": {
"description": "Request failed.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
}
}
}
},
"/v0/api_keys": {
"get": {
"tags": [
"API keys"
],
"summary": "List all API keys",
"operationId": "list_api_keys",
"parameters": [
{
"name": "name",
"in": "query",
"description": "API key name",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "API keys retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ApiKeyDescr"
}
}
}
}
},
"404": {
"description": "Specified API key name does not exist.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"Unknown API key name": {
"value": {
"details": {
"name": "unknown_name"
},
"error_code": "UnknownName",
"message": "An entity with name unknown_name was not found"
}
}
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
},
"post": {
"tags": [
"API keys"
],
"summary": "Create an API key",
"operationId": "create_api_key",
"requestBody": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NewApiKeyRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "API key created successfully.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NewApiKeyResponse"
}
}
}
},
"409": {
"description": "An api key with this name already exists.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"details": null,
"error_code": "DuplicateName",
"message": "An entity with this name already exists"
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
}
},
"/v0/api_keys/{api_key_name}": {
"get": {
"tags": [
"API keys"
],
"summary": "Get an API key description",
"operationId": "get_api_key",
"parameters": [
{
"name": "api_key_name",
"in": "path",
"description": "Unique API key name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "API key retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ApiKeyDescr"
}
}
}
},
"404": {
"description": "Specified API key name does not exist.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"Unknown API key name": {
"value": {
"details": {
"name": "unknown_name"
},
"error_code": "UnknownName",
"message": "An entity with name unknown_name was not found"
}
}
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
},
"delete": {
"tags": [
"API keys"
],
"summary": "Delete an API key",
"operationId": "delete_api_key",
"parameters": [
{
"name": "api_key_name",
"in": "path",
"description": "Unique API key name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "API key deleted successfully"
},
"404": {
"description": "Specified API key name does not exist.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"Unknown API key name": {
"value": {
"details": {
"name": "unknown_name"
},
"error_code": "UnknownName",
"message": "An entity with name unknown_name was not found"
}
}
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
}
},
"/v0/config/demos": {
"get": {
"tags": [
"Configuration"
],
"summary": "Get the list of demos.",
"operationId": "get_demos",
"responses": {
"200": {
"description": "List of demos.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Demo"
}
}
}
}
},
"500": {
"description": "Failed to read demos from the demos directory.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
}
},
"/v0/connectors": {
"get": {
"tags": [
"Connectors"
],
"summary": "Fetch connectors, optionally filtered by name or ID",
"operationId": "list_connectors",
"parameters": [
{
"name": "id",
"in": "query",
"description": "Unique connector identifier.",
"required": false,
"schema": {
"type": "string",
"format": "uuid",
"nullable": true
}
},
{
"name": "name",
"in": "query",
"description": "Unique connector name.",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "List of connectors retrieved successfully",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ConnectorDescr"
}
}
}
}
},
"404": {
"description": "Specified connector name or ID does not exist",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"Unknown connector ID": {
"value": {
"details": {
"connector_id": "d764b9e2-19f2-4572-ba20-8b42641b07c4"
},
"error_code": "UnknownConnector",
"message": "Unknown connector id 'd764b9e2-19f2-4572-ba20-8b42641b07c4'"
}
},
"Unknown connector name": {
"value": {
"details": {
"name": "unknown_name"
},
"error_code": "UnknownName",
"message": "An entity with name unknown_name was not found"
}
}
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
},
"post": {
"tags": [
"Connectors"
],
"summary": "Create a new connector.",
"operationId": "new_connector",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NewConnectorRequest"
}
}
},
"required": true
},
"responses": {
"201": {
"description": "Connector successfully created",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NewConnectorResponse"
}
}
}
},
"409": {
"description": "A connector with this name already exists in the database",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"details": null,
"error_code": "DuplicateName",
"message": "An entity with this name already exists"
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
}
},
"/v0/connectors/{connector_name}": {
"get": {
"tags": [
"Connectors"
],
"summary": "Fetch a connector by name.",
"operationId": "get_connector",
"parameters": [
{
"name": "connector_name",
"in": "path",
"description": "Unique connector name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Connector retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ConnectorDescr"
}
}
}
},
"404": {
"description": "Specified connector name does not exist",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"details": {
"name": "unknown_name"
},
"error_code": "UnknownName",
"message": "An entity with name unknown_name was not found"
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
},
"put": {
"tags": [
"Connectors"
],
"summary": "Create or replace a connector.",
"operationId": "create_or_replace_connector",
"parameters": [
{
"name": "connector_name",
"in": "path",
"description": "Unique connector name",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateOrReplaceConnectorRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Connector updated successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateOrReplaceConnectorResponse"
}
}
}
},
"201": {
"description": "Connector created successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateOrReplaceConnectorResponse"
}
}
}
},
"409": {
"description": "A connector with this name already exists in the database",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"details": null,
"error_code": "DuplicateName",
"message": "An entity with this name already exists"
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
},
"delete": {
"tags": [
"Connectors"
],
"summary": "Delete an existing connector.",
"operationId": "delete_connector",
"parameters": [
{
"name": "connector_name",
"in": "path",
"description": "Unique connector name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Connector successfully deleted"
},
"404": {
"description": "Specified connector name does not exist",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"details": {
"name": "unknown_name"
},
"error_code": "UnknownName",
"message": "An entity with name unknown_name was not found"
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
},
"patch": {
"tags": [
"Connectors"
],
"summary": "Update the name, description and/or configuration of a connector.",
"operationId": "update_connector",
"parameters": [
{
"name": "connector_name",
"in": "path",
"description": "Unique connector name",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateConnectorRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Connector successfully updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateConnectorResponse"
}
}
}
},
"404": {
"description": "Specified connector name does not exist",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"details": {
"name": "unknown_name"
},
"error_code": "UnknownName",
"message": "An entity with name unknown_name was not found"
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
}
},
"/v0/pipelines": {
"get": {
"tags": [
"Pipelines"
],
"summary": "Fetch pipelines, optionally filtered by name or ID.",
"operationId": "list_pipelines",
"parameters": [
{
"name": "id",
"in": "query",
"description": "Unique pipeline id.",
"required": false,
"schema": {
"type": "string",
"format": "uuid",
"nullable": true
}
},
{
"name": "name",
"in": "query",
"description": "Unique pipeline name.",
"required": false,
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Pipeline list retrieved successfully.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Pipeline"
}
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
},
"post": {
"tags": [
"Pipelines"
],
"summary": "Create a new pipeline.",
"operationId": "new_pipeline",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NewPipelineRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Pipeline successfully created.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NewPipelineResponse"
}
}
}
},
"404": {
"description": "Specified program id or connector ids do not exist.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"Unknown connector": {
"description": "One or more connector ids do not exist.",
"value": {
"details": {
"connector_id": "d764b9e2-19f2-4572-ba20-8b42641b07c4"
},
"error_code": "UnknownConnector",
"message": "Unknown connector id 'd764b9e2-19f2-4572-ba20-8b42641b07c4'"
}
},
"Unknown program": {
"description": "Specified program id does not exist",
"value": {
"details": {
"program_id": "67e55044-10b1-426f-9247-bb680e5fe0c8"
},
"error_code": "UnknownProgram",
"message": "Unknown program id '67e55044-10b1-426f-9247-bb680e5fe0c8'"
}
}
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
}
},
"/v0/pipelines/{pipeline_name}": {
"get": {
"tags": [
"Pipelines"
],
"summary": "Fetch a pipeline by ID.",
"operationId": "get_pipeline",
"parameters": [
{
"name": "pipeline_name",
"in": "path",
"description": "Unique pipeline name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Pipeline descriptor retrieved successfully.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Pipeline"
},
"example": {
"cpu_profiler": false,
"inputs": {
"Input-To-Table": {
"enable_output_buffer": false,
"format": {
"config": null,
"name": "csv"
},
"max_output_buffer_size_records": 18446744073709551615,
"max_output_buffer_time_millis": 18446744073709551615,
"max_queued_records": 1000000,
"stream": "my_input_table",
"transport": {
"config": {
"auto.offset.reset": "earliest",
"bootstrap.servers": "localhost:9092",
"fault_tolerance": null,
"group.instance.id": "group0",
"group_join_timeout_secs": 10,
"kafka_service": null,
"log_level": null,
"poller_threads": null,
"topics": [
"test_input1"
]
},
"name": "kafka_input"
}
}
},
"max_buffering_delay_usecs": 0,
"min_batch_size_records": 0,
"min_storage_bytes": null,
"name": "pipeline-67e55044-10b1-426f-9247-bb680e5fe0c8",
"outputs": {
"Output-To-View": {
"enable_output_buffer": false,
"format": {
"config": null,
"name": "csv"
},
"max_output_buffer_size_records": 18446744073709551615,
"max_output_buffer_time_millis": 18446744073709551615,
"max_queued_records": 1000000,
"stream": "my_output_view",
"transport": {
"config": {
"fault_tolerance": null,
"headers": [],
"initialization_timeout_secs": 60,
"kafka_service": null,
"log_level": null,
"max_inflight_messages": 1000,
"topic": "test_output1"
},
"name": "kafka_output"
}
}
},
"resources": {
"cpu_cores_max": null,
"cpu_cores_min": null,
"memory_mb_max": null,
"memory_mb_min": null,
"storage_class": null,
"storage_mb_max": null
},
"storage": false,
"storage_config": null,
"workers": 8
}
}
}
},
"404": {
"description": "Specified pipeline ID does not exist.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"details": {
"pipeline_id": "2e79afe1-ff4d-44d3-af5f-9397de7746c0"
},
"error_code": "UnknownPipeline",
"message": "Unknown pipeline id '2e79afe1-ff4d-44d3-af5f-9397de7746c0'"
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
},
"put": {
"tags": [
"Pipelines"
],
"summary": "Create or replace a pipeline.",
"operationId": "create_or_replace_pipeline",
"parameters": [
{
"name": "pipeline_name",
"in": "path",
"description": "Unique pipeline name",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateOrReplacePipelineRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Pipeline updated successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateOrReplacePipelineResponse"
}
}
}
},
"201": {
"description": "Pipeline created successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateOrReplacePipelineResponse"
}
}
}
},
"409": {
"description": "A pipeline with this name already exists in the database.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"details": null,
"error_code": "DuplicateName",
"message": "An entity with this name already exists"
}
}
}
}
},
"security": [
{
"JSON web token (JWT) or API key": []
}
]
},
"delete": {
"tags": [
"Pipelines"
],
"summary": "Delete a pipeline. The pipeline must be in the shutdown state.",
"operationId": "pipeline_delete",
"parameters": [
{
"name": "pipeline_name",
"in": "path",
"description": "Unique pipeline name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Pipeline successfully deleted."
},
"400": {
"description": "Pipeline ID is invalid or pipeline is already running.",
"content": {
"application/json": {