diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 775856319e..68df9110b3 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -82456,12 +82456,8 @@ "description": "The internal queuing model to use for event buffering.", "type": "string" }, - "queue.max_bytes.number": { + "queue.max_bytes": { "description": "The total capacity of the queue (`queue.type: persisted`) in number of bytes.", - "type": "number" - }, - "queue.max_bytes.units": { - "description": "The total capacity of the queue (`queue.type: persisted`) in terms of units of bytes.", "type": "string" }, "queue.checkpoint.writes": { @@ -82474,8 +82470,7 @@ "pipeline.batch.size", "pipeline.batch.delay", "queue.type", - "queue.max_bytes.number", - "queue.max_bytes.units", + "queue.max_bytes", "queue.checkpoint.writes" ] }, diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 58650da45a..8502ba5037 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -53437,12 +53437,8 @@ "description": "The internal queuing model to use for event buffering.", "type": "string" }, - "queue.max_bytes.number": { + "queue.max_bytes": { "description": "The total capacity of the queue (`queue.type: persisted`) in number of bytes.", - "type": "number" - }, - "queue.max_bytes.units": { - "description": "The total capacity of the queue (`queue.type: persisted`) in terms of units of bytes.", "type": "string" }, "queue.checkpoint.writes": { @@ -53455,8 +53451,7 @@ "pipeline.batch.size", "pipeline.batch.delay", "queue.type", - "queue.max_bytes.number", - "queue.max_bytes.units", + "queue.max_bytes", "queue.checkpoint.writes" ] }, diff --git a/output/schema/schema-serverless.json b/output/schema/schema-serverless.json index b166fd2b6e..180fd659f9 100644 --- a/output/schema/schema-serverless.json +++ b/output/schema/schema-serverless.json @@ -132375,7 +132375,7 @@ } } ], - "specLocation": "logstash/_types/Pipeline.ts#L60-L91" + "specLocation": "logstash/_types/Pipeline.ts#L56-L87" }, { "kind": "interface", @@ -132470,19 +132470,7 @@ }, { "description": "The total capacity of the queue (`queue.type: persisted`) in number of bytes.", - "name": "queue.max_bytes.number", - "required": true, - "type": { - "kind": "instance_of", - "type": { - "name": "integer", - "namespace": "_types" - } - } - }, - { - "description": "The total capacity of the queue (`queue.type: persisted`) in terms of units of bytes.", - "name": "queue.max_bytes.units", + "name": "queue.max_bytes", "required": true, "type": { "kind": "instance_of", @@ -132505,7 +132493,7 @@ } } ], - "specLocation": "logstash/_types/Pipeline.ts#L28-L59" + "specLocation": "logstash/_types/Pipeline.ts#L28-L55" }, { "kind": "interface", diff --git a/output/schema/schema.json b/output/schema/schema.json index 30792ddcc0..075184ebbf 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -164824,7 +164824,7 @@ } } ], - "specLocation": "logstash/_types/Pipeline.ts#L60-L91" + "specLocation": "logstash/_types/Pipeline.ts#L56-L87" }, { "kind": "interface", @@ -164919,19 +164919,7 @@ }, { "description": "The total capacity of the queue (`queue.type: persisted`) in number of bytes.", - "name": "queue.max_bytes.number", - "required": true, - "type": { - "kind": "instance_of", - "type": { - "name": "integer", - "namespace": "_types" - } - } - }, - { - "description": "The total capacity of the queue (`queue.type: persisted`) in terms of units of bytes.", - "name": "queue.max_bytes.units", + "name": "queue.max_bytes", "required": true, "type": { "kind": "instance_of", @@ -164954,7 +164942,7 @@ } } ], - "specLocation": "logstash/_types/Pipeline.ts#L28-L59" + "specLocation": "logstash/_types/Pipeline.ts#L28-L55" }, { "kind": "request", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index e1f3f04558..d5b57a53f1 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -14667,8 +14667,7 @@ export interface LogstashPipelineSettings { 'pipeline.batch.size': integer 'pipeline.batch.delay': integer 'queue.type': string - 'queue.max_bytes.number': integer - 'queue.max_bytes.units': string + 'queue.max_bytes': string 'queue.checkpoint.writes': integer } diff --git a/specification/logstash/_types/Pipeline.ts b/specification/logstash/_types/Pipeline.ts index 76ff608407..547299ba08 100644 --- a/specification/logstash/_types/Pipeline.ts +++ b/specification/logstash/_types/Pipeline.ts @@ -47,11 +47,7 @@ export class PipelineSettings { /** * The total capacity of the queue (`queue.type: persisted`) in number of bytes. */ - 'queue.max_bytes.number': integer - /** - * The total capacity of the queue (`queue.type: persisted`) in terms of units of bytes. - */ - 'queue.max_bytes.units': string + 'queue.max_bytes': string /** * The maximum number of written events before forcing a checkpoint when persistent queues are enabled (`queue.type: persisted`). */