Laura Trotta

Results 70 comments of Laura Trotta

Hello and thank you for the report. I tried to reproduce this using the current version of the java client and it seems to be working, could you let me...

So, I tried the same request using the java client: ``` esClient.search(s -> s .index("test") .size(0) .aggregations("box", ag -> ag.boxplot(bx -> bx .field("year") .compression(300d))) , Object.class); ``` and the response...

Hello! Thank you for your time and your interest in the java client :) unfortunately we cannot accept PRs that modify generated files, because they would just be overwritten when...

Hello, thanks for reporting this! I'll check which one is the correct one and make sure it's consistent everywhere.

[fixed](https://github.com/elastic/elasticsearch-java/commit/f91f275041b0d449a735ff58b8fc44b49912bc9b), will be part of the next minor version

Hello, thanks for the report! Yes there seem to be some missing fields around property types, it's a problem within the [API specification](https://github.com/elastic/elasticsearch-specification) used to produce the Java code. We'll...

Hello, thank you for reporting this! While it looks like `PutComponentTemplateRequest` was already fixed with [this PR ](https://github.com/elastic/elasticsearch-specification/pull/2155), `PutIndexTemplateRequest` is still missing `allow_auto_create`; I'll have to investigate this a bit...

So, after investigating it turns out there were some mistakes in the documentation, PutComponentTemplateRequest actually doesn't allow `allow_auto_create`, while PutIndexTemplateRequest does, and there are also other fields with similar mistakes....