-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmod-fqm-manager.yaml
More file actions
215 lines (205 loc) · 5.74 KB
/
Copy pathmod-fqm-manager.yaml
File metadata and controls
215 lines (205 loc) · 5.74 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
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
openapi: 3.0.0
info:
title: mod-fqm-manager API
version: v1
description: mod-fqm-manager API
servers:
- url: https://folio-etesting-snapshot-kong.ci.folio.org/
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'
- $ref: '#/components/parameters/include-all'
responses:
'200':
description: 'Entity type summaries'
content:
application/json:
schema:
$ref: '#/components/schemas/entityTypeSummaries'
'4XX':
$ref: '#/components/responses/badRequestResponse'
/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'
'4XX':
$ref: '#/components/responses/badRequestResponse'
/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'
'4XX':
$ref: '#/components/responses/badRequestResponse'
/entity-types/install:
post:
operationId: installEntityTypes
tags:
- entityTypes
description: Create database views and install entity types for a tenant.
parameters:
- $ref: '#/components/parameters/force-recreate-views'
responses:
'204':
description: 'Entity types installed'
/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
'4XX':
$ref: '#/components/responses/badRequestResponse'
/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
'4XX':
$ref: '#/components/responses/badRequestResponse'
/fqm/status:
get:
operationId: getQueryStatusSummaries
tags:
- fqlQuery
description: Get the status and statistics for all running queries
responses:
'200':
description: 'Status and statistics for all running queries'
content:
application/json:
schema:
$ref: '#/components/schemas/queryStatusSummaries'
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
include-all:
name: includeAll
in: query
required: false
description: Include all the entity types regardless of being private
schema:
type: boolean
force-recreate-views:
name: forceRecreateViews
in: query
required: false
description: Force recreation of views even if they already exist
schema:
type: boolean
schemas:
errorResponse:
$ref: schemas/error.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
queryStatusSummaries:
type: array
items:
$ref: '#/components/schemas/queryStatusSummary'
queryStatusSummary:
$ref: schemas/QueryStatusSummary.json
responses:
badRequestResponse:
description: Invalid request
content:
application/json:
example:
message: Entity type ID 6c611396-b6bc-56a7-aada-3a90683d559c was not found
code: entity.type.not.found
schema:
$ref: '#/components/schemas/errorResponse'