File tree 4 files changed +39
-0
lines changed
4 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 59
59
tests : plugins/knn
60
60
- version : 2.19.0
61
61
tests : plugins/learning_to_rank
62
+ - version : 2.19.0
63
+ tests : plugins/user_behavior_insights
62
64
- version : 2.19.0
63
65
tests : plugins/security
64
66
cert : tests/plugins/security/.kirk.pem
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
7
7
### Added
8
8
9
+ - Added specs for UBI plugin endpoints ([ #844 ] ( https://github.com/opensearch-project/opensearch-api-specification/pull/844 ) )
9
10
- Added defaults for Snapshot APIs ([ #830 ] ( https://github.com/opensearch-project/opensearch-api-specification/pull/830 ) )
10
11
- Added specs for LTR plugin for stats endpoints ([ #786 ] ( https://github.com/opensearch-project/opensearch-api-specification/issues/786/ ) )
11
12
- Added defaults for Cluster APIs ([ #824 ] ( https://github.com/opensearch-project/opensearch-api-specification/pull/824/ ) )
Original file line number Diff line number Diff line change
1
+ openapi : 3.1.0
2
+ info :
3
+ title : OpenSearch UBI API
4
+ description : OpenSearch UBI API.
5
+ version : 1.0.0
6
+ paths :
7
+ /_plugins/ubi/initialize :
8
+ get :
9
+ operationId : ubi.initialize.0
10
+ x-operation-group : ubi.initialize
11
+ x-version-added : ' 1.0'
12
+ description : Initializes the UBI indexes.
13
+ responses :
14
+ ' 200 ' :
15
+ $ref : ' #/components/responses/ubi.initialize@200'
16
+
17
+ components :
18
+ responses :
19
+ ubi.initialize@200 :
20
+ content :
21
+ application/json :
22
+ schema :
23
+ $ref : ' ../schemas/ubi._common.yaml#/components/schemas/Initialize'
Original file line number Diff line number Diff line change
1
+ openapi : 3.1.0
2
+ info :
3
+ title : Schemas of `ubi._common` Category
4
+ description : Schemas of `ubi._common` category.
5
+ version : 1.0.0
6
+ paths : {}
7
+ components :
8
+ schemas :
9
+ Initialize :
10
+ type : object
11
+ properties :
12
+ message :
13
+ type : string
You can’t perform that action at this time.
0 commit comments