Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark Synonyms API as stable #2366

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion specification/_json_spec/synonyms.delete_synonym.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-synonyms-set.html",
"description": "Deletes a synonym set"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-synonym-rule.html",
"description": "Deletes a synonym rule in a synonym set"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/synonyms.get_synonym.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/get-synonyms-set.html",
"description": "Retrieves a synonym set"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/synonyms.get_synonym_rule.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/get-synonym-rule.html",
"description": "Retrieves a synonym rule from a synonym set"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/synonyms.get_synonyms_sets.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/list-synonyms-sets.html",
"description": "Retrieves a summary of all defined synonym sets"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/synonyms.put_synonym.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/put-synonyms-set.html",
"description": "Creates or updates a synonyms set"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/synonyms.put_synonym_rule.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/put-synonym-rule.html",
"description": "Creates or updates a synonym rule in a synonym set"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import { Id } from '@_types/common'
/**
* Deletes a synonym set
* @rest_spec_name synonyms.delete_synonym
* @availability stack since=8.10.0 stability=experimental
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import { Id } from '@_types/common'
/**
* Deletes a synonym rule in a synonym set
* @rest_spec_name synonyms.delete_synonym_rule
* @availability stack since=8.10.0 stability=experimental
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
4 changes: 2 additions & 2 deletions specification/synonyms/get_synonym/SynonymsGetRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import { integer } from '@_types/Numeric'
/**
* Retrieves a synonym set
* @rest_spec_name synonyms.get_synonym
* @availability stack since=8.10.0 stability=experimental
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import { Id } from '@_types/common'
/**
* Retrieves a synonym rule from a synonym set
* @rest_spec_name synonyms.get_synonym_rule
* @availability stack since=8.10.0 stability=experimental
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import { integer } from '@_types/Numeric'
/**
* Retrieves a summary of all defined synonym sets
* @rest_spec_name synonyms.get_synonyms_sets
* @availability stack since=8.10.0 stability=experimental
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
query_parameters: {
Expand Down
4 changes: 2 additions & 2 deletions specification/synonyms/put_synonym/SynonymsPutRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import { SynonymRule } from '../_types/SynonymRule'
/**
* Creates or updates a synonym set.
* @rest_spec_name synonyms.put_synonym
* @availability stack since=8.10.0 stability=experimental
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import { SynonymString } from '../_types/SynonymRule'
/**
* Creates or updates a synonym rule in a synonym set
* @rest_spec_name synonyms.put_synonym_rule
* @availability stack since=8.10.0 stability=experimental
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
Loading