forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.yaml
230 lines (230 loc) · 7.48 KB
/
sql.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
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
openapi: 3.1.0
info:
title: OpenSearch SQL API
description: OpenSearch SQL API.
version: 1.0.0
paths:
/_plugins/_query/settings:
put:
operationId: sql.settings.0
x-operation-group: sql.settings
x-version-added: '1.0'
description: Adds SQL settings to the standard OpenSearch cluster settings.
externalDocs:
url: https://opensearch.org/docs/latest/search-plugins/sql/settings/
parameters:
- $ref: '#/components/parameters/sql.settings::query.format'
requestBody:
$ref: '#/components/requestBodies/sql.settings'
responses:
'200':
$ref: '#/components/responses/sql.settings@200'
/_plugins/_sql:
post:
operationId: sql.query.0
x-operation-group: sql.query
x-version-added: '1.0'
description: Send a SQL/PPL query to the SQL plugin.
externalDocs:
url: https://opensearch.org/docs/latest/search-plugins/sql/sql-ppl-api/
parameters:
- $ref: '#/components/parameters/sql.query::query.format'
- $ref: '#/components/parameters/sql.query::query.sanitize'
requestBody:
$ref: '#/components/requestBodies/sql.query'
responses:
'200':
$ref: '#/components/responses/sql.query@200'
/_plugins/_sql/_explain:
post:
operationId: sql.explain.0
x-operation-group: sql.explain
x-version-added: '1.0'
description: Shows how a query is executed against OpenSearch.
externalDocs:
url: https://opensearch.org/docs/latest/search-plugins/sql/sql-ppl-api/
parameters:
- $ref: '#/components/parameters/sql.explain::query.format'
- $ref: '#/components/parameters/sql.explain::query.sanitize'
requestBody:
$ref: '#/components/requestBodies/sql.explain'
responses:
'200':
$ref: '#/components/responses/sql.explain@200'
/_plugins/_sql/close:
post:
operationId: sql.close.0
x-operation-group: sql.close
x-version-added: '1.0'
description: Clear the cursor context.
externalDocs:
url: https://opensearch.org/docs/latest/search-plugins/sql/sql-ppl-api/
parameters:
- $ref: '#/components/parameters/sql.close::query.format'
- $ref: '#/components/parameters/sql.close::query.sanitize'
requestBody:
$ref: '#/components/requestBodies/sql.close'
responses:
'200':
$ref: '#/components/responses/sql.close@200'
/_plugins/_sql/stats:
get:
operationId: sql.get_stats.0
x-operation-group: sql.get_stats
x-version-added: '1.0'
description: Collect metrics for the plugin within the interval.
externalDocs:
url: https://opensearch.org/docs/latest/search-plugins/sql/monitoring/
parameters:
- $ref: '#/components/parameters/sql.get_stats::query.format'
- $ref: '#/components/parameters/sql.get_stats::query.sanitize'
responses:
'200':
$ref: '#/components/responses/sql.get_stats@200'
post:
operationId: sql.post_stats.1
x-operation-group: sql.post_stats
x-version-added: '1.0'
description: By a stats endpoint, you are able to collect metrics for the plugin within the interval.
externalDocs:
url: https://opensearch.org/docs/latest/search-plugins/sql/monitoring/
parameters:
- $ref: '#/components/parameters/sql.post_stats::query.format'
- $ref: '#/components/parameters/sql.post_stats::query.sanitize'
requestBody:
$ref: '#/components/requestBodies/sql.post_stats'
responses:
'200':
$ref: '#/components/responses/sql.post_stats@200'
components:
parameters:
sql.settings::query.format:
name: format
in: query
description: A short version of the Accept header (for example, `json`, `yaml`).
schema:
type: string
sql.query::query.format:
name: format
in: query
description: A short version of the Accept header (for example, `json`, `yaml`).
schema:
type: string
sql.query::query.sanitize:
name: sanitize
in: query
description: Specifies whether to escape special characters in the results
schema:
type: boolean
default: true
sql.explain::query.format:
name: format
in: query
description: A short version of the Accept header (for example, `json`, `yaml`).
schema:
type: string
sql.explain::query.sanitize:
name: sanitize
in: query
description: Specifies whether to escape special characters in the results
schema:
type: boolean
default: true
sql.close::query.format:
name: format
in: query
description: A short version of the Accept header (for example, `json`, `yaml`).
schema:
type: string
sql.close::query.sanitize:
name: sanitize
in: query
description: Specifies whether to escape special characters in the results
schema:
type: boolean
default: true
sql.get_stats::query.format:
name: format
in: query
description: A short version of the Accept header (for example, `json`, `yaml`).
schema:
type: string
sql.get_stats::query.sanitize:
name: sanitize
in: query
description: Specifies whether to escape special characters in the results
schema:
type: boolean
default: true
sql.post_stats::query.format:
name: format
in: query
description: A short version of the Accept header (for example, `json`, `yaml`).
schema:
type: string
sql.post_stats::query.sanitize:
name: sanitize
in: query
description: Specifies whether to escape special characters in the results
schema:
type: boolean
default: true
requestBodies:
sql.settings:
content:
application/json:
schema:
anyOf:
- $ref: '../schemas/sql._common.yaml#/components/schemas/SqlSettingsPlain'
- $ref: '../schemas/sql._common.yaml#/components/schemas/SqlSettings'
sql.query:
content:
application/json:
schema:
$ref: '../schemas/sql._common.yaml#/components/schemas/Query'
sql.explain:
content:
application/json:
schema:
$ref: '../schemas/sql._common.yaml#/components/schemas/Explain'
sql.close:
content:
application/json:
schema:
$ref: '../schemas/sql._common.yaml#/components/schemas/SqlClose'
sql.post_stats:
content:
application/json:
schema:
$ref: '../schemas/sql._common.yaml#/components/schemas/Stats'
responses:
sql.settings@200:
content:
application/json:
schema:
$ref: '../schemas/sql._common.yaml#/components/schemas/SqlSettingsResponse'
sql.query@200:
content:
application/json:
schema:
$ref: '../schemas/sql._common.yaml#/components/schemas/QueryResponse'
sql.explain@200:
content:
application/json:
schema:
$ref: '../schemas/sql._common.yaml#/components/schemas/ExplainResponse'
sql.close@200:
content:
application/json:
schema:
$ref: '../schemas/sql._common.yaml#/components/schemas/SqlCloseResponse'
sql.get_stats@200:
content:
text/plain:
schema:
type: string
sql.post_stats@200:
content:
text/plain:
schema:
type: string