diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index ac66ec3f87..cb58731221 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -86479,12 +86479,6 @@ "ccr": { "$ref": "#/components/schemas/xpack.info:Feature" }, - "data_frame": { - "$ref": "#/components/schemas/xpack.info:Feature" - }, - "data_science": { - "$ref": "#/components/schemas/xpack.info:Feature" - }, "data_streams": { "$ref": "#/components/schemas/xpack.info:Feature" }, @@ -86494,10 +86488,13 @@ "enrich": { "$ref": "#/components/schemas/xpack.info:Feature" }, + "enterprise_search": { + "$ref": "#/components/schemas/xpack.info:Feature" + }, "eql": { "$ref": "#/components/schemas/xpack.info:Feature" }, - "flattened": { + "esql": { "$ref": "#/components/schemas/xpack.info:Feature" }, "frozen_indices": { @@ -86542,7 +86539,7 @@ "transform": { "$ref": "#/components/schemas/xpack.info:Feature" }, - "vectors": { + "universal_profiling": { "$ref": "#/components/schemas/xpack.info:Feature" }, "voting_only": { @@ -86562,7 +86559,9 @@ "data_streams", "data_tiers", "enrich", + "enterprise_search", "eql", + "esql", "frozen_indices", "graph", "ilm", @@ -86576,6 +86575,7 @@ "spatial", "sql", "transform", + "universal_profiling", "voting_only", "watcher", "archive" diff --git a/output/schema/schema.json b/output/schema/schema.json index adc529ce21..0fb303d309 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -213457,7 +213457,7 @@ } } ], - "specLocation": "xpack/info/types.ts#L77-L82" + "specLocation": "xpack/info/types.ts#L84-L89" }, { "kind": "interface", @@ -213500,19 +213500,8 @@ } }, { - "name": "data_frame", - "required": false, - "type": { - "kind": "instance_of", - "type": { - "name": "Feature", - "namespace": "xpack.info" - } - } - }, - { - "name": "data_science", - "required": false, + "name": "data_streams", + "required": true, "type": { "kind": "instance_of", "type": { @@ -213522,7 +213511,7 @@ } }, { - "name": "data_streams", + "name": "data_tiers", "required": true, "type": { "kind": "instance_of", @@ -213533,7 +213522,7 @@ } }, { - "name": "data_tiers", + "name": "enrich", "required": true, "type": { "kind": "instance_of", @@ -213544,7 +213533,12 @@ } }, { - "name": "enrich", + "availability": { + "stack": { + "since": "8.8.0" + } + }, + "name": "enterprise_search", "required": true, "type": { "kind": "instance_of", @@ -213566,8 +213560,13 @@ } }, { - "name": "flattened", - "required": false, + "availability": { + "stack": { + "since": "8.14.0" + } + }, + "name": "esql", + "required": true, "type": { "kind": "instance_of", "type": { @@ -213731,8 +213730,13 @@ } }, { - "name": "vectors", - "required": false, + "availability": { + "stack": { + "since": "8.7.0" + } + }, + "name": "universal_profiling", + "required": true, "type": { "kind": "instance_of", "type": { @@ -213765,7 +213769,6 @@ }, { "availability": { - "serverless": {}, "stack": { "since": "8.2.0" } @@ -213781,7 +213784,7 @@ } } ], - "specLocation": "xpack/info/types.ts#L42-L75" + "specLocation": "xpack/info/types.ts#L42-L82" }, { "kind": "interface", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index 424ad8a4b3..ef4cd6dd83 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -20483,13 +20483,12 @@ export interface XpackInfoFeatures { aggregate_metric: XpackInfoFeature analytics: XpackInfoFeature ccr: XpackInfoFeature - data_frame?: XpackInfoFeature - data_science?: XpackInfoFeature data_streams: XpackInfoFeature data_tiers: XpackInfoFeature enrich: XpackInfoFeature + enterprise_search: XpackInfoFeature eql: XpackInfoFeature - flattened?: XpackInfoFeature + esql: XpackInfoFeature frozen_indices: XpackInfoFeature graph: XpackInfoFeature ilm: XpackInfoFeature @@ -20504,7 +20503,7 @@ export interface XpackInfoFeatures { spatial: XpackInfoFeature sql: XpackInfoFeature transform: XpackInfoFeature - vectors?: XpackInfoFeature + universal_profiling: XpackInfoFeature voting_only: XpackInfoFeature watcher: XpackInfoFeature archive: XpackInfoFeature diff --git a/specification/xpack/info/types.ts b/specification/xpack/info/types.ts index 034e5c3d6c..48fec772a0 100644 --- a/specification/xpack/info/types.ts +++ b/specification/xpack/info/types.ts @@ -43,13 +43,18 @@ export class Features { aggregate_metric: Feature analytics: Feature ccr: Feature - data_frame?: Feature - data_science?: Feature data_streams: Feature data_tiers: Feature enrich: Feature + /** + * @availability stack since=8.8.0 + */ + enterprise_search: Feature eql: Feature - flattened?: Feature + /** + * @availability stack since=8.14.0 + */ + esql: Feature frozen_indices: Feature graph: Feature ilm: Feature @@ -64,12 +69,14 @@ export class Features { spatial: Feature sql: Feature transform: Feature - vectors?: Feature + /** + * @availability stack since=8.7.0 + */ + universal_profiling: Feature voting_only: Feature watcher: Feature /** * @availability stack since=8.2.0 - * @availability serverless */ archive: Feature }