Skip to content

Commit 0259789

Browse files
authored
Xpack settings fixes (#2998)
* xpack settings fixes * correct ml place
1 parent 63781d9 commit 0259789

File tree

4 files changed

+83
-34
lines changed

4 files changed

+83
-34
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 12 additions & 5 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: 57 additions & 25 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: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/nodes/info/types.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ export class NodeInfoXpack {
240240
license?: NodeInfoXpackLicense
241241
security: NodeInfoXpackSecurity
242242
notification?: Dictionary<string, UserDefinedValue>
243+
ml?: NodeInfoXpackMl
243244
}
244245

245246
export class NodeInfoXpackSecurity {
@@ -249,13 +250,17 @@ export class NodeInfoXpackSecurity {
249250
authc?: NodeInfoXpackSecurityAuthc
250251
}
251252

253+
export class NodeInfoXpackMl {
254+
use_auto_machine_memory_percent?: boolean
255+
}
256+
252257
export class NodeInfoXpackSecuritySsl {
253258
ssl: Dictionary<string, string>
254259
}
255260

256261
export class NodeInfoXpackSecurityAuthc {
257-
realms: NodeInfoXpackSecurityAuthcRealms
258-
token: NodeInfoXpackSecurityAuthcToken
262+
realms?: NodeInfoXpackSecurityAuthcRealms
263+
token?: NodeInfoXpackSecurityAuthcToken
259264
}
260265

261266
export class NodeInfoXpackSecurityAuthcRealms {

0 commit comments

Comments
 (0)