-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yml
245 lines (245 loc) · 5.64 KB
/
swagger.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
openapi: 3.0.0
info:
title: Password-Setup-API
version: 1.0.0
servers:
- url: http://{{url}}
components:
securitySchemes:
noauthAuth:
type: http
scheme: noauth
bearerAuth:
type: http
scheme: bearer
paths:
/auth:
post:
tags:
- default
summary: Login User
requestBody:
content:
application/json:
schema:
type: object
example:
username: ''
password: ''
security:
- noauthAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/secrets/DEV:
get:
tags:
- default
summary: Get All Secrets
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/secrets:
post:
tags:
- default
summary: Create New Secret
requestBody:
content:
application/json:
schema:
type: object
example:
name: SecretName
Cognito_group: DEV
SecretName: secret16
Desc: zhgjklml
SecretString: '{"username":"david","password":"EXAMPLE-PASSWORD"}'
AccountNumber: '703866956858'
Region: us-east-1
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/secrets/703866956858/us-east-2/secret15:
get:
tags:
- default
summary: Get One Secret
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
patch:
tags:
- default
summary: Update A Secret
requestBody:
content:
application/json:
schema:
type: object
example:
SecretString: '{"username":"pradhan","password":"EXAMPLE-PASSWORD"}'
Cognito_group: DEV
Desc: This is a real Secret.
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/secrets/703866956858/us-east-1/secret16:
delete:
tags:
- default
summary: Delete A Secret
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/kms:
post:
tags:
- default
summary: Create New MR KMS Key
requestBody:
content:
application/json:
schema:
type: object
example:
AccountNumber: '703866956858'
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/kms/703866956858:
get:
tags:
- default
summary: Get MR Key By Account Number
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
post:
tags:
- default
summary: Share MR Key to Onboarded Regions
requestBody:
content:
application/json:
schema:
type: object
example: ''
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/accounts:
get:
tags:
- default
summary: Get All Accounts
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
post:
tags:
- default
summary: Create A New Account
requestBody:
content:
application/json:
schema:
type: object
example:
AccountNumber: '123456789123'
SupportedRegions:
- us-east-1
IAMRole: ''
Created_by: me@example.com
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/accounts/111111111111:
get:
tags:
- default
summary: Get One Account By Account Number
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/accounts/703866956858:
patch:
tags:
- default
summary: Update An Account
requestBody:
content:
application/json:
schema:
type: object
example:
SupportedRegions:
- us-east-2
- us-east-2
KMSKey: mrk-b169374ceffe4a9a88b60dc3dc3796c2
AccountType: prod
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}
/accounts/123456789123:
delete:
tags:
- default
summary: Delete An Account
security:
- bearerAuth: []
responses:
'200':
description: Successful response
content:
application/json: {}