Skip to content

Commit 2713e2e

Browse files
committed
proper codegen
1 parent b98fcf7 commit 2713e2e

File tree

48 files changed

+588
-588
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+588
-588
lines changed

Diff for: java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java

+10-10
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ public ElasticsearchXpackAsyncClient xpack() {
357357
* increase indexing speed.
358358
*
359359
* @see <a href=
360-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation
360+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/docs-bulk.html">Documentation
361361
* on elastic.co</a>
362362
*/
363363

@@ -377,7 +377,7 @@ public CompletableFuture<BulkResponse> bulk(BulkRequest request) {
377377
* a function that initializes a builder to create the
378378
* {@link BulkRequest}
379379
* @see <a href=
380-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation
380+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/docs-bulk.html">Documentation
381381
* on elastic.co</a>
382382
*/
383383

@@ -391,7 +391,7 @@ public final CompletableFuture<BulkResponse> bulk(Function<BulkRequest.Builder,
391391
* increase indexing speed.
392392
*
393393
* @see <a href=
394-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation
394+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/docs-bulk.html">Documentation
395395
* on elastic.co</a>
396396
*/
397397

@@ -406,7 +406,7 @@ public CompletableFuture<BulkResponse> bulk() {
406406
* Clears the search context and results for a scrolling search.
407407
*
408408
* @see <a href=
409-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation
409+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/clear-scroll-api.html">Documentation
410410
* on elastic.co</a>
411411
*/
412412

@@ -424,7 +424,7 @@ public CompletableFuture<ClearScrollResponse> clearScroll(ClearScrollRequest req
424424
* a function that initializes a builder to create the
425425
* {@link ClearScrollRequest}
426426
* @see <a href=
427-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation
427+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/clear-scroll-api.html">Documentation
428428
* on elastic.co</a>
429429
*/
430430

@@ -437,7 +437,7 @@ public final CompletableFuture<ClearScrollResponse> clearScroll(
437437
* Clears the search context and results for a scrolling search.
438438
*
439439
* @see <a href=
440-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation
440+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/clear-scroll-api.html">Documentation
441441
* on elastic.co</a>
442442
*/
443443

@@ -452,7 +452,7 @@ public CompletableFuture<ClearScrollResponse> clearScroll() {
452452
* Closes a point-in-time.
453453
*
454454
* @see <a href=
455-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation
455+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/point-in-time-api.html">Documentation
456456
* on elastic.co</a>
457457
*/
458458

@@ -470,7 +470,7 @@ public CompletableFuture<ClosePointInTimeResponse> closePointInTime(ClosePointIn
470470
* a function that initializes a builder to create the
471471
* {@link ClosePointInTimeRequest}
472472
* @see <a href=
473-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation
473+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/point-in-time-api.html">Documentation
474474
* on elastic.co</a>
475475
*/
476476

@@ -1546,7 +1546,7 @@ public CompletableFuture<MtermvectorsResponse> mtermvectors() {
15461546
* the more recent point in time.
15471547
*
15481548
* @see <a href=
1549-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation
1549+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/point-in-time-api.html">Documentation
15501550
* on elastic.co</a>
15511551
*/
15521552

@@ -1571,7 +1571,7 @@ public CompletableFuture<OpenPointInTimeResponse> openPointInTime(OpenPointInTim
15711571
* a function that initializes a builder to create the
15721572
* {@link OpenPointInTimeRequest}
15731573
* @see <a href=
1574-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation
1574+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/point-in-time-api.html">Documentation
15751575
* on elastic.co</a>
15761576
*/
15771577

Diff for: java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java

+10-10
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ public ElasticsearchXpackClient xpack() {
358358
* increase indexing speed.
359359
*
360360
* @see <a href=
361-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation
361+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/docs-bulk.html">Documentation
362362
* on elastic.co</a>
363363
*/
364364

@@ -378,7 +378,7 @@ public BulkResponse bulk(BulkRequest request) throws IOException, ElasticsearchE
378378
* a function that initializes a builder to create the
379379
* {@link BulkRequest}
380380
* @see <a href=
381-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation
381+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/docs-bulk.html">Documentation
382382
* on elastic.co</a>
383383
*/
384384

@@ -393,7 +393,7 @@ public final BulkResponse bulk(Function<BulkRequest.Builder, ObjectBuilder<BulkR
393393
* increase indexing speed.
394394
*
395395
* @see <a href=
396-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation
396+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/docs-bulk.html">Documentation
397397
* on elastic.co</a>
398398
*/
399399

@@ -408,7 +408,7 @@ public BulkResponse bulk() throws IOException, ElasticsearchException {
408408
* Clears the search context and results for a scrolling search.
409409
*
410410
* @see <a href=
411-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation
411+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/clear-scroll-api.html">Documentation
412412
* on elastic.co</a>
413413
*/
414414

@@ -426,7 +426,7 @@ public ClearScrollResponse clearScroll(ClearScrollRequest request) throws IOExce
426426
* a function that initializes a builder to create the
427427
* {@link ClearScrollRequest}
428428
* @see <a href=
429-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation
429+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/clear-scroll-api.html">Documentation
430430
* on elastic.co</a>
431431
*/
432432

@@ -440,7 +440,7 @@ public final ClearScrollResponse clearScroll(
440440
* Clears the search context and results for a scrolling search.
441441
*
442442
* @see <a href=
443-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation
443+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/clear-scroll-api.html">Documentation
444444
* on elastic.co</a>
445445
*/
446446

@@ -455,7 +455,7 @@ public ClearScrollResponse clearScroll() throws IOException, ElasticsearchExcept
455455
* Closes a point-in-time.
456456
*
457457
* @see <a href=
458-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation
458+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/point-in-time-api.html">Documentation
459459
* on elastic.co</a>
460460
*/
461461

@@ -474,7 +474,7 @@ public ClosePointInTimeResponse closePointInTime(ClosePointInTimeRequest request
474474
* a function that initializes a builder to create the
475475
* {@link ClosePointInTimeRequest}
476476
* @see <a href=
477-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation
477+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/point-in-time-api.html">Documentation
478478
* on elastic.co</a>
479479
*/
480480

@@ -1572,7 +1572,7 @@ public MtermvectorsResponse mtermvectors() throws IOException, ElasticsearchExce
15721572
* the more recent point in time.
15731573
*
15741574
* @see <a href=
1575-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation
1575+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/point-in-time-api.html">Documentation
15761576
* on elastic.co</a>
15771577
*/
15781578

@@ -1598,7 +1598,7 @@ public OpenPointInTimeResponse openPointInTime(OpenPointInTimeRequest request)
15981598
* a function that initializes a builder to create the
15991599
* {@link OpenPointInTimeRequest}
16001600
* @see <a href=
1601-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation
1601+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/point-in-time-api.html">Documentation
16021602
* on elastic.co</a>
16031603
*/
16041604

Diff for: java-client/src/main/java/co/elastic/clients/elasticsearch/_types/SortOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
/**
6060
*
6161
* @see <a href=
62-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/sort-search-results.html">Documentation
62+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/sort-search-results.html">Documentation
6363
* on elastic.co</a>
6464
* @see <a href="../doc-files/api-spec.html#_types.SortOptions">API
6565
* specification</a>

Diff for: java-client/src/main/java/co/elastic/clients/elasticsearch/_types/analysis/Normalizer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
/**
5858
*
5959
* @see <a href=
60-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/analysis-normalizers.html">Documentation
60+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/analysis-normalizers.html">Documentation
6161
* on elastic.co</a>
6262
* @see <a href="../../doc-files/api-spec.html#_types.analysis.Normalizer">API
6363
* specification</a>

Diff for: java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/GeoShapeProperty.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* searching with arbitrary geo shapes such as rectangles and polygons.
5454
*
5555
* @see <a href=
56-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/geo-shape.html">Documentation
56+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/geo-shape.html">Documentation
5757
* on elastic.co</a>
5858
* @see <a href=
5959
* "../../doc-files/api-spec.html#_types.mapping.GeoShapeProperty">API

Diff for: java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/ShapeProperty.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
* polygons.
5555
*
5656
* @see <a href=
57-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/shape.html">Documentation
57+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/shape.html">Documentation
5858
* on elastic.co</a>
5959
* @see <a href="../../doc-files/api-spec.html#_types.mapping.ShapeProperty">API
6060
* specification</a>

Diff for: java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Like.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
* the text.
6161
*
6262
* @see <a href=
63-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/query-dsl-mlt-query.html#_document_input_parameters">Documentation
63+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/query-dsl-mlt-query.html#_document_input_parameters">Documentation
6464
* on elastic.co</a>
6565
* @see <a href="../../doc-files/api-spec.html#_types.query_dsl.Like">API
6666
* specification</a>

Diff for: java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Query.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
/**
6363
*
6464
* @see <a href=
65-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/query-dsl.html">Documentation
65+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/query-dsl.html">Documentation
6666
* on elastic.co</a>
6767
* @see <a href=
6868
* "../../doc-files/api-spec.html#_types.query_dsl.QueryContainer">API

Diff for: java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/ElasticsearchAsyncSearchAsyncClient.java

+12-12
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public ElasticsearchAsyncSearchAsyncClient withTransportOptions(@Nullable Transp
8080
* <code>cancel_task</code> cluster privilege.
8181
*
8282
* @see <a href=
83-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
83+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
8484
* on elastic.co</a>
8585
*/
8686

@@ -103,7 +103,7 @@ public CompletableFuture<DeleteAsyncSearchResponse> delete(DeleteAsyncSearchRequ
103103
* a function that initializes a builder to create the
104104
* {@link DeleteAsyncSearchRequest}
105105
* @see <a href=
106-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
106+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
107107
* on elastic.co</a>
108108
*/
109109

@@ -121,7 +121,7 @@ public final CompletableFuture<DeleteAsyncSearchResponse> delete(
121121
* that submitted it.
122122
*
123123
* @see <a href=
124-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
124+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
125125
* on elastic.co</a>
126126
*/
127127

@@ -145,7 +145,7 @@ public <TDocument> CompletableFuture<GetAsyncSearchResponse<TDocument>> get(GetA
145145
* a function that initializes a builder to create the
146146
* {@link GetAsyncSearchRequest}
147147
* @see <a href=
148-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
148+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
149149
* on elastic.co</a>
150150
*/
151151

@@ -162,7 +162,7 @@ public final <TDocument> CompletableFuture<GetAsyncSearchResponse<TDocument>> ge
162162
* that submitted it.
163163
*
164164
* @see <a href=
165-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
165+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
166166
* on elastic.co</a>
167167
*/
168168

@@ -186,7 +186,7 @@ public <TDocument> CompletableFuture<GetAsyncSearchResponse<TDocument>> get(GetA
186186
* a function that initializes a builder to create the
187187
* {@link GetAsyncSearchRequest}
188188
* @see <a href=
189-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
189+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
190190
* on elastic.co</a>
191191
*/
192192

@@ -204,7 +204,7 @@ public final <TDocument> CompletableFuture<GetAsyncSearchResponse<TDocument>> ge
204204
* restricted to the <code>monitoring_user</code> role.
205205
*
206206
* @see <a href=
207-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
207+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
208208
* on elastic.co</a>
209209
*/
210210

@@ -225,7 +225,7 @@ public CompletableFuture<AsyncSearchStatusResponse> status(AsyncSearchStatusRequ
225225
* a function that initializes a builder to create the
226226
* {@link AsyncSearchStatusRequest}
227227
* @see <a href=
228-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
228+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
229229
* on elastic.co</a>
230230
*/
231231

@@ -248,7 +248,7 @@ public final CompletableFuture<AsyncSearchStatusResponse> status(
248248
* <code>search.max_async_search_response_size</code> cluster level setting.
249249
*
250250
* @see <a href=
251-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
251+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
252252
* on elastic.co</a>
253253
*/
254254

@@ -278,7 +278,7 @@ public <TDocument> CompletableFuture<SubmitResponse<TDocument>> submit(SubmitReq
278278
* a function that initializes a builder to create the
279279
* {@link SubmitRequest}
280280
* @see <a href=
281-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
281+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
282282
* on elastic.co</a>
283283
*/
284284

@@ -299,7 +299,7 @@ public final <TDocument> CompletableFuture<SubmitResponse<TDocument>> submit(
299299
* <code>search.max_async_search_response_size</code> cluster level setting.
300300
*
301301
* @see <a href=
302-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
302+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
303303
* on elastic.co</a>
304304
*/
305305

@@ -328,7 +328,7 @@ public <TDocument> CompletableFuture<SubmitResponse<TDocument>> submit(SubmitReq
328328
* a function that initializes a builder to create the
329329
* {@link SubmitRequest}
330330
* @see <a href=
331-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation
331+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.x/async-search.html">Documentation
332332
* on elastic.co</a>
333333
*/
334334

0 commit comments

Comments
 (0)