From 05fcc5391206f28aa3ccef4b27f6d3cd7a5bbd22 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Tue, 5 Nov 2024 20:48:16 +0400 Subject: [PATCH] Add missing logsdb feature to xpack.info (#3091) (cherry picked from commit 8dcb73693be18476e0ad0bcc8b4ea60c37c05b3e) --- output/openapi/elasticsearch-openapi.json | 4 ++++ output/schema/schema.json | 15 +++++++++++++-- output/typescript/types.ts | 1 + specification/xpack/info/types.ts | 1 + 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 71f644470a..6834782daa 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -86715,6 +86715,9 @@ "logstash": { "$ref": "#/components/schemas/xpack.info:Feature" }, + "logsdb": { + "$ref": "#/components/schemas/xpack.info:Feature" + }, "ml": { "$ref": "#/components/schemas/xpack.info:Feature" }, @@ -86772,6 +86775,7 @@ "graph", "ilm", "logstash", + "logsdb", "ml", "monitoring", "rollup", diff --git a/output/schema/schema.json b/output/schema/schema.json index 25661a34fd..8d47d2195c 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -214865,7 +214865,7 @@ } } ], - "specLocation": "xpack/info/types.ts#L84-L89" + "specLocation": "xpack/info/types.ts#L85-L90" }, { "kind": "interface", @@ -215027,6 +215027,17 @@ } } }, + { + "name": "logsdb", + "required": true, + "type": { + "kind": "instance_of", + "type": { + "name": "Feature", + "namespace": "xpack.info" + } + } + }, { "name": "ml", "required": true, @@ -215192,7 +215203,7 @@ } } ], - "specLocation": "xpack/info/types.ts#L42-L82" + "specLocation": "xpack/info/types.ts#L42-L83" }, { "kind": "interface", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index a01793f46a..7098eaefd6 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -20581,6 +20581,7 @@ export interface XpackInfoFeatures { graph: XpackInfoFeature ilm: XpackInfoFeature logstash: XpackInfoFeature + logsdb: XpackInfoFeature ml: XpackInfoFeature monitoring: XpackInfoFeature rollup: XpackInfoFeature diff --git a/specification/xpack/info/types.ts b/specification/xpack/info/types.ts index 48fec772a0..3375ee9f5d 100644 --- a/specification/xpack/info/types.ts +++ b/specification/xpack/info/types.ts @@ -59,6 +59,7 @@ export class Features { graph: Feature ilm: Feature logstash: Feature + logsdb: Feature ml: Feature monitoring: Feature rollup: Feature