Skip to content

Commit

Permalink
[codegen] update to latest spec
Browse files Browse the repository at this point in the history
  • Loading branch information
l-trotta committed Nov 19, 2024
1 parent d3dfb83 commit f555147
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1481,7 +1481,7 @@
'indices.downsample.Request': 'indices/downsample/Request.ts#L24-L44',
'indices.downsample.Response': 'indices/downsample/Response.ts#L22-L25',
'indices.exists.Request': 'indices/exists/IndicesExistsRequest.ts#L23-L72',
'indices.exists_alias.Request': 'indices/exists_alias/IndicesExistsAliasRequest.ts#L23-L67',
'indices.exists_alias.Request': 'indices/exists_alias/IndicesExistsAliasRequest.ts#L23-L68',
'indices.exists_index_template.Request': 'indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts#L24-L41',
'indices.exists_template.Request': 'indices/exists_template/IndicesExistsTemplateRequest.ts#L24-L39',
'indices.explain_data_lifecycle.DataStreamLifecycleExplain': 'indices/explain_data_lifecycle/IndicesExplainDataLifecycleResponse.ts#L31-L41',
Expand All @@ -1504,7 +1504,7 @@
'indices.get.Request': 'indices/get/IndicesGetRequest.ts#L24-L88',
'indices.get.Response': 'indices/get/IndicesGetResponse.ts#L24-L27',
'indices.get_alias.IndexAliases': 'indices/get_alias/IndicesGetAliasResponse.ts#L37-L39',
'indices.get_alias.Request': 'indices/get_alias/IndicesGetAliasRequest.ts#L23-L70',
'indices.get_alias.Request': 'indices/get_alias/IndicesGetAliasRequest.ts#L23-L71',
'indices.get_alias.Response': 'indices/get_alias/IndicesGetAliasResponse.ts#L26-L35',
'indices.get_data_lifecycle.DataStreamWithLifecycle': 'indices/get_data_lifecycle/IndicesGetDataLifecycleResponse.ts#L27-L30',
'indices.get_data_lifecycle.Request': 'indices/get_data_lifecycle/IndicesGetDataLifecycleRequest.ts#L23-L52',
Expand Down Expand Up @@ -2876,10 +2876,10 @@
if (hash.length > 1) {
hash = hash.substring(1);
}
window.location = "https://github.com/elastic/elasticsearch-specification/tree/1a27080e79e765b656e881871d5d79e939970b95/specification/" + (paths[hash] || "");
window.location = "https://github.com/elastic/elasticsearch-specification/tree/28a996c6525b5b03a2474f7e43d4ddaf11e46e7e/specification/" + (paths[hash] || "");
</script>
</head>
<body>
Please see the <a href="https://github.com/elastic/elasticsearch-specification/tree/1a27080e79e765b656e881871d5d79e939970b95/specification/">Elasticsearch API specification</a>.
Please see the <a href="https://github.com/elastic/elasticsearch-specification/tree/28a996c6525b5b03a2474f7e43d4ddaf11e46e7e/specification/">Elasticsearch API specification</a>.
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ public final List<String> index() {
* only.
* <p>
* API name: {@code local}
*
* @deprecated 8.12.0
*/
@Deprecated
@Nullable
public final Boolean local() {
return this.local;
Expand Down Expand Up @@ -287,7 +290,10 @@ public final Builder index(String value, String... values) {
* only.
* <p>
* API name: {@code local}
*
* @deprecated 8.12.0
*/
@Deprecated
public final Builder local(@Nullable Boolean value) {
this.local = value;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@ public final List<String> index() {
* only.
* <p>
* API name: {@code local}
*
* @deprecated 8.12.0
*/
@Deprecated
@Nullable
public final Boolean local() {
return this.local;
Expand Down Expand Up @@ -285,7 +288,10 @@ public final Builder index(String value, String... values) {
* only.
* <p>
* API name: {@code local}
*
* @deprecated 8.12.0
*/
@Deprecated
public final Builder local(@Nullable Boolean value) {
this.local = value;
return this;
Expand Down

0 comments on commit f555147

Please sign in to comment.