Skip to content

Commit

Permalink
[DOCS] Add synonym operation summaries (#3220)
Browse files Browse the repository at this point in the history
Co-authored-by: Marci W <[email protected]>
(cherry picked from commit 6fbd2ba)
  • Loading branch information
lcawl authored and github-actions[bot] committed Dec 5, 2024
1 parent 2679bdf commit 8e93319
Show file tree
Hide file tree
Showing 10 changed files with 56 additions and 40 deletions.
19 changes: 12 additions & 7 deletions output/openapi/elasticsearch-openapi.json

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

19 changes: 12 additions & 7 deletions output/openapi/elasticsearch-serverless-openapi.json

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

38 changes: 19 additions & 19 deletions output/schema/schema.json

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

Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { RequestBase } from '@_types/Base'
import { Id } from '@_types/common'

/**
* Deletes a synonym set
* Delete a synonym set.
* @rest_spec_name synonyms.delete_synonym
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import { RequestBase } from '@_types/Base'
import { Id } from '@_types/common'

/**
* Deletes a synonym rule in a synonym set
* Delete a synonym rule.
* Delete a synonym rule from a synonym set.
* @rest_spec_name synonyms.delete_synonym_rule
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
Expand Down
2 changes: 1 addition & 1 deletion specification/synonyms/get_synonym/SynonymsGetRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Id } from '@_types/common'
import { integer } from '@_types/Numeric'

/**
* Retrieves a synonym set
* Get a synonym set.
* @rest_spec_name synonyms.get_synonym
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import { RequestBase } from '@_types/Base'
import { Id } from '@_types/common'

/**
* Retrieves a synonym rule from a synonym set
* Get a synonym rule.
* Get a synonym rule from a synonym set.
* @rest_spec_name synonyms.get_synonym_rule
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import { RequestBase } from '@_types/Base'
import { integer } from '@_types/Numeric'

/**
* Retrieves a summary of all defined synonym sets
* Get all synonym sets.
* Get a summary of all defined synonym sets.
* @rest_spec_name synonyms.get_synonyms_sets
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
Expand Down
4 changes: 3 additions & 1 deletion specification/synonyms/put_synonym/SynonymsPutRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ import { Id } from '@_types/common'
import { SynonymRule } from '../_types/SynonymRule'

/**
* Creates or updates a synonym set.
* Create or update a synonym set.
* Synonyms sets are limited to a maximum of 10,000 synonym rules per set.
* If you need to manage more synonym rules, you can create multiple synonym sets.
* @rest_spec_name synonyms.put_synonym
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ import { Id } from '@_types/common'
import { SynonymString } from '../_types/SynonymRule'

/**
* Creates or updates a synonym rule in a synonym set
* Create or update a synonym rule.
* Create or update a synonym rule in a synonym set.
* @rest_spec_name synonyms.put_synonym_rule
* @availability stack since=8.10.0 stability=stable
* @availability serverless stability=stable visibility=public
Expand Down

0 comments on commit 8e93319

Please sign in to comment.