-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmod-fqm-manager.yaml
185 lines (181 loc) · 5.11 KB
/
mod-fqm-manager.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
openapi: 3.0.0
info:
title: mod-fqm-manager API
version: v1
description: mod-fqm-manager API
servers:
- url: https://falcon.ci.folio.org/fqm/
paths:
/entity-types:
get:
operationId: getEntityTypeSummary
tags:
- entityTypes
description: Get names for a list of entity type ids.
parameters:
- $ref: '#/components/parameters/entity-type-ids'
- $ref: '#/components/parameters/include-inaccessible'
responses:
'200':
description: 'Entity type summaries'
content:
application/json:
schema:
$ref: '#/components/schemas/entityTypeSummaries'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/query/purge:
post:
operationId: deleteOldQueries
tags:
- purgeQuery
description: Deletes all queries that are older than the configured duration.
responses:
'200':
description: 'IDs of deleted queries.'
content:
application/json:
schema:
$ref: '#/components/schemas/purgedQueries'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/entity-types/materialized-views/refresh:
post:
operationId: refreshData
tags:
- materializedViews
description: Refresh all materialized views and similar data for a tenant.
responses:
'200':
description: 'Data refreshed'
content:
application/json:
schema:
$ref: '#/components/schemas/dataRefreshResponse'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/fqm/version:
get:
operationId: getFqmVersion
tags:
- fqmVersion
description: Get version of the fqm.
responses:
'200':
description: 'Version of the fqm'
content:
text/plain:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/fqm/migrate:
post:
summary: fqm migrate request
operationId: fqmMigrate
tags:
- fqmVersion
requestBody:
description: 'Request for FQM version submitted successfully'
required: true
content:
application/json:
schema:
description: Mapped to schema in folio-query-tool-metadata
type: object
format: FqmMigrateRequest
responses:
'200':
description: 'FQM version updated successfully'
content:
application/json:
schema:
description: Mapped to schemas in folio-query-tool-metadata
type: object
format: FqmMigrateResponse
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
components:
parameters:
entity-type-id:
name: entity-type-id
in: path
required: true
description: Name of the derived table
schema:
type: string
format: UUID
entity-type-ids:
name: ids
in: query
required: false
description: List of entity type ids
schema:
type: array
items:
type: string
format: UUID
include-inaccessible:
name: includeInaccessible
in: query
required: false
description: Include inaccessible entity types in the result
schema:
type: boolean
schemas:
errorResponse:
$ref: schemas/errors.json
contents:
type: array
items:
$ref: '#/components/schemas/contentItem'
contentItem:
type: object
additionalProperties:
type: object
entityTypeSummaries:
$ref: schemas/EntityTypeSummaries.json
purgedQueries:
$ref: schemas/PurgedQueries.json
dataRefreshResponse:
type: object
properties:
successfulRefresh:
type: array
items:
type: string
failedRefresh:
type: array
items:
type: string
responses:
badRequestResponse:
description: Validation errors
content:
application/json:
example:
errors:
- message: Request is invalid
code: invalid.request
schema:
$ref: "#/components/schemas/errorResponse"
internalServerErrorResponse:
description: When unhandled exception occurred during code execution, e.g. NullPointerException
content:
application/json:
example:
errors:
- message: Unexpected error
code: unexpected.error
schema:
$ref: "#/components/schemas/errorResponse"