tangle-api 0.0.1a3__py3-none-any.whl

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.
@@ -0,0 +1,3881 @@
1
+ {
2
+ "components": {
3
+ "schemas": {
4
+ "ArtifactData": {
5
+ "properties": {
6
+ "created_at": {
7
+ "anyOf": [
8
+ {
9
+ "format": "date-time",
10
+ "type": "string"
11
+ },
12
+ {
13
+ "type": "null"
14
+ }
15
+ ],
16
+ "title": "Created At"
17
+ },
18
+ "deleted_at": {
19
+ "anyOf": [
20
+ {
21
+ "format": "date-time",
22
+ "type": "string"
23
+ },
24
+ {
25
+ "type": "null"
26
+ }
27
+ ],
28
+ "title": "Deleted At"
29
+ },
30
+ "extra_data": {
31
+ "anyOf": [
32
+ {
33
+ "additionalProperties": true,
34
+ "type": "object"
35
+ },
36
+ {
37
+ "type": "null"
38
+ }
39
+ ],
40
+ "title": "Extra Data"
41
+ },
42
+ "hash": {
43
+ "title": "Hash",
44
+ "type": "string"
45
+ },
46
+ "is_dir": {
47
+ "title": "Is Dir",
48
+ "type": "boolean"
49
+ },
50
+ "total_size": {
51
+ "title": "Total Size",
52
+ "type": "integer"
53
+ },
54
+ "uri": {
55
+ "anyOf": [
56
+ {
57
+ "type": "string"
58
+ },
59
+ {
60
+ "type": "null"
61
+ }
62
+ ],
63
+ "title": "Uri"
64
+ },
65
+ "value": {
66
+ "anyOf": [
67
+ {
68
+ "type": "string"
69
+ },
70
+ {
71
+ "type": "null"
72
+ }
73
+ ],
74
+ "title": "Value"
75
+ }
76
+ },
77
+ "required": [
78
+ "total_size",
79
+ "is_dir",
80
+ "hash"
81
+ ],
82
+ "title": "ArtifactData",
83
+ "type": "object"
84
+ },
85
+ "ArtifactDataResponse": {
86
+ "properties": {
87
+ "is_dir": {
88
+ "title": "Is Dir",
89
+ "type": "boolean"
90
+ },
91
+ "total_size": {
92
+ "title": "Total Size",
93
+ "type": "integer"
94
+ },
95
+ "uri": {
96
+ "anyOf": [
97
+ {
98
+ "type": "string"
99
+ },
100
+ {
101
+ "type": "null"
102
+ }
103
+ ],
104
+ "title": "Uri"
105
+ },
106
+ "value": {
107
+ "anyOf": [
108
+ {
109
+ "type": "string"
110
+ },
111
+ {
112
+ "type": "null"
113
+ }
114
+ ],
115
+ "title": "Value"
116
+ }
117
+ },
118
+ "required": [
119
+ "total_size",
120
+ "is_dir"
121
+ ],
122
+ "title": "ArtifactDataResponse",
123
+ "type": "object"
124
+ },
125
+ "ArtifactNodeIdResponse": {
126
+ "properties": {
127
+ "id": {
128
+ "title": "Id",
129
+ "type": "string"
130
+ }
131
+ },
132
+ "required": [
133
+ "id"
134
+ ],
135
+ "title": "ArtifactNodeIdResponse",
136
+ "type": "object"
137
+ },
138
+ "ArtifactNodeResponse": {
139
+ "properties": {
140
+ "artifact_data": {
141
+ "anyOf": [
142
+ {
143
+ "$ref": "#/components/schemas/ArtifactDataResponse"
144
+ },
145
+ {
146
+ "type": "null"
147
+ }
148
+ ]
149
+ },
150
+ "id": {
151
+ "title": "Id",
152
+ "type": "string"
153
+ },
154
+ "producer_execution_id": {
155
+ "anyOf": [
156
+ {
157
+ "type": "string"
158
+ },
159
+ {
160
+ "type": "null"
161
+ }
162
+ ],
163
+ "title": "Producer Execution Id"
164
+ },
165
+ "producer_output_name": {
166
+ "anyOf": [
167
+ {
168
+ "type": "string"
169
+ },
170
+ {
171
+ "type": "null"
172
+ }
173
+ ],
174
+ "title": "Producer Output Name"
175
+ },
176
+ "type_name": {
177
+ "anyOf": [
178
+ {
179
+ "type": "string"
180
+ },
181
+ {
182
+ "type": "null"
183
+ }
184
+ ],
185
+ "title": "Type Name"
186
+ },
187
+ "type_properties": {
188
+ "anyOf": [
189
+ {
190
+ "additionalProperties": true,
191
+ "type": "object"
192
+ },
193
+ {
194
+ "type": "null"
195
+ }
196
+ ],
197
+ "title": "Type Properties"
198
+ }
199
+ },
200
+ "required": [
201
+ "id"
202
+ ],
203
+ "title": "ArtifactNodeResponse",
204
+ "type": "object"
205
+ },
206
+ "Body_create_api_pipeline_runs__post": {
207
+ "properties": {
208
+ "annotations": {
209
+ "anyOf": [
210
+ {
211
+ "additionalProperties": true,
212
+ "type": "object"
213
+ },
214
+ {
215
+ "type": "null"
216
+ }
217
+ ],
218
+ "title": "Annotations"
219
+ },
220
+ "components": {
221
+ "anyOf": [
222
+ {
223
+ "items": {
224
+ "$ref": "#/components/schemas/ComponentReference"
225
+ },
226
+ "type": "array"
227
+ },
228
+ {
229
+ "type": "null"
230
+ }
231
+ ],
232
+ "title": "Components"
233
+ },
234
+ "root_task": {
235
+ "$ref": "#/components/schemas/TaskSpec"
236
+ }
237
+ },
238
+ "required": [
239
+ "root_task"
240
+ ],
241
+ "title": "Body_create_api_pipeline_runs__post",
242
+ "type": "object"
243
+ },
244
+ "Body_create_secret_api_secrets__post": {
245
+ "properties": {
246
+ "secret_value": {
247
+ "title": "Secret Value",
248
+ "type": "string"
249
+ }
250
+ },
251
+ "required": [
252
+ "secret_value"
253
+ ],
254
+ "title": "Body_create_secret_api_secrets__post",
255
+ "type": "object"
256
+ },
257
+ "Body_set_settings_api_users_me_settings_patch": {
258
+ "properties": {
259
+ "settings": {
260
+ "additionalProperties": true,
261
+ "title": "Settings",
262
+ "type": "object"
263
+ }
264
+ },
265
+ "required": [
266
+ "settings"
267
+ ],
268
+ "title": "Body_set_settings_api_users_me_settings_patch",
269
+ "type": "object"
270
+ },
271
+ "Body_update_secret_api_secrets__secret_name__put": {
272
+ "properties": {
273
+ "secret_value": {
274
+ "title": "Secret Value",
275
+ "type": "string"
276
+ }
277
+ },
278
+ "required": [
279
+ "secret_value"
280
+ ],
281
+ "title": "Body_update_secret_api_secrets__secret_name__put",
282
+ "type": "object"
283
+ },
284
+ "CachingStrategySpec": {
285
+ "properties": {
286
+ "maxCacheStaleness": {
287
+ "anyOf": [
288
+ {
289
+ "type": "string"
290
+ },
291
+ {
292
+ "type": "null"
293
+ }
294
+ ],
295
+ "title": "Maxcachestaleness"
296
+ }
297
+ },
298
+ "title": "CachingStrategySpec",
299
+ "type": "object"
300
+ },
301
+ "ComponentLibrary": {
302
+ "properties": {
303
+ "annotations": {
304
+ "anyOf": [
305
+ {
306
+ "additionalProperties": {
307
+ "type": "string"
308
+ },
309
+ "type": "object"
310
+ },
311
+ {
312
+ "type": "null"
313
+ }
314
+ ],
315
+ "title": "Annotations"
316
+ },
317
+ "name": {
318
+ "title": "Name",
319
+ "type": "string"
320
+ },
321
+ "root_folder": {
322
+ "$ref": "#/components/schemas/ComponentLibraryFolder"
323
+ }
324
+ },
325
+ "required": [
326
+ "name",
327
+ "root_folder"
328
+ ],
329
+ "title": "ComponentLibrary",
330
+ "type": "object"
331
+ },
332
+ "ComponentLibraryFolder": {
333
+ "properties": {
334
+ "annotations": {
335
+ "anyOf": [
336
+ {
337
+ "additionalProperties": {
338
+ "type": "string"
339
+ },
340
+ "type": "object"
341
+ },
342
+ {
343
+ "type": "null"
344
+ }
345
+ ],
346
+ "title": "Annotations"
347
+ },
348
+ "components": {
349
+ "anyOf": [
350
+ {
351
+ "items": {
352
+ "$ref": "#/components/schemas/ComponentReference"
353
+ },
354
+ "type": "array"
355
+ },
356
+ {
357
+ "type": "null"
358
+ }
359
+ ],
360
+ "title": "Components"
361
+ },
362
+ "folders": {
363
+ "anyOf": [
364
+ {
365
+ "items": {
366
+ "$ref": "#/components/schemas/ComponentLibraryFolder"
367
+ },
368
+ "type": "array"
369
+ },
370
+ {
371
+ "type": "null"
372
+ }
373
+ ],
374
+ "title": "Folders"
375
+ },
376
+ "name": {
377
+ "title": "Name",
378
+ "type": "string"
379
+ }
380
+ },
381
+ "required": [
382
+ "name"
383
+ ],
384
+ "title": "ComponentLibraryFolder",
385
+ "type": "object"
386
+ },
387
+ "ComponentLibraryResponse": {
388
+ "properties": {
389
+ "annotations": {
390
+ "anyOf": [
391
+ {
392
+ "additionalProperties": {
393
+ "type": "string"
394
+ },
395
+ "type": "object"
396
+ },
397
+ {
398
+ "type": "null"
399
+ }
400
+ ],
401
+ "title": "Annotations"
402
+ },
403
+ "component_count": {
404
+ "default": 0,
405
+ "title": "Component Count",
406
+ "type": "integer"
407
+ },
408
+ "created_at": {
409
+ "format": "date-time",
410
+ "title": "Created At",
411
+ "type": "string"
412
+ },
413
+ "hide_from_search": {
414
+ "default": false,
415
+ "title": "Hide From Search",
416
+ "type": "boolean"
417
+ },
418
+ "id": {
419
+ "title": "Id",
420
+ "type": "string"
421
+ },
422
+ "name": {
423
+ "title": "Name",
424
+ "type": "string"
425
+ },
426
+ "published_by": {
427
+ "anyOf": [
428
+ {
429
+ "type": "string"
430
+ },
431
+ {
432
+ "type": "null"
433
+ }
434
+ ],
435
+ "title": "Published By"
436
+ },
437
+ "root_folder": {
438
+ "anyOf": [
439
+ {
440
+ "$ref": "#/components/schemas/ComponentLibraryFolder"
441
+ },
442
+ {
443
+ "type": "null"
444
+ }
445
+ ]
446
+ },
447
+ "updated_at": {
448
+ "format": "date-time",
449
+ "title": "Updated At",
450
+ "type": "string"
451
+ }
452
+ },
453
+ "required": [
454
+ "id",
455
+ "name",
456
+ "created_at",
457
+ "updated_at"
458
+ ],
459
+ "title": "ComponentLibraryResponse",
460
+ "type": "object"
461
+ },
462
+ "ComponentReference": {
463
+ "description": "Component reference. Contains information that can be used to locate and load a component by name, digest or URL",
464
+ "properties": {
465
+ "digest": {
466
+ "anyOf": [
467
+ {
468
+ "type": "string"
469
+ },
470
+ {
471
+ "type": "null"
472
+ }
473
+ ],
474
+ "title": "Digest"
475
+ },
476
+ "name": {
477
+ "anyOf": [
478
+ {
479
+ "type": "string"
480
+ },
481
+ {
482
+ "type": "null"
483
+ }
484
+ ],
485
+ "title": "Name"
486
+ },
487
+ "spec": {
488
+ "anyOf": [
489
+ {
490
+ "$ref": "#/components/schemas/ComponentSpec"
491
+ },
492
+ {
493
+ "type": "null"
494
+ }
495
+ ]
496
+ },
497
+ "tag": {
498
+ "anyOf": [
499
+ {
500
+ "type": "string"
501
+ },
502
+ {
503
+ "type": "null"
504
+ }
505
+ ],
506
+ "title": "Tag"
507
+ },
508
+ "text": {
509
+ "anyOf": [
510
+ {
511
+ "type": "string"
512
+ },
513
+ {
514
+ "type": "null"
515
+ }
516
+ ],
517
+ "title": "Text"
518
+ },
519
+ "url": {
520
+ "anyOf": [
521
+ {
522
+ "type": "string"
523
+ },
524
+ {
525
+ "type": "null"
526
+ }
527
+ ],
528
+ "title": "Url"
529
+ }
530
+ },
531
+ "title": "ComponentReference",
532
+ "type": "object"
533
+ },
534
+ "ComponentResponse": {
535
+ "properties": {
536
+ "digest": {
537
+ "title": "Digest",
538
+ "type": "string"
539
+ },
540
+ "text": {
541
+ "title": "Text",
542
+ "type": "string"
543
+ }
544
+ },
545
+ "required": [
546
+ "digest",
547
+ "text"
548
+ ],
549
+ "title": "ComponentResponse",
550
+ "type": "object"
551
+ },
552
+ "ComponentSpec": {
553
+ "description": "Component specification. Describes the metadata (name, description, annotations and labels), the interface (inputs and outputs) and the implementation of the component.",
554
+ "properties": {
555
+ "description": {
556
+ "anyOf": [
557
+ {
558
+ "type": "string"
559
+ },
560
+ {
561
+ "type": "null"
562
+ }
563
+ ],
564
+ "title": "Description"
565
+ },
566
+ "implementation": {
567
+ "anyOf": [
568
+ {
569
+ "$ref": "#/components/schemas/ContainerImplementation"
570
+ },
571
+ {
572
+ "$ref": "#/components/schemas/GraphImplementation"
573
+ },
574
+ {
575
+ "type": "null"
576
+ }
577
+ ],
578
+ "title": "Implementation"
579
+ },
580
+ "inputs": {
581
+ "anyOf": [
582
+ {
583
+ "items": {
584
+ "$ref": "#/components/schemas/InputSpec"
585
+ },
586
+ "type": "array"
587
+ },
588
+ {
589
+ "type": "null"
590
+ }
591
+ ],
592
+ "title": "Inputs"
593
+ },
594
+ "metadata": {
595
+ "anyOf": [
596
+ {
597
+ "$ref": "#/components/schemas/MetadataSpec"
598
+ },
599
+ {
600
+ "type": "null"
601
+ }
602
+ ]
603
+ },
604
+ "name": {
605
+ "anyOf": [
606
+ {
607
+ "type": "string"
608
+ },
609
+ {
610
+ "type": "null"
611
+ }
612
+ ],
613
+ "title": "Name"
614
+ },
615
+ "outputs": {
616
+ "anyOf": [
617
+ {
618
+ "items": {
619
+ "$ref": "#/components/schemas/OutputSpec"
620
+ },
621
+ "type": "array"
622
+ },
623
+ {
624
+ "type": "null"
625
+ }
626
+ ],
627
+ "title": "Outputs"
628
+ }
629
+ },
630
+ "title": "ComponentSpec",
631
+ "type": "object"
632
+ },
633
+ "ConcatPlaceholder": {
634
+ "description": "Represents the command-line argument placeholder that will be replaced at run-time by the concatenated values of its items.",
635
+ "properties": {
636
+ "concat": {
637
+ "items": {
638
+ "anyOf": [
639
+ {
640
+ "type": "string"
641
+ },
642
+ {
643
+ "$ref": "#/components/schemas/InputValuePlaceholder"
644
+ },
645
+ {
646
+ "$ref": "#/components/schemas/InputPathPlaceholder"
647
+ },
648
+ {
649
+ "$ref": "#/components/schemas/OutputPathPlaceholder"
650
+ },
651
+ {
652
+ "$ref": "#/components/schemas/ConcatPlaceholder"
653
+ },
654
+ {
655
+ "$ref": "#/components/schemas/IfPlaceholder"
656
+ }
657
+ ]
658
+ },
659
+ "title": "Concat",
660
+ "type": "array"
661
+ }
662
+ },
663
+ "required": [
664
+ "concat"
665
+ ],
666
+ "title": "ConcatPlaceholder",
667
+ "type": "object"
668
+ },
669
+ "ContainerExecutionStatus": {
670
+ "enum": [
671
+ "INVALID",
672
+ "UNINITIALIZED",
673
+ "QUEUED",
674
+ "WAITING_FOR_UPSTREAM",
675
+ "PENDING",
676
+ "RUNNING",
677
+ "SUCCEEDED",
678
+ "FAILED",
679
+ "SYSTEM_ERROR",
680
+ "CANCELLING",
681
+ "CANCELLED",
682
+ "SKIPPED"
683
+ ],
684
+ "title": "ContainerExecutionStatus",
685
+ "type": "string"
686
+ },
687
+ "ContainerImplementation": {
688
+ "description": "Represents the container component implementation.",
689
+ "properties": {
690
+ "container": {
691
+ "$ref": "#/components/schemas/ContainerSpec"
692
+ }
693
+ },
694
+ "required": [
695
+ "container"
696
+ ],
697
+ "title": "ContainerImplementation",
698
+ "type": "object"
699
+ },
700
+ "ContainerSpec": {
701
+ "description": "Describes the container component implementation.",
702
+ "properties": {
703
+ "args": {
704
+ "anyOf": [
705
+ {
706
+ "items": {
707
+ "anyOf": [
708
+ {
709
+ "type": "string"
710
+ },
711
+ {
712
+ "$ref": "#/components/schemas/InputValuePlaceholder"
713
+ },
714
+ {
715
+ "$ref": "#/components/schemas/InputPathPlaceholder"
716
+ },
717
+ {
718
+ "$ref": "#/components/schemas/OutputPathPlaceholder"
719
+ },
720
+ {
721
+ "$ref": "#/components/schemas/ConcatPlaceholder"
722
+ },
723
+ {
724
+ "$ref": "#/components/schemas/IfPlaceholder"
725
+ }
726
+ ]
727
+ },
728
+ "type": "array"
729
+ },
730
+ {
731
+ "type": "null"
732
+ }
733
+ ],
734
+ "title": "Args"
735
+ },
736
+ "command": {
737
+ "anyOf": [
738
+ {
739
+ "items": {
740
+ "anyOf": [
741
+ {
742
+ "type": "string"
743
+ },
744
+ {
745
+ "$ref": "#/components/schemas/InputValuePlaceholder"
746
+ },
747
+ {
748
+ "$ref": "#/components/schemas/InputPathPlaceholder"
749
+ },
750
+ {
751
+ "$ref": "#/components/schemas/OutputPathPlaceholder"
752
+ },
753
+ {
754
+ "$ref": "#/components/schemas/ConcatPlaceholder"
755
+ },
756
+ {
757
+ "$ref": "#/components/schemas/IfPlaceholder"
758
+ }
759
+ ]
760
+ },
761
+ "type": "array"
762
+ },
763
+ {
764
+ "type": "null"
765
+ }
766
+ ],
767
+ "title": "Command"
768
+ },
769
+ "env": {
770
+ "anyOf": [
771
+ {
772
+ "additionalProperties": {
773
+ "type": "string"
774
+ },
775
+ "type": "object"
776
+ },
777
+ {
778
+ "type": "null"
779
+ }
780
+ ],
781
+ "title": "Env"
782
+ },
783
+ "image": {
784
+ "title": "Image",
785
+ "type": "string"
786
+ }
787
+ },
788
+ "required": [
789
+ "image"
790
+ ],
791
+ "title": "ContainerSpec",
792
+ "type": "object"
793
+ },
794
+ "DynamicDataArgument": {
795
+ "description": "Argument that references data that's dynamically produced by the execution system at runtime.\n\nExamples of dynamic data:\n* Secret value\n* Container execution ID\n* Pipeline run ID\n* Loop index/item",
796
+ "properties": {
797
+ "dynamicData": {
798
+ "anyOf": [
799
+ {
800
+ "type": "string"
801
+ },
802
+ {
803
+ "additionalProperties": true,
804
+ "type": "object"
805
+ }
806
+ ],
807
+ "title": "Dynamicdata"
808
+ }
809
+ },
810
+ "required": [
811
+ "dynamicData"
812
+ ],
813
+ "title": "DynamicDataArgument",
814
+ "type": "object"
815
+ },
816
+ "ExecutionNodeReference": {
817
+ "properties": {
818
+ "execution_node_id": {
819
+ "title": "Execution Node Id",
820
+ "type": "string"
821
+ },
822
+ "pipeline_run_id": {
823
+ "anyOf": [
824
+ {
825
+ "type": "string"
826
+ },
827
+ {
828
+ "type": "null"
829
+ }
830
+ ],
831
+ "title": "Pipeline Run Id"
832
+ }
833
+ },
834
+ "required": [
835
+ "execution_node_id",
836
+ "pipeline_run_id"
837
+ ],
838
+ "title": "ExecutionNodeReference",
839
+ "type": "object"
840
+ },
841
+ "ExecutionOptionsSpec": {
842
+ "properties": {
843
+ "cachingStrategy": {
844
+ "anyOf": [
845
+ {
846
+ "$ref": "#/components/schemas/CachingStrategySpec"
847
+ },
848
+ {
849
+ "type": "null"
850
+ }
851
+ ]
852
+ },
853
+ "retryStrategy": {
854
+ "anyOf": [
855
+ {
856
+ "$ref": "#/components/schemas/RetryStrategySpec"
857
+ },
858
+ {
859
+ "type": "null"
860
+ }
861
+ ]
862
+ }
863
+ },
864
+ "title": "ExecutionOptionsSpec",
865
+ "type": "object"
866
+ },
867
+ "ExecutionStatusSummary": {
868
+ "properties": {
869
+ "ended_executions": {
870
+ "title": "Ended Executions",
871
+ "type": "integer"
872
+ },
873
+ "has_ended": {
874
+ "title": "Has Ended",
875
+ "type": "boolean"
876
+ },
877
+ "total_executions": {
878
+ "title": "Total Executions",
879
+ "type": "integer"
880
+ }
881
+ },
882
+ "required": [
883
+ "total_executions",
884
+ "ended_executions",
885
+ "has_ended"
886
+ ],
887
+ "title": "ExecutionStatusSummary",
888
+ "type": "object"
889
+ },
890
+ "GetArtifactInfoResponse": {
891
+ "properties": {
892
+ "artifact_data": {
893
+ "anyOf": [
894
+ {
895
+ "$ref": "#/components/schemas/ArtifactData"
896
+ },
897
+ {
898
+ "type": "null"
899
+ }
900
+ ]
901
+ },
902
+ "id": {
903
+ "title": "Id",
904
+ "type": "string"
905
+ }
906
+ },
907
+ "required": [
908
+ "id"
909
+ ],
910
+ "title": "GetArtifactInfoResponse",
911
+ "type": "object"
912
+ },
913
+ "GetArtifactSignedUrlResponse": {
914
+ "properties": {
915
+ "signed_url": {
916
+ "title": "Signed Url",
917
+ "type": "string"
918
+ }
919
+ },
920
+ "required": [
921
+ "signed_url"
922
+ ],
923
+ "title": "GetArtifactSignedUrlResponse",
924
+ "type": "object"
925
+ },
926
+ "GetContainerExecutionLogResponse": {
927
+ "properties": {
928
+ "log_text": {
929
+ "anyOf": [
930
+ {
931
+ "type": "string"
932
+ },
933
+ {
934
+ "type": "null"
935
+ }
936
+ ],
937
+ "title": "Log Text"
938
+ },
939
+ "orchestration_error_message": {
940
+ "anyOf": [
941
+ {
942
+ "type": "string"
943
+ },
944
+ {
945
+ "type": "null"
946
+ }
947
+ ],
948
+ "title": "Orchestration Error Message"
949
+ },
950
+ "system_error_exception_full": {
951
+ "anyOf": [
952
+ {
953
+ "type": "string"
954
+ },
955
+ {
956
+ "type": "null"
957
+ }
958
+ ],
959
+ "title": "System Error Exception Full"
960
+ }
961
+ },
962
+ "title": "GetContainerExecutionLogResponse",
963
+ "type": "object"
964
+ },
965
+ "GetContainerExecutionStateResponse": {
966
+ "properties": {
967
+ "debug_info": {
968
+ "anyOf": [
969
+ {
970
+ "additionalProperties": true,
971
+ "type": "object"
972
+ },
973
+ {
974
+ "type": "null"
975
+ }
976
+ ],
977
+ "title": "Debug Info"
978
+ },
979
+ "ended_at": {
980
+ "anyOf": [
981
+ {
982
+ "format": "date-time",
983
+ "type": "string"
984
+ },
985
+ {
986
+ "type": "null"
987
+ }
988
+ ],
989
+ "title": "Ended At"
990
+ },
991
+ "execution_nodes_linked_to_same_container_execution": {
992
+ "anyOf": [
993
+ {
994
+ "items": {
995
+ "$ref": "#/components/schemas/ExecutionNodeReference"
996
+ },
997
+ "type": "array"
998
+ },
999
+ {
1000
+ "type": "null"
1001
+ }
1002
+ ],
1003
+ "title": "Execution Nodes Linked To Same Container Execution"
1004
+ },
1005
+ "exit_code": {
1006
+ "anyOf": [
1007
+ {
1008
+ "type": "integer"
1009
+ },
1010
+ {
1011
+ "type": "null"
1012
+ }
1013
+ ],
1014
+ "title": "Exit Code"
1015
+ },
1016
+ "started_at": {
1017
+ "anyOf": [
1018
+ {
1019
+ "format": "date-time",
1020
+ "type": "string"
1021
+ },
1022
+ {
1023
+ "type": "null"
1024
+ }
1025
+ ],
1026
+ "title": "Started At"
1027
+ },
1028
+ "status": {
1029
+ "$ref": "#/components/schemas/ContainerExecutionStatus"
1030
+ }
1031
+ },
1032
+ "required": [
1033
+ "status"
1034
+ ],
1035
+ "title": "GetContainerExecutionStateResponse",
1036
+ "type": "object"
1037
+ },
1038
+ "GetExecutionArtifactsResponse": {
1039
+ "properties": {
1040
+ "input_artifacts": {
1041
+ "anyOf": [
1042
+ {
1043
+ "additionalProperties": {
1044
+ "$ref": "#/components/schemas/ArtifactNodeResponse"
1045
+ },
1046
+ "type": "object"
1047
+ },
1048
+ {
1049
+ "type": "null"
1050
+ }
1051
+ ],
1052
+ "title": "Input Artifacts"
1053
+ },
1054
+ "output_artifacts": {
1055
+ "anyOf": [
1056
+ {
1057
+ "additionalProperties": {
1058
+ "$ref": "#/components/schemas/ArtifactNodeResponse"
1059
+ },
1060
+ "type": "object"
1061
+ },
1062
+ {
1063
+ "type": "null"
1064
+ }
1065
+ ],
1066
+ "title": "Output Artifacts"
1067
+ }
1068
+ },
1069
+ "title": "GetExecutionArtifactsResponse",
1070
+ "type": "object"
1071
+ },
1072
+ "GetExecutionInfoResponse": {
1073
+ "properties": {
1074
+ "child_task_execution_ids": {
1075
+ "additionalProperties": {
1076
+ "type": "string"
1077
+ },
1078
+ "title": "Child Task Execution Ids",
1079
+ "type": "object"
1080
+ },
1081
+ "id": {
1082
+ "title": "Id",
1083
+ "type": "string"
1084
+ },
1085
+ "input_artifacts": {
1086
+ "anyOf": [
1087
+ {
1088
+ "additionalProperties": {
1089
+ "$ref": "#/components/schemas/ArtifactNodeIdResponse"
1090
+ },
1091
+ "type": "object"
1092
+ },
1093
+ {
1094
+ "type": "null"
1095
+ }
1096
+ ],
1097
+ "title": "Input Artifacts"
1098
+ },
1099
+ "output_artifacts": {
1100
+ "anyOf": [
1101
+ {
1102
+ "additionalProperties": {
1103
+ "$ref": "#/components/schemas/ArtifactNodeIdResponse"
1104
+ },
1105
+ "type": "object"
1106
+ },
1107
+ {
1108
+ "type": "null"
1109
+ }
1110
+ ],
1111
+ "title": "Output Artifacts"
1112
+ },
1113
+ "parent_execution_id": {
1114
+ "anyOf": [
1115
+ {
1116
+ "type": "string"
1117
+ },
1118
+ {
1119
+ "type": "null"
1120
+ }
1121
+ ],
1122
+ "title": "Parent Execution Id"
1123
+ },
1124
+ "pipeline_run_id": {
1125
+ "anyOf": [
1126
+ {
1127
+ "type": "string"
1128
+ },
1129
+ {
1130
+ "type": "null"
1131
+ }
1132
+ ],
1133
+ "title": "Pipeline Run Id"
1134
+ },
1135
+ "task_spec": {
1136
+ "$ref": "#/components/schemas/TaskSpec"
1137
+ }
1138
+ },
1139
+ "required": [
1140
+ "id",
1141
+ "task_spec",
1142
+ "child_task_execution_ids"
1143
+ ],
1144
+ "title": "GetExecutionInfoResponse",
1145
+ "type": "object"
1146
+ },
1147
+ "GetGraphExecutionStateResponse": {
1148
+ "properties": {
1149
+ "child_execution_status_stats": {
1150
+ "additionalProperties": {
1151
+ "additionalProperties": {
1152
+ "type": "integer"
1153
+ },
1154
+ "type": "object"
1155
+ },
1156
+ "title": "Child Execution Status Stats",
1157
+ "type": "object"
1158
+ },
1159
+ "child_execution_status_summary": {
1160
+ "$ref": "#/components/schemas/ExecutionStatusSummary"
1161
+ }
1162
+ },
1163
+ "required": [
1164
+ "child_execution_status_stats",
1165
+ "child_execution_status_summary"
1166
+ ],
1167
+ "title": "GetGraphExecutionStateResponse",
1168
+ "type": "object"
1169
+ },
1170
+ "GetUserResponse": {
1171
+ "properties": {
1172
+ "id": {
1173
+ "anyOf": [
1174
+ {
1175
+ "type": "string"
1176
+ },
1177
+ {
1178
+ "type": "null"
1179
+ }
1180
+ ],
1181
+ "title": "Id"
1182
+ },
1183
+ "permissions": {
1184
+ "items": {
1185
+ "type": "string"
1186
+ },
1187
+ "title": "Permissions",
1188
+ "type": "array"
1189
+ }
1190
+ },
1191
+ "required": [
1192
+ "id",
1193
+ "permissions"
1194
+ ],
1195
+ "title": "GetUserResponse",
1196
+ "type": "object"
1197
+ },
1198
+ "GraphImplementation": {
1199
+ "description": "Represents the graph component implementation.",
1200
+ "properties": {
1201
+ "graph": {
1202
+ "$ref": "#/components/schemas/GraphSpec"
1203
+ }
1204
+ },
1205
+ "required": [
1206
+ "graph"
1207
+ ],
1208
+ "title": "GraphImplementation",
1209
+ "type": "object"
1210
+ },
1211
+ "GraphInputArgument": {
1212
+ "description": "Represents the component argument value that comes from the graph component input.",
1213
+ "properties": {
1214
+ "graphInput": {
1215
+ "$ref": "#/components/schemas/GraphInputReference"
1216
+ }
1217
+ },
1218
+ "required": [
1219
+ "graphInput"
1220
+ ],
1221
+ "title": "GraphInputArgument",
1222
+ "type": "object"
1223
+ },
1224
+ "GraphInputReference": {
1225
+ "description": "References the input of the graph (the scope is a single graph).",
1226
+ "properties": {
1227
+ "inputName": {
1228
+ "title": "Inputname",
1229
+ "type": "string"
1230
+ },
1231
+ "type": {
1232
+ "anyOf": [
1233
+ {
1234
+ "type": "string"
1235
+ },
1236
+ {
1237
+ "additionalProperties": true,
1238
+ "type": "object"
1239
+ },
1240
+ {
1241
+ "items": {},
1242
+ "type": "array"
1243
+ },
1244
+ {
1245
+ "type": "null"
1246
+ }
1247
+ ],
1248
+ "title": "Type"
1249
+ }
1250
+ },
1251
+ "required": [
1252
+ "inputName"
1253
+ ],
1254
+ "title": "GraphInputReference",
1255
+ "type": "object"
1256
+ },
1257
+ "GraphSpec": {
1258
+ "description": "Describes the graph component implementation. It represents a graph of component tasks connected to the upstream sources of data using the argument specifications. It also describes the sources of graph output values.",
1259
+ "properties": {
1260
+ "outputValues": {
1261
+ "anyOf": [
1262
+ {
1263
+ "additionalProperties": {
1264
+ "anyOf": [
1265
+ {
1266
+ "type": "string"
1267
+ },
1268
+ {
1269
+ "$ref": "#/components/schemas/GraphInputArgument"
1270
+ },
1271
+ {
1272
+ "$ref": "#/components/schemas/TaskOutputArgument"
1273
+ },
1274
+ {
1275
+ "$ref": "#/components/schemas/DynamicDataArgument"
1276
+ }
1277
+ ]
1278
+ },
1279
+ "type": "object"
1280
+ },
1281
+ {
1282
+ "type": "null"
1283
+ }
1284
+ ],
1285
+ "title": "Outputvalues"
1286
+ },
1287
+ "tasks": {
1288
+ "additionalProperties": {
1289
+ "$ref": "#/components/schemas/TaskSpec"
1290
+ },
1291
+ "title": "Tasks",
1292
+ "type": "object"
1293
+ }
1294
+ },
1295
+ "required": [
1296
+ "tasks"
1297
+ ],
1298
+ "title": "GraphSpec",
1299
+ "type": "object"
1300
+ },
1301
+ "HTTPValidationError": {
1302
+ "properties": {
1303
+ "detail": {
1304
+ "items": {
1305
+ "$ref": "#/components/schemas/ValidationError"
1306
+ },
1307
+ "title": "Detail",
1308
+ "type": "array"
1309
+ }
1310
+ },
1311
+ "title": "HTTPValidationError",
1312
+ "type": "object"
1313
+ },
1314
+ "IfPlaceholder": {
1315
+ "description": "Represents the command-line argument placeholder that will be replaced at run-time by the expanded value of either \"then_value\" or \"else_value\" depending on the submission-time resolved value of the \"cond\" predicate.",
1316
+ "properties": {
1317
+ "if": {
1318
+ "$ref": "#/components/schemas/IfPlaceholderStructure"
1319
+ }
1320
+ },
1321
+ "required": [
1322
+ "if"
1323
+ ],
1324
+ "title": "IfPlaceholder",
1325
+ "type": "object"
1326
+ },
1327
+ "IfPlaceholderStructure": {
1328
+ "description": "Used in by the IfPlaceholder - the command-line argument placeholder that will be replaced at run-time by the expanded value of either \"then_value\" or \"else_value\" depending on the submission-time resolved value of the \"cond\" predicate.",
1329
+ "properties": {
1330
+ "cond": {
1331
+ "anyOf": [
1332
+ {
1333
+ "type": "boolean"
1334
+ },
1335
+ {
1336
+ "type": "string"
1337
+ },
1338
+ {
1339
+ "$ref": "#/components/schemas/IsPresentPlaceholder"
1340
+ },
1341
+ {
1342
+ "$ref": "#/components/schemas/InputValuePlaceholder"
1343
+ }
1344
+ ],
1345
+ "title": "Cond"
1346
+ },
1347
+ "else": {
1348
+ "anyOf": [
1349
+ {
1350
+ "items": {
1351
+ "anyOf": [
1352
+ {
1353
+ "type": "string"
1354
+ },
1355
+ {
1356
+ "$ref": "#/components/schemas/InputValuePlaceholder"
1357
+ },
1358
+ {
1359
+ "$ref": "#/components/schemas/InputPathPlaceholder"
1360
+ },
1361
+ {
1362
+ "$ref": "#/components/schemas/OutputPathPlaceholder"
1363
+ },
1364
+ {
1365
+ "$ref": "#/components/schemas/ConcatPlaceholder"
1366
+ },
1367
+ {
1368
+ "$ref": "#/components/schemas/IfPlaceholder"
1369
+ }
1370
+ ]
1371
+ },
1372
+ "type": "array"
1373
+ },
1374
+ {
1375
+ "type": "null"
1376
+ }
1377
+ ],
1378
+ "title": "Else"
1379
+ },
1380
+ "then": {
1381
+ "items": {
1382
+ "anyOf": [
1383
+ {
1384
+ "type": "string"
1385
+ },
1386
+ {
1387
+ "$ref": "#/components/schemas/InputValuePlaceholder"
1388
+ },
1389
+ {
1390
+ "$ref": "#/components/schemas/InputPathPlaceholder"
1391
+ },
1392
+ {
1393
+ "$ref": "#/components/schemas/OutputPathPlaceholder"
1394
+ },
1395
+ {
1396
+ "$ref": "#/components/schemas/ConcatPlaceholder"
1397
+ },
1398
+ {
1399
+ "$ref": "#/components/schemas/IfPlaceholder"
1400
+ }
1401
+ ]
1402
+ },
1403
+ "title": "Then",
1404
+ "type": "array"
1405
+ }
1406
+ },
1407
+ "required": [
1408
+ "cond",
1409
+ "then"
1410
+ ],
1411
+ "title": "IfPlaceholderStructure",
1412
+ "type": "object"
1413
+ },
1414
+ "InputPathPlaceholder": {
1415
+ "description": "Represents the command-line argument placeholder that will be replaced at run-time by a local file path pointing to a file containing the input argument value.",
1416
+ "properties": {
1417
+ "inputPath": {
1418
+ "title": "Inputpath",
1419
+ "type": "string"
1420
+ }
1421
+ },
1422
+ "required": [
1423
+ "inputPath"
1424
+ ],
1425
+ "title": "InputPathPlaceholder",
1426
+ "type": "object"
1427
+ },
1428
+ "InputSpec": {
1429
+ "description": "Describes the component input specification",
1430
+ "properties": {
1431
+ "annotations": {
1432
+ "anyOf": [
1433
+ {
1434
+ "additionalProperties": true,
1435
+ "type": "object"
1436
+ },
1437
+ {
1438
+ "type": "null"
1439
+ }
1440
+ ],
1441
+ "title": "Annotations"
1442
+ },
1443
+ "default": {
1444
+ "anyOf": [
1445
+ {
1446
+ "type": "string"
1447
+ },
1448
+ {
1449
+ "type": "null"
1450
+ }
1451
+ ],
1452
+ "title": "Default"
1453
+ },
1454
+ "description": {
1455
+ "anyOf": [
1456
+ {
1457
+ "type": "string"
1458
+ },
1459
+ {
1460
+ "type": "null"
1461
+ }
1462
+ ],
1463
+ "title": "Description"
1464
+ },
1465
+ "name": {
1466
+ "title": "Name",
1467
+ "type": "string"
1468
+ },
1469
+ "optional": {
1470
+ "anyOf": [
1471
+ {
1472
+ "type": "boolean"
1473
+ },
1474
+ {
1475
+ "type": "null"
1476
+ }
1477
+ ],
1478
+ "default": false,
1479
+ "title": "Optional"
1480
+ },
1481
+ "type": {
1482
+ "anyOf": [
1483
+ {
1484
+ "type": "string"
1485
+ },
1486
+ {
1487
+ "additionalProperties": true,
1488
+ "type": "object"
1489
+ },
1490
+ {
1491
+ "items": {},
1492
+ "type": "array"
1493
+ },
1494
+ {
1495
+ "type": "null"
1496
+ }
1497
+ ],
1498
+ "title": "Type"
1499
+ }
1500
+ },
1501
+ "required": [
1502
+ "name"
1503
+ ],
1504
+ "title": "InputSpec",
1505
+ "type": "object"
1506
+ },
1507
+ "InputValuePlaceholder": {
1508
+ "description": "Represents the command-line argument placeholder that will be replaced at run-time by the input argument value.",
1509
+ "properties": {
1510
+ "inputValue": {
1511
+ "title": "Inputvalue",
1512
+ "type": "string"
1513
+ }
1514
+ },
1515
+ "required": [
1516
+ "inputValue"
1517
+ ],
1518
+ "title": "InputValuePlaceholder",
1519
+ "type": "object"
1520
+ },
1521
+ "IsPresentPlaceholder": {
1522
+ "description": "Represents the command-line argument placeholder that will be replaced at run-time by a boolean value specifying whether the caller has passed an argument for the specified optional input.",
1523
+ "properties": {
1524
+ "isPresent": {
1525
+ "title": "Ispresent",
1526
+ "type": "string"
1527
+ }
1528
+ },
1529
+ "required": [
1530
+ "isPresent"
1531
+ ],
1532
+ "title": "IsPresentPlaceholder",
1533
+ "type": "object"
1534
+ },
1535
+ "ListComponentLibrariesResponse": {
1536
+ "properties": {
1537
+ "component_libraries": {
1538
+ "items": {
1539
+ "$ref": "#/components/schemas/ComponentLibraryResponse"
1540
+ },
1541
+ "title": "Component Libraries",
1542
+ "type": "array"
1543
+ }
1544
+ },
1545
+ "required": [
1546
+ "component_libraries"
1547
+ ],
1548
+ "title": "ListComponentLibrariesResponse",
1549
+ "type": "object"
1550
+ },
1551
+ "ListPipelineJobsResponse": {
1552
+ "properties": {
1553
+ "next_page_token": {
1554
+ "anyOf": [
1555
+ {
1556
+ "type": "string"
1557
+ },
1558
+ {
1559
+ "type": "null"
1560
+ }
1561
+ ],
1562
+ "title": "Next Page Token"
1563
+ },
1564
+ "pipeline_runs": {
1565
+ "items": {
1566
+ "$ref": "#/components/schemas/PipelineRunResponse"
1567
+ },
1568
+ "title": "Pipeline Runs",
1569
+ "type": "array"
1570
+ }
1571
+ },
1572
+ "required": [
1573
+ "pipeline_runs"
1574
+ ],
1575
+ "title": "ListPipelineJobsResponse",
1576
+ "type": "object"
1577
+ },
1578
+ "ListPublishedComponentsResponse": {
1579
+ "properties": {
1580
+ "published_components": {
1581
+ "items": {
1582
+ "$ref": "#/components/schemas/PublishedComponentResponse"
1583
+ },
1584
+ "title": "Published Components",
1585
+ "type": "array"
1586
+ }
1587
+ },
1588
+ "required": [
1589
+ "published_components"
1590
+ ],
1591
+ "title": "ListPublishedComponentsResponse",
1592
+ "type": "object"
1593
+ },
1594
+ "ListSecretsResponse": {
1595
+ "properties": {
1596
+ "secrets": {
1597
+ "items": {
1598
+ "$ref": "#/components/schemas/SecretInfoResponse"
1599
+ },
1600
+ "title": "Secrets",
1601
+ "type": "array"
1602
+ }
1603
+ },
1604
+ "required": [
1605
+ "secrets"
1606
+ ],
1607
+ "title": "ListSecretsResponse",
1608
+ "type": "object"
1609
+ },
1610
+ "MetadataSpec": {
1611
+ "properties": {
1612
+ "annotations": {
1613
+ "anyOf": [
1614
+ {
1615
+ "additionalProperties": {
1616
+ "type": "string"
1617
+ },
1618
+ "type": "object"
1619
+ },
1620
+ {
1621
+ "type": "null"
1622
+ }
1623
+ ],
1624
+ "title": "Annotations"
1625
+ },
1626
+ "labels": {
1627
+ "anyOf": [
1628
+ {
1629
+ "additionalProperties": {
1630
+ "type": "string"
1631
+ },
1632
+ "type": "object"
1633
+ },
1634
+ {
1635
+ "type": "null"
1636
+ }
1637
+ ],
1638
+ "title": "Labels"
1639
+ }
1640
+ },
1641
+ "title": "MetadataSpec",
1642
+ "type": "object"
1643
+ },
1644
+ "OutputPathPlaceholder": {
1645
+ "description": "Represents the command-line argument placeholder that will be replaced at run-time by a local file path pointing to a file where the program should write its output data.",
1646
+ "properties": {
1647
+ "outputPath": {
1648
+ "title": "Outputpath",
1649
+ "type": "string"
1650
+ }
1651
+ },
1652
+ "required": [
1653
+ "outputPath"
1654
+ ],
1655
+ "title": "OutputPathPlaceholder",
1656
+ "type": "object"
1657
+ },
1658
+ "OutputSpec": {
1659
+ "description": "Describes the component output specification",
1660
+ "properties": {
1661
+ "annotations": {
1662
+ "anyOf": [
1663
+ {
1664
+ "additionalProperties": true,
1665
+ "type": "object"
1666
+ },
1667
+ {
1668
+ "type": "null"
1669
+ }
1670
+ ],
1671
+ "title": "Annotations"
1672
+ },
1673
+ "description": {
1674
+ "anyOf": [
1675
+ {
1676
+ "type": "string"
1677
+ },
1678
+ {
1679
+ "type": "null"
1680
+ }
1681
+ ],
1682
+ "title": "Description"
1683
+ },
1684
+ "name": {
1685
+ "title": "Name",
1686
+ "type": "string"
1687
+ },
1688
+ "type": {
1689
+ "anyOf": [
1690
+ {
1691
+ "type": "string"
1692
+ },
1693
+ {
1694
+ "additionalProperties": true,
1695
+ "type": "object"
1696
+ },
1697
+ {
1698
+ "items": {},
1699
+ "type": "array"
1700
+ },
1701
+ {
1702
+ "type": "null"
1703
+ }
1704
+ ],
1705
+ "title": "Type"
1706
+ }
1707
+ },
1708
+ "required": [
1709
+ "name"
1710
+ ],
1711
+ "title": "OutputSpec",
1712
+ "type": "object"
1713
+ },
1714
+ "PipelineRunResponse": {
1715
+ "properties": {
1716
+ "annotations": {
1717
+ "anyOf": [
1718
+ {
1719
+ "additionalProperties": true,
1720
+ "type": "object"
1721
+ },
1722
+ {
1723
+ "type": "null"
1724
+ }
1725
+ ],
1726
+ "title": "Annotations"
1727
+ },
1728
+ "created_at": {
1729
+ "anyOf": [
1730
+ {
1731
+ "format": "date-time",
1732
+ "type": "string"
1733
+ },
1734
+ {
1735
+ "type": "null"
1736
+ }
1737
+ ],
1738
+ "title": "Created At"
1739
+ },
1740
+ "created_by": {
1741
+ "anyOf": [
1742
+ {
1743
+ "type": "string"
1744
+ },
1745
+ {
1746
+ "type": "null"
1747
+ }
1748
+ ],
1749
+ "title": "Created By"
1750
+ },
1751
+ "execution_status_stats": {
1752
+ "anyOf": [
1753
+ {
1754
+ "additionalProperties": {
1755
+ "type": "integer"
1756
+ },
1757
+ "type": "object"
1758
+ },
1759
+ {
1760
+ "type": "null"
1761
+ }
1762
+ ],
1763
+ "title": "Execution Status Stats"
1764
+ },
1765
+ "execution_summary": {
1766
+ "anyOf": [
1767
+ {
1768
+ "$ref": "#/components/schemas/ExecutionStatusSummary"
1769
+ },
1770
+ {
1771
+ "type": "null"
1772
+ }
1773
+ ]
1774
+ },
1775
+ "id": {
1776
+ "title": "Id",
1777
+ "type": "string"
1778
+ },
1779
+ "pipeline_name": {
1780
+ "anyOf": [
1781
+ {
1782
+ "type": "string"
1783
+ },
1784
+ {
1785
+ "type": "null"
1786
+ }
1787
+ ],
1788
+ "title": "Pipeline Name"
1789
+ },
1790
+ "root_execution_id": {
1791
+ "title": "Root Execution Id",
1792
+ "type": "string"
1793
+ }
1794
+ },
1795
+ "required": [
1796
+ "id",
1797
+ "root_execution_id"
1798
+ ],
1799
+ "title": "PipelineRunResponse",
1800
+ "type": "object"
1801
+ },
1802
+ "PublishedComponentResponse": {
1803
+ "properties": {
1804
+ "deprecated": {
1805
+ "default": false,
1806
+ "title": "Deprecated",
1807
+ "type": "boolean"
1808
+ },
1809
+ "digest": {
1810
+ "title": "Digest",
1811
+ "type": "string"
1812
+ },
1813
+ "name": {
1814
+ "anyOf": [
1815
+ {
1816
+ "type": "string"
1817
+ },
1818
+ {
1819
+ "type": "null"
1820
+ }
1821
+ ],
1822
+ "title": "Name"
1823
+ },
1824
+ "published_by": {
1825
+ "title": "Published By",
1826
+ "type": "string"
1827
+ },
1828
+ "superseded_by": {
1829
+ "anyOf": [
1830
+ {
1831
+ "type": "string"
1832
+ },
1833
+ {
1834
+ "type": "null"
1835
+ }
1836
+ ],
1837
+ "title": "Superseded By"
1838
+ },
1839
+ "url": {
1840
+ "anyOf": [
1841
+ {
1842
+ "type": "string"
1843
+ },
1844
+ {
1845
+ "type": "null"
1846
+ }
1847
+ ],
1848
+ "title": "Url"
1849
+ }
1850
+ },
1851
+ "required": [
1852
+ "digest",
1853
+ "published_by"
1854
+ ],
1855
+ "title": "PublishedComponentResponse",
1856
+ "type": "object"
1857
+ },
1858
+ "RetryStrategySpec": {
1859
+ "properties": {
1860
+ "maxRetries": {
1861
+ "title": "Maxretries",
1862
+ "type": "integer"
1863
+ }
1864
+ },
1865
+ "required": [
1866
+ "maxRetries"
1867
+ ],
1868
+ "title": "RetryStrategySpec",
1869
+ "type": "object"
1870
+ },
1871
+ "SecretInfoResponse": {
1872
+ "properties": {
1873
+ "created_at": {
1874
+ "format": "date-time",
1875
+ "title": "Created At",
1876
+ "type": "string"
1877
+ },
1878
+ "description": {
1879
+ "anyOf": [
1880
+ {
1881
+ "type": "string"
1882
+ },
1883
+ {
1884
+ "type": "null"
1885
+ }
1886
+ ],
1887
+ "title": "Description"
1888
+ },
1889
+ "expires_at": {
1890
+ "anyOf": [
1891
+ {
1892
+ "format": "date-time",
1893
+ "type": "string"
1894
+ },
1895
+ {
1896
+ "type": "null"
1897
+ }
1898
+ ],
1899
+ "title": "Expires At"
1900
+ },
1901
+ "secret_name": {
1902
+ "title": "Secret Name",
1903
+ "type": "string"
1904
+ },
1905
+ "updated_at": {
1906
+ "format": "date-time",
1907
+ "title": "Updated At",
1908
+ "type": "string"
1909
+ }
1910
+ },
1911
+ "required": [
1912
+ "secret_name",
1913
+ "created_at",
1914
+ "updated_at"
1915
+ ],
1916
+ "title": "SecretInfoResponse",
1917
+ "type": "object"
1918
+ },
1919
+ "TaskOutputArgument": {
1920
+ "description": "Represents the component argument value that comes from the output of another task.",
1921
+ "properties": {
1922
+ "taskOutput": {
1923
+ "$ref": "#/components/schemas/TaskOutputReference"
1924
+ }
1925
+ },
1926
+ "required": [
1927
+ "taskOutput"
1928
+ ],
1929
+ "title": "TaskOutputArgument",
1930
+ "type": "object"
1931
+ },
1932
+ "TaskOutputReference": {
1933
+ "description": "References the output of some task (the scope is a single graph).",
1934
+ "properties": {
1935
+ "outputName": {
1936
+ "title": "Outputname",
1937
+ "type": "string"
1938
+ },
1939
+ "taskId": {
1940
+ "title": "Taskid",
1941
+ "type": "string"
1942
+ }
1943
+ },
1944
+ "required": [
1945
+ "outputName",
1946
+ "taskId"
1947
+ ],
1948
+ "title": "TaskOutputReference",
1949
+ "type": "object"
1950
+ },
1951
+ "TaskSpec": {
1952
+ "description": "Task specification. Task is a \"configured\" component - a component supplied with arguments and other applied configuration changes.",
1953
+ "properties": {
1954
+ "annotations": {
1955
+ "anyOf": [
1956
+ {
1957
+ "additionalProperties": true,
1958
+ "type": "object"
1959
+ },
1960
+ {
1961
+ "type": "null"
1962
+ }
1963
+ ],
1964
+ "title": "Annotations"
1965
+ },
1966
+ "arguments": {
1967
+ "anyOf": [
1968
+ {
1969
+ "additionalProperties": {
1970
+ "anyOf": [
1971
+ {
1972
+ "type": "string"
1973
+ },
1974
+ {
1975
+ "$ref": "#/components/schemas/GraphInputArgument"
1976
+ },
1977
+ {
1978
+ "$ref": "#/components/schemas/TaskOutputArgument"
1979
+ },
1980
+ {
1981
+ "$ref": "#/components/schemas/DynamicDataArgument"
1982
+ }
1983
+ ]
1984
+ },
1985
+ "type": "object"
1986
+ },
1987
+ {
1988
+ "type": "null"
1989
+ }
1990
+ ],
1991
+ "title": "Arguments"
1992
+ },
1993
+ "componentRef": {
1994
+ "$ref": "#/components/schemas/ComponentReference"
1995
+ },
1996
+ "executionOptions": {
1997
+ "anyOf": [
1998
+ {
1999
+ "$ref": "#/components/schemas/ExecutionOptionsSpec"
2000
+ },
2001
+ {
2002
+ "type": "null"
2003
+ }
2004
+ ]
2005
+ },
2006
+ "isEnabled": {
2007
+ "anyOf": [
2008
+ {
2009
+ "type": "string"
2010
+ },
2011
+ {
2012
+ "$ref": "#/components/schemas/GraphInputArgument"
2013
+ },
2014
+ {
2015
+ "$ref": "#/components/schemas/TaskOutputArgument"
2016
+ },
2017
+ {
2018
+ "$ref": "#/components/schemas/DynamicDataArgument"
2019
+ },
2020
+ {
2021
+ "type": "null"
2022
+ }
2023
+ ],
2024
+ "title": "Isenabled"
2025
+ }
2026
+ },
2027
+ "required": [
2028
+ "componentRef"
2029
+ ],
2030
+ "title": "TaskSpec",
2031
+ "type": "object"
2032
+ },
2033
+ "UserComponentLibraryPinsResponse": {
2034
+ "properties": {
2035
+ "component_library_ids": {
2036
+ "items": {
2037
+ "type": "string"
2038
+ },
2039
+ "title": "Component Library Ids",
2040
+ "type": "array"
2041
+ }
2042
+ },
2043
+ "required": [
2044
+ "component_library_ids"
2045
+ ],
2046
+ "title": "UserComponentLibraryPinsResponse",
2047
+ "type": "object"
2048
+ },
2049
+ "UserSettingsResponse": {
2050
+ "properties": {
2051
+ "settings": {
2052
+ "additionalProperties": true,
2053
+ "title": "Settings",
2054
+ "type": "object"
2055
+ }
2056
+ },
2057
+ "required": [
2058
+ "settings"
2059
+ ],
2060
+ "title": "UserSettingsResponse",
2061
+ "type": "object"
2062
+ },
2063
+ "ValidationError": {
2064
+ "properties": {
2065
+ "ctx": {
2066
+ "title": "Context",
2067
+ "type": "object"
2068
+ },
2069
+ "input": {
2070
+ "title": "Input"
2071
+ },
2072
+ "loc": {
2073
+ "items": {
2074
+ "anyOf": [
2075
+ {
2076
+ "type": "string"
2077
+ },
2078
+ {
2079
+ "type": "integer"
2080
+ }
2081
+ ]
2082
+ },
2083
+ "title": "Location",
2084
+ "type": "array"
2085
+ },
2086
+ "msg": {
2087
+ "title": "Message",
2088
+ "type": "string"
2089
+ },
2090
+ "type": {
2091
+ "title": "Error Type",
2092
+ "type": "string"
2093
+ }
2094
+ },
2095
+ "required": [
2096
+ "loc",
2097
+ "msg",
2098
+ "type"
2099
+ ],
2100
+ "title": "ValidationError",
2101
+ "type": "object"
2102
+ }
2103
+ }
2104
+ },
2105
+ "info": {
2106
+ "title": "Cloud Pipelines API",
2107
+ "version": "0.0.1"
2108
+ },
2109
+ "openapi": "3.1.0",
2110
+ "paths": {
2111
+ "/api/admin/execution_node/{id}/status": {
2112
+ "put": {
2113
+ "operationId": "admin_set_execution_node_status_api_admin_execution_node__id__status_put",
2114
+ "parameters": [
2115
+ {
2116
+ "in": "path",
2117
+ "name": "id",
2118
+ "required": true,
2119
+ "schema": {
2120
+ "title": "Id",
2121
+ "type": "string"
2122
+ }
2123
+ },
2124
+ {
2125
+ "in": "query",
2126
+ "name": "status",
2127
+ "required": true,
2128
+ "schema": {
2129
+ "$ref": "#/components/schemas/ContainerExecutionStatus"
2130
+ }
2131
+ }
2132
+ ],
2133
+ "responses": {
2134
+ "200": {
2135
+ "content": {
2136
+ "application/json": {
2137
+ "schema": {}
2138
+ }
2139
+ },
2140
+ "description": "Successful Response"
2141
+ },
2142
+ "422": {
2143
+ "content": {
2144
+ "application/json": {
2145
+ "schema": {
2146
+ "$ref": "#/components/schemas/HTTPValidationError"
2147
+ }
2148
+ }
2149
+ },
2150
+ "description": "Validation Error"
2151
+ }
2152
+ },
2153
+ "summary": "Admin Set Execution Node Status",
2154
+ "tags": [
2155
+ "admin"
2156
+ ]
2157
+ }
2158
+ },
2159
+ "/api/admin/set_read_only_model": {
2160
+ "put": {
2161
+ "operationId": "admin_set_read_only_model_api_admin_set_read_only_model_put",
2162
+ "parameters": [
2163
+ {
2164
+ "in": "query",
2165
+ "name": "read_only",
2166
+ "required": true,
2167
+ "schema": {
2168
+ "title": "Read Only",
2169
+ "type": "boolean"
2170
+ }
2171
+ }
2172
+ ],
2173
+ "responses": {
2174
+ "200": {
2175
+ "content": {
2176
+ "application/json": {
2177
+ "schema": {}
2178
+ }
2179
+ },
2180
+ "description": "Successful Response"
2181
+ },
2182
+ "422": {
2183
+ "content": {
2184
+ "application/json": {
2185
+ "schema": {
2186
+ "$ref": "#/components/schemas/HTTPValidationError"
2187
+ }
2188
+ }
2189
+ },
2190
+ "description": "Validation Error"
2191
+ }
2192
+ },
2193
+ "summary": "Admin Set Read Only Model",
2194
+ "tags": [
2195
+ "admin"
2196
+ ]
2197
+ }
2198
+ },
2199
+ "/api/admin/sql_engine_connection_pool_status": {
2200
+ "get": {
2201
+ "operationId": "get_sql_engine_connection_pool_status_api_admin_sql_engine_connection_pool_status_get",
2202
+ "responses": {
2203
+ "200": {
2204
+ "content": {
2205
+ "application/json": {
2206
+ "schema": {
2207
+ "title": "Response Get Sql Engine Connection Pool Status Api Admin Sql Engine Connection Pool Status Get",
2208
+ "type": "string"
2209
+ }
2210
+ }
2211
+ },
2212
+ "description": "Successful Response"
2213
+ }
2214
+ },
2215
+ "summary": "Get Sql Engine Connection Pool Status"
2216
+ }
2217
+ },
2218
+ "/api/artifacts/{id}": {
2219
+ "get": {
2220
+ "operationId": "get_api_artifacts__id__get",
2221
+ "parameters": [
2222
+ {
2223
+ "in": "path",
2224
+ "name": "id",
2225
+ "required": true,
2226
+ "schema": {
2227
+ "title": "Id",
2228
+ "type": "string"
2229
+ }
2230
+ }
2231
+ ],
2232
+ "responses": {
2233
+ "200": {
2234
+ "content": {
2235
+ "application/json": {
2236
+ "schema": {
2237
+ "$ref": "#/components/schemas/GetArtifactInfoResponse"
2238
+ }
2239
+ }
2240
+ },
2241
+ "description": "Successful Response"
2242
+ },
2243
+ "422": {
2244
+ "content": {
2245
+ "application/json": {
2246
+ "schema": {
2247
+ "$ref": "#/components/schemas/HTTPValidationError"
2248
+ }
2249
+ }
2250
+ },
2251
+ "description": "Validation Error"
2252
+ }
2253
+ },
2254
+ "summary": "Get",
2255
+ "tags": [
2256
+ "artifacts"
2257
+ ]
2258
+ }
2259
+ },
2260
+ "/api/artifacts/{id}/signed_artifact_url": {
2261
+ "get": {
2262
+ "operationId": "get_signed_artifact_url_api_artifacts__id__signed_artifact_url_get",
2263
+ "parameters": [
2264
+ {
2265
+ "in": "path",
2266
+ "name": "id",
2267
+ "required": true,
2268
+ "schema": {
2269
+ "title": "Id",
2270
+ "type": "string"
2271
+ }
2272
+ }
2273
+ ],
2274
+ "responses": {
2275
+ "200": {
2276
+ "content": {
2277
+ "application/json": {
2278
+ "schema": {
2279
+ "$ref": "#/components/schemas/GetArtifactSignedUrlResponse"
2280
+ }
2281
+ }
2282
+ },
2283
+ "description": "Successful Response"
2284
+ },
2285
+ "422": {
2286
+ "content": {
2287
+ "application/json": {
2288
+ "schema": {
2289
+ "$ref": "#/components/schemas/HTTPValidationError"
2290
+ }
2291
+ }
2292
+ },
2293
+ "description": "Validation Error"
2294
+ }
2295
+ },
2296
+ "summary": "Get Signed Artifact Url",
2297
+ "tags": [
2298
+ "artifacts"
2299
+ ]
2300
+ }
2301
+ },
2302
+ "/api/component_libraries/": {
2303
+ "get": {
2304
+ "operationId": "list_api_component_libraries__get",
2305
+ "parameters": [
2306
+ {
2307
+ "in": "query",
2308
+ "name": "name_substring",
2309
+ "required": false,
2310
+ "schema": {
2311
+ "anyOf": [
2312
+ {
2313
+ "type": "string"
2314
+ },
2315
+ {
2316
+ "type": "null"
2317
+ }
2318
+ ],
2319
+ "title": "Name Substring"
2320
+ }
2321
+ }
2322
+ ],
2323
+ "responses": {
2324
+ "200": {
2325
+ "content": {
2326
+ "application/json": {
2327
+ "schema": {
2328
+ "$ref": "#/components/schemas/ListComponentLibrariesResponse"
2329
+ }
2330
+ }
2331
+ },
2332
+ "description": "Successful Response"
2333
+ },
2334
+ "422": {
2335
+ "content": {
2336
+ "application/json": {
2337
+ "schema": {
2338
+ "$ref": "#/components/schemas/HTTPValidationError"
2339
+ }
2340
+ }
2341
+ },
2342
+ "description": "Validation Error"
2343
+ }
2344
+ },
2345
+ "summary": "List",
2346
+ "tags": [
2347
+ "components"
2348
+ ]
2349
+ },
2350
+ "post": {
2351
+ "operationId": "create_api_component_libraries__post",
2352
+ "parameters": [
2353
+ {
2354
+ "in": "query",
2355
+ "name": "hide_from_search",
2356
+ "required": false,
2357
+ "schema": {
2358
+ "default": false,
2359
+ "title": "Hide From Search",
2360
+ "type": "boolean"
2361
+ }
2362
+ }
2363
+ ],
2364
+ "requestBody": {
2365
+ "content": {
2366
+ "application/json": {
2367
+ "schema": {
2368
+ "$ref": "#/components/schemas/ComponentLibrary"
2369
+ }
2370
+ }
2371
+ },
2372
+ "required": true
2373
+ },
2374
+ "responses": {
2375
+ "200": {
2376
+ "content": {
2377
+ "application/json": {
2378
+ "schema": {
2379
+ "$ref": "#/components/schemas/ComponentLibraryResponse"
2380
+ }
2381
+ }
2382
+ },
2383
+ "description": "Successful Response"
2384
+ },
2385
+ "422": {
2386
+ "content": {
2387
+ "application/json": {
2388
+ "schema": {
2389
+ "$ref": "#/components/schemas/HTTPValidationError"
2390
+ }
2391
+ }
2392
+ },
2393
+ "description": "Validation Error"
2394
+ }
2395
+ },
2396
+ "summary": "Create",
2397
+ "tags": [
2398
+ "components"
2399
+ ]
2400
+ }
2401
+ },
2402
+ "/api/component_libraries/{id}": {
2403
+ "get": {
2404
+ "operationId": "get_api_component_libraries__id__get",
2405
+ "parameters": [
2406
+ {
2407
+ "in": "path",
2408
+ "name": "id",
2409
+ "required": true,
2410
+ "schema": {
2411
+ "title": "Id",
2412
+ "type": "string"
2413
+ }
2414
+ },
2415
+ {
2416
+ "in": "query",
2417
+ "name": "include_component_texts",
2418
+ "required": false,
2419
+ "schema": {
2420
+ "default": false,
2421
+ "title": "Include Component Texts",
2422
+ "type": "boolean"
2423
+ }
2424
+ }
2425
+ ],
2426
+ "responses": {
2427
+ "200": {
2428
+ "content": {
2429
+ "application/json": {
2430
+ "schema": {
2431
+ "$ref": "#/components/schemas/ComponentLibraryResponse"
2432
+ }
2433
+ }
2434
+ },
2435
+ "description": "Successful Response"
2436
+ },
2437
+ "422": {
2438
+ "content": {
2439
+ "application/json": {
2440
+ "schema": {
2441
+ "$ref": "#/components/schemas/HTTPValidationError"
2442
+ }
2443
+ }
2444
+ },
2445
+ "description": "Validation Error"
2446
+ }
2447
+ },
2448
+ "summary": "Get",
2449
+ "tags": [
2450
+ "components"
2451
+ ]
2452
+ },
2453
+ "put": {
2454
+ "operationId": "replace_api_component_libraries__id__put",
2455
+ "parameters": [
2456
+ {
2457
+ "in": "path",
2458
+ "name": "id",
2459
+ "required": true,
2460
+ "schema": {
2461
+ "title": "Id",
2462
+ "type": "string"
2463
+ }
2464
+ },
2465
+ {
2466
+ "in": "query",
2467
+ "name": "hide_from_search",
2468
+ "required": false,
2469
+ "schema": {
2470
+ "anyOf": [
2471
+ {
2472
+ "type": "boolean"
2473
+ },
2474
+ {
2475
+ "type": "null"
2476
+ }
2477
+ ],
2478
+ "title": "Hide From Search"
2479
+ }
2480
+ }
2481
+ ],
2482
+ "requestBody": {
2483
+ "content": {
2484
+ "application/json": {
2485
+ "schema": {
2486
+ "$ref": "#/components/schemas/ComponentLibrary"
2487
+ }
2488
+ }
2489
+ },
2490
+ "required": true
2491
+ },
2492
+ "responses": {
2493
+ "200": {
2494
+ "content": {
2495
+ "application/json": {
2496
+ "schema": {
2497
+ "$ref": "#/components/schemas/ComponentLibraryResponse"
2498
+ }
2499
+ }
2500
+ },
2501
+ "description": "Successful Response"
2502
+ },
2503
+ "422": {
2504
+ "content": {
2505
+ "application/json": {
2506
+ "schema": {
2507
+ "$ref": "#/components/schemas/HTTPValidationError"
2508
+ }
2509
+ }
2510
+ },
2511
+ "description": "Validation Error"
2512
+ }
2513
+ },
2514
+ "summary": "Replace",
2515
+ "tags": [
2516
+ "components"
2517
+ ]
2518
+ }
2519
+ },
2520
+ "/api/component_library_pins/me/": {
2521
+ "get": {
2522
+ "operationId": "get_component_library_pins_api_component_library_pins_me__get",
2523
+ "responses": {
2524
+ "200": {
2525
+ "content": {
2526
+ "application/json": {
2527
+ "schema": {
2528
+ "$ref": "#/components/schemas/UserComponentLibraryPinsResponse"
2529
+ }
2530
+ }
2531
+ },
2532
+ "description": "Successful Response"
2533
+ }
2534
+ },
2535
+ "summary": "Get Component Library Pins",
2536
+ "tags": [
2537
+ "components"
2538
+ ]
2539
+ },
2540
+ "put": {
2541
+ "operationId": "set_component_library_pins_api_component_library_pins_me__put",
2542
+ "requestBody": {
2543
+ "content": {
2544
+ "application/json": {
2545
+ "schema": {
2546
+ "items": {
2547
+ "type": "string"
2548
+ },
2549
+ "title": "Component Library Ids",
2550
+ "type": "array"
2551
+ }
2552
+ }
2553
+ },
2554
+ "required": true
2555
+ },
2556
+ "responses": {
2557
+ "200": {
2558
+ "content": {
2559
+ "application/json": {
2560
+ "schema": {}
2561
+ }
2562
+ },
2563
+ "description": "Successful Response"
2564
+ },
2565
+ "422": {
2566
+ "content": {
2567
+ "application/json": {
2568
+ "schema": {
2569
+ "$ref": "#/components/schemas/HTTPValidationError"
2570
+ }
2571
+ }
2572
+ },
2573
+ "description": "Validation Error"
2574
+ }
2575
+ },
2576
+ "summary": "Set Component Library Pins",
2577
+ "tags": [
2578
+ "components"
2579
+ ]
2580
+ }
2581
+ },
2582
+ "/api/components/{digest}": {
2583
+ "get": {
2584
+ "operationId": "get_api_components__digest__get",
2585
+ "parameters": [
2586
+ {
2587
+ "in": "path",
2588
+ "name": "digest",
2589
+ "required": true,
2590
+ "schema": {
2591
+ "title": "Digest",
2592
+ "type": "string"
2593
+ }
2594
+ }
2595
+ ],
2596
+ "responses": {
2597
+ "200": {
2598
+ "content": {
2599
+ "application/json": {
2600
+ "schema": {
2601
+ "$ref": "#/components/schemas/ComponentResponse"
2602
+ }
2603
+ }
2604
+ },
2605
+ "description": "Successful Response"
2606
+ },
2607
+ "422": {
2608
+ "content": {
2609
+ "application/json": {
2610
+ "schema": {
2611
+ "$ref": "#/components/schemas/HTTPValidationError"
2612
+ }
2613
+ }
2614
+ },
2615
+ "description": "Validation Error"
2616
+ }
2617
+ },
2618
+ "summary": "Get",
2619
+ "tags": [
2620
+ "components"
2621
+ ]
2622
+ }
2623
+ },
2624
+ "/api/executions/{id}/artifacts": {
2625
+ "get": {
2626
+ "operationId": "get_artifacts_api_executions__id__artifacts_get",
2627
+ "parameters": [
2628
+ {
2629
+ "in": "path",
2630
+ "name": "id",
2631
+ "required": true,
2632
+ "schema": {
2633
+ "title": "Id",
2634
+ "type": "string"
2635
+ }
2636
+ }
2637
+ ],
2638
+ "responses": {
2639
+ "200": {
2640
+ "content": {
2641
+ "application/json": {
2642
+ "schema": {
2643
+ "$ref": "#/components/schemas/GetExecutionArtifactsResponse"
2644
+ }
2645
+ }
2646
+ },
2647
+ "description": "Successful Response"
2648
+ },
2649
+ "422": {
2650
+ "content": {
2651
+ "application/json": {
2652
+ "schema": {
2653
+ "$ref": "#/components/schemas/HTTPValidationError"
2654
+ }
2655
+ }
2656
+ },
2657
+ "description": "Validation Error"
2658
+ }
2659
+ },
2660
+ "summary": "Get Artifacts",
2661
+ "tags": [
2662
+ "executions"
2663
+ ]
2664
+ }
2665
+ },
2666
+ "/api/executions/{id}/container_log": {
2667
+ "get": {
2668
+ "operationId": "get_container_log_api_executions__id__container_log_get",
2669
+ "parameters": [
2670
+ {
2671
+ "in": "path",
2672
+ "name": "id",
2673
+ "required": true,
2674
+ "schema": {
2675
+ "title": "Id",
2676
+ "type": "string"
2677
+ }
2678
+ }
2679
+ ],
2680
+ "responses": {
2681
+ "200": {
2682
+ "content": {
2683
+ "application/json": {
2684
+ "schema": {
2685
+ "$ref": "#/components/schemas/GetContainerExecutionLogResponse"
2686
+ }
2687
+ }
2688
+ },
2689
+ "description": "Successful Response"
2690
+ },
2691
+ "422": {
2692
+ "content": {
2693
+ "application/json": {
2694
+ "schema": {
2695
+ "$ref": "#/components/schemas/HTTPValidationError"
2696
+ }
2697
+ }
2698
+ },
2699
+ "description": "Validation Error"
2700
+ }
2701
+ },
2702
+ "summary": "Get Container Log",
2703
+ "tags": [
2704
+ "executions"
2705
+ ]
2706
+ }
2707
+ },
2708
+ "/api/executions/{id}/container_state": {
2709
+ "get": {
2710
+ "operationId": "get_container_execution_state_api_executions__id__container_state_get",
2711
+ "parameters": [
2712
+ {
2713
+ "in": "path",
2714
+ "name": "id",
2715
+ "required": true,
2716
+ "schema": {
2717
+ "title": "Id",
2718
+ "type": "string"
2719
+ }
2720
+ },
2721
+ {
2722
+ "in": "query",
2723
+ "name": "include_execution_nodes_linked_to_same_container_execution",
2724
+ "required": false,
2725
+ "schema": {
2726
+ "anyOf": [
2727
+ {
2728
+ "type": "boolean"
2729
+ },
2730
+ {
2731
+ "type": "null"
2732
+ }
2733
+ ],
2734
+ "title": "Include Execution Nodes Linked To Same Container Execution"
2735
+ }
2736
+ }
2737
+ ],
2738
+ "responses": {
2739
+ "200": {
2740
+ "content": {
2741
+ "application/json": {
2742
+ "schema": {
2743
+ "$ref": "#/components/schemas/GetContainerExecutionStateResponse"
2744
+ }
2745
+ }
2746
+ },
2747
+ "description": "Successful Response"
2748
+ },
2749
+ "422": {
2750
+ "content": {
2751
+ "application/json": {
2752
+ "schema": {
2753
+ "$ref": "#/components/schemas/HTTPValidationError"
2754
+ }
2755
+ }
2756
+ },
2757
+ "description": "Validation Error"
2758
+ }
2759
+ },
2760
+ "summary": "Get Container Execution State",
2761
+ "tags": [
2762
+ "executions"
2763
+ ]
2764
+ }
2765
+ },
2766
+ "/api/executions/{id}/details": {
2767
+ "get": {
2768
+ "operationId": "get_api_executions__id__details_get",
2769
+ "parameters": [
2770
+ {
2771
+ "in": "path",
2772
+ "name": "id",
2773
+ "required": true,
2774
+ "schema": {
2775
+ "title": "Id",
2776
+ "type": "string"
2777
+ }
2778
+ }
2779
+ ],
2780
+ "responses": {
2781
+ "200": {
2782
+ "content": {
2783
+ "application/json": {
2784
+ "schema": {
2785
+ "$ref": "#/components/schemas/GetExecutionInfoResponse"
2786
+ }
2787
+ }
2788
+ },
2789
+ "description": "Successful Response"
2790
+ },
2791
+ "422": {
2792
+ "content": {
2793
+ "application/json": {
2794
+ "schema": {
2795
+ "$ref": "#/components/schemas/HTTPValidationError"
2796
+ }
2797
+ }
2798
+ },
2799
+ "description": "Validation Error"
2800
+ }
2801
+ },
2802
+ "summary": "Get",
2803
+ "tags": [
2804
+ "executions"
2805
+ ]
2806
+ }
2807
+ },
2808
+ "/api/executions/{id}/graph_execution_state": {
2809
+ "get": {
2810
+ "operationId": "get_graph_execution_state_api_executions__id__graph_execution_state_get",
2811
+ "parameters": [
2812
+ {
2813
+ "in": "path",
2814
+ "name": "id",
2815
+ "required": true,
2816
+ "schema": {
2817
+ "title": "Id",
2818
+ "type": "string"
2819
+ }
2820
+ }
2821
+ ],
2822
+ "responses": {
2823
+ "200": {
2824
+ "content": {
2825
+ "application/json": {
2826
+ "schema": {
2827
+ "$ref": "#/components/schemas/GetGraphExecutionStateResponse"
2828
+ }
2829
+ }
2830
+ },
2831
+ "description": "Successful Response"
2832
+ },
2833
+ "422": {
2834
+ "content": {
2835
+ "application/json": {
2836
+ "schema": {
2837
+ "$ref": "#/components/schemas/HTTPValidationError"
2838
+ }
2839
+ }
2840
+ },
2841
+ "description": "Validation Error"
2842
+ }
2843
+ },
2844
+ "summary": "Get Graph Execution State",
2845
+ "tags": [
2846
+ "executions"
2847
+ ]
2848
+ }
2849
+ },
2850
+ "/api/executions/{id}/state": {
2851
+ "get": {
2852
+ "operationId": "get_graph_execution_state_api_executions__id__state_get",
2853
+ "parameters": [
2854
+ {
2855
+ "in": "path",
2856
+ "name": "id",
2857
+ "required": true,
2858
+ "schema": {
2859
+ "title": "Id",
2860
+ "type": "string"
2861
+ }
2862
+ }
2863
+ ],
2864
+ "responses": {
2865
+ "200": {
2866
+ "content": {
2867
+ "application/json": {
2868
+ "schema": {
2869
+ "$ref": "#/components/schemas/GetGraphExecutionStateResponse"
2870
+ }
2871
+ }
2872
+ },
2873
+ "description": "Successful Response"
2874
+ },
2875
+ "422": {
2876
+ "content": {
2877
+ "application/json": {
2878
+ "schema": {
2879
+ "$ref": "#/components/schemas/HTTPValidationError"
2880
+ }
2881
+ }
2882
+ },
2883
+ "description": "Validation Error"
2884
+ }
2885
+ },
2886
+ "summary": "Get Graph Execution State",
2887
+ "tags": [
2888
+ "executions"
2889
+ ]
2890
+ }
2891
+ },
2892
+ "/api/pipeline_runs/": {
2893
+ "get": {
2894
+ "operationId": "list_api_pipeline_runs__get",
2895
+ "parameters": [
2896
+ {
2897
+ "in": "query",
2898
+ "name": "page_token",
2899
+ "required": false,
2900
+ "schema": {
2901
+ "anyOf": [
2902
+ {
2903
+ "type": "string"
2904
+ },
2905
+ {
2906
+ "type": "null"
2907
+ }
2908
+ ],
2909
+ "title": "Page Token"
2910
+ }
2911
+ },
2912
+ {
2913
+ "in": "query",
2914
+ "name": "filter",
2915
+ "required": false,
2916
+ "schema": {
2917
+ "anyOf": [
2918
+ {
2919
+ "type": "string"
2920
+ },
2921
+ {
2922
+ "type": "null"
2923
+ }
2924
+ ],
2925
+ "title": "Filter"
2926
+ }
2927
+ },
2928
+ {
2929
+ "in": "query",
2930
+ "name": "filter_query",
2931
+ "required": false,
2932
+ "schema": {
2933
+ "anyOf": [
2934
+ {
2935
+ "type": "string"
2936
+ },
2937
+ {
2938
+ "type": "null"
2939
+ }
2940
+ ],
2941
+ "title": "Filter Query"
2942
+ }
2943
+ },
2944
+ {
2945
+ "in": "query",
2946
+ "name": "include_pipeline_names",
2947
+ "required": false,
2948
+ "schema": {
2949
+ "default": false,
2950
+ "title": "Include Pipeline Names",
2951
+ "type": "boolean"
2952
+ }
2953
+ },
2954
+ {
2955
+ "in": "query",
2956
+ "name": "include_execution_stats",
2957
+ "required": false,
2958
+ "schema": {
2959
+ "default": false,
2960
+ "title": "Include Execution Stats",
2961
+ "type": "boolean"
2962
+ }
2963
+ }
2964
+ ],
2965
+ "responses": {
2966
+ "200": {
2967
+ "content": {
2968
+ "application/json": {
2969
+ "schema": {
2970
+ "$ref": "#/components/schemas/ListPipelineJobsResponse"
2971
+ }
2972
+ }
2973
+ },
2974
+ "description": "Successful Response"
2975
+ },
2976
+ "422": {
2977
+ "content": {
2978
+ "application/json": {
2979
+ "schema": {
2980
+ "$ref": "#/components/schemas/HTTPValidationError"
2981
+ }
2982
+ }
2983
+ },
2984
+ "description": "Validation Error"
2985
+ }
2986
+ },
2987
+ "summary": "List",
2988
+ "tags": [
2989
+ "pipelineRuns"
2990
+ ]
2991
+ },
2992
+ "post": {
2993
+ "operationId": "create_api_pipeline_runs__post",
2994
+ "requestBody": {
2995
+ "content": {
2996
+ "application/json": {
2997
+ "schema": {
2998
+ "$ref": "#/components/schemas/Body_create_api_pipeline_runs__post"
2999
+ }
3000
+ }
3001
+ },
3002
+ "required": true
3003
+ },
3004
+ "responses": {
3005
+ "200": {
3006
+ "content": {
3007
+ "application/json": {
3008
+ "schema": {
3009
+ "$ref": "#/components/schemas/PipelineRunResponse"
3010
+ }
3011
+ }
3012
+ },
3013
+ "description": "Successful Response"
3014
+ },
3015
+ "422": {
3016
+ "content": {
3017
+ "application/json": {
3018
+ "schema": {
3019
+ "$ref": "#/components/schemas/HTTPValidationError"
3020
+ }
3021
+ }
3022
+ },
3023
+ "description": "Validation Error"
3024
+ }
3025
+ },
3026
+ "summary": "Create",
3027
+ "tags": [
3028
+ "pipelineRuns"
3029
+ ]
3030
+ }
3031
+ },
3032
+ "/api/pipeline_runs/{id}": {
3033
+ "get": {
3034
+ "operationId": "get_api_pipeline_runs__id__get",
3035
+ "parameters": [
3036
+ {
3037
+ "in": "path",
3038
+ "name": "id",
3039
+ "required": true,
3040
+ "schema": {
3041
+ "title": "Id",
3042
+ "type": "string"
3043
+ }
3044
+ },
3045
+ {
3046
+ "in": "query",
3047
+ "name": "include_execution_stats",
3048
+ "required": false,
3049
+ "schema": {
3050
+ "default": false,
3051
+ "title": "Include Execution Stats",
3052
+ "type": "boolean"
3053
+ }
3054
+ }
3055
+ ],
3056
+ "responses": {
3057
+ "200": {
3058
+ "content": {
3059
+ "application/json": {
3060
+ "schema": {
3061
+ "$ref": "#/components/schemas/PipelineRunResponse"
3062
+ }
3063
+ }
3064
+ },
3065
+ "description": "Successful Response"
3066
+ },
3067
+ "422": {
3068
+ "content": {
3069
+ "application/json": {
3070
+ "schema": {
3071
+ "$ref": "#/components/schemas/HTTPValidationError"
3072
+ }
3073
+ }
3074
+ },
3075
+ "description": "Validation Error"
3076
+ }
3077
+ },
3078
+ "summary": "Get",
3079
+ "tags": [
3080
+ "pipelineRuns"
3081
+ ]
3082
+ }
3083
+ },
3084
+ "/api/pipeline_runs/{id}/annotations/": {
3085
+ "get": {
3086
+ "operationId": "list_annotations_api_pipeline_runs__id__annotations__get",
3087
+ "parameters": [
3088
+ {
3089
+ "in": "path",
3090
+ "name": "id",
3091
+ "required": true,
3092
+ "schema": {
3093
+ "title": "Id",
3094
+ "type": "string"
3095
+ }
3096
+ }
3097
+ ],
3098
+ "responses": {
3099
+ "200": {
3100
+ "content": {
3101
+ "application/json": {
3102
+ "schema": {
3103
+ "additionalProperties": {
3104
+ "anyOf": [
3105
+ {
3106
+ "type": "string"
3107
+ },
3108
+ {
3109
+ "type": "null"
3110
+ }
3111
+ ]
3112
+ },
3113
+ "title": "Response List Annotations Api Pipeline Runs Id Annotations Get",
3114
+ "type": "object"
3115
+ }
3116
+ }
3117
+ },
3118
+ "description": "Successful Response"
3119
+ },
3120
+ "422": {
3121
+ "content": {
3122
+ "application/json": {
3123
+ "schema": {
3124
+ "$ref": "#/components/schemas/HTTPValidationError"
3125
+ }
3126
+ }
3127
+ },
3128
+ "description": "Validation Error"
3129
+ }
3130
+ },
3131
+ "summary": "List Annotations",
3132
+ "tags": [
3133
+ "pipelineRuns"
3134
+ ]
3135
+ }
3136
+ },
3137
+ "/api/pipeline_runs/{id}/annotations/{key}": {
3138
+ "delete": {
3139
+ "operationId": "delete_annotation_api_pipeline_runs__id__annotations__key__delete",
3140
+ "parameters": [
3141
+ {
3142
+ "in": "path",
3143
+ "name": "id",
3144
+ "required": true,
3145
+ "schema": {
3146
+ "title": "Id",
3147
+ "type": "string"
3148
+ }
3149
+ },
3150
+ {
3151
+ "in": "path",
3152
+ "name": "key",
3153
+ "required": true,
3154
+ "schema": {
3155
+ "title": "Key",
3156
+ "type": "string"
3157
+ }
3158
+ }
3159
+ ],
3160
+ "responses": {
3161
+ "200": {
3162
+ "content": {
3163
+ "application/json": {
3164
+ "schema": {}
3165
+ }
3166
+ },
3167
+ "description": "Successful Response"
3168
+ },
3169
+ "422": {
3170
+ "content": {
3171
+ "application/json": {
3172
+ "schema": {
3173
+ "$ref": "#/components/schemas/HTTPValidationError"
3174
+ }
3175
+ }
3176
+ },
3177
+ "description": "Validation Error"
3178
+ }
3179
+ },
3180
+ "summary": "Delete Annotation",
3181
+ "tags": [
3182
+ "pipelineRuns"
3183
+ ]
3184
+ },
3185
+ "put": {
3186
+ "operationId": "set_annotation_api_pipeline_runs__id__annotations__key__put",
3187
+ "parameters": [
3188
+ {
3189
+ "in": "path",
3190
+ "name": "id",
3191
+ "required": true,
3192
+ "schema": {
3193
+ "title": "Id",
3194
+ "type": "string"
3195
+ }
3196
+ },
3197
+ {
3198
+ "in": "path",
3199
+ "name": "key",
3200
+ "required": true,
3201
+ "schema": {
3202
+ "title": "Key",
3203
+ "type": "string"
3204
+ }
3205
+ },
3206
+ {
3207
+ "in": "query",
3208
+ "name": "value",
3209
+ "required": false,
3210
+ "schema": {
3211
+ "anyOf": [
3212
+ {
3213
+ "type": "string"
3214
+ },
3215
+ {
3216
+ "type": "null"
3217
+ }
3218
+ ],
3219
+ "title": "Value"
3220
+ }
3221
+ }
3222
+ ],
3223
+ "responses": {
3224
+ "200": {
3225
+ "content": {
3226
+ "application/json": {
3227
+ "schema": {}
3228
+ }
3229
+ },
3230
+ "description": "Successful Response"
3231
+ },
3232
+ "422": {
3233
+ "content": {
3234
+ "application/json": {
3235
+ "schema": {
3236
+ "$ref": "#/components/schemas/HTTPValidationError"
3237
+ }
3238
+ }
3239
+ },
3240
+ "description": "Validation Error"
3241
+ }
3242
+ },
3243
+ "summary": "Set Annotation",
3244
+ "tags": [
3245
+ "pipelineRuns"
3246
+ ]
3247
+ }
3248
+ },
3249
+ "/api/pipeline_runs/{id}/cancel": {
3250
+ "post": {
3251
+ "operationId": "pipeline_run_cancel_api_pipeline_runs__id__cancel_post",
3252
+ "parameters": [
3253
+ {
3254
+ "in": "path",
3255
+ "name": "id",
3256
+ "required": true,
3257
+ "schema": {
3258
+ "title": "Id",
3259
+ "type": "string"
3260
+ }
3261
+ }
3262
+ ],
3263
+ "responses": {
3264
+ "200": {
3265
+ "content": {
3266
+ "application/json": {
3267
+ "schema": {}
3268
+ }
3269
+ },
3270
+ "description": "Successful Response"
3271
+ },
3272
+ "422": {
3273
+ "content": {
3274
+ "application/json": {
3275
+ "schema": {
3276
+ "$ref": "#/components/schemas/HTTPValidationError"
3277
+ }
3278
+ }
3279
+ },
3280
+ "description": "Validation Error"
3281
+ }
3282
+ },
3283
+ "summary": "Pipeline Run Cancel",
3284
+ "tags": [
3285
+ "pipelineRuns"
3286
+ ]
3287
+ }
3288
+ },
3289
+ "/api/published_components/": {
3290
+ "get": {
3291
+ "operationId": "list_api_published_components__get",
3292
+ "parameters": [
3293
+ {
3294
+ "in": "query",
3295
+ "name": "include_deprecated",
3296
+ "required": false,
3297
+ "schema": {
3298
+ "default": false,
3299
+ "title": "Include Deprecated",
3300
+ "type": "boolean"
3301
+ }
3302
+ },
3303
+ {
3304
+ "in": "query",
3305
+ "name": "name_substring",
3306
+ "required": false,
3307
+ "schema": {
3308
+ "anyOf": [
3309
+ {
3310
+ "type": "string"
3311
+ },
3312
+ {
3313
+ "type": "null"
3314
+ }
3315
+ ],
3316
+ "title": "Name Substring"
3317
+ }
3318
+ },
3319
+ {
3320
+ "in": "query",
3321
+ "name": "published_by_substring",
3322
+ "required": false,
3323
+ "schema": {
3324
+ "anyOf": [
3325
+ {
3326
+ "type": "string"
3327
+ },
3328
+ {
3329
+ "type": "null"
3330
+ }
3331
+ ],
3332
+ "title": "Published By Substring"
3333
+ }
3334
+ },
3335
+ {
3336
+ "in": "query",
3337
+ "name": "digest",
3338
+ "required": false,
3339
+ "schema": {
3340
+ "anyOf": [
3341
+ {
3342
+ "type": "string"
3343
+ },
3344
+ {
3345
+ "type": "null"
3346
+ }
3347
+ ],
3348
+ "title": "Digest"
3349
+ }
3350
+ }
3351
+ ],
3352
+ "responses": {
3353
+ "200": {
3354
+ "content": {
3355
+ "application/json": {
3356
+ "schema": {
3357
+ "$ref": "#/components/schemas/ListPublishedComponentsResponse"
3358
+ }
3359
+ }
3360
+ },
3361
+ "description": "Successful Response"
3362
+ },
3363
+ "422": {
3364
+ "content": {
3365
+ "application/json": {
3366
+ "schema": {
3367
+ "$ref": "#/components/schemas/HTTPValidationError"
3368
+ }
3369
+ }
3370
+ },
3371
+ "description": "Validation Error"
3372
+ }
3373
+ },
3374
+ "summary": "List",
3375
+ "tags": [
3376
+ "components"
3377
+ ]
3378
+ },
3379
+ "post": {
3380
+ "operationId": "publish_api_published_components__post",
3381
+ "requestBody": {
3382
+ "content": {
3383
+ "application/json": {
3384
+ "schema": {
3385
+ "$ref": "#/components/schemas/ComponentReference"
3386
+ }
3387
+ }
3388
+ },
3389
+ "required": true
3390
+ },
3391
+ "responses": {
3392
+ "200": {
3393
+ "content": {
3394
+ "application/json": {
3395
+ "schema": {
3396
+ "$ref": "#/components/schemas/PublishedComponentResponse"
3397
+ }
3398
+ }
3399
+ },
3400
+ "description": "Successful Response"
3401
+ },
3402
+ "422": {
3403
+ "content": {
3404
+ "application/json": {
3405
+ "schema": {
3406
+ "$ref": "#/components/schemas/HTTPValidationError"
3407
+ }
3408
+ }
3409
+ },
3410
+ "description": "Validation Error"
3411
+ }
3412
+ },
3413
+ "summary": "Publish",
3414
+ "tags": [
3415
+ "components"
3416
+ ]
3417
+ }
3418
+ },
3419
+ "/api/published_components/{digest}": {
3420
+ "put": {
3421
+ "operationId": "update_api_published_components__digest__put",
3422
+ "parameters": [
3423
+ {
3424
+ "in": "path",
3425
+ "name": "digest",
3426
+ "required": true,
3427
+ "schema": {
3428
+ "title": "Digest",
3429
+ "type": "string"
3430
+ }
3431
+ },
3432
+ {
3433
+ "in": "query",
3434
+ "name": "deprecated",
3435
+ "required": false,
3436
+ "schema": {
3437
+ "anyOf": [
3438
+ {
3439
+ "type": "boolean"
3440
+ },
3441
+ {
3442
+ "type": "null"
3443
+ }
3444
+ ],
3445
+ "title": "Deprecated"
3446
+ }
3447
+ },
3448
+ {
3449
+ "in": "query",
3450
+ "name": "superseded_by",
3451
+ "required": false,
3452
+ "schema": {
3453
+ "anyOf": [
3454
+ {
3455
+ "type": "string"
3456
+ },
3457
+ {
3458
+ "type": "null"
3459
+ }
3460
+ ],
3461
+ "title": "Superseded By"
3462
+ }
3463
+ }
3464
+ ],
3465
+ "responses": {
3466
+ "200": {
3467
+ "content": {
3468
+ "application/json": {
3469
+ "schema": {
3470
+ "$ref": "#/components/schemas/PublishedComponentResponse"
3471
+ }
3472
+ }
3473
+ },
3474
+ "description": "Successful Response"
3475
+ },
3476
+ "422": {
3477
+ "content": {
3478
+ "application/json": {
3479
+ "schema": {
3480
+ "$ref": "#/components/schemas/HTTPValidationError"
3481
+ }
3482
+ }
3483
+ },
3484
+ "description": "Validation Error"
3485
+ }
3486
+ },
3487
+ "summary": "Update",
3488
+ "tags": [
3489
+ "components"
3490
+ ]
3491
+ }
3492
+ },
3493
+ "/api/secrets/": {
3494
+ "get": {
3495
+ "operationId": "list_secrets_api_secrets__get",
3496
+ "responses": {
3497
+ "200": {
3498
+ "content": {
3499
+ "application/json": {
3500
+ "schema": {
3501
+ "$ref": "#/components/schemas/ListSecretsResponse"
3502
+ }
3503
+ }
3504
+ },
3505
+ "description": "Successful Response"
3506
+ }
3507
+ },
3508
+ "summary": "List Secrets",
3509
+ "tags": [
3510
+ "secrets"
3511
+ ]
3512
+ },
3513
+ "post": {
3514
+ "operationId": "create_secret_api_secrets__post",
3515
+ "parameters": [
3516
+ {
3517
+ "in": "query",
3518
+ "name": "secret_name",
3519
+ "required": true,
3520
+ "schema": {
3521
+ "title": "Secret Name",
3522
+ "type": "string"
3523
+ }
3524
+ },
3525
+ {
3526
+ "in": "query",
3527
+ "name": "description",
3528
+ "required": false,
3529
+ "schema": {
3530
+ "anyOf": [
3531
+ {
3532
+ "type": "string"
3533
+ },
3534
+ {
3535
+ "type": "null"
3536
+ }
3537
+ ],
3538
+ "title": "Description"
3539
+ }
3540
+ },
3541
+ {
3542
+ "in": "query",
3543
+ "name": "expires_at",
3544
+ "required": false,
3545
+ "schema": {
3546
+ "anyOf": [
3547
+ {
3548
+ "format": "date-time",
3549
+ "type": "string"
3550
+ },
3551
+ {
3552
+ "type": "null"
3553
+ }
3554
+ ],
3555
+ "title": "Expires At"
3556
+ }
3557
+ }
3558
+ ],
3559
+ "requestBody": {
3560
+ "content": {
3561
+ "application/json": {
3562
+ "schema": {
3563
+ "$ref": "#/components/schemas/Body_create_secret_api_secrets__post"
3564
+ }
3565
+ }
3566
+ },
3567
+ "required": true
3568
+ },
3569
+ "responses": {
3570
+ "200": {
3571
+ "content": {
3572
+ "application/json": {
3573
+ "schema": {
3574
+ "$ref": "#/components/schemas/SecretInfoResponse"
3575
+ }
3576
+ }
3577
+ },
3578
+ "description": "Successful Response"
3579
+ },
3580
+ "422": {
3581
+ "content": {
3582
+ "application/json": {
3583
+ "schema": {
3584
+ "$ref": "#/components/schemas/HTTPValidationError"
3585
+ }
3586
+ }
3587
+ },
3588
+ "description": "Validation Error"
3589
+ }
3590
+ },
3591
+ "summary": "Create Secret",
3592
+ "tags": [
3593
+ "secrets"
3594
+ ]
3595
+ }
3596
+ },
3597
+ "/api/secrets/{secret_name}": {
3598
+ "delete": {
3599
+ "operationId": "delete_secret_api_secrets__secret_name__delete",
3600
+ "parameters": [
3601
+ {
3602
+ "in": "path",
3603
+ "name": "secret_name",
3604
+ "required": true,
3605
+ "schema": {
3606
+ "title": "Secret Name",
3607
+ "type": "string"
3608
+ }
3609
+ }
3610
+ ],
3611
+ "responses": {
3612
+ "200": {
3613
+ "content": {
3614
+ "application/json": {
3615
+ "schema": {}
3616
+ }
3617
+ },
3618
+ "description": "Successful Response"
3619
+ },
3620
+ "422": {
3621
+ "content": {
3622
+ "application/json": {
3623
+ "schema": {
3624
+ "$ref": "#/components/schemas/HTTPValidationError"
3625
+ }
3626
+ }
3627
+ },
3628
+ "description": "Validation Error"
3629
+ }
3630
+ },
3631
+ "summary": "Delete Secret",
3632
+ "tags": [
3633
+ "secrets"
3634
+ ]
3635
+ },
3636
+ "put": {
3637
+ "operationId": "update_secret_api_secrets__secret_name__put",
3638
+ "parameters": [
3639
+ {
3640
+ "in": "path",
3641
+ "name": "secret_name",
3642
+ "required": true,
3643
+ "schema": {
3644
+ "title": "Secret Name",
3645
+ "type": "string"
3646
+ }
3647
+ },
3648
+ {
3649
+ "in": "query",
3650
+ "name": "description",
3651
+ "required": false,
3652
+ "schema": {
3653
+ "anyOf": [
3654
+ {
3655
+ "type": "string"
3656
+ },
3657
+ {
3658
+ "type": "null"
3659
+ }
3660
+ ],
3661
+ "title": "Description"
3662
+ }
3663
+ },
3664
+ {
3665
+ "in": "query",
3666
+ "name": "expires_at",
3667
+ "required": false,
3668
+ "schema": {
3669
+ "anyOf": [
3670
+ {
3671
+ "format": "date-time",
3672
+ "type": "string"
3673
+ },
3674
+ {
3675
+ "type": "null"
3676
+ }
3677
+ ],
3678
+ "title": "Expires At"
3679
+ }
3680
+ }
3681
+ ],
3682
+ "requestBody": {
3683
+ "content": {
3684
+ "application/json": {
3685
+ "schema": {
3686
+ "$ref": "#/components/schemas/Body_update_secret_api_secrets__secret_name__put"
3687
+ }
3688
+ }
3689
+ },
3690
+ "required": true
3691
+ },
3692
+ "responses": {
3693
+ "200": {
3694
+ "content": {
3695
+ "application/json": {
3696
+ "schema": {
3697
+ "$ref": "#/components/schemas/SecretInfoResponse"
3698
+ }
3699
+ }
3700
+ },
3701
+ "description": "Successful Response"
3702
+ },
3703
+ "422": {
3704
+ "content": {
3705
+ "application/json": {
3706
+ "schema": {
3707
+ "$ref": "#/components/schemas/HTTPValidationError"
3708
+ }
3709
+ }
3710
+ },
3711
+ "description": "Validation Error"
3712
+ }
3713
+ },
3714
+ "summary": "Update Secret",
3715
+ "tags": [
3716
+ "secrets"
3717
+ ]
3718
+ }
3719
+ },
3720
+ "/api/users/me": {
3721
+ "get": {
3722
+ "operationId": "get_current_user_api_users_me_get",
3723
+ "responses": {
3724
+ "200": {
3725
+ "content": {
3726
+ "application/json": {
3727
+ "schema": {
3728
+ "anyOf": [
3729
+ {
3730
+ "$ref": "#/components/schemas/GetUserResponse"
3731
+ },
3732
+ {
3733
+ "type": "null"
3734
+ }
3735
+ ],
3736
+ "title": "Response Get Current User Api Users Me Get"
3737
+ }
3738
+ }
3739
+ },
3740
+ "description": "Successful Response"
3741
+ }
3742
+ },
3743
+ "summary": "Get Current User",
3744
+ "tags": [
3745
+ "users"
3746
+ ]
3747
+ }
3748
+ },
3749
+ "/api/users/me/settings": {
3750
+ "delete": {
3751
+ "operationId": "delete_settings_api_users_me_settings_delete",
3752
+ "parameters": [
3753
+ {
3754
+ "in": "query",
3755
+ "name": "setting_names",
3756
+ "required": true,
3757
+ "schema": {
3758
+ "items": {
3759
+ "type": "string"
3760
+ },
3761
+ "title": "Setting Names",
3762
+ "type": "array"
3763
+ }
3764
+ }
3765
+ ],
3766
+ "responses": {
3767
+ "200": {
3768
+ "content": {
3769
+ "application/json": {
3770
+ "schema": {}
3771
+ }
3772
+ },
3773
+ "description": "Successful Response"
3774
+ },
3775
+ "422": {
3776
+ "content": {
3777
+ "application/json": {
3778
+ "schema": {
3779
+ "$ref": "#/components/schemas/HTTPValidationError"
3780
+ }
3781
+ }
3782
+ },
3783
+ "description": "Validation Error"
3784
+ }
3785
+ },
3786
+ "summary": "Delete Settings",
3787
+ "tags": [
3788
+ "user_settings"
3789
+ ]
3790
+ },
3791
+ "get": {
3792
+ "description": "Gets user settings.\n\nIf `setting_names` is specified, returns only those settings.",
3793
+ "operationId": "get_settings_api_users_me_settings_get",
3794
+ "parameters": [
3795
+ {
3796
+ "in": "query",
3797
+ "name": "setting_names",
3798
+ "required": false,
3799
+ "schema": {
3800
+ "anyOf": [
3801
+ {
3802
+ "items": {
3803
+ "type": "string"
3804
+ },
3805
+ "type": "array"
3806
+ },
3807
+ {
3808
+ "type": "null"
3809
+ }
3810
+ ],
3811
+ "title": "Setting Names"
3812
+ }
3813
+ }
3814
+ ],
3815
+ "responses": {
3816
+ "200": {
3817
+ "content": {
3818
+ "application/json": {
3819
+ "schema": {
3820
+ "$ref": "#/components/schemas/UserSettingsResponse"
3821
+ }
3822
+ }
3823
+ },
3824
+ "description": "Successful Response"
3825
+ },
3826
+ "422": {
3827
+ "content": {
3828
+ "application/json": {
3829
+ "schema": {
3830
+ "$ref": "#/components/schemas/HTTPValidationError"
3831
+ }
3832
+ }
3833
+ },
3834
+ "description": "Validation Error"
3835
+ }
3836
+ },
3837
+ "summary": "Get Settings",
3838
+ "tags": [
3839
+ "user_settings"
3840
+ ]
3841
+ },
3842
+ "patch": {
3843
+ "operationId": "set_settings_api_users_me_settings_patch",
3844
+ "requestBody": {
3845
+ "content": {
3846
+ "application/json": {
3847
+ "schema": {
3848
+ "$ref": "#/components/schemas/Body_set_settings_api_users_me_settings_patch"
3849
+ }
3850
+ }
3851
+ },
3852
+ "required": true
3853
+ },
3854
+ "responses": {
3855
+ "200": {
3856
+ "content": {
3857
+ "application/json": {
3858
+ "schema": {}
3859
+ }
3860
+ },
3861
+ "description": "Successful Response"
3862
+ },
3863
+ "422": {
3864
+ "content": {
3865
+ "application/json": {
3866
+ "schema": {
3867
+ "$ref": "#/components/schemas/HTTPValidationError"
3868
+ }
3869
+ }
3870
+ },
3871
+ "description": "Validation Error"
3872
+ }
3873
+ },
3874
+ "summary": "Set Settings",
3875
+ "tags": [
3876
+ "user_settings"
3877
+ ]
3878
+ }
3879
+ }
3880
+ }
3881
+ }