Skip to content
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
9 changes: 7 additions & 2 deletions output/openapi/elasticsearch-openapi.json

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

9 changes: 7 additions & 2 deletions output/openapi/elasticsearch-serverless-openapi.json

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

24 changes: 21 additions & 3 deletions output/schema/schema.json

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

1 change: 1 addition & 0 deletions output/typescript/types.ts

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

12 changes: 10 additions & 2 deletions specification/_global/reindex/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,21 @@ export class RemoteSource {
*/
host: Host
/**
* The username to use for authentication with the remote host.
* The username to use for authentication with the remote host (required when using basic auth).
*/
username?: Username
/**
* The password to use for authentication with the remote host.
* The password to use for authentication with the remote host (required when using basic auth).
*/
password?: Password
/**
* The API key to use for authentication with the remote host (as an alternative to basic auth when the remote cluster is in Elastic Cloud).
* (It is not permitted to set this and also to set an `Authorization` header via `headers`.)
*
* @availability stack since=9.3.0
* @availability serverless
*/
api_key?: string
/**
* The remote socket read timeout.
* @server_default 30s
Expand Down