This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
forked from fabric8-launcher/launcher-creator-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
380 lines (369 loc) · 10.3 KB
/
openapi.yaml
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
openapi: 3.0.0
servers:
- url: https://forge.api.prod-preview.openshift.io/creator/
description: Development server
- url: https://forge.api.openshift.io/creator/
description: Production server
- url: http://localhost:8081
description: Local Development
- url: http://localhost:8080
description: Local Dist
info:
version: "1.0.0"
title: Launcher Creator Backend API
description: >-
This document defines the REST endpoints exposed by the
launcher-creator-backend component
security:
- application:
- read
- write
paths:
/enums:
get:
summary: Returns all available enumeration definitions
security: []
description: >-
This endpoint returns all known enumerations
tags:
- catalog
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Enumerations'
/enums/{id}:
get:
parameters:
- name: id
in: path
required: true
schema:
type: string
summary: Returns the selected enumeration definition
security: []
description: >-
This endpoint returns a given enumeration
tags:
- catalog
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Enumeration'
/capabilities:
get:
summary: Returns the available Capabilities
security: []
description: >-
This endpoint returns all known Capabilities
tags:
- catalog
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Capabilities'
/zip:
post:
summary: Create ZIP containing a generated project and returns and id to download it
security: []
description: >-
This endpoint returns and id to download the ZIP containing code that was
generated using the specified Capabilities
tags:
- project
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ZipRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
id:
description: The id to download the zip
type: string
'400':
description: Bad Request
/download:
get:
summary: Returns a ZIP containing a generated project for the specified id
security: []
description: >-
This endpoint returns a ZIP containing a generated project for the specified id
tags:
- project
parameters:
- name: id
in: query
required: true
schema:
type: string
description: The id returned by the zip method
responses:
'200':
description: OK
content:
application/zip: {}
'404':
description: Not Found
/launch:
post:
summary: Pushes a generated project to GitHub and OpenShift
security:
- bearerAuth: []
description: >-
This endpoint pushes code that was generated using the specified
Capabilities to a user's GitHub and OpenShift accounts
tags:
- project
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/LaunchRequest'
responses:
'200':
description: OK
'400':
description: Bad Request
'401':
description: Unauthorized
/import/branches:
get:
summary: Lists all available branches and tags for the given Git repository
description: >-
Takes a Git repositor URL and returns the names of all the branches and tags
tags:
- import
parameters:
- name: gitImportUrl
in: query
required: true
schema:
type: string
description: The URL to the Git repository
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
type: string
/import/analyze:
get:
summary: Analyzes the given Git repository and returns what S2I builder image to use
description: >-
Takes a Git repositor URL and looks at the code inside it to determine what OpenShift
S2I builder could be used to compile and run it
tags:
- import
parameters:
- name: gitImportUrl
in: query
required: true
schema:
type: string
description: The URL to the Git repository to analyze
- name: gitImportBranch
in: query
schema:
type: string
description: The branch of the Git repository to analyze (defaults to "master")
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AnalysisResult'
/import/launch:
post:
tags:
- import
summary: Deploys an existing codebase on OpenShift
description: Deploys an existing codebase on OpenShift
parameters:
- name: applicationName
in: query
description: The name of the application to be created
required: true
schema:
type: string
- name: gitImportUrl
in: query
description: A URL to the git repository to import
required: true
schema:
type: string
- name: gitImportBranch
in: query
schema:
type: string
description: The branch of the Git repository to analyze (defaults to "master")
- name: builderImage
in: query
description: The name of the image to use for building and running the code
schema:
type: string
- name: builderLanguage
in: query
description: The language to use for building and running the code
schema:
type: string
responses:
'200':
description: OK
components:
schemas:
Enumeration:
type: object
properties:
id:
type: string
name:
type: string
description:
type: string
icon:
type: string
metadata:
type: object
Enumerations:
type: array
items:
$ref: '#/components/schemas/Enumeration'
Capabilities:
type: array
items:
type: object
properties:
module:
type: string
name:
type: string
description:
type: string
props:
type: array
items:
type: object
properties:
id:
type: string
name:
type: string
description:
type: string
type:
type: string
required:
type: boolean
ZipRequest:
type: object
properties:
project:
$ref: '#/components/schemas/Application'
required:
- project
LaunchRequest:
type: object
properties:
project:
$ref: '#/components/schemas/Application'
clusterId:
description: The OpenShift cluster to use
type: string
projectName:
description: The OpenShift project name to be used
type: string
gitOrganization:
description: The Git Organization to push the code
type: string
gitRepository:
description: The Git Repository to push the code
type: string
required:
- project
- clusterId
- projectName
- gitOrganization
- gitRepository
Application:
type: object
properties:
application:
description: The application name to use for the project
type: string
parts:
description: The application parts to use for the project
type: array
items:
type: object
properties:
subFolderName:
description: The (optional) name of the subfolder to use for the capabilities
type: string
shared:
description: The shared properties that get applied to each selected Capability
type: object
properties:
runtime:
description: The runtime to use for the project
type: object
properties:
name:
description: The name of the runtime
type: string
version:
description: The version of the runtime
type: string
required:
- name
capabilities:
description: The capabilities to add to the project
type: array
items:
type: object
properties:
module:
description: The id of the selected Capability
type: string
props:
description: The properties for the selected Capability
type: object
required:
- module
required:
- capabilities
required:
- application
- parts
AnalysisResult:
type: object
properties:
image:
type: string
builderImages:
type: array
items:
$ref: '#/components/schemas/Enumeration'
securitySchemes:
bearerAuth: # arbitrary name for the security scheme
type: http
scheme: bearer
bearerFormat: JWT # optional, arbitrary value for documentation purposes