Skip to content

Commit f555147

Browse files
committed
[codegen] update to latest spec
1 parent d3dfb83 commit f555147

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

java-client/src/main/java/co/elastic/clients/elasticsearch/doc-files/api-spec.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1481,7 +1481,7 @@
14811481
'indices.downsample.Request': 'indices/downsample/Request.ts#L24-L44',
14821482
'indices.downsample.Response': 'indices/downsample/Response.ts#L22-L25',
14831483
'indices.exists.Request': 'indices/exists/IndicesExistsRequest.ts#L23-L72',
1484-
'indices.exists_alias.Request': 'indices/exists_alias/IndicesExistsAliasRequest.ts#L23-L67',
1484+
'indices.exists_alias.Request': 'indices/exists_alias/IndicesExistsAliasRequest.ts#L23-L68',
14851485
'indices.exists_index_template.Request': 'indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts#L24-L41',
14861486
'indices.exists_template.Request': 'indices/exists_template/IndicesExistsTemplateRequest.ts#L24-L39',
14871487
'indices.explain_data_lifecycle.DataStreamLifecycleExplain': 'indices/explain_data_lifecycle/IndicesExplainDataLifecycleResponse.ts#L31-L41',
@@ -1504,7 +1504,7 @@
15041504
'indices.get.Request': 'indices/get/IndicesGetRequest.ts#L24-L88',
15051505
'indices.get.Response': 'indices/get/IndicesGetResponse.ts#L24-L27',
15061506
'indices.get_alias.IndexAliases': 'indices/get_alias/IndicesGetAliasResponse.ts#L37-L39',
1507-
'indices.get_alias.Request': 'indices/get_alias/IndicesGetAliasRequest.ts#L23-L70',
1507+
'indices.get_alias.Request': 'indices/get_alias/IndicesGetAliasRequest.ts#L23-L71',
15081508
'indices.get_alias.Response': 'indices/get_alias/IndicesGetAliasResponse.ts#L26-L35',
15091509
'indices.get_data_lifecycle.DataStreamWithLifecycle': 'indices/get_data_lifecycle/IndicesGetDataLifecycleResponse.ts#L27-L30',
15101510
'indices.get_data_lifecycle.Request': 'indices/get_data_lifecycle/IndicesGetDataLifecycleRequest.ts#L23-L52',
@@ -2876,10 +2876,10 @@
28762876
if (hash.length > 1) {
28772877
hash = hash.substring(1);
28782878
}
2879-
window.location = "https://github.com/elastic/elasticsearch-specification/tree/1a27080e79e765b656e881871d5d79e939970b95/specification/" + (paths[hash] || "");
2879+
window.location = "https://github.com/elastic/elasticsearch-specification/tree/28a996c6525b5b03a2474f7e43d4ddaf11e46e7e/specification/" + (paths[hash] || "");
28802880
</script>
28812881
</head>
28822882
<body>
2883-
Please see the <a href="https://github.com/elastic/elasticsearch-specification/tree/1a27080e79e765b656e881871d5d79e939970b95/specification/">Elasticsearch API specification</a>.
2883+
Please see the <a href="https://github.com/elastic/elasticsearch-specification/tree/28a996c6525b5b03a2474f7e43d4ddaf11e46e7e/specification/">Elasticsearch API specification</a>.
28842884
</body>
28852885
</html>

java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ExistsAliasRequest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,10 @@ public final List<String> index() {
154154
* only.
155155
* <p>
156156
* API name: {@code local}
157+
*
158+
* @deprecated 8.12.0
157159
*/
160+
@Deprecated
158161
@Nullable
159162
public final Boolean local() {
160163
return this.local;
@@ -287,7 +290,10 @@ public final Builder index(String value, String... values) {
287290
* only.
288291
* <p>
289292
* API name: {@code local}
293+
*
294+
* @deprecated 8.12.0
290295
*/
296+
@Deprecated
291297
public final Builder local(@Nullable Boolean value) {
292298
this.local = value;
293299
return this;

java-client/src/main/java/co/elastic/clients/elasticsearch/indices/GetAliasRequest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,10 @@ public final List<String> index() {
152152
* only.
153153
* <p>
154154
* API name: {@code local}
155+
*
156+
* @deprecated 8.12.0
155157
*/
158+
@Deprecated
156159
@Nullable
157160
public final Boolean local() {
158161
return this.local;
@@ -285,7 +288,10 @@ public final Builder index(String value, String... values) {
285288
* only.
286289
* <p>
287290
* API name: {@code local}
291+
*
292+
* @deprecated 8.12.0
288293
*/
294+
@Deprecated
289295
public final Builder local(@Nullable Boolean value) {
290296
this.local = value;
291297
return this;

0 commit comments

Comments
 (0)