Skip to content

Commit

Permalink
Xpack settings fixes (#2998)
Browse files Browse the repository at this point in the history
* xpack settings fixes

* correct ml place
  • Loading branch information
l-trotta authored Oct 14, 2024
1 parent 63781d9 commit 0259789
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 34 deletions.
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

0 comments on commit 0259789

Please sign in to comment.