-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathmaps.yaml
More file actions
123 lines (123 loc) · 3.19 KB
/
maps.yaml
File metadata and controls
123 lines (123 loc) · 3.19 KB
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
---
maps:
get:
summary: Return a list of all managed map files
description: Returns a list of all managed map files
operationId: getAllStorageMapFiles
tags:
- Storage
responses:
'200':
description: Successful operation
schema:
$ref: "#/definitions/maps"
'404':
$ref: '#/responses/NotFound'
'default':
$ref: '#/responses/DefaultError'
post: # (raw)
summary: Creates a managed storage map file with its entries
description: Creates a managed storage map file with its entries.
operationId: createStorageMapFile
consumes:
- multipart/form-data
parameters:
- in: formData
name: file_upload
type: file
description: The map file contents
x-mimetype: text/plain
tags:
- Storage
responses:
'201':
description: Map file created with its entries
schema:
$ref: "#/definitions/map"
'409':
$ref: '#/responses/AlreadyExists'
'400':
$ref: '#/responses/BadRequest'
'default':
$ref: '#/responses/DefaultError'
maps_one:
get:
summary: Return the contents of one managed map file from disk
description: Returns the contents of one managed map file from disk
operationId: getOneStorageMap
tags:
- Storage
parameters:
- name: name
in: path
description: Map file storage_name
required: true
type: string
produces:
- application/octet-stream
responses:
'200':
description: Successful operation
schema:
type: string
'404':
$ref: '#/responses/NotFound'
'default':
$ref: '#/responses/DefaultError'
delete:
summary: Deletes a managed map file from disk
description: Deletes a managed map file from disk.
operationId: deleteStorageMap
tags:
- Storage
parameters:
- name: name
in: path
description: Map file storage_name
required: true
type: string
responses:
'204':
description: Map file deleted
'404':
$ref: '#/responses/NotFound'
'default':
$ref: '#/responses/DefaultError'
put:
summary: Replace contents of a managed map file on disk
description: Replaces the contents of a managed map file on disk
operationId: replaceStorageMapFile
produces:
- application/json
consumes:
- text/plain
tags:
- Storage
parameters:
- name: name
in: path
description: Map file storage_name
required: true
type: string
- name: data
in: body
required: true
schema:
type: string
- $ref: "#/parameters/skip_reload"
- $ref: "#/parameters/force_reload"
responses:
"202":
description: Configuration change accepted and reload requested
headers:
Reload-ID:
description: ID of the requested reload
type: string
'204':
description: Map file replaced
'400':
$ref: '#/responses/BadRequest'
'404':
$ref: '#/responses/NotFound'
'default':
$ref: '#/responses/DefaultError'