Skip to content

Commit 158fc46

Browse files
committed
[codegen] updated to latest api spec
1 parent 371adb1 commit 158fc46

File tree

71 files changed

+1825
-929
lines changed

Some content is hidden

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

71 files changed

+1825
-929
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ public ElasticsearchXpackAsyncClient xpack() {
351351
* request.
352352
*
353353
* @see <a href=
354-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/docs-bulk.html">Documentation
354+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/docs-bulk.html">Documentation
355355
* on elastic.co</a>
356356
*/
357357

@@ -370,7 +370,7 @@ public CompletableFuture<BulkResponse> bulk(BulkRequest request) {
370370
* a function that initializes a builder to create the
371371
* {@link BulkRequest}
372372
* @see <a href=
373-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/docs-bulk.html">Documentation
373+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/docs-bulk.html">Documentation
374374
* on elastic.co</a>
375375
*/
376376

@@ -383,7 +383,7 @@ public final CompletableFuture<BulkResponse> bulk(Function<BulkRequest.Builder,
383383
* request.
384384
*
385385
* @see <a href=
386-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/docs-bulk.html">Documentation
386+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/docs-bulk.html">Documentation
387387
* on elastic.co</a>
388388
*/
389389

@@ -398,7 +398,7 @@ public CompletableFuture<BulkResponse> bulk() {
398398
* Explicitly clears the search context for a scroll.
399399
*
400400
* @see <a href=
401-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/clear-scroll-api.html">Documentation
401+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/clear-scroll-api.html">Documentation
402402
* on elastic.co</a>
403403
*/
404404

@@ -416,7 +416,7 @@ public CompletableFuture<ClearScrollResponse> clearScroll(ClearScrollRequest req
416416
* a function that initializes a builder to create the
417417
* {@link ClearScrollRequest}
418418
* @see <a href=
419-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/clear-scroll-api.html">Documentation
419+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/clear-scroll-api.html">Documentation
420420
* on elastic.co</a>
421421
*/
422422

@@ -429,7 +429,7 @@ public final CompletableFuture<ClearScrollResponse> clearScroll(
429429
* Explicitly clears the search context for a scroll.
430430
*
431431
* @see <a href=
432-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/clear-scroll-api.html">Documentation
432+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/clear-scroll-api.html">Documentation
433433
* on elastic.co</a>
434434
*/
435435

@@ -444,7 +444,7 @@ public CompletableFuture<ClearScrollResponse> clearScroll() {
444444
* Close a point in time
445445
*
446446
* @see <a href=
447-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/point-in-time-api.html">Documentation
447+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/point-in-time-api.html">Documentation
448448
* on elastic.co</a>
449449
*/
450450

@@ -462,7 +462,7 @@ public CompletableFuture<ClosePointInTimeResponse> closePointInTime(ClosePointIn
462462
* a function that initializes a builder to create the
463463
* {@link ClosePointInTimeRequest}
464464
* @see <a href=
465-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/point-in-time-api.html">Documentation
465+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/point-in-time-api.html">Documentation
466466
* on elastic.co</a>
467467
*/
468468

@@ -1500,7 +1500,7 @@ public CompletableFuture<MtermvectorsResponse> mtermvectors() {
15001500
* Open a point in time that can be used in subsequent searches
15011501
*
15021502
* @see <a href=
1503-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/point-in-time-api.html">Documentation
1503+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/point-in-time-api.html">Documentation
15041504
* on elastic.co</a>
15051505
*/
15061506

@@ -1518,7 +1518,7 @@ public CompletableFuture<OpenPointInTimeResponse> openPointInTime(OpenPointInTim
15181518
* a function that initializes a builder to create the
15191519
* {@link OpenPointInTimeRequest}
15201520
* @see <a href=
1521-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/point-in-time-api.html">Documentation
1521+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/point-in-time-api.html">Documentation
15221522
* on elastic.co</a>
15231523
*/
15241524

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ public ElasticsearchXpackClient xpack() {
352352
* request.
353353
*
354354
* @see <a href=
355-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/docs-bulk.html">Documentation
355+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/docs-bulk.html">Documentation
356356
* on elastic.co</a>
357357
*/
358358

@@ -371,7 +371,7 @@ public BulkResponse bulk(BulkRequest request) throws IOException, ElasticsearchE
371371
* a function that initializes a builder to create the
372372
* {@link BulkRequest}
373373
* @see <a href=
374-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/docs-bulk.html">Documentation
374+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/docs-bulk.html">Documentation
375375
* on elastic.co</a>
376376
*/
377377

@@ -385,7 +385,7 @@ public final BulkResponse bulk(Function<BulkRequest.Builder, ObjectBuilder<BulkR
385385
* request.
386386
*
387387
* @see <a href=
388-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/docs-bulk.html">Documentation
388+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/docs-bulk.html">Documentation
389389
* on elastic.co</a>
390390
*/
391391

@@ -400,7 +400,7 @@ public BulkResponse bulk() throws IOException, ElasticsearchException {
400400
* Explicitly clears the search context for a scroll.
401401
*
402402
* @see <a href=
403-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/clear-scroll-api.html">Documentation
403+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/clear-scroll-api.html">Documentation
404404
* on elastic.co</a>
405405
*/
406406

@@ -418,7 +418,7 @@ public ClearScrollResponse clearScroll(ClearScrollRequest request) throws IOExce
418418
* a function that initializes a builder to create the
419419
* {@link ClearScrollRequest}
420420
* @see <a href=
421-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/clear-scroll-api.html">Documentation
421+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/clear-scroll-api.html">Documentation
422422
* on elastic.co</a>
423423
*/
424424

@@ -432,7 +432,7 @@ public final ClearScrollResponse clearScroll(
432432
* Explicitly clears the search context for a scroll.
433433
*
434434
* @see <a href=
435-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/clear-scroll-api.html">Documentation
435+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/clear-scroll-api.html">Documentation
436436
* on elastic.co</a>
437437
*/
438438

@@ -447,7 +447,7 @@ public ClearScrollResponse clearScroll() throws IOException, ElasticsearchExcept
447447
* Close a point in time
448448
*
449449
* @see <a href=
450-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/point-in-time-api.html">Documentation
450+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/point-in-time-api.html">Documentation
451451
* on elastic.co</a>
452452
*/
453453

@@ -466,7 +466,7 @@ public ClosePointInTimeResponse closePointInTime(ClosePointInTimeRequest request
466466
* a function that initializes a builder to create the
467467
* {@link ClosePointInTimeRequest}
468468
* @see <a href=
469-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/point-in-time-api.html">Documentation
469+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/point-in-time-api.html">Documentation
470470
* on elastic.co</a>
471471
*/
472472

@@ -1526,7 +1526,7 @@ public MtermvectorsResponse mtermvectors() throws IOException, ElasticsearchExce
15261526
* Open a point in time that can be used in subsequent searches
15271527
*
15281528
* @see <a href=
1529-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/point-in-time-api.html">Documentation
1529+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/point-in-time-api.html">Documentation
15301530
* on elastic.co</a>
15311531
*/
15321532

@@ -1545,7 +1545,7 @@ public OpenPointInTimeResponse openPointInTime(OpenPointInTimeRequest request)
15451545
* a function that initializes a builder to create the
15461546
* {@link OpenPointInTimeRequest}
15471547
* @see <a href=
1548-
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.14/point-in-time-api.html">Documentation
1548+
* "https://www.elastic.co/guide/en/elasticsearch/reference/8.15/point-in-time-api.html">Documentation
15491549
* on elastic.co</a>
15501550
*/
15511551

0 commit comments

Comments
 (0)