Skip to content

Commit f524ea3

Browse files
committed
Reload analyzers result is now optional
1 parent 189319f commit f524ea3

File tree

7 files changed

+29
-21
lines changed

7 files changed

+29
-21
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/synonyms/_types/SynonymsUpdateResult.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export class SynonymsUpdateResult {
2727
result: Result
2828

2929
/**
30-
* Updating synonyms in a synonym set reloads the associated analyzers.
30+
* Updating synonyms in a synonym set can reload the associated analyzers in case refresh is set to true.
3131
* This information is the analyzers reloading result.
3232
*/
33-
reload_analyzers_details: ReloadResult
33+
reload_analyzers_details?: ReloadResult
3434
}

specification/synonyms/put_synonym/SynonymsPutResponse.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,15 @@ import { Result } from '@_types/Result'
2222

2323
export class Response {
2424
body: {
25+
/**
26+
* The update operation result.
27+
*/
2528
result: Result
26-
reload_analyzers_details: ReloadResult
29+
30+
/**
31+
* Updating a synonyms set can reload the associated analyzers in case refresh is set to true.
32+
* This information is the analyzers reloading result.
33+
*/
34+
reload_analyzers_details?: ReloadResult
2735
}
2836
}

0 commit comments

Comments
 (0)