co.elastic.clients.elasticsearch.watcher.SearchInput Maven / Gradle / Ivy
Show all versions of elasticsearch-java Show documentation
/*
* 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.watcher;
import co.elastic.clients.elasticsearch._types.Time;
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.ObjectBuilderDeserializer;
import co.elastic.clients.json.ObjectDeserializer;
import co.elastic.clients.util.ApiTypeHelper;
import co.elastic.clients.util.ObjectBuilder;
import co.elastic.clients.util.WithJsonObjectBuilderBase;
import jakarta.json.stream.JsonGenerator;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.function.Function;
import javax.annotation.Nullable;
// typedef: watcher._types.SearchInput
/**
*
* @see API
* specification
*/
@JsonpDeserializable
public class SearchInput implements InputVariant, JsonpSerializable {
private final List extract;
private final SearchInputRequestDefinition request;
@Nullable
private final Time timeout;
// ---------------------------------------------------------------------------------------------
private SearchInput(Builder builder) {
this.extract = ApiTypeHelper.unmodifiable(builder.extract);
this.request = ApiTypeHelper.requireNonNull(builder.request, this, "request");
this.timeout = builder.timeout;
}
public static SearchInput of(Function> fn) {
return fn.apply(new Builder()).build();
}
/**
* Input variant kind.
*/
@Override
public Input.Kind _inputKind() {
return Input.Kind.Search;
}
/**
* API name: {@code extract}
*/
public final List extract() {
return this.extract;
}
/**
* Required - API name: {@code request}
*/
public final SearchInputRequestDefinition request() {
return this.request;
}
/**
* API name: {@code timeout}
*/
@Nullable
public final Time timeout() {
return this.timeout;
}
/**
* Serialize this object to JSON.
*/
public void serialize(JsonGenerator generator, JsonpMapper mapper) {
generator.writeStartObject();
serializeInternal(generator, mapper);
generator.writeEnd();
}
protected void serializeInternal(JsonGenerator generator, JsonpMapper mapper) {
if (ApiTypeHelper.isDefined(this.extract)) {
generator.writeKey("extract");
generator.writeStartArray();
for (String item0 : this.extract) {
generator.write(item0);
}
generator.writeEnd();
}
generator.writeKey("request");
this.request.serialize(generator, mapper);
if (this.timeout != null) {
generator.writeKey("timeout");
this.timeout.serialize(generator, mapper);
}
}
// ---------------------------------------------------------------------------------------------
/**
* Builder for {@link SearchInput}.
*/
public static class Builder extends WithJsonObjectBuilderBase implements ObjectBuilder {
@Nullable
private List extract;
private SearchInputRequestDefinition request;
@Nullable
private Time timeout;
/**
* API name: {@code extract}
*
* Adds all elements of list
to extract
.
*/
public final Builder extract(List list) {
this.extract = _listAddAll(this.extract, list);
return this;
}
/**
* API name: {@code extract}
*
* Adds one or more values to extract
.
*/
public final Builder extract(String value, String... values) {
this.extract = _listAdd(this.extract, value, values);
return this;
}
/**
* Required - API name: {@code request}
*/
public final Builder request(SearchInputRequestDefinition value) {
this.request = value;
return this;
}
/**
* Required - API name: {@code request}
*/
public final Builder request(
Function> fn) {
return this.request(fn.apply(new SearchInputRequestDefinition.Builder()).build());
}
/**
* API name: {@code timeout}
*/
public final Builder timeout(@Nullable Time value) {
this.timeout = value;
return this;
}
/**
* API name: {@code timeout}
*/
public final Builder timeout(Function> fn) {
return this.timeout(fn.apply(new Time.Builder()).build());
}
@Override
protected Builder self() {
return this;
}
/**
* Builds a {@link SearchInput}.
*
* @throws NullPointerException
* if some of the required fields are null.
*/
public SearchInput build() {
_checkSingleUse();
return new SearchInput(this);
}
}
// ---------------------------------------------------------------------------------------------
/**
* Json deserializer for {@link SearchInput}
*/
public static final JsonpDeserializer _DESERIALIZER = ObjectBuilderDeserializer.lazy(Builder::new,
SearchInput::setupSearchInputDeserializer);
protected static void setupSearchInputDeserializer(ObjectDeserializer op) {
op.add(Builder::extract, JsonpDeserializer.arrayDeserializer(JsonpDeserializer.stringDeserializer()),
"extract");
op.add(Builder::request, SearchInputRequestDefinition._DESERIALIZER, "request");
op.add(Builder::timeout, Time._DESERIALIZER, "timeout");
}
}