forked from swisscom/backman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yml
281 lines (281 loc) · 6.25 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
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
definitions:
Backup:
properties:
Files:
items:
$ref: '#/definitions/File'
type: array
Service:
$ref: '#/definitions/Service'
type: object
x-go-package: github.com/swisscom/backman/router/api
Duration:
description: |-
A Duration represents the elapsed time between two instants
as an int64 nanosecond count. The representation limits the
largest representable duration to approximately 290 years.
format: int64
type: integer
x-go-package: time
File:
properties:
Filename:
type: string
Filepath:
type: string
Key:
type: string
LastModified:
format: date-time
type: string
Size:
format: int64
type: integer
type: object
x-go-package: github.com/swisscom/backman/router/api
Retention:
properties:
Days:
format: int64
type: integer
Files:
format: int64
type: integer
type: object
x-go-package: github.com/swisscom/backman/router/api
Service:
properties:
Name:
type: string
Plan:
type: string
Provider:
type: string
Retention:
$ref: '#/definitions/Retention'
Schedule:
type: string
Timeout:
$ref: '#/definitions/Duration'
Type:
type: string
type: object
x-go-package: github.com/swisscom/backman/router/api
State:
properties:
At:
format: date-time
type: string
Duration:
$ref: '#/definitions/Duration'
Filename:
type: string
Operation:
type: string
Service:
$ref: '#/definitions/Service'
Status:
type: string
type: object
x-go-package: github.com/swisscom/backman/router/api
paths:
/api/v1/backup/{service_type}/{service_name}:
get:
operationId: getBackups
produces:
- application/json
responses:
"200":
description: Backup
schema:
$ref: '#/definitions/Backup'
schemes:
- http
- https
summary: Returns a full backup object for given service.
tags:
- backup
post:
operationId: createBackup
produces:
- application/json
responses:
"202":
description: Service
schema:
$ref: '#/definitions/Service'
schemes:
- http
- https
summary: Creates a new backup for given service.
tags:
- backup
/api/v1/backup/{service_type}/{service_name}/{filename}:
delete:
operationId: deleteBackup
produces:
- application/json
responses:
"204":
description: ""
schemes:
- http
- https
summary: Deletes a backup file from S3 for given service.
tags:
- backup
get:
operationId: getBackup
produces:
- application/json
responses:
"200":
description: Backup
schema:
$ref: '#/definitions/Backup'
schemes:
- http
- https
summary: Returns a single backup file object for given service.
tags:
- backup
/api/v1/backup/{service_type}/{service_name}/{filename}/download:
get:
operationId: downloadBackup
produces:
- application/json
responses:
"200":
description: ""
schemes:
- http
- https
summary: Download a backup file for given service.
tags:
- backup
/api/v1/backups:
get:
operationId: listBackups
produces:
- application/json
responses:
"200":
$ref: '#/responses/Backups'
schemes:
- http
- https
summary: Lists all backup objects.
tags:
- backup
/api/v1/restore/{service_type}/{service_name}/{filename}:
post:
operationId: restoreBackup
produces:
- application/json
responses:
"202":
description: Service
schema:
$ref: '#/definitions/Service'
schemes:
- http
- https
summary: Triggers a restore for given service.
tags:
- restore
/api/v1/restore/{service_type}/{service_name}/{filename}/{target_name}:
post:
operationId: restoreBackupToTarget
produces:
- application/json
responses:
"202":
description: Service
schema:
$ref: '#/definitions/Service'
schemes:
- http
- https
summary: Triggers a restore of a given service backup to a specific target service.
tags:
- restore
/api/v1/service/{service_type}/{service_name}:
get:
operationId: getService
produces:
- application/json
responses:
"200":
description: Service
schema:
$ref: '#/definitions/Service'
schemes:
- http
- https
summary: Returns a service instance.
tags:
- service
/api/v1/services:
get:
operationId: listServices
produces:
- application/json
responses:
"200":
$ref: '#/responses/Services'
schemes:
- http
- https
summary: Lists all services managed by backman.
tags:
- service
/api/v1/state/{service_type}/{service_name}:
get:
operationId: getState
produces:
- application/json
responses:
"200":
description: State
schema:
$ref: '#/definitions/State'
schemes:
- http
- https
summary: Returns current/last operation state of backup/restore.
tags:
- state
/api/v1/states:
get:
operationId: listStates
produces:
- application/json
responses:
"200":
$ref: '#/responses/States'
schemes:
- http
- https
summary: Lists current/last operation state of all service types.
tags:
- state
responses:
Backups:
description: ""
schema:
items:
$ref: '#/definitions/Backup'
type: array
Services:
description: ""
schema:
items:
$ref: '#/definitions/Service'
type: array
States:
description: ""
schema:
items:
$ref: '#/definitions/State'
type: array
swagger: "2.0"