-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[codegen] Update to latest 8.8 API spec
- Loading branch information
Showing
46 changed files
with
6,074 additions
and
29 deletions.
There are no files selected for viewing
180 changes: 180 additions & 0 deletions
180
java-client/src/main/java/co/elastic/clients/elasticsearch/_types/Rank.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
//---------------------------------------------------- | ||
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST. | ||
//---------------------------------------------------- | ||
|
||
package co.elastic.clients.elasticsearch._types; | ||
|
||
import co.elastic.clients.json.JsonEnum; | ||
import co.elastic.clients.json.JsonpDeserializable; | ||
import co.elastic.clients.json.JsonpDeserializer; | ||
import co.elastic.clients.json.JsonpMapper; | ||
import co.elastic.clients.json.JsonpSerializable; | ||
import co.elastic.clients.json.JsonpUtils; | ||
import co.elastic.clients.json.ObjectBuilderDeserializer; | ||
import co.elastic.clients.json.ObjectDeserializer; | ||
import co.elastic.clients.util.ApiTypeHelper; | ||
import co.elastic.clients.util.ObjectBuilder; | ||
import co.elastic.clients.util.TaggedUnion; | ||
import co.elastic.clients.util.TaggedUnionUtils; | ||
import co.elastic.clients.util.WithJsonObjectBuilderBase; | ||
import jakarta.json.stream.JsonGenerator; | ||
import java.lang.Object; | ||
import java.util.Objects; | ||
import java.util.function.Function; | ||
import javax.annotation.Nullable; | ||
|
||
// typedef: _types.RankContainer | ||
|
||
/** | ||
* | ||
* @see <a href="../doc-files/api-spec.html#_types.RankContainer">API | ||
* specification</a> | ||
*/ | ||
@JsonpDeserializable | ||
public class Rank implements TaggedUnion<Rank.Kind, Object>, JsonpSerializable { | ||
|
||
/** | ||
* {@link Rank} variant kinds. | ||
* | ||
* @see <a href="../doc-files/api-spec.html#_types.RankContainer">API | ||
* specification</a> | ||
*/ | ||
|
||
public enum Kind implements JsonEnum { | ||
Rrf("rrf"), | ||
|
||
; | ||
|
||
private final String jsonValue; | ||
|
||
Kind(String jsonValue) { | ||
this.jsonValue = jsonValue; | ||
} | ||
|
||
public String jsonValue() { | ||
return this.jsonValue; | ||
} | ||
|
||
} | ||
|
||
private final Kind _kind; | ||
private final Object _value; | ||
|
||
@Override | ||
public final Kind _kind() { | ||
return _kind; | ||
} | ||
|
||
@Override | ||
public final Object _get() { | ||
return _value; | ||
} | ||
|
||
public Rank(RankVariant value) { | ||
|
||
this._kind = ApiTypeHelper.requireNonNull(value._rankKind(), this, "<variant kind>"); | ||
this._value = ApiTypeHelper.requireNonNull(value, this, "<variant value>"); | ||
|
||
} | ||
|
||
private Rank(Builder builder) { | ||
|
||
this._kind = ApiTypeHelper.requireNonNull(builder._kind, builder, "<variant kind>"); | ||
this._value = ApiTypeHelper.requireNonNull(builder._value, builder, "<variant value>"); | ||
|
||
} | ||
|
||
public static Rank of(Function<Builder, ObjectBuilder<Rank>> fn) { | ||
return fn.apply(new Builder()).build(); | ||
} | ||
|
||
/** | ||
* Is this variant instance of kind {@code rrf}? | ||
*/ | ||
public boolean isRrf() { | ||
return _kind == Kind.Rrf; | ||
} | ||
|
||
/** | ||
* Get the {@code rrf} variant value. | ||
* | ||
* @throws IllegalStateException | ||
* if the current variant is not of the {@code rrf} kind. | ||
*/ | ||
public RrfRank rrf() { | ||
return TaggedUnionUtils.get(this, Kind.Rrf); | ||
} | ||
|
||
@Override | ||
@SuppressWarnings("unchecked") | ||
public void serialize(JsonGenerator generator, JsonpMapper mapper) { | ||
|
||
generator.writeStartObject(); | ||
|
||
generator.writeKey(_kind.jsonValue()); | ||
if (_value instanceof JsonpSerializable) { | ||
((JsonpSerializable) _value).serialize(generator, mapper); | ||
} | ||
|
||
generator.writeEnd(); | ||
|
||
} | ||
|
||
@Override | ||
public String toString() { | ||
return JsonpUtils.toString(this); | ||
} | ||
|
||
public static class Builder extends WithJsonObjectBuilderBase<Builder> implements ObjectBuilder<Rank> { | ||
private Kind _kind; | ||
private Object _value; | ||
|
||
@Override | ||
protected Builder self() { | ||
return this; | ||
} | ||
public ObjectBuilder<Rank> rrf(RrfRank v) { | ||
this._kind = Kind.Rrf; | ||
this._value = v; | ||
return this; | ||
} | ||
|
||
public ObjectBuilder<Rank> rrf(Function<RrfRank.Builder, ObjectBuilder<RrfRank>> fn) { | ||
return this.rrf(fn.apply(new RrfRank.Builder()).build()); | ||
} | ||
|
||
public Rank build() { | ||
_checkSingleUse(); | ||
return new Rank(this); | ||
} | ||
|
||
} | ||
|
||
protected static void setupRankDeserializer(ObjectDeserializer<Builder> op) { | ||
|
||
op.add(Builder::rrf, RrfRank._DESERIALIZER, "rrf"); | ||
|
||
} | ||
|
||
public static final JsonpDeserializer<Rank> _DESERIALIZER = ObjectBuilderDeserializer.lazy(Builder::new, | ||
Rank::setupRankDeserializer, Builder::build); | ||
} |
54 changes: 54 additions & 0 deletions
54
java-client/src/main/java/co/elastic/clients/elasticsearch/_types/RankBase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
//---------------------------------------------------- | ||
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST. | ||
//---------------------------------------------------- | ||
|
||
package co.elastic.clients.elasticsearch._types; | ||
|
||
import co.elastic.clients.json.JsonpDeserializable; | ||
import co.elastic.clients.json.JsonpDeserializer; | ||
import co.elastic.clients.json.ObjectBuilderDeserializer; | ||
import co.elastic.clients.json.ObjectDeserializer; | ||
import co.elastic.clients.util.ObjectBuilder; | ||
import co.elastic.clients.util.WithJsonObjectBuilderBase; | ||
import jakarta.json.stream.JsonGenerator; | ||
import java.util.Objects; | ||
|
||
// typedef: _types.RankBase | ||
|
||
/** | ||
* | ||
* @see <a href="../doc-files/api-spec.html#_types.RankBase">API | ||
* specification</a> | ||
*/ | ||
|
||
public abstract class RankBase { | ||
public RankBase() { | ||
} | ||
|
||
public abstract static class AbstractBuilder<BuilderT extends AbstractBuilder<BuilderT>> | ||
extends | ||
WithJsonObjectBuilderBase<BuilderT> { | ||
protected abstract BuilderT self(); | ||
|
||
} | ||
|
||
} |
52 changes: 52 additions & 0 deletions
52
java-client/src/main/java/co/elastic/clients/elasticsearch/_types/RankBuilders.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
//---------------------------------------------------- | ||
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST. | ||
//---------------------------------------------------- | ||
|
||
package co.elastic.clients.elasticsearch._types; | ||
|
||
import co.elastic.clients.util.ObjectBuilder; | ||
import java.util.function.Function; | ||
|
||
/** | ||
* Builders for {@link Rank} variants. | ||
*/ | ||
public class RankBuilders { | ||
private RankBuilders() { | ||
} | ||
|
||
/** | ||
* Creates a builder for the {@link RrfRank rrf} {@code Rank} variant. | ||
*/ | ||
public static RrfRank.Builder rrf() { | ||
return new RrfRank.Builder(); | ||
} | ||
|
||
/** | ||
* Creates a Rank of the {@link RrfRank rrf} {@code Rank} variant. | ||
*/ | ||
public static Rank rrf(Function<RrfRank.Builder, ObjectBuilder<RrfRank>> fn) { | ||
Rank.Builder builder = new Rank.Builder(); | ||
builder.rrf(fn.apply(new RrfRank.Builder()).build()); | ||
return builder.build(); | ||
} | ||
|
||
} |
37 changes: 37 additions & 0 deletions
37
java-client/src/main/java/co/elastic/clients/elasticsearch/_types/RankVariant.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
//---------------------------------------------------- | ||
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST. | ||
//---------------------------------------------------- | ||
|
||
package co.elastic.clients.elasticsearch._types; | ||
|
||
/** | ||
* Base interface for {@link Rank} variants. | ||
*/ | ||
public interface RankVariant { | ||
|
||
Rank.Kind _rankKind(); | ||
|
||
default Rank _toRank() { | ||
return new Rank(this); | ||
} | ||
|
||
} |
Oops, something went wrong.