Skip to content

Commit

Permalink
specific ack response for indices delete alias
Browse files Browse the repository at this point in the history
  • Loading branch information
l-trotta committed Jan 8, 2025
1 parent bd30a4f commit 237cf4c
Show file tree
Hide file tree
Showing 7 changed files with 109 additions and 55 deletions.
20 changes: 16 additions & 4 deletions output/openapi/elasticsearch-openapi.json

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

20 changes: 16 additions & 4 deletions output/openapi/elasticsearch-serverless-openapi.json

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

54 changes: 33 additions & 21 deletions output/schema/schema-serverless.json

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

56 changes: 34 additions & 22 deletions output/schema/schema.json

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

7 changes: 5 additions & 2 deletions output/typescript/types.ts

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

1 change: 0 additions & 1 deletion specification/_types/Base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export class WriteResponseBase {
export class AcknowledgedResponseBase {
/** For a successful response, this value is always true. On failure, an exception is returned instead. */
acknowledged: boolean
errors?: boolean
}

export class DynamicResponseBase {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,9 @@
import { AcknowledgedResponseBase } from '@_types/Base'

export class Response {
body: AcknowledgedResponseBase
body: IndicesAliasesResponseBody
}

export class IndicesAliasesResponseBody extends AcknowledgedResponseBase {
errors?: boolean
}

0 comments on commit 237cf4c

Please sign in to comment.