-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yml
884 lines (817 loc) · 25.6 KB
/
openapi.yml
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
openapi: 3.0.3
info:
title: Terra Scientific Pipelines Service
version: 1.0.0
paths:
# Admin APIs
/api/admin/v1/pipeline/{pipelineName}:
parameters:
- $ref: '#/components/parameters/PipelineName'
get:
summary: Get description for a given pipeline.
tags: [ admin ]
operationId: getPipeline
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/AdminPipeline'
400:
$ref: '#/components/responses/BadRequest'
403:
$ref: '#/components/responses/PermissionDenied'
500:
$ref: '#/components/responses/ServerError'
patch:
summary: Update attributes for a given pipeline.
tags: [ admin ]
operationId: updatePipeline
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdatePipelineRequestBody'
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/AdminPipeline'
400:
$ref: '#/components/responses/BadRequest'
403:
$ref: '#/components/responses/PermissionDenied'
500:
$ref: '#/components/responses/ServerError'
# Pipeline related APIs
/api/pipelines/v1:
get:
summary: Return all available Pipelines
operationId: getPipelines
tags: [ pipelines ]
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/GetPipelinesResult'
500:
$ref: '#/components/responses/ServerError'
/api/pipelines/v1/{pipelineName}:
parameters:
- $ref: '#/components/parameters/PipelineName'
get:
summary: Return info about the specified pipeline
operationId: getPipelineDetails
tags: [ pipelines ]
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/PipelineWithDetails'
400:
$ref: '#/components/responses/BadRequest'
500:
$ref: '#/components/responses/ServerError'
# pipeline run related APIs
/api/pipelineruns/v1/{pipelineName}/prepare:
parameters:
- $ref: '#/components/parameters/PipelineName'
post:
summary: Prepare a new pipeline run
operationId: preparePipelineRun
tags: [ pipelineRuns ]
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PreparePipelineRunRequestBody'
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/PreparePipelineRunResponse'
400:
$ref: '#/components/responses/BadRequest'
404:
$ref: '#/components/responses/NotFound'
500:
$ref: '#/components/responses/ServerError'
/api/pipelineruns/v1/{pipelineName}/start:
parameters:
- $ref: '#/components/parameters/PipelineName'
post:
summary: Start a prepared pipeline run
operationId: startPipelineRun
tags: [ pipelineRuns ]
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/StartPipelineRunRequestBody'
responses:
200:
description: PipelineRun is complete (succeeded or failed)
content:
application/json:
schema:
$ref: '#/components/schemas/AsyncPipelineRunResponse'
202:
description: PipelineRun is running
content:
application/json:
schema:
$ref: '#/components/schemas/AsyncPipelineRunResponse'
400:
$ref: '#/components/responses/BadRequest'
403:
$ref: '#/components/responses/PermissionDenied'
404:
$ref: '#/components/responses/NotFound'
500:
$ref: '#/components/responses/ServerError'
/api/pipelineruns/v1/{pipelineName}/result/{jobId}:
parameters:
- $ref: '#/components/parameters/PipelineName'
- $ref: '#/components/parameters/JobId'
get:
summary: Retrieve result for a specified pipeline run
operationId: getPipelineRunResult
tags: [ pipelineRuns ]
responses:
200:
description: PipelineRun is complete (succeeded or failed)
content:
application/json:
schema:
$ref: '#/components/schemas/AsyncPipelineRunResponse'
202:
description: PipelineRun is running
headers:
Retry-After:
description: >-
optional - estimated seconds to wait before polling again. This allows a server to offer a hint as to when the job might be complete.
schema:
type: integer
content:
application/json:
schema:
$ref: '#/components/schemas/AsyncPipelineRunResponse'
400:
description: Bad request - invalid id, id not for a createPipelineRunRequest job
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorReport'
403:
description: No permission to see job
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorReport'
404:
description: Not found - job id does not exist
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorReport'
500:
$ref: '#/components/responses/ServerError'
/api/pipelineruns/v1/pipelineruns:
get:
tags: [ pipelineRuns ]
summary: Return a paginated list of all pipeline runs the caller has access to
operationId: getAllPipelineRuns
parameters:
- $ref: '#/components/parameters/Limit'
- $ref: '#/components/parameters/PageToken'
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/GetPipelineRunsResponse'
500:
$ref: '#/components/responses/ServerError'
# quota related APIs
/api/quotas/v1/{pipelineName}:
parameters:
- $ref: '#/components/parameters/PipelineName'
get:
summary: Return info about the user's quota usage for the specified pipeline
operationId: getQuotaForPipeline
tags: [ quotas ]
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/QuotaWithDetails'
400:
$ref: '#/components/responses/BadRequest'
500:
$ref: '#/components/responses/ServerError'
# Stairway job related APIs go here
/api/job/v1/jobs:
get:
tags: [ jobs ]
summary: Return a list of all jobs the caller has access to
operationId: getAllJobs
parameters:
- $ref: '#/components/parameters/Limit'
- $ref: '#/components/parameters/PageToken'
responses:
200:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/GetJobsResponse'
500:
$ref: '#/components/responses/ServerError'
/api/job/v1/jobs/{jobId}:
parameters:
- $ref: '#/components/parameters/JobId'
get:
summary: Retrieve a specified job
tags: [ jobs ]
operationId: getJob
responses:
200:
description: Job is complete (succeeded or failed)
content:
application/json:
schema:
$ref: '#/components/schemas/JobReport'
202:
description: Job is running
headers:
Retry-After:
description: >-
optional - estimated seconds to wait before polling again. This allows
a server to offer a hint as to when the job might be complete.
schema:
type: integer
content:
application/json:
schema:
$ref: '#/components/schemas/JobReport'
400:
$ref: '#/components/responses/BadRequest'
403:
$ref: '#/components/responses/PermissionDenied'
404:
$ref: '#/components/responses/NotFound'
# Public APIs
/status:
get:
summary: Check status of the service.
tags: [ public ]
operationId: getStatus
security: [ ]
responses:
200:
description: OK
500:
$ref: '#/components/responses/ServerError'
503:
$ref: '#/components/responses/SystemStatusResponse'
/version:
get:
summary: Get version info of the deployed service.
tags: [ public ]
operationId: getVersion
security: [ ]
responses:
200:
description: Version information
content:
application/json:
schema:
$ref: '#/components/schemas/VersionProperties'
404:
description: "Version not configured"
500:
$ref: '#/components/responses/ServerError'
components:
parameters:
JobId:
name: jobId
in: path
description: A UUID identifier for a pipelines job
required: true
schema:
type: string
format: uuid
Limit:
name: limit
in: query
description: The maximum number of items to return. Default 10
required: false
schema:
type: integer
minimum: 1
default: 10
PageToken:
name: pageToken
in: query
description: A previously returned page token describing where to resume an enumeration.
required: false
schema:
type: string
PipelineName:
name: pipelineName
in: path
description: A string identifier to used to identify a pipeline in the service.
required: true
schema:
type: string
WorkspaceId:
name: workspaceId
in: path
description: A UUID identifier for a workspace job
required: true
schema:
type: string
format: uuid
responses:
# Error Responses
BadRequest:
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorReport'
PermissionDenied:
description: Permission denied
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorReport'
NotFound:
description: Not found (or unauthorized)
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorReport'
ServerError:
description: Server error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorReport'
SystemStatusResponse:
description: A JSON description of the subsystems and their statuses.
content:
application/json:
schema:
$ref: '#/components/schemas/SystemStatus'
JobResultResponse:
description: Result of a job (failed or succeeded)
content:
application/json:
schema:
$ref: '#/components/schemas/JobResult'
schemas:
# Terra common schemas
ErrorReport:
type: object
required: [ message, statusCode, causes ]
properties:
message:
type: string
statusCode:
type: integer
causes:
type: array
items:
type: string
VersionProperties:
type: object
properties:
gitTag:
type: string
gitHash:
type: string
github:
type: string
build:
type: string
SystemStatus:
required: [ ok, systems ]
type: object
properties:
ok:
type: boolean
description: whether any system(s) need attention
systems:
type: object
additionalProperties:
type: object
properties:
ok:
type: boolean
messages:
type: array
items:
type: string
# Async API schemas
JobReport:
type: object
required: [ id, status, statusCode, resultURL ]
properties:
id:
description: caller-provided unique identifier for the job
type: string
description:
description: caller-provided description of the job
type: string
status:
description: status of the job
type: string
enum: [ 'RUNNING', 'SUCCEEDED', 'FAILED' ]
statusCode:
description: HTTP code providing status of the job.
type: integer
submitted:
description: timestamp when the job was submitted; in ISO-8601 format
type: string
completed:
description: >-
timestamp when the job completed - in ISO-8601 format. Present if
status is SUCCEEDED or FAILED.
type: string
resultURL:
description: >-
URL where the result of the job can be retrieved. Equivalent to a
Location header in HTTP.
type: string
JobControl:
type: object
required: [ id ]
properties:
id:
$ref: '#/components/schemas/Id'
# In the future, notification configuration will also be part of JobControl.
JobResult:
type: object
description: |
The result of a call that triggers an asynchronous job.
required: [ jobReport ]
properties:
jobReport:
$ref: '#/components/schemas/JobReport'
errorReport:
$ref: '#/components/schemas/ErrorReport'
# Special schema that gets overridden during Swagger generation, for compatibility with the Python client;
# This gets around the issue of Python interpreting `object` as `dict` and instead makes it map to Python `Any`
AnyTypeMapsToJavaObject: {}
# Teaspoons schemas; please keep alphabetized
AdminPipeline:
description: |
Object containing the pipeline identifier, display name, description, and control workspace information for a Pipeline.
type: object
required: [ pipelineName, displayName, description, workspaceBillingProject, workspaceName, workspaceStorageContainerName, workspaceGoogleProject, wdlMethodVersion ]
properties:
pipelineName:
$ref: "#/components/schemas/PipelineName"
displayName:
$ref: "#/components/schemas/PipelineDisplayName"
description:
$ref: "#/components/schemas/PipelineDescription"
wdlMethodVersion:
$ref: "#/components/schemas/PipelineWdlMethodVersion"
workspaceBillingProject:
$ref: "#/components/schemas/PipelineWorkspaceBillingProject"
workspaceName:
$ref: "#/components/schemas/PipelineWorkspaceName"
workspaceStorageContainerName:
$ref: "#/components/schemas/PipelineWorkspaceStorageContainerName"
workspaceGoogleProject:
$ref: "#/components/schemas/PipelineWorkspaceGoogleProject"
AsyncPipelineRunResponse:
description: Result of an asynchronous pipeline run request.
type: object
required: [ jobReport, pipelineRunReport ]
properties:
jobReport:
$ref: '#/components/schemas/JobReport'
errorReport:
$ref: '#/components/schemas/ErrorReport'
pipelineRunReport:
$ref: '#/components/schemas/PipelineRunReport'
StartPipelineRunRequestBody:
description: |
Object containing the user-provided information defining a pipeline run request.
type: object
required: [ jobControl ]
properties:
description:
description: >-
User-provided description of the pipeline run.
type: string
jobControl:
$ref: "#/components/schemas/JobControl"
GetJobsResponse:
description: result of a getJobs request
type: object
properties:
totalResults:
type: integer
pageToken:
type: string
results:
description: List of retrieved jobs
type: array
items:
$ref: '#/components/schemas/JobReport'
GetPipelinesResult:
description: result of a getPipelines request
type: object
properties:
results:
description: List of retrieved pipelines
type: array
items:
$ref: '#/components/schemas/Pipeline'
GetPipelineRunsResponse:
type: object
properties:
pageToken:
type: string
results:
description: List of pipeline runs
type: array
items:
$ref: '#/components/schemas/PipelineRun'
Id:
description: |
Required unique identifier (UUID) for a job.
type: string
format: uuid
JobStatus:
description: |
The current status of the job.
type: string
format: string
JobTimeCompleted:
description: |
The time the job was completed.
type: string
format: string
JobTimeSubmitted:
description: |
The time the job was submitted.
type: string
format: string
Pipeline:
description: |
Object containing the pipeline identifier, display name, and description of a Pipeline.
type: object
required: [ pipelineName, displayName, description ]
properties:
pipelineName:
$ref: "#/components/schemas/PipelineName"
displayName:
$ref: "#/components/schemas/PipelineDisplayName"
description:
$ref: "#/components/schemas/PipelineDescription"
PipelineDescription:
description: |
The description for the Pipeline.
type: string
format: string
PipelineDisplayName:
description: |
The display name for the Pipeline.
type: string
format: string
PipelineInputIsRequired:
description: |
Whether the input field is required.
type: boolean
format: boolean
PipelineInputName:
description: |
The name of the input field.
type: string
format: string
PipelineInputType:
description: |
The type of the input field.
type: string
format: string
PipelineName:
description: |
The identifier string for the Pipeline.
type: string
format: string
PipelineRun:
description: |
Object containing the job id, status, and user-provided description of a Pipeline Run.
type: object
required: [ pipelineName, displayName, description ]
properties:
jobId:
$ref: '#/components/schemas/Id'
status:
$ref: "#/components/schemas/PipelineRunStatus"
description:
$ref: "#/components/schemas/PipelineRunDescription"
PipelineRunDescription:
description: |
The user-provided description for the pipeline run.
type: string
format: string
PipelineRunReport:
description: |
Object containing metadata about the pipeline that was run, as well as pipeline run outputs if the run has completed successfully.
type: object
required: [ pipelineName, pipelineVersion, wdlMethodVersion ]
properties:
pipelineName:
$ref: "#/components/schemas/PipelineName"
pipelineVersion:
$ref: "#/components/schemas/PipelineVersion"
wdlMethodVersion:
$ref: "#/components/schemas/PipelineWdlMethodVersion"
outputs:
$ref: "#/components/schemas/PipelineRunOutputs"
PipelineRunStatus:
description: |
The current status of the pipeline run.
type: string
format: string
PipelineRunOutputs:
description: |
The output(s) of a successful pipeline run.
type: object
additionalProperties:
$ref: "#/components/schemas/AnyTypeMapsToJavaObject"
PipelineType:
description: |
The general type of the Pipeline.
type: string
format: string
PipelineUserProvidedInputDefinition:
description: |
User-provided input fields and specifications for the Pipeline.
type: object
properties:
name:
$ref: "#/components/schemas/PipelineInputName"
type:
$ref: "#/components/schemas/PipelineInputType"
isRequired:
$ref: "#/components/schemas/PipelineInputIsRequired"
PipelineUserProvidedInputDefinitions:
description: |
A list of user-provided input fields and specifications for the Pipeline.
type: array
items:
$ref: "#/components/schemas/PipelineUserProvidedInputDefinition"
PipelineUserProvidedInputs:
description: |
A map(string:object) of user-provided inputs for the Pipeline.
type: object
additionalProperties:
$ref: "#/components/schemas/AnyTypeMapsToJavaObject"
PipelineVersion:
description: |
An identifier Integer for the Pipeline Version.
type: integer
PipelineWdlMethodVersion:
description: |
An identifier string for the Pipeline Wdl Version i.e. github repo tag/branch/release
type: string
PipelineWorkspaceGoogleProject:
description: |
The google project of the workspace to run the pipeline in.
type: string
format: string
PipelineWorkspaceId:
description: |
The uuid for the workspace to run the pipeline in.
type: string
format: uuid
PipelineWorkspaceName:
description: |
The name of the workspace to run the pipeline in.
type: string
format: string
PipelineWorkspaceBillingProject:
description: |
The Terra billing project of the workspace to run the pipeline in.
type: string
format: string
PipelineWorkspaceStorageContainerName:
description: |
The name of the workspace storage container (e.g. google bucket name, without gs:// prefix).
type: string
format: string
PipelineWithDetails:
description: |
Object containing the pipeline identifier, display name, description, type, and required inputs of a Pipeline.
type: object
required: [ pipelineName, displayName, description, type, inputs ]
properties:
pipelineName:
$ref: "#/components/schemas/PipelineName"
displayName:
$ref: "#/components/schemas/PipelineDisplayName"
description:
$ref: "#/components/schemas/PipelineDescription"
type:
$ref: "#/components/schemas/PipelineType"
inputs:
$ref: "#/components/schemas/PipelineUserProvidedInputDefinitions"
PreparePipelineRunRequestBody:
description: |
Object containing the user-provided information defining a pipeline run request.
type: object
required: [ jobId, pipelineVersion, pipelineInputs ]
properties:
jobId:
$ref: '#/components/schemas/Id'
pipelineVersion:
$ref: "#/components/schemas/PipelineVersion"
pipelineInputs:
$ref: "#/components/schemas/PipelineUserProvidedInputs"
PreparePipelineRunResponse:
description: Result of the preparePipelineRun request, containing signed URLs to upload input files
type: object
properties:
jobId:
$ref: '#/components/schemas/Id'
fileInputUploadUrls:
type: object
additionalProperties:
type: object
additionalProperties:
type: string
QuotaConsumed:
description: |
Quota consumed by the user
type: integer
QuotaLimit:
description: |
Maximum allowable quota for the pipeline
type: integer
QuotaWithDetails:
description: |
Object containing the pipeline identifier, quota limit, and quota usage of a Pipeline.
type: object
required: [ pipelineName, quotaLimit, quotaConsumed ]
properties:
pipelineName:
$ref: "#/components/schemas/PipelineName"
quotaLimit:
$ref: "#/components/schemas/QuotaLimit"
quotaConsumed:
$ref: "#/components/schemas/QuotaConsumed"
UpdatePipelineRequestBody:
description: |
json object containing the admin provided information to update a pipeline with
type: object
required: [ workspaceBillingProject, workspaceName, wdlMethodVersion ]
properties:
workspaceBillingProject:
$ref: "#/components/schemas/PipelineWorkspaceBillingProject"
workspaceName:
$ref: "#/components/schemas/PipelineWorkspaceName"
wdlMethodVersion:
$ref: "#/components/schemas/PipelineWdlMethodVersion"
UserId:
description: |
The identifier string for the user who submitted a job request.
type: string
format: string
securitySchemes:
oidc:
type: oauth2
x-tokenName: id_token
flows:
authorizationCode:
authorizationUrl: "[[${authorityEndpoint}]]"
scopes: { }
tokenUrl: "[[${tokenEndpoint}]]"
bearerAuth:
type: http
scheme: bearer
security:
- oidc:
- openid
- bearerAuth: [ ]