From 8d88040f94896505ff21fc2911ce44ef30d62709 Mon Sep 17 00:00:00 2001 From: Laura Trotta Date: Tue, 10 Sep 2024 11:47:14 +0200 Subject: [PATCH] new branch 8.16 --- .buildkite/pipeline.yml | 2 +- config/version.txt | 2 +- .../clients/transport/VersionInfo.java | 2 +- .../ElasticsearchAsyncClient.java | 20 +-- .../elasticsearch/ElasticsearchClient.java | 20 +-- .../elasticsearch/_types/SortOptions.java | 2 +- .../_types/analysis/Normalizer.java | 2 +- .../_types/mapping/GeoShapeProperty.java | 2 +- .../_types/mapping/ShapeProperty.java | 2 +- .../elasticsearch/_types/query_dsl/Like.java | 2 +- .../elasticsearch/_types/query_dsl/Query.java | 2 +- .../ElasticsearchAsyncSearchAsyncClient.java | 24 ++-- .../ElasticsearchAsyncSearchClient.java | 24 ++-- .../ElasticsearchAutoscalingAsyncClient.java | 14 +- .../ElasticsearchAutoscalingClient.java | 14 +- .../cat/ElasticsearchCatAsyncClient.java | 126 +++++++++--------- .../cat/ElasticsearchCatClient.java | 126 +++++++++--------- .../ccr/ElasticsearchCcrAsyncClient.java | 52 ++++---- .../ccr/ElasticsearchCcrClient.java | 52 ++++---- .../ElasticsearchClusterAsyncClient.java | 84 ++++++------ .../cluster/ElasticsearchClusterClient.java | 84 ++++++------ .../reroute/CommandAllocateReplicaAction.java | 2 +- .../ElasticsearchConnectorAsyncClient.java | 104 +++++++-------- .../ElasticsearchConnectorClient.java | 104 +++++++-------- ...ankEvalMetricDiscountedCumulativeGain.java | 2 +- .../RankEvalMetricExpectedReciprocalRank.java | 2 +- .../RankEvalMetricMeanReciprocalRank.java | 2 +- .../rank_eval/RankEvalMetricPrecision.java | 2 +- .../core/rank_eval/RankEvalMetricRecall.java | 2 +- .../elasticsearch/core/search/Context.java | 2 +- .../ElasticsearchEnrichAsyncClient.java | 8 +- .../enrich/ElasticsearchEnrichClient.java | 8 +- .../eql/ElasticsearchEqlAsyncClient.java | 12 +- .../eql/ElasticsearchEqlClient.java | 12 +- .../esql/ElasticsearchEsqlAsyncClient.java | 4 +- .../esql/ElasticsearchEsqlClient.java | 4 +- .../graph/ElasticsearchGraphAsyncClient.java | 4 +- .../graph/ElasticsearchGraphClient.java | 4 +- .../ElasticsearchIndicesAsyncClient.java | 40 +++--- .../indices/ElasticsearchIndicesClient.java | 40 +++--- .../elasticsearch/indices/IndexSettings.java | 2 +- .../indices/MappingLimitSettings.java | 2 +- .../ElasticsearchIngestAsyncClient.java | 8 +- .../ingest/ElasticsearchIngestClient.java | 8 +- .../ml/ElasticsearchMlAsyncClient.java | 28 ++-- .../ml/ElasticsearchMlClient.java | 28 ++-- .../nodes/ElasticsearchNodesAsyncClient.java | 24 ++-- .../nodes/ElasticsearchNodesClient.java | 24 ++-- .../tasks/ElasticsearchTasksAsyncClient.java | 16 +-- .../tasks/ElasticsearchTasksClient.java | 16 +-- 50 files changed, 586 insertions(+), 586 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 8a9c2615d..1e729b8a1 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -2,7 +2,7 @@ steps: - label: ":java: :elasticsearch: Elasticsearch Java API client - {{matrix.workflow}}" agents: provider: "gcp" - branches: [ "main", "7.17", "8.15", "8.x", "9.0" ] + branches: [ "main", "7.17", "8.15", "8.16" ] matrix: setup: workflow: diff --git a/config/version.txt b/config/version.txt index f7ee06693..894aa0bc6 100644 --- a/config/version.txt +++ b/config/version.txt @@ -1 +1 @@ -9.0.0 +8.16.0 diff --git a/java-client/src/main-flavored/java/co/elastic/clients/transport/VersionInfo.java b/java-client/src/main-flavored/java/co/elastic/clients/transport/VersionInfo.java index 6a419c3de..bc7163923 100644 --- a/java-client/src/main-flavored/java/co/elastic/clients/transport/VersionInfo.java +++ b/java-client/src/main-flavored/java/co/elastic/clients/transport/VersionInfo.java @@ -22,5 +22,5 @@ // Package private class VersionInfo { static final String FLAVOR = "stack"; - static final String VERSION = "9.0.0"; + static final String VERSION = "8.16.0"; } diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java index 47ac1b436..01ff4a0d2 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java @@ -357,7 +357,7 @@ public ElasticsearchXpackAsyncClient xpack() { * increase indexing speed. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation * on elastic.co */ @@ -377,7 +377,7 @@ public CompletableFuture bulk(BulkRequest request) { * a function that initializes a builder to create the * {@link BulkRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation * on elastic.co */ @@ -391,7 +391,7 @@ public final CompletableFuture bulk(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation * on elastic.co */ @@ -406,7 +406,7 @@ public CompletableFuture bulk() { * Clears the search context and results for a scrolling search. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation * on elastic.co */ @@ -424,7 +424,7 @@ public CompletableFuture clearScroll(ClearScrollRequest req * a function that initializes a builder to create the * {@link ClearScrollRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation * on elastic.co */ @@ -437,7 +437,7 @@ public final CompletableFuture clearScroll( * Clears the search context and results for a scrolling search. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation * on elastic.co */ @@ -452,7 +452,7 @@ public CompletableFuture clearScroll() { * Closes a point-in-time. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation * on elastic.co */ @@ -470,7 +470,7 @@ public CompletableFuture closePointInTime(ClosePointIn * a function that initializes a builder to create the * {@link ClosePointInTimeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation * on elastic.co */ @@ -1546,7 +1546,7 @@ public CompletableFuture mtermvectors() { * the more recent point in time. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation * on elastic.co */ @@ -1571,7 +1571,7 @@ public CompletableFuture openPointInTime(OpenPointInTim * a function that initializes a builder to create the * {@link OpenPointInTimeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java index baa999b7a..d2cdc67f7 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java @@ -358,7 +358,7 @@ public ElasticsearchXpackClient xpack() { * increase indexing speed. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation * on elastic.co */ @@ -378,7 +378,7 @@ public BulkResponse bulk(BulkRequest request) throws IOException, ElasticsearchE * a function that initializes a builder to create the * {@link BulkRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation * on elastic.co */ @@ -393,7 +393,7 @@ public final BulkResponse bulk(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/docs-bulk.html">Documentation * on elastic.co */ @@ -408,7 +408,7 @@ public BulkResponse bulk() throws IOException, ElasticsearchException { * Clears the search context and results for a scrolling search. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation * on elastic.co */ @@ -426,7 +426,7 @@ public ClearScrollResponse clearScroll(ClearScrollRequest request) throws IOExce * a function that initializes a builder to create the * {@link ClearScrollRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation * on elastic.co */ @@ -440,7 +440,7 @@ public final ClearScrollResponse clearScroll( * Clears the search context and results for a scrolling search. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/clear-scroll-api.html">Documentation * on elastic.co */ @@ -455,7 +455,7 @@ public ClearScrollResponse clearScroll() throws IOException, ElasticsearchExcept * Closes a point-in-time. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation * on elastic.co */ @@ -474,7 +474,7 @@ public ClosePointInTimeResponse closePointInTime(ClosePointInTimeRequest request * a function that initializes a builder to create the * {@link ClosePointInTimeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation * on elastic.co */ @@ -1572,7 +1572,7 @@ public MtermvectorsResponse mtermvectors() throws IOException, ElasticsearchExce * the more recent point in time. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation * on elastic.co */ @@ -1598,7 +1598,7 @@ public OpenPointInTimeResponse openPointInTime(OpenPointInTimeRequest request) * a function that initializes a builder to create the * {@link OpenPointInTimeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/point-in-time-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/SortOptions.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/SortOptions.java index 83d147576..4250ba591 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/SortOptions.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/SortOptions.java @@ -59,7 +59,7 @@ /** * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/sort-search-results.html">Documentation * on elastic.co * @see API * specification diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/analysis/Normalizer.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/analysis/Normalizer.java index 899363eb8..151d60baa 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/analysis/Normalizer.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/analysis/Normalizer.java @@ -57,7 +57,7 @@ /** * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/analysis-normalizers.html">Documentation * on elastic.co * @see API * specification diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/GeoShapeProperty.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/GeoShapeProperty.java index 10465f7e2..053d9e4e5 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/GeoShapeProperty.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/GeoShapeProperty.java @@ -53,7 +53,7 @@ * searching with arbitrary geo shapes such as rectangles and polygons. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/geo-shape.html">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/ShapeProperty.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/ShapeProperty.java index 3df6e636c..0f18305fb 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/ShapeProperty.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/mapping/ShapeProperty.java @@ -54,7 +54,7 @@ * polygons. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/shape.html">Documentation * on elastic.co * @see API * specification diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Like.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Like.java index 06082f897..242c07579 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Like.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Like.java @@ -60,7 +60,7 @@ * the text. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/query-dsl-mlt-query.html#_document_input_parameters">Documentation * on elastic.co * @see API * specification diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Query.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Query.java index 71541ef8f..8eebcb40f 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Query.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/query_dsl/Query.java @@ -62,7 +62,7 @@ /** * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/query-dsl.html">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/ElasticsearchAsyncSearchAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/ElasticsearchAsyncSearchAsyncClient.java index 6e9bf96f9..9a008a7c7 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/ElasticsearchAsyncSearchAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/ElasticsearchAsyncSearchAsyncClient.java @@ -80,7 +80,7 @@ public ElasticsearchAsyncSearchAsyncClient withTransportOptions(@Nullable Transp * cancel_task cluster privilege. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -103,7 +103,7 @@ public CompletableFuture delete(DeleteAsyncSearchRequ * a function that initializes a builder to create the * {@link DeleteAsyncSearchRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -121,7 +121,7 @@ public final CompletableFuture delete( * that submitted it. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -145,7 +145,7 @@ public CompletableFuture> get(GetA * a function that initializes a builder to create the * {@link GetAsyncSearchRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -162,7 +162,7 @@ public final CompletableFuture> ge * that submitted it. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -186,7 +186,7 @@ public CompletableFuture> get(GetA * a function that initializes a builder to create the * {@link GetAsyncSearchRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -204,7 +204,7 @@ public final CompletableFuture> ge * restricted to the monitoring_user role. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -225,7 +225,7 @@ public CompletableFuture status(AsyncSearchStatusRequ * a function that initializes a builder to create the * {@link AsyncSearchStatusRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -248,7 +248,7 @@ public final CompletableFuture status( * search.max_async_search_response_size cluster level setting. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -278,7 +278,7 @@ public CompletableFuture> submit(SubmitReq * a function that initializes a builder to create the * {@link SubmitRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -299,7 +299,7 @@ public final CompletableFuture> submit( * search.max_async_search_response_size cluster level setting. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -328,7 +328,7 @@ public CompletableFuture> submit(SubmitReq * a function that initializes a builder to create the * {@link SubmitRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/ElasticsearchAsyncSearchClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/ElasticsearchAsyncSearchClient.java index d0227fd06..aeba7ef78 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/ElasticsearchAsyncSearchClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/ElasticsearchAsyncSearchClient.java @@ -79,7 +79,7 @@ public ElasticsearchAsyncSearchClient withTransportOptions(@Nullable TransportOp * cancel_task cluster privilege. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -103,7 +103,7 @@ public DeleteAsyncSearchResponse delete(DeleteAsyncSearchRequest request) * a function that initializes a builder to create the * {@link DeleteAsyncSearchRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -122,7 +122,7 @@ public final DeleteAsyncSearchResponse delete( * that submitted it. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -146,7 +146,7 @@ public GetAsyncSearchResponse get(GetAsyncSearchRequest r * a function that initializes a builder to create the * {@link GetAsyncSearchRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -163,7 +163,7 @@ public final GetAsyncSearchResponse get( * that submitted it. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -187,7 +187,7 @@ public GetAsyncSearchResponse get(GetAsyncSearchRequest r * a function that initializes a builder to create the * {@link GetAsyncSearchRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -206,7 +206,7 @@ public final GetAsyncSearchResponse get( * restricted to the monitoring_user role. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -228,7 +228,7 @@ public AsyncSearchStatusResponse status(AsyncSearchStatusRequest request) * a function that initializes a builder to create the * {@link AsyncSearchStatusRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -252,7 +252,7 @@ public final AsyncSearchStatusResponse status( * search.max_async_search_response_size cluster level setting. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -282,7 +282,7 @@ public SubmitResponse submit(SubmitRequest request, Class * a function that initializes a builder to create the * {@link SubmitRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -304,7 +304,7 @@ public final SubmitResponse submit( * search.max_async_search_response_size cluster level setting. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ @@ -334,7 +334,7 @@ public SubmitResponse submit(SubmitRequest request, Type * a function that initializes a builder to create the * {@link SubmitRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/async-search.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/ElasticsearchAutoscalingAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/ElasticsearchAutoscalingAsyncClient.java index c56b29662..d9b55b9bd 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/ElasticsearchAutoscalingAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/ElasticsearchAutoscalingAsyncClient.java @@ -74,7 +74,7 @@ public ElasticsearchAutoscalingAsyncClient withTransportOptions(@Nullable Transp * Direct use is not supported. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-delete-autoscaling-policy.html">Documentation * on elastic.co */ @@ -94,7 +94,7 @@ public CompletableFuture deleteAutoscalingPolic * a function that initializes a builder to create the * {@link DeleteAutoscalingPolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-delete-autoscaling-policy.html">Documentation * on elastic.co */ @@ -111,7 +111,7 @@ public final CompletableFuture deleteAutoscalin * supported. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-get-autoscaling-capacity.html">Documentation * on elastic.co */ public CompletableFuture getAutoscalingCapacity() { @@ -126,7 +126,7 @@ public CompletableFuture getAutoscalingCapacity( * ECK. Direct use is not supported. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-get-autoscaling-capacity.html">Documentation * on elastic.co */ @@ -145,7 +145,7 @@ public CompletableFuture getAutoscalingPolicy(GetA * a function that initializes a builder to create the * {@link GetAutoscalingPolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-get-autoscaling-capacity.html">Documentation * on elastic.co */ @@ -161,7 +161,7 @@ public final CompletableFuture getAutoscalingPolic * ECK. Direct use is not supported. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-put-autoscaling-policy.html">Documentation * on elastic.co */ @@ -180,7 +180,7 @@ public CompletableFuture putAutoscalingPolicy(PutA * a function that initializes a builder to create the * {@link PutAutoscalingPolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-put-autoscaling-policy.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/ElasticsearchAutoscalingClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/ElasticsearchAutoscalingClient.java index 346fe88cd..83a375d12 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/ElasticsearchAutoscalingClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/ElasticsearchAutoscalingClient.java @@ -73,7 +73,7 @@ public ElasticsearchAutoscalingClient withTransportOptions(@Nullable TransportOp * Direct use is not supported. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-delete-autoscaling-policy.html">Documentation * on elastic.co */ @@ -93,7 +93,7 @@ public DeleteAutoscalingPolicyResponse deleteAutoscalingPolicy(DeleteAutoscaling * a function that initializes a builder to create the * {@link DeleteAutoscalingPolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-delete-autoscaling-policy.html">Documentation * on elastic.co */ @@ -111,7 +111,7 @@ public final DeleteAutoscalingPolicyResponse deleteAutoscalingPolicy( * supported. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-get-autoscaling-capacity.html">Documentation * on elastic.co */ public GetAutoscalingCapacityResponse getAutoscalingCapacity() throws IOException, ElasticsearchException { @@ -126,7 +126,7 @@ public GetAutoscalingCapacityResponse getAutoscalingCapacity() throws IOExceptio * ECK. Direct use is not supported. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-get-autoscaling-capacity.html">Documentation * on elastic.co */ @@ -146,7 +146,7 @@ public GetAutoscalingPolicyResponse getAutoscalingPolicy(GetAutoscalingPolicyReq * a function that initializes a builder to create the * {@link GetAutoscalingPolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-get-autoscaling-capacity.html">Documentation * on elastic.co */ @@ -163,7 +163,7 @@ public final GetAutoscalingPolicyResponse getAutoscalingPolicy( * ECK. Direct use is not supported. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-put-autoscaling-policy.html">Documentation * on elastic.co */ @@ -183,7 +183,7 @@ public PutAutoscalingPolicyResponse putAutoscalingPolicy(PutAutoscalingPolicyReq * a function that initializes a builder to create the * {@link PutAutoscalingPolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/autoscaling-put-autoscaling-policy.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatAsyncClient.java index de4162029..b21353b7c 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatAsyncClient.java @@ -75,7 +75,7 @@ public ElasticsearchCatAsyncClient withTransportOptions(@Nullable TransportOptio * application consumption, use the aliases API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-alias.html">Documentation * on elastic.co */ @@ -98,7 +98,7 @@ public CompletableFuture aliases(AliasesRequest request) { * a function that initializes a builder to create the * {@link AliasesRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-alias.html">Documentation * on elastic.co */ @@ -116,7 +116,7 @@ public final CompletableFuture aliases( * application consumption, use the aliases API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-alias.html">Documentation * on elastic.co */ @@ -134,7 +134,7 @@ public CompletableFuture aliases() { * applications. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-allocation.html">Documentation * on elastic.co */ @@ -155,7 +155,7 @@ public CompletableFuture allocation(AllocationRequest reques * a function that initializes a builder to create the * {@link AllocationRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-allocation.html">Documentation * on elastic.co */ @@ -171,7 +171,7 @@ public final CompletableFuture allocation( * applications. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-allocation.html">Documentation * on elastic.co */ @@ -257,7 +257,7 @@ public CompletableFuture componentTemplates() { * application consumption, use the count API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-count.html">Documentation * on elastic.co */ @@ -282,7 +282,7 @@ public CompletableFuture count(CountRequest request) { * a function that initializes a builder to create the * {@link CountRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-count.html">Documentation * on elastic.co */ @@ -302,7 +302,7 @@ public final CompletableFuture count( * application consumption, use the count API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-count.html">Documentation * on elastic.co */ @@ -321,7 +321,7 @@ public CompletableFuture count() { * stats API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-fielddata.html">Documentation * on elastic.co */ @@ -343,7 +343,7 @@ public CompletableFuture fielddata(FielddataRequest request) * a function that initializes a builder to create the * {@link FielddataRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-fielddata.html">Documentation * on elastic.co */ @@ -360,7 +360,7 @@ public final CompletableFuture fielddata( * stats API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-fielddata.html">Documentation * on elastic.co */ @@ -386,7 +386,7 @@ public CompletableFuture fielddata() { * of a large cluster over a longer period of time. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-health.html">Documentation * on elastic.co */ @@ -415,7 +415,7 @@ public CompletableFuture health(HealthRequest request) { * a function that initializes a builder to create the * {@link HealthRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-health.html">Documentation * on elastic.co */ @@ -439,7 +439,7 @@ public final CompletableFuture health( * of a large cluster over a longer period of time. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-health.html">Documentation * on elastic.co */ @@ -454,7 +454,7 @@ public CompletableFuture health() { * Get CAT help. Returns help for the CAT APIs. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat.html">Documentation * on elastic.co */ public CompletableFuture help() { @@ -487,7 +487,7 @@ public CompletableFuture help() { * application consumption, use an index endpoint. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-indices.html">Documentation * on elastic.co */ @@ -525,7 +525,7 @@ public CompletableFuture indices(IndicesRequest request) { * a function that initializes a builder to create the * {@link IndicesRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-indices.html">Documentation * on elastic.co */ @@ -558,7 +558,7 @@ public final CompletableFuture indices( * application consumption, use an index endpoint. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-indices.html">Documentation * on elastic.co */ @@ -576,7 +576,7 @@ public CompletableFuture indices() { * for use by applications. For application consumption, use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-master.html">Documentation * on elastic.co */ public CompletableFuture master() { @@ -595,7 +595,7 @@ public CompletableFuture master() { * consumption, use the get data frame analytics jobs statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-dfanalytics.html">Documentation * on elastic.co */ @@ -618,7 +618,7 @@ public CompletableFuture mlDataFrameAnalytics(MlDa * a function that initializes a builder to create the * {@link MlDataFrameAnalyticsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-dfanalytics.html">Documentation * on elastic.co */ @@ -636,7 +636,7 @@ public final CompletableFuture mlDataFrameAnalytic * consumption, use the get data frame analytics jobs statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-dfanalytics.html">Documentation * on elastic.co */ @@ -659,7 +659,7 @@ public CompletableFuture mlDataFrameAnalytics() { * consumption, use the get datafeed statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-datafeeds.html">Documentation * on elastic.co */ @@ -685,7 +685,7 @@ public CompletableFuture mlDatafeeds(MlDatafeedsRequest req * a function that initializes a builder to create the * {@link MlDatafeedsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-datafeeds.html">Documentation * on elastic.co */ @@ -706,7 +706,7 @@ public final CompletableFuture mlDatafeeds( * consumption, use the get datafeed statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-datafeeds.html">Documentation * on elastic.co */ @@ -729,7 +729,7 @@ public CompletableFuture mlDatafeeds() { * consumption, use the get anomaly detection job statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-anomaly-detectors.html">Documentation * on elastic.co */ @@ -755,7 +755,7 @@ public CompletableFuture mlJobs(MlJobsRequest request) { * a function that initializes a builder to create the * {@link MlJobsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-anomaly-detectors.html">Documentation * on elastic.co */ @@ -776,7 +776,7 @@ public final CompletableFuture mlJobs( * consumption, use the get anomaly detection job statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-anomaly-detectors.html">Documentation * on elastic.co */ @@ -796,7 +796,7 @@ public CompletableFuture mlJobs() { * consumption, use the get trained models statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-trained-model.html">Documentation * on elastic.co */ @@ -819,7 +819,7 @@ public CompletableFuture mlTrainedModels(MlTrainedModel * a function that initializes a builder to create the * {@link MlTrainedModelsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-trained-model.html">Documentation * on elastic.co */ @@ -837,7 +837,7 @@ public final CompletableFuture mlTrainedModels( * consumption, use the get trained models statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-trained-model.html">Documentation * on elastic.co */ @@ -855,7 +855,7 @@ public CompletableFuture mlTrainedModels() { * use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-nodeattrs.html">Documentation * on elastic.co */ public CompletableFuture nodeattrs() { @@ -872,7 +872,7 @@ public CompletableFuture nodeattrs() { * use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-nodes.html">Documentation * on elastic.co */ @@ -893,7 +893,7 @@ public CompletableFuture nodes(NodesRequest request) { * a function that initializes a builder to create the * {@link NodesRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-nodes.html">Documentation * on elastic.co */ @@ -909,7 +909,7 @@ public final CompletableFuture nodes( * use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-nodes.html">Documentation * on elastic.co */ @@ -927,7 +927,7 @@ public CompletableFuture nodes() { * consumption, use the pending cluster tasks API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-pending-tasks.html">Documentation * on elastic.co */ public CompletableFuture pendingTasks() { @@ -944,7 +944,7 @@ public CompletableFuture pendingTasks() { * consumption, use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-plugins.html">Documentation * on elastic.co */ public CompletableFuture plugins() { @@ -966,7 +966,7 @@ public CompletableFuture plugins() { * API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-recovery.html">Documentation * on elastic.co */ @@ -992,7 +992,7 @@ public CompletableFuture recovery(RecoveryRequest request) { * a function that initializes a builder to create the * {@link RecoveryRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-recovery.html">Documentation * on elastic.co */ @@ -1013,7 +1013,7 @@ public final CompletableFuture recovery( * API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-recovery.html">Documentation * on elastic.co */ @@ -1031,7 +1031,7 @@ public CompletableFuture recovery() { * the get snapshot repository API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-repositories.html">Documentation * on elastic.co */ public CompletableFuture repositories() { @@ -1049,7 +1049,7 @@ public CompletableFuture repositories() { * application consumption, use the index segments API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-segments.html">Documentation * on elastic.co */ @@ -1071,7 +1071,7 @@ public CompletableFuture segments(SegmentsRequest request) { * a function that initializes a builder to create the * {@link SegmentsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-segments.html">Documentation * on elastic.co */ @@ -1088,7 +1088,7 @@ public final CompletableFuture segments( * application consumption, use the index segments API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-segments.html">Documentation * on elastic.co */ @@ -1106,7 +1106,7 @@ public CompletableFuture segments() { * are not intended for use by applications. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-shards.html">Documentation * on elastic.co */ @@ -1127,7 +1127,7 @@ public CompletableFuture shards(ShardsRequest request) { * a function that initializes a builder to create the * {@link ShardsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-shards.html">Documentation * on elastic.co */ @@ -1143,7 +1143,7 @@ public final CompletableFuture shards( * are not intended for use by applications. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-shards.html">Documentation * on elastic.co */ @@ -1162,7 +1162,7 @@ public CompletableFuture shards() { * application consumption, use the get snapshot API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-snapshots.html">Documentation * on elastic.co */ @@ -1184,7 +1184,7 @@ public CompletableFuture snapshots(SnapshotsRequest request) * a function that initializes a builder to create the * {@link SnapshotsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-snapshots.html">Documentation * on elastic.co */ @@ -1201,7 +1201,7 @@ public final CompletableFuture snapshots( * application consumption, use the get snapshot API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-snapshots.html">Documentation * on elastic.co */ @@ -1219,7 +1219,7 @@ public CompletableFuture snapshots() { * application consumption, use the task management API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -1240,7 +1240,7 @@ public CompletableFuture tasks(TasksRequest request) { * a function that initializes a builder to create the * {@link TasksRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -1256,7 +1256,7 @@ public final CompletableFuture tasks( * application consumption, use the task management API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -1275,7 +1275,7 @@ public CompletableFuture tasks() { * applications. For application consumption, use the get index template API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-templates.html">Documentation * on elastic.co */ @@ -1297,7 +1297,7 @@ public CompletableFuture templates(TemplatesRequest request) * a function that initializes a builder to create the * {@link TemplatesRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-templates.html">Documentation * on elastic.co */ @@ -1314,7 +1314,7 @@ public final CompletableFuture templates( * applications. For application consumption, use the get index template API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-templates.html">Documentation * on elastic.co */ @@ -1333,7 +1333,7 @@ public CompletableFuture templates() { * application consumption, use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-thread-pool.html">Documentation * on elastic.co */ @@ -1355,7 +1355,7 @@ public CompletableFuture threadPool(ThreadPoolRequest reques * a function that initializes a builder to create the * {@link ThreadPoolRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-thread-pool.html">Documentation * on elastic.co */ @@ -1372,7 +1372,7 @@ public final CompletableFuture threadPool( * application consumption, use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-thread-pool.html">Documentation * on elastic.co */ @@ -1391,7 +1391,7 @@ public CompletableFuture threadPool() { * consumption, use the get transform statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-transforms.html">Documentation * on elastic.co */ @@ -1413,7 +1413,7 @@ public CompletableFuture transforms(TransformsRequest reques * a function that initializes a builder to create the * {@link TransformsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-transforms.html">Documentation * on elastic.co */ @@ -1430,7 +1430,7 @@ public final CompletableFuture transforms( * consumption, use the get transform statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-transforms.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatClient.java index 927d8e4d5..d967f8be0 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatClient.java @@ -76,7 +76,7 @@ public ElasticsearchCatClient withTransportOptions(@Nullable TransportOptions tr * application consumption, use the aliases API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-alias.html">Documentation * on elastic.co */ @@ -99,7 +99,7 @@ public AliasesResponse aliases(AliasesRequest request) throws IOException, Elast * a function that initializes a builder to create the * {@link AliasesRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-alias.html">Documentation * on elastic.co */ @@ -117,7 +117,7 @@ public final AliasesResponse aliases(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-alias.html">Documentation * on elastic.co */ @@ -135,7 +135,7 @@ public AliasesResponse aliases() throws IOException, ElasticsearchException { * applications. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-allocation.html">Documentation * on elastic.co */ @@ -156,7 +156,7 @@ public AllocationResponse allocation(AllocationRequest request) throws IOExcepti * a function that initializes a builder to create the * {@link AllocationRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-allocation.html">Documentation * on elastic.co */ @@ -172,7 +172,7 @@ public final AllocationResponse allocation(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-allocation.html">Documentation * on elastic.co */ @@ -260,7 +260,7 @@ public ComponentTemplatesResponse componentTemplates() throws IOException, Elast * application consumption, use the count API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-count.html">Documentation * on elastic.co */ @@ -285,7 +285,7 @@ public CountResponse count(CountRequest request) throws IOException, Elasticsear * a function that initializes a builder to create the * {@link CountRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-count.html">Documentation * on elastic.co */ @@ -305,7 +305,7 @@ public final CountResponse count(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-count.html">Documentation * on elastic.co */ @@ -324,7 +324,7 @@ public CountResponse count() throws IOException, ElasticsearchException { * stats API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-fielddata.html">Documentation * on elastic.co */ @@ -346,7 +346,7 @@ public FielddataResponse fielddata(FielddataRequest request) throws IOException, * a function that initializes a builder to create the * {@link FielddataRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-fielddata.html">Documentation * on elastic.co */ @@ -363,7 +363,7 @@ public final FielddataResponse fielddata(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-fielddata.html">Documentation * on elastic.co */ @@ -389,7 +389,7 @@ public FielddataResponse fielddata() throws IOException, ElasticsearchException * of a large cluster over a longer period of time. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-health.html">Documentation * on elastic.co */ @@ -418,7 +418,7 @@ public HealthResponse health(HealthRequest request) throws IOException, Elastics * a function that initializes a builder to create the * {@link HealthRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-health.html">Documentation * on elastic.co */ @@ -442,7 +442,7 @@ public final HealthResponse health(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-health.html">Documentation * on elastic.co */ @@ -457,7 +457,7 @@ public HealthResponse health() throws IOException, ElasticsearchException { * Get CAT help. Returns help for the CAT APIs. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat.html">Documentation * on elastic.co */ public HelpResponse help() throws IOException, ElasticsearchException { @@ -490,7 +490,7 @@ public HelpResponse help() throws IOException, ElasticsearchException { * application consumption, use an index endpoint. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-indices.html">Documentation * on elastic.co */ @@ -528,7 +528,7 @@ public IndicesResponse indices(IndicesRequest request) throws IOException, Elast * a function that initializes a builder to create the * {@link IndicesRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-indices.html">Documentation * on elastic.co */ @@ -561,7 +561,7 @@ public final IndicesResponse indices(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-indices.html">Documentation * on elastic.co */ @@ -579,7 +579,7 @@ public IndicesResponse indices() throws IOException, ElasticsearchException { * for use by applications. For application consumption, use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-master.html">Documentation * on elastic.co */ public MasterResponse master() throws IOException, ElasticsearchException { @@ -597,7 +597,7 @@ public MasterResponse master() throws IOException, ElasticsearchException { * consumption, use the get data frame analytics jobs statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-dfanalytics.html">Documentation * on elastic.co */ @@ -621,7 +621,7 @@ public MlDataFrameAnalyticsResponse mlDataFrameAnalytics(MlDataFrameAnalyticsReq * a function that initializes a builder to create the * {@link MlDataFrameAnalyticsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-dfanalytics.html">Documentation * on elastic.co */ @@ -640,7 +640,7 @@ public final MlDataFrameAnalyticsResponse mlDataFrameAnalytics( * consumption, use the get data frame analytics jobs statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-dfanalytics.html">Documentation * on elastic.co */ @@ -663,7 +663,7 @@ public MlDataFrameAnalyticsResponse mlDataFrameAnalytics() throws IOException, E * consumption, use the get datafeed statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-datafeeds.html">Documentation * on elastic.co */ @@ -689,7 +689,7 @@ public MlDatafeedsResponse mlDatafeeds(MlDatafeedsRequest request) throws IOExce * a function that initializes a builder to create the * {@link MlDatafeedsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-datafeeds.html">Documentation * on elastic.co */ @@ -711,7 +711,7 @@ public final MlDatafeedsResponse mlDatafeeds( * consumption, use the get datafeed statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-datafeeds.html">Documentation * on elastic.co */ @@ -734,7 +734,7 @@ public MlDatafeedsResponse mlDatafeeds() throws IOException, ElasticsearchExcept * consumption, use the get anomaly detection job statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-anomaly-detectors.html">Documentation * on elastic.co */ @@ -760,7 +760,7 @@ public MlJobsResponse mlJobs(MlJobsRequest request) throws IOException, Elastics * a function that initializes a builder to create the * {@link MlJobsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-anomaly-detectors.html">Documentation * on elastic.co */ @@ -781,7 +781,7 @@ public final MlJobsResponse mlJobs(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-anomaly-detectors.html">Documentation * on elastic.co */ @@ -801,7 +801,7 @@ public MlJobsResponse mlJobs() throws IOException, ElasticsearchException { * consumption, use the get trained models statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-trained-model.html">Documentation * on elastic.co */ @@ -825,7 +825,7 @@ public MlTrainedModelsResponse mlTrainedModels(MlTrainedModelsRequest request) * a function that initializes a builder to create the * {@link MlTrainedModelsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-trained-model.html">Documentation * on elastic.co */ @@ -844,7 +844,7 @@ public final MlTrainedModelsResponse mlTrainedModels( * consumption, use the get trained models statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-trained-model.html">Documentation * on elastic.co */ @@ -862,7 +862,7 @@ public MlTrainedModelsResponse mlTrainedModels() throws IOException, Elasticsear * use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-nodeattrs.html">Documentation * on elastic.co */ public NodeattrsResponse nodeattrs() throws IOException, ElasticsearchException { @@ -879,7 +879,7 @@ public NodeattrsResponse nodeattrs() throws IOException, ElasticsearchException * use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-nodes.html">Documentation * on elastic.co */ @@ -900,7 +900,7 @@ public NodesResponse nodes(NodesRequest request) throws IOException, Elasticsear * a function that initializes a builder to create the * {@link NodesRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-nodes.html">Documentation * on elastic.co */ @@ -916,7 +916,7 @@ public final NodesResponse nodes(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-nodes.html">Documentation * on elastic.co */ @@ -934,7 +934,7 @@ public NodesResponse nodes() throws IOException, ElasticsearchException { * consumption, use the pending cluster tasks API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-pending-tasks.html">Documentation * on elastic.co */ public PendingTasksResponse pendingTasks() throws IOException, ElasticsearchException { @@ -951,7 +951,7 @@ public PendingTasksResponse pendingTasks() throws IOException, ElasticsearchExce * consumption, use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-plugins.html">Documentation * on elastic.co */ public PluginsResponse plugins() throws IOException, ElasticsearchException { @@ -972,7 +972,7 @@ public PluginsResponse plugins() throws IOException, ElasticsearchException { * API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-recovery.html">Documentation * on elastic.co */ @@ -998,7 +998,7 @@ public RecoveryResponse recovery(RecoveryRequest request) throws IOException, El * a function that initializes a builder to create the * {@link RecoveryRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-recovery.html">Documentation * on elastic.co */ @@ -1019,7 +1019,7 @@ public final RecoveryResponse recovery(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-recovery.html">Documentation * on elastic.co */ @@ -1037,7 +1037,7 @@ public RecoveryResponse recovery() throws IOException, ElasticsearchException { * the get snapshot repository API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-repositories.html">Documentation * on elastic.co */ public RepositoriesResponse repositories() throws IOException, ElasticsearchException { @@ -1055,7 +1055,7 @@ public RepositoriesResponse repositories() throws IOException, ElasticsearchExce * application consumption, use the index segments API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-segments.html">Documentation * on elastic.co */ @@ -1077,7 +1077,7 @@ public SegmentsResponse segments(SegmentsRequest request) throws IOException, El * a function that initializes a builder to create the * {@link SegmentsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-segments.html">Documentation * on elastic.co */ @@ -1094,7 +1094,7 @@ public final SegmentsResponse segments(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-segments.html">Documentation * on elastic.co */ @@ -1112,7 +1112,7 @@ public SegmentsResponse segments() throws IOException, ElasticsearchException { * are not intended for use by applications. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-shards.html">Documentation * on elastic.co */ @@ -1133,7 +1133,7 @@ public ShardsResponse shards(ShardsRequest request) throws IOException, Elastics * a function that initializes a builder to create the * {@link ShardsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-shards.html">Documentation * on elastic.co */ @@ -1149,7 +1149,7 @@ public final ShardsResponse shards(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-shards.html">Documentation * on elastic.co */ @@ -1168,7 +1168,7 @@ public ShardsResponse shards() throws IOException, ElasticsearchException { * application consumption, use the get snapshot API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-snapshots.html">Documentation * on elastic.co */ @@ -1190,7 +1190,7 @@ public SnapshotsResponse snapshots(SnapshotsRequest request) throws IOException, * a function that initializes a builder to create the * {@link SnapshotsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-snapshots.html">Documentation * on elastic.co */ @@ -1207,7 +1207,7 @@ public final SnapshotsResponse snapshots(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-snapshots.html">Documentation * on elastic.co */ @@ -1225,7 +1225,7 @@ public SnapshotsResponse snapshots() throws IOException, ElasticsearchException * application consumption, use the task management API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -1246,7 +1246,7 @@ public TasksResponse tasks(TasksRequest request) throws IOException, Elasticsear * a function that initializes a builder to create the * {@link TasksRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -1262,7 +1262,7 @@ public final TasksResponse tasks(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -1281,7 +1281,7 @@ public TasksResponse tasks() throws IOException, ElasticsearchException { * applications. For application consumption, use the get index template API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-templates.html">Documentation * on elastic.co */ @@ -1303,7 +1303,7 @@ public TemplatesResponse templates(TemplatesRequest request) throws IOException, * a function that initializes a builder to create the * {@link TemplatesRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-templates.html">Documentation * on elastic.co */ @@ -1320,7 +1320,7 @@ public final TemplatesResponse templates(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-templates.html">Documentation * on elastic.co */ @@ -1339,7 +1339,7 @@ public TemplatesResponse templates() throws IOException, ElasticsearchException * application consumption, use the nodes info API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-thread-pool.html">Documentation * on elastic.co */ @@ -1361,7 +1361,7 @@ public ThreadPoolResponse threadPool(ThreadPoolRequest request) throws IOExcepti * a function that initializes a builder to create the * {@link ThreadPoolRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-thread-pool.html">Documentation * on elastic.co */ @@ -1378,7 +1378,7 @@ public final ThreadPoolResponse threadPool(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-thread-pool.html">Documentation * on elastic.co */ @@ -1397,7 +1397,7 @@ public ThreadPoolResponse threadPool() throws IOException, ElasticsearchExceptio * consumption, use the get transform statistics API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-transforms.html">Documentation * on elastic.co */ @@ -1419,7 +1419,7 @@ public TransformsResponse transforms(TransformsRequest request) throws IOExcepti * a function that initializes a builder to create the * {@link TransformsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-transforms.html">Documentation * on elastic.co */ @@ -1436,7 +1436,7 @@ public final TransformsResponse transforms(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cat-transforms.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ElasticsearchCcrAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ElasticsearchCcrAsyncClient.java index f5d41aaeb..5a511d617 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ElasticsearchCcrAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ElasticsearchCcrAsyncClient.java @@ -70,7 +70,7 @@ public ElasticsearchCcrAsyncClient withTransportOptions(@Nullable TransportOptio * Deletes auto-follow patterns. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-delete-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -89,7 +89,7 @@ public CompletableFuture deleteAutoFollowPatter * a function that initializes a builder to create the * {@link DeleteAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-delete-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -105,7 +105,7 @@ public final CompletableFuture deleteAutoFollow * index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-put-follow.html">Documentation * on elastic.co */ @@ -124,7 +124,7 @@ public CompletableFuture follow(FollowRequest request) { * a function that initializes a builder to create the * {@link FollowRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-put-follow.html">Documentation * on elastic.co */ @@ -140,7 +140,7 @@ public final CompletableFuture follow( * status for each follower index * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-follow-info.html">Documentation * on elastic.co */ @@ -159,7 +159,7 @@ public CompletableFuture followInfo(FollowInfoRequest reques * a function that initializes a builder to create the * {@link FollowInfoRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-follow-info.html">Documentation * on elastic.co */ @@ -175,7 +175,7 @@ public final CompletableFuture followInfo( * associated with each shard for the specified indices. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-follow-stats.html">Documentation * on elastic.co */ @@ -194,7 +194,7 @@ public CompletableFuture followStats(FollowStatsRequest req * a function that initializes a builder to create the * {@link FollowStatsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-follow-stats.html">Documentation * on elastic.co */ @@ -209,7 +209,7 @@ public final CompletableFuture followStats( * Removes the follower retention leases from the leader. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-forget-follower.html">Documentation * on elastic.co */ @@ -227,7 +227,7 @@ public CompletableFuture forgetFollower(ForgetFollowerRe * a function that initializes a builder to create the * {@link ForgetFollowerRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-forget-follower.html">Documentation * on elastic.co */ @@ -243,7 +243,7 @@ public final CompletableFuture forgetFollower( * pattern collection. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -262,7 +262,7 @@ public CompletableFuture getAutoFollowPattern(GetA * a function that initializes a builder to create the * {@link GetAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -276,7 +276,7 @@ public final CompletableFuture getAutoFollowPatter * pattern collection. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -291,7 +291,7 @@ public CompletableFuture getAutoFollowPattern() { * Pauses an auto-follow pattern * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-pause-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -310,7 +310,7 @@ public CompletableFuture pauseAutoFollowPattern( * a function that initializes a builder to create the * {@link PauseAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-pause-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -326,7 +326,7 @@ public final CompletableFuture pauseAutoFollowPa * operations from the leader index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-pause-follow.html">Documentation * on elastic.co */ @@ -345,7 +345,7 @@ public CompletableFuture pauseFollow(PauseFollowRequest req * a function that initializes a builder to create the * {@link PauseFollowRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-pause-follow.html">Documentation * on elastic.co */ @@ -362,7 +362,7 @@ public final CompletableFuture pauseFollow( * the specified patterns will be automatically configured as follower indices. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-put-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -382,7 +382,7 @@ public CompletableFuture putAutoFollowPattern(PutA * a function that initializes a builder to create the * {@link PutAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-put-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -397,7 +397,7 @@ public final CompletableFuture putAutoFollowPatter * Resumes an auto-follow pattern that has been paused * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-resume-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -416,7 +416,7 @@ public CompletableFuture resumeAutoFollowPatter * a function that initializes a builder to create the * {@link ResumeAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-resume-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -431,7 +431,7 @@ public final CompletableFuture resumeAutoFollow * Resumes a follower index that has been paused * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-resume-follow.html">Documentation * on elastic.co */ @@ -449,7 +449,7 @@ public CompletableFuture resumeFollow(ResumeFollowRequest * a function that initializes a builder to create the * {@link ResumeFollowRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-resume-follow.html">Documentation * on elastic.co */ @@ -464,7 +464,7 @@ public final CompletableFuture resumeFollow( * Gets all stats related to cross-cluster replication. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-stats.html">Documentation * on elastic.co */ public CompletableFuture stats() { @@ -479,7 +479,7 @@ public CompletableFuture stats() { * metadata and settings associated with cross-cluster replication. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-unfollow.html">Documentation * on elastic.co */ @@ -498,7 +498,7 @@ public CompletableFuture unfollow(UnfollowRequest request) { * a function that initializes a builder to create the * {@link UnfollowRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-unfollow.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ElasticsearchCcrClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ElasticsearchCcrClient.java index d12d23e60..2569bae30 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ElasticsearchCcrClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ElasticsearchCcrClient.java @@ -71,7 +71,7 @@ public ElasticsearchCcrClient withTransportOptions(@Nullable TransportOptions tr * Deletes auto-follow patterns. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-delete-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -90,7 +90,7 @@ public DeleteAutoFollowPatternResponse deleteAutoFollowPattern(DeleteAutoFollowP * a function that initializes a builder to create the * {@link DeleteAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-delete-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -107,7 +107,7 @@ public final DeleteAutoFollowPatternResponse deleteAutoFollowPattern( * index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-put-follow.html">Documentation * on elastic.co */ @@ -126,7 +126,7 @@ public FollowResponse follow(FollowRequest request) throws IOException, Elastics * a function that initializes a builder to create the * {@link FollowRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-put-follow.html">Documentation * on elastic.co */ @@ -142,7 +142,7 @@ public final FollowResponse follow(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-follow-info.html">Documentation * on elastic.co */ @@ -161,7 +161,7 @@ public FollowInfoResponse followInfo(FollowInfoRequest request) throws IOExcepti * a function that initializes a builder to create the * {@link FollowInfoRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-follow-info.html">Documentation * on elastic.co */ @@ -177,7 +177,7 @@ public final FollowInfoResponse followInfo(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-follow-stats.html">Documentation * on elastic.co */ @@ -196,7 +196,7 @@ public FollowStatsResponse followStats(FollowStatsRequest request) throws IOExce * a function that initializes a builder to create the * {@link FollowStatsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-follow-stats.html">Documentation * on elastic.co */ @@ -212,7 +212,7 @@ public final FollowStatsResponse followStats( * Removes the follower retention leases from the leader. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-forget-follower.html">Documentation * on elastic.co */ @@ -231,7 +231,7 @@ public ForgetFollowerResponse forgetFollower(ForgetFollowerRequest request) * a function that initializes a builder to create the * {@link ForgetFollowerRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-forget-follower.html">Documentation * on elastic.co */ @@ -248,7 +248,7 @@ public final ForgetFollowerResponse forgetFollower( * pattern collection. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -268,7 +268,7 @@ public GetAutoFollowPatternResponse getAutoFollowPattern(GetAutoFollowPatternReq * a function that initializes a builder to create the * {@link GetAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -283,7 +283,7 @@ public final GetAutoFollowPatternResponse getAutoFollowPattern( * pattern collection. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -298,7 +298,7 @@ public GetAutoFollowPatternResponse getAutoFollowPattern() throws IOException, E * Pauses an auto-follow pattern * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-pause-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -317,7 +317,7 @@ public PauseAutoFollowPatternResponse pauseAutoFollowPattern(PauseAutoFollowPatt * a function that initializes a builder to create the * {@link PauseAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-pause-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -334,7 +334,7 @@ public final PauseAutoFollowPatternResponse pauseAutoFollowPattern( * operations from the leader index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-pause-follow.html">Documentation * on elastic.co */ @@ -353,7 +353,7 @@ public PauseFollowResponse pauseFollow(PauseFollowRequest request) throws IOExce * a function that initializes a builder to create the * {@link PauseFollowRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-pause-follow.html">Documentation * on elastic.co */ @@ -371,7 +371,7 @@ public final PauseFollowResponse pauseFollow( * the specified patterns will be automatically configured as follower indices. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-put-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -392,7 +392,7 @@ public PutAutoFollowPatternResponse putAutoFollowPattern(PutAutoFollowPatternReq * a function that initializes a builder to create the * {@link PutAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-put-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -408,7 +408,7 @@ public final PutAutoFollowPatternResponse putAutoFollowPattern( * Resumes an auto-follow pattern that has been paused * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-resume-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -427,7 +427,7 @@ public ResumeAutoFollowPatternResponse resumeAutoFollowPattern(ResumeAutoFollowP * a function that initializes a builder to create the * {@link ResumeAutoFollowPatternRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-resume-auto-follow-pattern.html">Documentation * on elastic.co */ @@ -443,7 +443,7 @@ public final ResumeAutoFollowPatternResponse resumeAutoFollowPattern( * Resumes a follower index that has been paused * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-resume-follow.html">Documentation * on elastic.co */ @@ -461,7 +461,7 @@ public ResumeFollowResponse resumeFollow(ResumeFollowRequest request) throws IOE * a function that initializes a builder to create the * {@link ResumeFollowRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-resume-follow.html">Documentation * on elastic.co */ @@ -477,7 +477,7 @@ public final ResumeFollowResponse resumeFollow( * Gets all stats related to cross-cluster replication. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-get-stats.html">Documentation * on elastic.co */ public CcrStatsResponse stats() throws IOException, ElasticsearchException { @@ -492,7 +492,7 @@ public CcrStatsResponse stats() throws IOException, ElasticsearchException { * metadata and settings associated with cross-cluster replication. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-unfollow.html">Documentation * on elastic.co */ @@ -511,7 +511,7 @@ public UnfollowResponse unfollow(UnfollowRequest request) throws IOException, El * a function that initializes a builder to create the * {@link UnfollowRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ccr-post-unfollow.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/ElasticsearchClusterAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/ElasticsearchClusterAsyncClient.java index 00ded6056..909dcab4f 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/ElasticsearchClusterAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/ElasticsearchClusterAsyncClient.java @@ -74,7 +74,7 @@ public ElasticsearchClusterAsyncClient withTransportOptions(@Nullable TransportO * Provides explanations for shard allocations in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-allocation-explain.html">Documentation * on elastic.co */ @@ -92,7 +92,7 @@ public CompletableFuture allocationExplain(Allocation * a function that initializes a builder to create the * {@link AllocationExplainRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-allocation-explain.html">Documentation * on elastic.co */ @@ -105,7 +105,7 @@ public final CompletableFuture allocationExplain( * Provides explanations for shard allocations in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-allocation-explain.html">Documentation * on elastic.co */ @@ -122,7 +122,7 @@ public CompletableFuture allocationExplain() { * mappings, settings, and aliases. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -143,7 +143,7 @@ public CompletableFuture deleteComponentTemplat * a function that initializes a builder to create the * {@link DeleteComponentTemplateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -158,7 +158,7 @@ public final CompletableFuture deleteComponentT * Clears cluster voting config exclusions. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -177,7 +177,7 @@ public CompletableFuture deleteVotingConfigExclusions( * a function that initializes a builder to create the * {@link DeleteVotingConfigExclusionsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -190,7 +190,7 @@ public final CompletableFuture deleteVotingConfigExclusions( * Clears cluster voting config exclusions. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -206,7 +206,7 @@ public CompletableFuture deleteVotingConfigExclusions() { * component template exists. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -225,7 +225,7 @@ public CompletableFuture existsComponentTemplate(ExistsComponen * a function that initializes a builder to create the * {@link ExistsComponentTemplateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -240,7 +240,7 @@ public final CompletableFuture existsComponentTemplate( * Get component templates. Retrieves information about component templates. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -258,7 +258,7 @@ public CompletableFuture getComponentTemplate(GetC * a function that initializes a builder to create the * {@link GetComponentTemplateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -271,7 +271,7 @@ public final CompletableFuture getComponentTemplat * Get component templates. Retrieves information about component templates. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -287,7 +287,7 @@ public CompletableFuture getComponentTemplate() { * been explicitly defined. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-get-settings.html">Documentation * on elastic.co */ @@ -306,7 +306,7 @@ public CompletableFuture getSettings(GetClusterSetti * a function that initializes a builder to create the * {@link GetClusterSettingsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-get-settings.html">Documentation * on elastic.co */ @@ -320,7 +320,7 @@ public final CompletableFuture getSettings( * been explicitly defined. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-get-settings.html">Documentation * on elastic.co */ @@ -343,7 +343,7 @@ public CompletableFuture getSettings() { * The cluster status is controlled by the worst index status. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-health.html">Documentation * on elastic.co */ @@ -369,7 +369,7 @@ public CompletableFuture health(HealthRequest request) { * a function that initializes a builder to create the * {@link HealthRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-health.html">Documentation * on elastic.co */ @@ -390,7 +390,7 @@ public final CompletableFuture health( * The cluster status is controlled by the worst index status. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-health.html">Documentation * on elastic.co */ @@ -405,7 +405,7 @@ public CompletableFuture health() { * Get cluster info. Returns basic information about the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-info.html">Documentation * on elastic.co */ @@ -423,7 +423,7 @@ public CompletableFuture info(ClusterInfoRequest request) { * a function that initializes a builder to create the * {@link ClusterInfoRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-info.html">Documentation * on elastic.co */ @@ -445,7 +445,7 @@ public final CompletableFuture info( * reported by both task api and pending cluster tasks API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-pending.html">Documentation * on elastic.co */ @@ -470,7 +470,7 @@ public CompletableFuture pendingTasks(PendingTasksRequest * a function that initializes a builder to create the * {@link PendingTasksRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-pending.html">Documentation * on elastic.co */ @@ -490,7 +490,7 @@ public final CompletableFuture pendingTasks( * reported by both task api and pending cluster tasks API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-pending.html">Documentation * on elastic.co */ @@ -505,7 +505,7 @@ public CompletableFuture pendingTasks() { * Updates the cluster voting config exclusions by node ids or node names. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -523,7 +523,7 @@ public CompletableFuture postVotingConfigExclusions(PostVotingC * a function that initializes a builder to create the * {@link PostVotingConfigExclusionsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -536,7 +536,7 @@ public final CompletableFuture postVotingConfigExclusions( * Updates the cluster voting config exclusions by node ids or node names. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -571,7 +571,7 @@ public CompletableFuture postVotingConfigExclusions() { * before the opening curly bracket. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -609,7 +609,7 @@ public CompletableFuture putComponentTemplate(PutC * a function that initializes a builder to create the * {@link PutComponentTemplateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -624,7 +624,7 @@ public final CompletableFuture putComponentTemplat * Updates the cluster settings. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-update-settings.html">Documentation * on elastic.co */ @@ -642,7 +642,7 @@ public CompletableFuture putSettings(PutClusterSetti * a function that initializes a builder to create the * {@link PutClusterSettingsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-update-settings.html">Documentation * on elastic.co */ @@ -655,7 +655,7 @@ public final CompletableFuture putSettings( * Updates the cluster settings. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-update-settings.html">Documentation * on elastic.co */ @@ -672,7 +672,7 @@ public CompletableFuture putSettings() { * keyed by the configured remote cluster alias. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-remote-info.html">Documentation * on elastic.co */ public CompletableFuture remoteInfo() { @@ -686,7 +686,7 @@ public CompletableFuture remoteInfo() { * Allows to manually change the allocation of individual shards in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-reroute.html">Documentation * on elastic.co */ @@ -704,7 +704,7 @@ public CompletableFuture reroute(RerouteRequest request) { * a function that initializes a builder to create the * {@link RerouteRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-reroute.html">Documentation * on elastic.co */ @@ -717,7 +717,7 @@ public final CompletableFuture reroute( * Allows to manually change the allocation of individual shards in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-reroute.html">Documentation * on elastic.co */ @@ -732,7 +732,7 @@ public CompletableFuture reroute() { * Returns a comprehensive information about the state of the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-state.html">Documentation * on elastic.co */ @@ -750,7 +750,7 @@ public CompletableFuture state(StateRequest request) { * a function that initializes a builder to create the * {@link StateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-state.html">Documentation * on elastic.co */ @@ -763,7 +763,7 @@ public final CompletableFuture state( * Returns a comprehensive information about the state of the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-state.html">Documentation * on elastic.co */ @@ -781,7 +781,7 @@ public CompletableFuture state() { * plugins). * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-stats.html">Documentation * on elastic.co */ @@ -802,7 +802,7 @@ public CompletableFuture stats(ClusterStatsRequest request * a function that initializes a builder to create the * {@link ClusterStatsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-stats.html">Documentation * on elastic.co */ @@ -818,7 +818,7 @@ public final CompletableFuture stats( * plugins). * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-stats.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/ElasticsearchClusterClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/ElasticsearchClusterClient.java index ca6848e1d..fb95a3f23 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/ElasticsearchClusterClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/ElasticsearchClusterClient.java @@ -72,7 +72,7 @@ public ElasticsearchClusterClient withTransportOptions(@Nullable TransportOption * Provides explanations for shard allocations in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-allocation-explain.html">Documentation * on elastic.co */ @@ -91,7 +91,7 @@ public AllocationExplainResponse allocationExplain(AllocationExplainRequest requ * a function that initializes a builder to create the * {@link AllocationExplainRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-allocation-explain.html">Documentation * on elastic.co */ @@ -105,7 +105,7 @@ public final AllocationExplainResponse allocationExplain( * Provides explanations for shard allocations in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-allocation-explain.html">Documentation * on elastic.co */ @@ -122,7 +122,7 @@ public AllocationExplainResponse allocationExplain() throws IOException, Elastic * mappings, settings, and aliases. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -143,7 +143,7 @@ public DeleteComponentTemplateResponse deleteComponentTemplate(DeleteComponentTe * a function that initializes a builder to create the * {@link DeleteComponentTemplateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -159,7 +159,7 @@ public final DeleteComponentTemplateResponse deleteComponentTemplate( * Clears cluster voting config exclusions. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -178,7 +178,7 @@ public BooleanResponse deleteVotingConfigExclusions(DeleteVotingConfigExclusions * a function that initializes a builder to create the * {@link DeleteVotingConfigExclusionsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -192,7 +192,7 @@ public final BooleanResponse deleteVotingConfigExclusions( * Clears cluster voting config exclusions. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -208,7 +208,7 @@ public BooleanResponse deleteVotingConfigExclusions() throws IOException, Elasti * component template exists. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -228,7 +228,7 @@ public BooleanResponse existsComponentTemplate(ExistsComponentTemplateRequest re * a function that initializes a builder to create the * {@link ExistsComponentTemplateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -244,7 +244,7 @@ public final BooleanResponse existsComponentTemplate( * Get component templates. Retrieves information about component templates. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -263,7 +263,7 @@ public GetComponentTemplateResponse getComponentTemplate(GetComponentTemplateReq * a function that initializes a builder to create the * {@link GetComponentTemplateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -277,7 +277,7 @@ public final GetComponentTemplateResponse getComponentTemplate( * Get component templates. Retrieves information about component templates. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -293,7 +293,7 @@ public GetComponentTemplateResponse getComponentTemplate() throws IOException, E * been explicitly defined. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-get-settings.html">Documentation * on elastic.co */ @@ -313,7 +313,7 @@ public GetClusterSettingsResponse getSettings(GetClusterSettingsRequest request) * a function that initializes a builder to create the * {@link GetClusterSettingsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-get-settings.html">Documentation * on elastic.co */ @@ -328,7 +328,7 @@ public final GetClusterSettingsResponse getSettings( * been explicitly defined. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-get-settings.html">Documentation * on elastic.co */ @@ -351,7 +351,7 @@ public GetClusterSettingsResponse getSettings() throws IOException, Elasticsearc * The cluster status is controlled by the worst index status. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-health.html">Documentation * on elastic.co */ @@ -377,7 +377,7 @@ public HealthResponse health(HealthRequest request) throws IOException, Elastics * a function that initializes a builder to create the * {@link HealthRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-health.html">Documentation * on elastic.co */ @@ -398,7 +398,7 @@ public final HealthResponse health(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-health.html">Documentation * on elastic.co */ @@ -413,7 +413,7 @@ public HealthResponse health() throws IOException, ElasticsearchException { * Get cluster info. Returns basic information about the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-info.html">Documentation * on elastic.co */ @@ -431,7 +431,7 @@ public ClusterInfoResponse info(ClusterInfoRequest request) throws IOException, * a function that initializes a builder to create the * {@link ClusterInfoRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-info.html">Documentation * on elastic.co */ @@ -453,7 +453,7 @@ public final ClusterInfoResponse info(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-pending.html">Documentation * on elastic.co */ @@ -478,7 +478,7 @@ public PendingTasksResponse pendingTasks(PendingTasksRequest request) throws IOE * a function that initializes a builder to create the * {@link PendingTasksRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-pending.html">Documentation * on elastic.co */ @@ -499,7 +499,7 @@ public final PendingTasksResponse pendingTasks( * reported by both task api and pending cluster tasks API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-pending.html">Documentation * on elastic.co */ @@ -514,7 +514,7 @@ public PendingTasksResponse pendingTasks() throws IOException, ElasticsearchExce * Updates the cluster voting config exclusions by node ids or node names. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -533,7 +533,7 @@ public BooleanResponse postVotingConfigExclusions(PostVotingConfigExclusionsRequ * a function that initializes a builder to create the * {@link PostVotingConfigExclusionsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -547,7 +547,7 @@ public final BooleanResponse postVotingConfigExclusions( * Updates the cluster voting config exclusions by node ids or node names. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/voting-config-exclusions.html">Documentation * on elastic.co */ @@ -582,7 +582,7 @@ public BooleanResponse postVotingConfigExclusions() throws IOException, Elastics * before the opening curly bracket. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -621,7 +621,7 @@ public PutComponentTemplateResponse putComponentTemplate(PutComponentTemplateReq * a function that initializes a builder to create the * {@link PutComponentTemplateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-component-template.html">Documentation * on elastic.co */ @@ -637,7 +637,7 @@ public final PutComponentTemplateResponse putComponentTemplate( * Updates the cluster settings. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-update-settings.html">Documentation * on elastic.co */ @@ -656,7 +656,7 @@ public PutClusterSettingsResponse putSettings(PutClusterSettingsRequest request) * a function that initializes a builder to create the * {@link PutClusterSettingsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-update-settings.html">Documentation * on elastic.co */ @@ -670,7 +670,7 @@ public final PutClusterSettingsResponse putSettings( * Updates the cluster settings. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-update-settings.html">Documentation * on elastic.co */ @@ -687,7 +687,7 @@ public PutClusterSettingsResponse putSettings() throws IOException, Elasticsearc * keyed by the configured remote cluster alias. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-remote-info.html">Documentation * on elastic.co */ public RemoteInfoResponse remoteInfo() throws IOException, ElasticsearchException { @@ -701,7 +701,7 @@ public RemoteInfoResponse remoteInfo() throws IOException, ElasticsearchExceptio * Allows to manually change the allocation of individual shards in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-reroute.html">Documentation * on elastic.co */ @@ -719,7 +719,7 @@ public RerouteResponse reroute(RerouteRequest request) throws IOException, Elast * a function that initializes a builder to create the * {@link RerouteRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-reroute.html">Documentation * on elastic.co */ @@ -732,7 +732,7 @@ public final RerouteResponse reroute(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-reroute.html">Documentation * on elastic.co */ @@ -747,7 +747,7 @@ public RerouteResponse reroute() throws IOException, ElasticsearchException { * Returns a comprehensive information about the state of the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-state.html">Documentation * on elastic.co */ @@ -765,7 +765,7 @@ public StateResponse state(StateRequest request) throws IOException, Elasticsear * a function that initializes a builder to create the * {@link StateRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-state.html">Documentation * on elastic.co */ @@ -778,7 +778,7 @@ public final StateResponse state(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-state.html">Documentation * on elastic.co */ @@ -796,7 +796,7 @@ public StateResponse state() throws IOException, ElasticsearchException { * plugins). * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-stats.html">Documentation * on elastic.co */ @@ -817,7 +817,7 @@ public ClusterStatsResponse stats(ClusterStatsRequest request) throws IOExceptio * a function that initializes a builder to create the * {@link ClusterStatsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-stats.html">Documentation * on elastic.co */ @@ -834,7 +834,7 @@ public final ClusterStatsResponse stats( * plugins). * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-stats.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/reroute/CommandAllocateReplicaAction.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/reroute/CommandAllocateReplicaAction.java index 82ddfdd12..f52d8aeed 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/reroute/CommandAllocateReplicaAction.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/reroute/CommandAllocateReplicaAction.java @@ -56,7 +56,7 @@ /** * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/modules-cluster.html">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/connector/ElasticsearchConnectorAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/connector/ElasticsearchConnectorAsyncClient.java index ab6858744..926aad3b3 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/connector/ElasticsearchConnectorAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/connector/ElasticsearchConnectorAsyncClient.java @@ -74,7 +74,7 @@ public ElasticsearchConnectorAsyncClient withTransportOptions(@Nullable Transpor * timestamp * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/check-in-connector-api.html">Documentation * on elastic.co */ @@ -93,7 +93,7 @@ public CompletableFuture checkIn(CheckInRequest request) { * a function that initializes a builder to create the * {@link CheckInRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/check-in-connector-api.html">Documentation * on elastic.co */ @@ -108,7 +108,7 @@ public final CompletableFuture checkIn( * Deletes a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-connector-api.html">Documentation * on elastic.co */ @@ -126,7 +126,7 @@ public CompletableFuture delete(DeleteConnectorRequest * a function that initializes a builder to create the * {@link DeleteConnectorRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-connector-api.html">Documentation * on elastic.co */ @@ -141,7 +141,7 @@ public final CompletableFuture delete( * Retrieves a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-connector-api.html">Documentation * on elastic.co */ @@ -159,7 +159,7 @@ public CompletableFuture get(GetConnectorRequest request) * a function that initializes a builder to create the * {@link GetConnectorRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-connector-api.html">Documentation * on elastic.co */ @@ -174,7 +174,7 @@ public final CompletableFuture get( * Returns existing connectors. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-api.html">Documentation * on elastic.co */ @@ -192,7 +192,7 @@ public CompletableFuture list(ListRequest request) { * a function that initializes a builder to create the * {@link ListRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-api.html">Documentation * on elastic.co */ @@ -204,7 +204,7 @@ public final CompletableFuture list(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-api.html">Documentation * on elastic.co */ @@ -219,7 +219,7 @@ public CompletableFuture list() { * Creates a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -237,7 +237,7 @@ public CompletableFuture post(PostRequest request) { * a function that initializes a builder to create the * {@link PostRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -249,7 +249,7 @@ public final CompletableFuture post(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -264,7 +264,7 @@ public CompletableFuture post() { * Creates or updates a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -282,7 +282,7 @@ public CompletableFuture put(PutRequest request) { * a function that initializes a builder to create the * {@link PutRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -294,7 +294,7 @@ public final CompletableFuture put(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -309,7 +309,7 @@ public CompletableFuture put() { * Cancels a connector sync job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cancel-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -327,7 +327,7 @@ public CompletableFuture syncJobCancel(SyncJobCancelReque * a function that initializes a builder to create the * {@link SyncJobCancelRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cancel-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -342,7 +342,7 @@ public final CompletableFuture syncJobCancel( * Deletes a connector sync job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -360,7 +360,7 @@ public CompletableFuture syncJobDelete(SyncJobDeleteReque * a function that initializes a builder to create the * {@link SyncJobDeleteRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -375,7 +375,7 @@ public final CompletableFuture syncJobDelete( * Retrieves a connector sync job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -393,7 +393,7 @@ public CompletableFuture syncJobGet(SyncJobGetRequest reques * a function that initializes a builder to create the * {@link SyncJobGetRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -408,7 +408,7 @@ public final CompletableFuture syncJobGet( * Lists connector sync jobs. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-sync-jobs-api.html">Documentation * on elastic.co */ @@ -426,7 +426,7 @@ public CompletableFuture syncJobList(SyncJobListRequest req * a function that initializes a builder to create the * {@link SyncJobListRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-sync-jobs-api.html">Documentation * on elastic.co */ @@ -439,7 +439,7 @@ public final CompletableFuture syncJobList( * Lists connector sync jobs. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-sync-jobs-api.html">Documentation * on elastic.co */ @@ -454,7 +454,7 @@ public CompletableFuture syncJobList() { * Creates a connector sync job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -472,7 +472,7 @@ public CompletableFuture syncJobPost(SyncJobPostRequest req * a function that initializes a builder to create the * {@link SyncJobPostRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -487,7 +487,7 @@ public final CompletableFuture syncJobPost( * Activates the valid draft filtering for a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-api.html">Documentation * on elastic.co */ @@ -506,7 +506,7 @@ public CompletableFuture updateActiveFiltering( * a function that initializes a builder to create the * {@link UpdateActiveFilteringRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-api.html">Documentation * on elastic.co */ @@ -521,7 +521,7 @@ public final CompletableFuture updateActiveFilter * Updates the API key id in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-api-key-id-api.html">Documentation * on elastic.co */ @@ -539,7 +539,7 @@ public CompletableFuture updateApiKeyId(UpdateApiKeyIdRe * a function that initializes a builder to create the * {@link UpdateApiKeyIdRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-api-key-id-api.html">Documentation * on elastic.co */ @@ -554,7 +554,7 @@ public final CompletableFuture updateApiKeyId( * Updates the configuration field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-configuration-api.html">Documentation * on elastic.co */ @@ -572,7 +572,7 @@ public CompletableFuture updateConfiguration(Update * a function that initializes a builder to create the * {@link UpdateConfigurationRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-configuration-api.html">Documentation * on elastic.co */ @@ -587,7 +587,7 @@ public final CompletableFuture updateConfiguration( * Updates the filtering field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-error-api.html">Documentation * on elastic.co */ @@ -605,7 +605,7 @@ public CompletableFuture updateError(UpdateErrorRequest req * a function that initializes a builder to create the * {@link UpdateErrorRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-error-api.html">Documentation * on elastic.co */ @@ -620,7 +620,7 @@ public final CompletableFuture updateError( * Updates the filtering field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-api.html">Documentation * on elastic.co */ @@ -638,7 +638,7 @@ public CompletableFuture updateFiltering(UpdateFilterin * a function that initializes a builder to create the * {@link UpdateFilteringRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-api.html">Documentation * on elastic.co */ @@ -653,7 +653,7 @@ public final CompletableFuture updateFiltering( * Updates the draft filtering validation info for a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-validation-api.html">Documentation * on elastic.co */ @@ -672,7 +672,7 @@ public CompletableFuture updateFilteringValid * a function that initializes a builder to create the * {@link UpdateFilteringValidationRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-validation-api.html">Documentation * on elastic.co */ @@ -687,7 +687,7 @@ public final CompletableFuture updateFilterin * Updates the index_name in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-index-name-api.html">Documentation * on elastic.co */ @@ -705,7 +705,7 @@ public CompletableFuture updateIndexName(UpdateIndexNam * a function that initializes a builder to create the * {@link UpdateIndexNameRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-index-name-api.html">Documentation * on elastic.co */ @@ -720,7 +720,7 @@ public final CompletableFuture updateIndexName( * Updates the name and description fields in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-name-description-api.html">Documentation * on elastic.co */ @@ -738,7 +738,7 @@ public CompletableFuture updateName(UpdateNameRequest reques * a function that initializes a builder to create the * {@link UpdateNameRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-name-description-api.html">Documentation * on elastic.co */ @@ -753,7 +753,7 @@ public final CompletableFuture updateName( * Updates the is_native flag in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-native-api.html">Documentation * on elastic.co */ @@ -771,7 +771,7 @@ public CompletableFuture updateNative(UpdateNativeRequest * a function that initializes a builder to create the * {@link UpdateNativeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-native-api.html">Documentation * on elastic.co */ @@ -786,7 +786,7 @@ public final CompletableFuture updateNative( * Updates the pipeline field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-pipeline-api.html">Documentation * on elastic.co */ @@ -804,7 +804,7 @@ public CompletableFuture updatePipeline(UpdatePipelineRe * a function that initializes a builder to create the * {@link UpdatePipelineRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-pipeline-api.html">Documentation * on elastic.co */ @@ -819,7 +819,7 @@ public final CompletableFuture updatePipeline( * Updates the scheduling field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-scheduling-api.html">Documentation * on elastic.co */ @@ -837,7 +837,7 @@ public CompletableFuture updateScheduling(UpdateSchedu * a function that initializes a builder to create the * {@link UpdateSchedulingRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-scheduling-api.html">Documentation * on elastic.co */ @@ -852,7 +852,7 @@ public final CompletableFuture updateScheduling( * Updates the service type of the connector * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-service-type-api.html">Documentation * on elastic.co */ @@ -870,7 +870,7 @@ public CompletableFuture updateServiceType(UpdateServ * a function that initializes a builder to create the * {@link UpdateServiceTypeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-service-type-api.html">Documentation * on elastic.co */ @@ -885,7 +885,7 @@ public final CompletableFuture updateServiceType( * Updates the status of the connector * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-status-api.html">Documentation * on elastic.co */ @@ -903,7 +903,7 @@ public CompletableFuture updateStatus(UpdateStatusRequest * a function that initializes a builder to create the * {@link UpdateStatusRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-status-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/connector/ElasticsearchConnectorClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/connector/ElasticsearchConnectorClient.java index 99ba0c1d9..7a1f4bf6b 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/connector/ElasticsearchConnectorClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/connector/ElasticsearchConnectorClient.java @@ -72,7 +72,7 @@ public ElasticsearchConnectorClient withTransportOptions(@Nullable TransportOpti * timestamp * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/check-in-connector-api.html">Documentation * on elastic.co */ @@ -91,7 +91,7 @@ public CheckInResponse checkIn(CheckInRequest request) throws IOException, Elast * a function that initializes a builder to create the * {@link CheckInRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/check-in-connector-api.html">Documentation * on elastic.co */ @@ -106,7 +106,7 @@ public final CheckInResponse checkIn(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-connector-api.html">Documentation * on elastic.co */ @@ -124,7 +124,7 @@ public DeleteConnectorResponse delete(DeleteConnectorRequest request) throws IOE * a function that initializes a builder to create the * {@link DeleteConnectorRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-connector-api.html">Documentation * on elastic.co */ @@ -140,7 +140,7 @@ public final DeleteConnectorResponse delete( * Retrieves a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-connector-api.html">Documentation * on elastic.co */ @@ -158,7 +158,7 @@ public GetConnectorResponse get(GetConnectorRequest request) throws IOException, * a function that initializes a builder to create the * {@link GetConnectorRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-connector-api.html">Documentation * on elastic.co */ @@ -173,7 +173,7 @@ public final GetConnectorResponse get(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-api.html">Documentation * on elastic.co */ @@ -191,7 +191,7 @@ public ListResponse list(ListRequest request) throws IOException, ElasticsearchE * a function that initializes a builder to create the * {@link ListRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-api.html">Documentation * on elastic.co */ @@ -204,7 +204,7 @@ public final ListResponse list(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-api.html">Documentation * on elastic.co */ @@ -219,7 +219,7 @@ public ListResponse list() throws IOException, ElasticsearchException { * Creates a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -237,7 +237,7 @@ public PostResponse post(PostRequest request) throws IOException, ElasticsearchE * a function that initializes a builder to create the * {@link PostRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -250,7 +250,7 @@ public final PostResponse post(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -265,7 +265,7 @@ public PostResponse post() throws IOException, ElasticsearchException { * Creates or updates a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -283,7 +283,7 @@ public PutResponse put(PutRequest request) throws IOException, ElasticsearchExce * a function that initializes a builder to create the * {@link PutRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -296,7 +296,7 @@ public final PutResponse put(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-api.html">Documentation * on elastic.co */ @@ -311,7 +311,7 @@ public PutResponse put() throws IOException, ElasticsearchException { * Cancels a connector sync job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cancel-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -330,7 +330,7 @@ public SyncJobCancelResponse syncJobCancel(SyncJobCancelRequest request) * a function that initializes a builder to create the * {@link SyncJobCancelRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cancel-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -346,7 +346,7 @@ public final SyncJobCancelResponse syncJobCancel( * Deletes a connector sync job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -365,7 +365,7 @@ public SyncJobDeleteResponse syncJobDelete(SyncJobDeleteRequest request) * a function that initializes a builder to create the * {@link SyncJobDeleteRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -381,7 +381,7 @@ public final SyncJobDeleteResponse syncJobDelete( * Retrieves a connector sync job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -399,7 +399,7 @@ public SyncJobGetResponse syncJobGet(SyncJobGetRequest request) throws IOExcepti * a function that initializes a builder to create the * {@link SyncJobGetRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -414,7 +414,7 @@ public final SyncJobGetResponse syncJobGet(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-sync-jobs-api.html">Documentation * on elastic.co */ @@ -432,7 +432,7 @@ public SyncJobListResponse syncJobList(SyncJobListRequest request) throws IOExce * a function that initializes a builder to create the * {@link SyncJobListRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-sync-jobs-api.html">Documentation * on elastic.co */ @@ -446,7 +446,7 @@ public final SyncJobListResponse syncJobList( * Lists connector sync jobs. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/list-connector-sync-jobs-api.html">Documentation * on elastic.co */ @@ -461,7 +461,7 @@ public SyncJobListResponse syncJobList() throws IOException, ElasticsearchExcept * Creates a connector sync job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -479,7 +479,7 @@ public SyncJobPostResponse syncJobPost(SyncJobPostRequest request) throws IOExce * a function that initializes a builder to create the * {@link SyncJobPostRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/create-connector-sync-job-api.html">Documentation * on elastic.co */ @@ -495,7 +495,7 @@ public final SyncJobPostResponse syncJobPost( * Activates the valid draft filtering for a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-api.html">Documentation * on elastic.co */ @@ -514,7 +514,7 @@ public UpdateActiveFilteringResponse updateActiveFiltering(UpdateActiveFiltering * a function that initializes a builder to create the * {@link UpdateActiveFilteringRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-api.html">Documentation * on elastic.co */ @@ -530,7 +530,7 @@ public final UpdateActiveFilteringResponse updateActiveFiltering( * Updates the API key id in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-api-key-id-api.html">Documentation * on elastic.co */ @@ -549,7 +549,7 @@ public UpdateApiKeyIdResponse updateApiKeyId(UpdateApiKeyIdRequest request) * a function that initializes a builder to create the * {@link UpdateApiKeyIdRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-api-key-id-api.html">Documentation * on elastic.co */ @@ -565,7 +565,7 @@ public final UpdateApiKeyIdResponse updateApiKeyId( * Updates the configuration field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-configuration-api.html">Documentation * on elastic.co */ @@ -584,7 +584,7 @@ public UpdateConfigurationResponse updateConfiguration(UpdateConfigurationReques * a function that initializes a builder to create the * {@link UpdateConfigurationRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-configuration-api.html">Documentation * on elastic.co */ @@ -600,7 +600,7 @@ public final UpdateConfigurationResponse updateConfiguration( * Updates the filtering field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-error-api.html">Documentation * on elastic.co */ @@ -618,7 +618,7 @@ public UpdateErrorResponse updateError(UpdateErrorRequest request) throws IOExce * a function that initializes a builder to create the * {@link UpdateErrorRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-error-api.html">Documentation * on elastic.co */ @@ -634,7 +634,7 @@ public final UpdateErrorResponse updateError( * Updates the filtering field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-api.html">Documentation * on elastic.co */ @@ -653,7 +653,7 @@ public UpdateFilteringResponse updateFiltering(UpdateFilteringRequest request) * a function that initializes a builder to create the * {@link UpdateFilteringRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-api.html">Documentation * on elastic.co */ @@ -669,7 +669,7 @@ public final UpdateFilteringResponse updateFiltering( * Updates the draft filtering validation info for a connector. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-validation-api.html">Documentation * on elastic.co */ @@ -688,7 +688,7 @@ public UpdateFilteringValidationResponse updateFilteringValidation(UpdateFilteri * a function that initializes a builder to create the * {@link UpdateFilteringValidationRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-filtering-validation-api.html">Documentation * on elastic.co */ @@ -704,7 +704,7 @@ public final UpdateFilteringValidationResponse updateFilteringValidation( * Updates the index_name in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-index-name-api.html">Documentation * on elastic.co */ @@ -723,7 +723,7 @@ public UpdateIndexNameResponse updateIndexName(UpdateIndexNameRequest request) * a function that initializes a builder to create the * {@link UpdateIndexNameRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-index-name-api.html">Documentation * on elastic.co */ @@ -739,7 +739,7 @@ public final UpdateIndexNameResponse updateIndexName( * Updates the name and description fields in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-name-description-api.html">Documentation * on elastic.co */ @@ -757,7 +757,7 @@ public UpdateNameResponse updateName(UpdateNameRequest request) throws IOExcepti * a function that initializes a builder to create the * {@link UpdateNameRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-name-description-api.html">Documentation * on elastic.co */ @@ -772,7 +772,7 @@ public final UpdateNameResponse updateName(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-native-api.html">Documentation * on elastic.co */ @@ -790,7 +790,7 @@ public UpdateNativeResponse updateNative(UpdateNativeRequest request) throws IOE * a function that initializes a builder to create the * {@link UpdateNativeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-native-api.html">Documentation * on elastic.co */ @@ -806,7 +806,7 @@ public final UpdateNativeResponse updateNative( * Updates the pipeline field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-pipeline-api.html">Documentation * on elastic.co */ @@ -825,7 +825,7 @@ public UpdatePipelineResponse updatePipeline(UpdatePipelineRequest request) * a function that initializes a builder to create the * {@link UpdatePipelineRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-pipeline-api.html">Documentation * on elastic.co */ @@ -841,7 +841,7 @@ public final UpdatePipelineResponse updatePipeline( * Updates the scheduling field in the connector document * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-scheduling-api.html">Documentation * on elastic.co */ @@ -860,7 +860,7 @@ public UpdateSchedulingResponse updateScheduling(UpdateSchedulingRequest request * a function that initializes a builder to create the * {@link UpdateSchedulingRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-scheduling-api.html">Documentation * on elastic.co */ @@ -876,7 +876,7 @@ public final UpdateSchedulingResponse updateScheduling( * Updates the service type of the connector * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-service-type-api.html">Documentation * on elastic.co */ @@ -895,7 +895,7 @@ public UpdateServiceTypeResponse updateServiceType(UpdateServiceTypeRequest requ * a function that initializes a builder to create the * {@link UpdateServiceTypeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-service-type-api.html">Documentation * on elastic.co */ @@ -911,7 +911,7 @@ public final UpdateServiceTypeResponse updateServiceType( * Updates the status of the connector * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-status-api.html">Documentation * on elastic.co */ @@ -929,7 +929,7 @@ public UpdateStatusResponse updateStatus(UpdateStatusRequest request) throws IOE * a function that initializes a builder to create the * {@link UpdateStatusRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/update-connector-status-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricDiscountedCumulativeGain.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricDiscountedCumulativeGain.java index 8d0c66842..fb4b7dcf4 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricDiscountedCumulativeGain.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricDiscountedCumulativeGain.java @@ -52,7 +52,7 @@ * Discounted cumulative gain (DCG) * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/search-rank-eval.html#_discounted_cumulative_gain_dcg">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricExpectedReciprocalRank.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricExpectedReciprocalRank.java index e915ebed3..49f431158 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricExpectedReciprocalRank.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricExpectedReciprocalRank.java @@ -52,7 +52,7 @@ * Expected Reciprocal Rank (ERR) * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/search-rank-eval.html#_expected_reciprocal_rank_err">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricMeanReciprocalRank.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricMeanReciprocalRank.java index e394b4fd8..53c94229e 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricMeanReciprocalRank.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricMeanReciprocalRank.java @@ -49,7 +49,7 @@ * Mean Reciprocal Rank * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/search-rank-eval.html#_mean_reciprocal_rank">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricPrecision.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricPrecision.java index 8be6fed75..0bccc4647 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricPrecision.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricPrecision.java @@ -52,7 +52,7 @@ * Precision at K (P@k) * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/search-rank-eval.html#k-precision">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricRecall.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricRecall.java index 35c982d78..f6fc81e82 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricRecall.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/rank_eval/RankEvalMetricRecall.java @@ -49,7 +49,7 @@ * Recall at K (R@k) * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/search-rank-eval.html#k-recall">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/search/Context.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/search/Context.java index 51eaf8608..c0c2d8be2 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/search/Context.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/search/Context.java @@ -62,7 +62,7 @@ * document's field for the text. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/query-dsl-mlt-query.html#_document_input_parameters">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/enrich/ElasticsearchEnrichAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/enrich/ElasticsearchEnrichAsyncClient.java index 4eadca956..4c9bdce32 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/enrich/ElasticsearchEnrichAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/enrich/ElasticsearchEnrichAsyncClient.java @@ -106,7 +106,7 @@ public final CompletableFuture deletePolicy( * Creates the enrich index for an existing enrich policy. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/execute-enrich-policy-api.html">Documentation * on elastic.co */ @@ -124,7 +124,7 @@ public CompletableFuture executePolicy(ExecutePolicyReque * a function that initializes a builder to create the * {@link ExecutePolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/execute-enrich-policy-api.html">Documentation * on elastic.co */ @@ -185,7 +185,7 @@ public CompletableFuture getPolicy() { * Create an enrich policy. Creates an enrich policy. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/put-enrich-policy-api.html">Documentation * on elastic.co */ @@ -203,7 +203,7 @@ public CompletableFuture putPolicy(PutPolicyRequest request) * a function that initializes a builder to create the * {@link PutPolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/put-enrich-policy-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/enrich/ElasticsearchEnrichClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/enrich/ElasticsearchEnrichClient.java index 705285103..2307719b0 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/enrich/ElasticsearchEnrichClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/enrich/ElasticsearchEnrichClient.java @@ -107,7 +107,7 @@ public final DeletePolicyResponse deletePolicy( * Creates the enrich index for an existing enrich policy. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/execute-enrich-policy-api.html">Documentation * on elastic.co */ @@ -126,7 +126,7 @@ public ExecutePolicyResponse executePolicy(ExecutePolicyRequest request) * a function that initializes a builder to create the * {@link ExecutePolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/execute-enrich-policy-api.html">Documentation * on elastic.co */ @@ -188,7 +188,7 @@ public GetPolicyResponse getPolicy() throws IOException, ElasticsearchException * Create an enrich policy. Creates an enrich policy. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/put-enrich-policy-api.html">Documentation * on elastic.co */ @@ -206,7 +206,7 @@ public PutPolicyResponse putPolicy(PutPolicyRequest request) throws IOException, * a function that initializes a builder to create the * {@link PutPolicyRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/put-enrich-policy-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/eql/ElasticsearchEqlAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/eql/ElasticsearchEqlAsyncClient.java index a2162780e..93124a899 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/eql/ElasticsearchEqlAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/eql/ElasticsearchEqlAsyncClient.java @@ -108,7 +108,7 @@ public final CompletableFuture delete( * stored synchronous EQL search. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-search-api.html">Documentation * on elastic.co */ @@ -129,7 +129,7 @@ public CompletableFuture> get(EqlGetRequest requ * a function that initializes a builder to create the * {@link EqlGetRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-search-api.html">Documentation * on elastic.co */ @@ -143,7 +143,7 @@ public final CompletableFuture> get( * stored synchronous EQL search. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-search-api.html">Documentation * on elastic.co */ @@ -164,7 +164,7 @@ public CompletableFuture> get(EqlGetRequest requ * a function that initializes a builder to create the * {@link EqlGetRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-search-api.html">Documentation * on elastic.co */ @@ -180,7 +180,7 @@ public final CompletableFuture> get( * EQL search without returning results. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-status-api.html">Documentation * on elastic.co */ @@ -199,7 +199,7 @@ public CompletableFuture getStatus(GetEqlStatusRequest req * a function that initializes a builder to create the * {@link GetEqlStatusRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-status-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/eql/ElasticsearchEqlClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/eql/ElasticsearchEqlClient.java index a274fd527..32a736936 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/eql/ElasticsearchEqlClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/eql/ElasticsearchEqlClient.java @@ -109,7 +109,7 @@ public final EqlDeleteResponse delete(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-search-api.html">Documentation * on elastic.co */ @@ -131,7 +131,7 @@ public EqlGetResponse get(EqlGetRequest request, Class * a function that initializes a builder to create the * {@link EqlGetRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-search-api.html">Documentation * on elastic.co */ @@ -145,7 +145,7 @@ public final EqlGetResponse get(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-search-api.html">Documentation * on elastic.co */ @@ -167,7 +167,7 @@ public EqlGetResponse get(EqlGetRequest request, Type tEventTyp * a function that initializes a builder to create the * {@link EqlGetRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-search-api.html">Documentation * on elastic.co */ @@ -183,7 +183,7 @@ public final EqlGetResponse get(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-status-api.html">Documentation * on elastic.co */ @@ -202,7 +202,7 @@ public GetEqlStatusResponse getStatus(GetEqlStatusRequest request) throws IOExce * a function that initializes a builder to create the * {@link GetEqlStatusRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-async-eql-status-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/esql/ElasticsearchEsqlAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/esql/ElasticsearchEsqlAsyncClient.java index 79fd20c34..7da689e95 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/esql/ElasticsearchEsqlAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/esql/ElasticsearchEsqlAsyncClient.java @@ -73,7 +73,7 @@ public ElasticsearchEsqlAsyncClient withTransportOptions(@Nullable TransportOpti * Executes an ES|QL request * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/esql-rest.html">Documentation * on elastic.co */ @@ -91,7 +91,7 @@ public CompletableFuture query(QueryRequest request) { * a function that initializes a builder to create the * {@link QueryRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/esql-rest.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/esql/ElasticsearchEsqlClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/esql/ElasticsearchEsqlClient.java index b77487c97..c24b5f683 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/esql/ElasticsearchEsqlClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/esql/ElasticsearchEsqlClient.java @@ -74,7 +74,7 @@ public ElasticsearchEsqlClient withTransportOptions(@Nullable TransportOptions t * Executes an ES|QL request * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/esql-rest.html">Documentation * on elastic.co */ @@ -92,7 +92,7 @@ public BinaryResponse query(QueryRequest request) throws IOException, Elasticsea * a function that initializes a builder to create the * {@link QueryRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/esql-rest.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/graph/ElasticsearchGraphAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/graph/ElasticsearchGraphAsyncClient.java index 1bf89d303..18ec23f16 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/graph/ElasticsearchGraphAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/graph/ElasticsearchGraphAsyncClient.java @@ -72,7 +72,7 @@ public ElasticsearchGraphAsyncClient withTransportOptions(@Nullable TransportOpt * Elasticsearch data stream or index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/graph-explore-api.html">Documentation * on elastic.co */ @@ -91,7 +91,7 @@ public CompletableFuture explore(ExploreRequest request) { * a function that initializes a builder to create the * {@link ExploreRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/graph-explore-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/graph/ElasticsearchGraphClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/graph/ElasticsearchGraphClient.java index 658be9a19..6d254eddd 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/graph/ElasticsearchGraphClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/graph/ElasticsearchGraphClient.java @@ -72,7 +72,7 @@ public ElasticsearchGraphClient withTransportOptions(@Nullable TransportOptions * Elasticsearch data stream or index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/graph-explore-api.html">Documentation * on elastic.co */ @@ -91,7 +91,7 @@ public ExploreResponse explore(ExploreRequest request) throws IOException, Elast * a function that initializes a builder to create the * {@link ExploreRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/graph-explore-api.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ElasticsearchIndicesAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ElasticsearchIndicesAsyncClient.java index 8212e5402..212ac9ac3 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ElasticsearchIndicesAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ElasticsearchIndicesAsyncClient.java @@ -109,7 +109,7 @@ public final CompletableFuture addBlock( * Performs analysis on a text string and returns the resulting tokens. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-analyze.html">Documentation * on elastic.co */ @@ -127,7 +127,7 @@ public CompletableFuture analyze(AnalyzeRequest request) { * a function that initializes a builder to create the * {@link AnalyzeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-analyze.html">Documentation * on elastic.co */ @@ -140,7 +140,7 @@ public final CompletableFuture analyze( * Performs analysis on a text string and returns the resulting tokens. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-analyze.html">Documentation * on elastic.co */ @@ -237,7 +237,7 @@ public final CompletableFuture clone( * Closes an index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-close.html">Documentation * on elastic.co */ @@ -255,7 +255,7 @@ public CompletableFuture close(CloseIndexRequest request) { * a function that initializes a builder to create the * {@link CloseIndexRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-close.html">Documentation * on elastic.co */ @@ -270,7 +270,7 @@ public final CompletableFuture close( * Create an index. Creates a new index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-create-index.html">Documentation * on elastic.co */ @@ -288,7 +288,7 @@ public CompletableFuture create(CreateIndexRequest request) * a function that initializes a builder to create the * {@link CreateIndexRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-create-index.html">Documentation * on elastic.co */ @@ -592,7 +592,7 @@ public final CompletableFuture deleteTemplate( * Analyzes the disk usage of each field of an index or data stream. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-disk-usage.html">Documentation * on elastic.co */ @@ -610,7 +610,7 @@ public CompletableFuture diskUsage(DiskUsageRequest request) * a function that initializes a builder to create the * {@link DiskUsageRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-disk-usage.html">Documentation * on elastic.co */ @@ -628,7 +628,7 @@ public final CompletableFuture diskUsage( * by a configured time interval. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-downsample-data-stream.html">Documentation * on elastic.co */ @@ -649,7 +649,7 @@ public CompletableFuture downsample(DownsampleRequest reques * a function that initializes a builder to create the * {@link DownsampleRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-downsample-data-stream.html">Documentation * on elastic.co */ @@ -872,7 +872,7 @@ public final CompletableFuture fieldUsageStats( * Flushes one or more data streams or indices. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-flush.html">Documentation * on elastic.co */ @@ -890,7 +890,7 @@ public CompletableFuture flush(FlushRequest request) { * a function that initializes a builder to create the * {@link FlushRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-flush.html">Documentation * on elastic.co */ @@ -903,7 +903,7 @@ public final CompletableFuture flush( * Flushes one or more data streams or indices. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-flush.html">Documentation * on elastic.co */ @@ -1949,7 +1949,7 @@ public final CompletableFuture resolveIndex( * alias. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-rollover-index.html">Documentation * on elastic.co */ @@ -1968,7 +1968,7 @@ public CompletableFuture rollover(RolloverRequest request) { * a function that initializes a builder to create the * {@link RolloverRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-rollover-index.html">Documentation * on elastic.co */ @@ -2084,7 +2084,7 @@ public CompletableFuture shardStores() { * Shrinks an existing index into a new index with fewer primary shards. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-shrink-index.html">Documentation * on elastic.co */ @@ -2102,7 +2102,7 @@ public CompletableFuture shrink(ShrinkRequest request) { * a function that initializes a builder to create the * {@link ShrinkRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-shrink-index.html">Documentation * on elastic.co */ @@ -2202,7 +2202,7 @@ public CompletableFuture simulateTemplate() { * Splits an existing index into a new index with more primary shards. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-split-index.html">Documentation * on elastic.co */ @@ -2220,7 +2220,7 @@ public CompletableFuture split(SplitRequest request) { * a function that initializes a builder to create the * {@link SplitRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-split-index.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ElasticsearchIndicesClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ElasticsearchIndicesClient.java index 9657e3907..3fc39aa81 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ElasticsearchIndicesClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ElasticsearchIndicesClient.java @@ -107,7 +107,7 @@ public final AddBlockResponse addBlock(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-analyze.html">Documentation * on elastic.co */ @@ -125,7 +125,7 @@ public AnalyzeResponse analyze(AnalyzeRequest request) throws IOException, Elast * a function that initializes a builder to create the * {@link AnalyzeRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-analyze.html">Documentation * on elastic.co */ @@ -138,7 +138,7 @@ public final AnalyzeResponse analyze(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-analyze.html">Documentation * on elastic.co */ @@ -235,7 +235,7 @@ public final CloneIndexResponse clone(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-close.html">Documentation * on elastic.co */ @@ -253,7 +253,7 @@ public CloseIndexResponse close(CloseIndexRequest request) throws IOException, E * a function that initializes a builder to create the * {@link CloseIndexRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-close.html">Documentation * on elastic.co */ @@ -268,7 +268,7 @@ public final CloseIndexResponse close(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-create-index.html">Documentation * on elastic.co */ @@ -286,7 +286,7 @@ public CreateIndexResponse create(CreateIndexRequest request) throws IOException * a function that initializes a builder to create the * {@link CreateIndexRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-create-index.html">Documentation * on elastic.co */ @@ -603,7 +603,7 @@ public final DeleteTemplateResponse deleteTemplate( * Analyzes the disk usage of each field of an index or data stream. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-disk-usage.html">Documentation * on elastic.co */ @@ -621,7 +621,7 @@ public DiskUsageResponse diskUsage(DiskUsageRequest request) throws IOException, * a function that initializes a builder to create the * {@link DiskUsageRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-disk-usage.html">Documentation * on elastic.co */ @@ -639,7 +639,7 @@ public final DiskUsageResponse diskUsage(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-downsample-data-stream.html">Documentation * on elastic.co */ @@ -660,7 +660,7 @@ public DownsampleResponse downsample(DownsampleRequest request) throws IOExcepti * a function that initializes a builder to create the * {@link DownsampleRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-downsample-data-stream.html">Documentation * on elastic.co */ @@ -890,7 +890,7 @@ public final FieldUsageStatsResponse fieldUsageStats( * Flushes one or more data streams or indices. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-flush.html">Documentation * on elastic.co */ @@ -908,7 +908,7 @@ public FlushResponse flush(FlushRequest request) throws IOException, Elasticsear * a function that initializes a builder to create the * {@link FlushRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-flush.html">Documentation * on elastic.co */ @@ -921,7 +921,7 @@ public final FlushResponse flush(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-flush.html">Documentation * on elastic.co */ @@ -1996,7 +1996,7 @@ public final ResolveIndexResponse resolveIndex( * alias. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-rollover-index.html">Documentation * on elastic.co */ @@ -2015,7 +2015,7 @@ public RolloverResponse rollover(RolloverRequest request) throws IOException, El * a function that initializes a builder to create the * {@link RolloverRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-rollover-index.html">Documentation * on elastic.co */ @@ -2132,7 +2132,7 @@ public ShardStoresResponse shardStores() throws IOException, ElasticsearchExcept * Shrinks an existing index into a new index with fewer primary shards. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-shrink-index.html">Documentation * on elastic.co */ @@ -2150,7 +2150,7 @@ public ShrinkResponse shrink(ShrinkRequest request) throws IOException, Elastics * a function that initializes a builder to create the * {@link ShrinkRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-shrink-index.html">Documentation * on elastic.co */ @@ -2253,7 +2253,7 @@ public SimulateTemplateResponse simulateTemplate() throws IOException, Elasticse * Splits an existing index into a new index with more primary shards. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-split-index.html">Documentation * on elastic.co */ @@ -2271,7 +2271,7 @@ public SplitResponse split(SplitRequest request) throws IOException, Elasticsear * a function that initializes a builder to create the * {@link SplitRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/indices-split-index.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/IndexSettings.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/IndexSettings.java index 8cffd5c26..8f684cc76 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/IndexSettings.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/IndexSettings.java @@ -64,7 +64,7 @@ /** * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/index-modules.html#index-modules-settings">Documentation * on elastic.co * @see API * specification diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/MappingLimitSettings.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/MappingLimitSettings.java index 74deaf2a1..cae1bba67 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/MappingLimitSettings.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/MappingLimitSettings.java @@ -55,7 +55,7 @@ * Mapping Limit Settings * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/mapping-settings-limit.html">Documentation * on elastic.co * @see API diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ingest/ElasticsearchIngestAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ingest/ElasticsearchIngestAsyncClient.java index b1200cfeb..ed4ab92a2 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ingest/ElasticsearchIngestAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ingest/ElasticsearchIngestAsyncClient.java @@ -137,7 +137,7 @@ public final CompletableFuture deletePipeline( * Gets download statistics for GeoIP2 databases used with the geoip processor. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/geoip-processor.html">Documentation * on elastic.co */ public CompletableFuture geoIpStats() { @@ -249,7 +249,7 @@ public CompletableFuture getPipeline() { * that supports aliased expressions that can be reused. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/grok-processor.html">Documentation * on elastic.co */ public CompletableFuture processorGrok() { @@ -297,7 +297,7 @@ public final CompletableFuture putGeoipDatabase( * effect immediately. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ingest.html">Documentation * on elastic.co */ @@ -316,7 +316,7 @@ public CompletableFuture putPipeline(PutPipelineRequest req * a function that initializes a builder to create the * {@link PutPipelineRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ingest.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ingest/ElasticsearchIngestClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ingest/ElasticsearchIngestClient.java index d17329c7d..f1e08b635 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ingest/ElasticsearchIngestClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ingest/ElasticsearchIngestClient.java @@ -141,7 +141,7 @@ public final DeletePipelineResponse deletePipeline( * Gets download statistics for GeoIP2 databases used with the geoip processor. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/geoip-processor.html">Documentation * on elastic.co */ public GeoIpStatsResponse geoIpStats() throws IOException, ElasticsearchException { @@ -256,7 +256,7 @@ public GetPipelineResponse getPipeline() throws IOException, ElasticsearchExcept * that supports aliased expressions that can be reused. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/grok-processor.html">Documentation * on elastic.co */ public ProcessorGrokResponse processorGrok() throws IOException, ElasticsearchException { @@ -306,7 +306,7 @@ public final PutGeoipDatabaseResponse putGeoipDatabase( * effect immediately. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ingest.html">Documentation * on elastic.co */ @@ -325,7 +325,7 @@ public PutPipelineResponse putPipeline(PutPipelineRequest request) throws IOExce * a function that initializes a builder to create the * {@link PutPipelineRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ingest.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ml/ElasticsearchMlAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ml/ElasticsearchMlAsyncClient.java index 91dd50b92..54cc2ef2f 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ml/ElasticsearchMlAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ml/ElasticsearchMlAsyncClient.java @@ -128,7 +128,7 @@ public final CompletableFuture clearTr * date stops, it automatically closes its associated job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-close-job.html">Documentation * on elastic.co */ @@ -159,7 +159,7 @@ public CompletableFuture closeJob(CloseJobRequest request) { * a function that initializes a builder to create the * {@link CloseJobRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-close-job.html">Documentation * on elastic.co */ @@ -175,7 +175,7 @@ public final CompletableFuture closeJob( * it. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar.html">Documentation * on elastic.co */ @@ -194,7 +194,7 @@ public CompletableFuture deleteCalendar(DeleteCalendarRe * a function that initializes a builder to create the * {@link DeleteCalendarRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar.html">Documentation * on elastic.co */ @@ -209,7 +209,7 @@ public final CompletableFuture deleteCalendar( * Delete events from a calendar. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar-event.html">Documentation * on elastic.co */ @@ -227,7 +227,7 @@ public CompletableFuture deleteCalendarEvent(Delete * a function that initializes a builder to create the * {@link DeleteCalendarEventRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar-event.html">Documentation * on elastic.co */ @@ -242,7 +242,7 @@ public final CompletableFuture deleteCalendarEvent( * Delete anomaly jobs from a calendar. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar-job.html">Documentation * on elastic.co */ @@ -260,7 +260,7 @@ public CompletableFuture deleteCalendarJob(DeleteCale * a function that initializes a builder to create the * {@link DeleteCalendarJobRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar-job.html">Documentation * on elastic.co */ @@ -275,7 +275,7 @@ public final CompletableFuture deleteCalendarJob( * Delete a data frame analytics job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-dfanalytics.html">Documentation * on elastic.co */ @@ -294,7 +294,7 @@ public CompletableFuture deleteDataFrameAnalyt * a function that initializes a builder to create the * {@link DeleteDataFrameAnalyticsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-dfanalytics.html">Documentation * on elastic.co */ @@ -309,7 +309,7 @@ public final CompletableFuture deleteDataFrame * Delete a datafeed. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-datafeed.html">Documentation * on elastic.co */ @@ -327,7 +327,7 @@ public CompletableFuture deleteDatafeed(DeleteDatafeedRe * a function that initializes a builder to create the * {@link DeleteDatafeedRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-datafeed.html">Documentation * on elastic.co */ @@ -2199,7 +2199,7 @@ public final CompletableFuture putCalendarJob( * a destination index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/put-dfanalytics.html">Documentation * on elastic.co */ @@ -2220,7 +2220,7 @@ public CompletableFuture putDataFrameAnalytics( * a function that initializes a builder to create the * {@link PutDataFrameAnalyticsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/put-dfanalytics.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ml/ElasticsearchMlClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ml/ElasticsearchMlClient.java index 75007da08..87751a805 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ml/ElasticsearchMlClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ml/ElasticsearchMlClient.java @@ -130,7 +130,7 @@ public final ClearTrainedModelDeploymentCacheResponse clearTrainedModelDeploymen * date stops, it automatically closes its associated job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-close-job.html">Documentation * on elastic.co */ @@ -161,7 +161,7 @@ public CloseJobResponse closeJob(CloseJobRequest request) throws IOException, El * a function that initializes a builder to create the * {@link CloseJobRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-close-job.html">Documentation * on elastic.co */ @@ -177,7 +177,7 @@ public final CloseJobResponse closeJob(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar.html">Documentation * on elastic.co */ @@ -197,7 +197,7 @@ public DeleteCalendarResponse deleteCalendar(DeleteCalendarRequest request) * a function that initializes a builder to create the * {@link DeleteCalendarRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar.html">Documentation * on elastic.co */ @@ -213,7 +213,7 @@ public final DeleteCalendarResponse deleteCalendar( * Delete events from a calendar. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar-event.html">Documentation * on elastic.co */ @@ -232,7 +232,7 @@ public DeleteCalendarEventResponse deleteCalendarEvent(DeleteCalendarEventReques * a function that initializes a builder to create the * {@link DeleteCalendarEventRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar-event.html">Documentation * on elastic.co */ @@ -248,7 +248,7 @@ public final DeleteCalendarEventResponse deleteCalendarEvent( * Delete anomaly jobs from a calendar. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar-job.html">Documentation * on elastic.co */ @@ -267,7 +267,7 @@ public DeleteCalendarJobResponse deleteCalendarJob(DeleteCalendarJobRequest requ * a function that initializes a builder to create the * {@link DeleteCalendarJobRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-calendar-job.html">Documentation * on elastic.co */ @@ -283,7 +283,7 @@ public final DeleteCalendarJobResponse deleteCalendarJob( * Delete a data frame analytics job. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-dfanalytics.html">Documentation * on elastic.co */ @@ -302,7 +302,7 @@ public DeleteDataFrameAnalyticsResponse deleteDataFrameAnalytics(DeleteDataFrame * a function that initializes a builder to create the * {@link DeleteDataFrameAnalyticsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/delete-dfanalytics.html">Documentation * on elastic.co */ @@ -318,7 +318,7 @@ public final DeleteDataFrameAnalyticsResponse deleteDataFrameAnalytics( * Delete a datafeed. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-datafeed.html">Documentation * on elastic.co */ @@ -337,7 +337,7 @@ public DeleteDatafeedResponse deleteDatafeed(DeleteDatafeedRequest request) * a function that initializes a builder to create the * {@link DeleteDatafeedRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-delete-datafeed.html">Documentation * on elastic.co */ @@ -2258,7 +2258,7 @@ public final PutCalendarJobResponse putCalendarJob( * a destination index. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/put-dfanalytics.html">Documentation * on elastic.co */ @@ -2279,7 +2279,7 @@ public PutDataFrameAnalyticsResponse putDataFrameAnalytics(PutDataFrameAnalytics * a function that initializes a builder to create the * {@link PutDataFrameAnalyticsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/put-dfanalytics.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/nodes/ElasticsearchNodesAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/nodes/ElasticsearchNodesAsyncClient.java index 22290e128..54364f776 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/nodes/ElasticsearchNodesAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/nodes/ElasticsearchNodesAsyncClient.java @@ -154,7 +154,7 @@ public final CompletableFuture getRepositor * threads. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-hot-threads.html">Documentation * on elastic.co */ @@ -174,7 +174,7 @@ public CompletableFuture hotThreads(HotThreadsRequest reques * a function that initializes a builder to create the * {@link HotThreadsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-hot-threads.html">Documentation * on elastic.co */ @@ -189,7 +189,7 @@ public final CompletableFuture hotThreads( * threads. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-hot-threads.html">Documentation * on elastic.co */ @@ -204,7 +204,7 @@ public CompletableFuture hotThreads() { * Returns cluster nodes information. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-info.html">Documentation * on elastic.co */ @@ -222,7 +222,7 @@ public CompletableFuture info(NodesInfoRequest request) { * a function that initializes a builder to create the * {@link NodesInfoRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-info.html">Documentation * on elastic.co */ @@ -235,7 +235,7 @@ public final CompletableFuture info( * Returns cluster nodes information. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-info.html">Documentation * on elastic.co */ @@ -296,7 +296,7 @@ public CompletableFuture reloadSecureSettings() { * Returns cluster nodes statistics. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-stats.html">Documentation * on elastic.co */ @@ -314,7 +314,7 @@ public CompletableFuture stats(NodesStatsRequest request) { * a function that initializes a builder to create the * {@link NodesStatsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-stats.html">Documentation * on elastic.co */ @@ -327,7 +327,7 @@ public final CompletableFuture stats( * Returns cluster nodes statistics. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-stats.html">Documentation * on elastic.co */ @@ -342,7 +342,7 @@ public CompletableFuture stats() { * Returns information on the usage of features. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-usage.html">Documentation * on elastic.co */ @@ -360,7 +360,7 @@ public CompletableFuture usage(NodesUsageRequest request) { * a function that initializes a builder to create the * {@link NodesUsageRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-usage.html">Documentation * on elastic.co */ @@ -373,7 +373,7 @@ public final CompletableFuture usage( * Returns information on the usage of features. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-usage.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/nodes/ElasticsearchNodesClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/nodes/ElasticsearchNodesClient.java index a32df2954..3424c6477 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/nodes/ElasticsearchNodesClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/nodes/ElasticsearchNodesClient.java @@ -156,7 +156,7 @@ public final GetRepositoriesMeteringInfoResponse getRepositoriesMeteringInfo( * threads. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-hot-threads.html">Documentation * on elastic.co */ @@ -176,7 +176,7 @@ public HotThreadsResponse hotThreads(HotThreadsRequest request) throws IOExcepti * a function that initializes a builder to create the * {@link HotThreadsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-hot-threads.html">Documentation * on elastic.co */ @@ -191,7 +191,7 @@ public final HotThreadsResponse hotThreads(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-hot-threads.html">Documentation * on elastic.co */ @@ -206,7 +206,7 @@ public HotThreadsResponse hotThreads() throws IOException, ElasticsearchExceptio * Returns cluster nodes information. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-info.html">Documentation * on elastic.co */ @@ -224,7 +224,7 @@ public NodesInfoResponse info(NodesInfoRequest request) throws IOException, Elas * a function that initializes a builder to create the * {@link NodesInfoRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-info.html">Documentation * on elastic.co */ @@ -237,7 +237,7 @@ public final NodesInfoResponse info(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-info.html">Documentation * on elastic.co */ @@ -300,7 +300,7 @@ public ReloadSecureSettingsResponse reloadSecureSettings() throws IOException, E * Returns cluster nodes statistics. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-stats.html">Documentation * on elastic.co */ @@ -318,7 +318,7 @@ public NodesStatsResponse stats(NodesStatsRequest request) throws IOException, E * a function that initializes a builder to create the * {@link NodesStatsRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-stats.html">Documentation * on elastic.co */ @@ -331,7 +331,7 @@ public final NodesStatsResponse stats(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-stats.html">Documentation * on elastic.co */ @@ -346,7 +346,7 @@ public NodesStatsResponse stats() throws IOException, ElasticsearchException { * Returns information on the usage of features. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-usage.html">Documentation * on elastic.co */ @@ -364,7 +364,7 @@ public NodesUsageResponse usage(NodesUsageRequest request) throws IOException, E * a function that initializes a builder to create the * {@link NodesUsageRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-usage.html">Documentation * on elastic.co */ @@ -377,7 +377,7 @@ public final NodesUsageResponse usage(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/cluster-nodes-usage.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/tasks/ElasticsearchTasksAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/tasks/ElasticsearchTasksAsyncClient.java index 7471f3782..067e1290a 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/tasks/ElasticsearchTasksAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/tasks/ElasticsearchTasksAsyncClient.java @@ -71,7 +71,7 @@ public ElasticsearchTasksAsyncClient withTransportOptions(@Nullable TransportOpt * Cancels a task, if it can be cancelled through an API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -89,7 +89,7 @@ public CompletableFuture cancel(CancelRequest request) { * a function that initializes a builder to create the * {@link CancelRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -102,7 +102,7 @@ public final CompletableFuture cancel( * Cancels a task, if it can be cancelled through an API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -118,7 +118,7 @@ public CompletableFuture cancel() { * in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -137,7 +137,7 @@ public CompletableFuture get(GetTasksRequest request) { * a function that initializes a builder to create the * {@link GetTasksRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -153,7 +153,7 @@ public final CompletableFuture get( * on one or more nodes in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -172,7 +172,7 @@ public CompletableFuture list(ListRequest request) { * a function that initializes a builder to create the * {@link ListRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -185,7 +185,7 @@ public final CompletableFuture list(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/tasks/ElasticsearchTasksClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/tasks/ElasticsearchTasksClient.java index 70cd2c12d..3cd43430a 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/tasks/ElasticsearchTasksClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/tasks/ElasticsearchTasksClient.java @@ -71,7 +71,7 @@ public ElasticsearchTasksClient withTransportOptions(@Nullable TransportOptions * Cancels a task, if it can be cancelled through an API. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -89,7 +89,7 @@ public CancelResponse cancel(CancelRequest request) throws IOException, Elastics * a function that initializes a builder to create the * {@link CancelRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -102,7 +102,7 @@ public final CancelResponse cancel(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -118,7 +118,7 @@ public CancelResponse cancel() throws IOException, ElasticsearchException { * in the cluster. * * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -137,7 +137,7 @@ public GetTasksResponse get(GetTasksRequest request) throws IOException, Elastic * a function that initializes a builder to create the * {@link GetTasksRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -153,7 +153,7 @@ public final GetTasksResponse get(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -172,7 +172,7 @@ public ListResponse list(ListRequest request) throws IOException, ElasticsearchE * a function that initializes a builder to create the * {@link ListRequest} * @see Documentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */ @@ -186,7 +186,7 @@ public final ListResponse list(FunctionDocumentation + * "https://www.elastic.co/guide/en/elasticsearch/reference/8.16/tasks.html">Documentation * on elastic.co */