-
Notifications
You must be signed in to change notification settings - Fork 115
Closed
Labels
Description
🐛 Missing type
The ConvertType is missing an member for ip.
elasticsearch-specification/specification/ingest/_types/Processors.ts
Lines 424 to 432 in 24afbdf
| export enum ConvertType { | |
| integer = 0, | |
| long = 1, | |
| float = 2, | |
| double = 3, | |
| string = 4, | |
| boolean = 5, | |
| auto = 6 | |
| } |
The convert processor docs say
The supported types include: integer, long, float, double, string, boolean, ip, and auto.
And the source code in Elasticsearch has an IP entry on its enum.