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
17 changes: 12 additions & 5 deletions output/openapi/elasticsearch-openapi.json

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

82 changes: 57 additions & 25 deletions output/schema/schema.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/typescript/types.ts

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

9 changes: 7 additions & 2 deletions specification/nodes/info/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ export class NodeInfoXpack {
license?: NodeInfoXpackLicense
security: NodeInfoXpackSecurity
notification?: Dictionary<string, UserDefinedValue>
ml?: NodeInfoXpackMl
}

export class NodeInfoXpackSecurity {
Expand All @@ -249,13 +250,17 @@ export class NodeInfoXpackSecurity {
authc?: NodeInfoXpackSecurityAuthc
}

export class NodeInfoXpackMl {
use_auto_machine_memory_percent?: boolean
}

export class NodeInfoXpackSecuritySsl {
ssl: Dictionary<string, string>
}

export class NodeInfoXpackSecurityAuthc {
realms: NodeInfoXpackSecurityAuthcRealms
token: NodeInfoXpackSecurityAuthcToken
realms?: NodeInfoXpackSecurityAuthcRealms
token?: NodeInfoXpackSecurityAuthcToken
}

export class NodeInfoXpackSecurityAuthcRealms {
Expand Down
Loading