This repository was archived by the owner on Aug 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAPI_spec.yml
302 lines (295 loc) · 7.98 KB
/
API_spec.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
openapi: "3.0.2"
info:
title: "swift-x-account-sharing"
description: "Database and API for storing / querying Openstack Swift ACL information"
version: "0.1.0"
license:
name: MIT
tags:
- name: API Endpoints
description: Endpoints for sharing information queries
paths:
/access/{user}:
get:
tags:
- API Endpoints
summary: List container names that have been shared to the user.
parameters:
- name: user
in: path
description: The user querying
required: true
schema:
type: string
example: AUTH_example
responses:
200:
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/HasAccess"
400:
description: Client Error
/access/{user}/{container}:
get:
tags:
- API Endpoints
summary: Get details of a container that has been shared to the user.
parameters:
- name: container
in: path
description: The container that is to be queried.
required: true
schema:
type: string
example: test-container-1
- name: user
in: path
description: The user querying
required: true
schema:
type: string
example: AUTH_example
- name: owner
in: query
description: The container owner
required: true
schema:
type: string
example: AUTH_otherexample
responses:
200:
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/GetDetails"
400:
description: Client Error
/share/{owner}:
get:
tags:
- API Endpoints
summary: List container names that the user has shared to someone else.
parameters:
- name: owner
in: path
description: The user requesting the shared container listing.
required: true
schema:
type: string
example: AUTH_example
responses:
200:
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/GaveAccess"
400:
description: Client Error
/share/{owner}/{container}:
get:
tags:
- API Endpoints
summary: Get details of a container that the user has shared.
parameters:
- name: container
in: path
description: The container that is to be queried.
required: true
schema:
type: string
example: test-container-1
- name: owner
in: path
description: The user that is requesting the sharing details.
required: true
schema:
type: string
example: AUTH_example
responses:
200:
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/SharedDetails"
400:
description: Client Error
post:
tags:
- API Endpoints
summary: Give user / users access rights on a specified container.
parameters:
- name: container
in: path
description: The container that is to be shared.
required: true
schema:
type: string
example: test-container-1
- name: user
in: query
description: The user / users that the container is shared to.
required: true
schema:
type: string
example: "AUTH_user1,AUTH_user2,AUTH_user3,AUTH_user4"
- name: access
in: query
description: The access types to be granted.
required: true
schema:
type: string
example: "r,l,w"
- name: owner
in: path
description: The owner of the container to be shared.
required: true
schema:
type: string
example: AUTH_example
- name: address
in: query
description: The address of the container to be shared.
required: true
schema:
type: string
example: "https://example-obj-store.os-example.com:443/swift/v1/AUTH_example/test-container-1"
responses:
200:
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/SharedDetails"
400:
description: Client Error
patch:
tags:
- API Endpoints
summary: Edit specified user's access rights on a specified container.
parameters:
- name: container
in: path
description: The container that is to be edited.
required: true
schema:
type: string
example: test-container-1
- name: user
in: query
description: The user / users that the container is shared to.
required: true
schema:
type: string
example: "AUTH_user1,AUTH_user2,AUTH_user3,AUTH_user4"
- name: access
in: query
description: The access types to be granted.
required: true
schema:
type: string
example: "r,l,w"
- name: owner
in: path
description: The owner of the container to be edited.
required: true
schema:
type: string
example: AUTH_example
responses:
200:
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/SharedDetails"
400:
description: Client Error
delete:
tags:
- API Endpoints
summary: Revoke specified access to container from the user/users specified in the query.
parameters:
- name: container
in: path
description: The container that is to be revoked.
required: true
schema:
type: string
example: test-container-1
- name: user
in: query
description: The user / users that the container is revoked from.
required: true
schema:
type: string
example: "user1,user2,user3,user4"
- name: owner
in: path
description: The owner of the shared container.
required: true
schema:
type: string
example: test-container-1
responses:
204:
description: OK
404:
description: Not Found
400:
description: Client Error
components:
schemas:
ListedContainer:
type: object
properties:
container:
type: string
description: The container name.
example: test-container-1
owner:
type: string
description: The real owner of the container.
example: AUTH_example
DetailedContainer:
type: object
properties:
container:
type: string
description: The container name.
example: test-container-1
owner:
type: string
description: The real owner of the container.
example: AUTH_example
shared:
type: string
description: The user the container was shared to.
example: AUTH_otherexample
address:
type: string
description: The URL of the container.
example: "https://example-obj-store.os-example.com:443/swift/v1/AUTH_example/test-container-1"
rights:
type: string
description: The rights that the user has / was given to.
HasAccess:
type: array
items:
$ref: "#/components/schemas/ListedContainer"
GetDetails:
type: array
items:
$ref: "#/components/schemas/DetailedContainer"
GaveAccess:
type: array
items:
type: string
SharedDetails:
type: array
items:
$ref: "#/components/schemas/DetailedContainer"