diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 0e3706e506..fbcaf42970 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -106149,15 +106149,10 @@ "description": "Controls what properties are added to `target_field`.", "default": [ "name", - "major", - "minor", - "patch", - "build", "os", - "os_name", - "os_major", - "os_minor", - "device" + "device", + "original", + "version" ], "type": "array", "items": { diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index ba2997c3c2..9bedaa0614 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -69570,15 +69570,10 @@ "description": "Controls what properties are added to `target_field`.", "default": [ "name", - "major", - "minor", - "patch", - "build", "os", - "os_name", - "os_major", - "os_minor", - "device" + "device", + "original", + "version" ], "type": "array", "items": { diff --git a/output/schema/schema.json b/output/schema/schema.json index 875bc8bcb3..3153c5d30e 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -186711,15 +186711,10 @@ "required": false, "serverDefault": [ "name", - "major", - "minor", - "patch", - "build", "os", - "os_name", - "os_major", - "os_minor", - "device" + "device", + "original", + "version" ], "type": { "kind": "array_of", diff --git a/specification/ingest/_types/Processors.ts b/specification/ingest/_types/Processors.ts index 0236471f3d..a79232ac82 100644 --- a/specification/ingest/_types/Processors.ts +++ b/specification/ingest/_types/Processors.ts @@ -533,7 +533,7 @@ export class UserAgentProcessor extends ProcessorBase { target_field?: Field /** * Controls what properties are added to `target_field`. - * @server_default ['name', 'major', 'minor', 'patch', 'build', 'os', 'os_name', 'os_major', 'os_minor', 'device'] + * @server_default ['name', 'os', 'device', 'original', 'version'] */ properties?: UserAgentProperty[] /**