co.elastic.clients.elasticsearch.indices.recovery.VerifyIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-java Show documentation
Show all versions of elasticsearch-java Show documentation
Elasticsearch Java API Client
/*
* 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.indices.recovery;
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.DateTime;
import co.elastic.clients.util.ObjectBuilder;
import co.elastic.clients.util.WithJsonObjectBuilderBase;
import jakarta.json.stream.JsonGenerator;
import java.util.Objects;
import java.util.function.Function;
import javax.annotation.Nullable;
// typedef: indices.recovery.VerifyIndex
/**
*
* @see API
* specification
*/
@JsonpDeserializable
public class VerifyIndex implements JsonpSerializable {
@Nullable
private final Time checkIndexTime;
private final DateTime checkIndexTimeInMillis;
@Nullable
private final Time totalTime;
private final DateTime totalTimeInMillis;
// ---------------------------------------------------------------------------------------------
private VerifyIndex(Builder builder) {
this.checkIndexTime = builder.checkIndexTime;
this.checkIndexTimeInMillis = ApiTypeHelper.requireNonNull(builder.checkIndexTimeInMillis, this,
"checkIndexTimeInMillis");
this.totalTime = builder.totalTime;
this.totalTimeInMillis = ApiTypeHelper.requireNonNull(builder.totalTimeInMillis, this, "totalTimeInMillis");
}
public static VerifyIndex of(Function> fn) {
return fn.apply(new Builder()).build();
}
/**
* API name: {@code check_index_time}
*/
@Nullable
public final Time checkIndexTime() {
return this.checkIndexTime;
}
/**
* Required - API name: {@code check_index_time_in_millis}
*/
public final DateTime checkIndexTimeInMillis() {
return this.checkIndexTimeInMillis;
}
/**
* API name: {@code total_time}
*/
@Nullable
public final Time totalTime() {
return this.totalTime;
}
/**
* Required - API name: {@code total_time_in_millis}
*/
public final DateTime totalTimeInMillis() {
return this.totalTimeInMillis;
}
/**
* 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 (this.checkIndexTime != null) {
generator.writeKey("check_index_time");
this.checkIndexTime.serialize(generator, mapper);
}
generator.writeKey("check_index_time_in_millis");
this.checkIndexTimeInMillis.serialize(generator, mapper);
if (this.totalTime != null) {
generator.writeKey("total_time");
this.totalTime.serialize(generator, mapper);
}
generator.writeKey("total_time_in_millis");
this.totalTimeInMillis.serialize(generator, mapper);
}
// ---------------------------------------------------------------------------------------------
/**
* Builder for {@link VerifyIndex}.
*/
public static class Builder extends WithJsonObjectBuilderBase implements ObjectBuilder {
@Nullable
private Time checkIndexTime;
private DateTime checkIndexTimeInMillis;
@Nullable
private Time totalTime;
private DateTime totalTimeInMillis;
/**
* API name: {@code check_index_time}
*/
public final Builder checkIndexTime(@Nullable Time value) {
this.checkIndexTime = value;
return this;
}
/**
* API name: {@code check_index_time}
*/
public final Builder checkIndexTime(Function> fn) {
return this.checkIndexTime(fn.apply(new Time.Builder()).build());
}
/**
* Required - API name: {@code check_index_time_in_millis}
*/
public final Builder checkIndexTimeInMillis(DateTime value) {
this.checkIndexTimeInMillis = value;
return this;
}
/**
* API name: {@code total_time}
*/
public final Builder totalTime(@Nullable Time value) {
this.totalTime = value;
return this;
}
/**
* API name: {@code total_time}
*/
public final Builder totalTime(Function> fn) {
return this.totalTime(fn.apply(new Time.Builder()).build());
}
/**
* Required - API name: {@code total_time_in_millis}
*/
public final Builder totalTimeInMillis(DateTime value) {
this.totalTimeInMillis = value;
return this;
}
@Override
protected Builder self() {
return this;
}
/**
* Builds a {@link VerifyIndex}.
*
* @throws NullPointerException
* if some of the required fields are null.
*/
public VerifyIndex build() {
_checkSingleUse();
return new VerifyIndex(this);
}
}
// ---------------------------------------------------------------------------------------------
/**
* Json deserializer for {@link VerifyIndex}
*/
public static final JsonpDeserializer _DESERIALIZER = ObjectBuilderDeserializer.lazy(Builder::new,
VerifyIndex::setupVerifyIndexDeserializer);
protected static void setupVerifyIndexDeserializer(ObjectDeserializer op) {
op.add(Builder::checkIndexTime, Time._DESERIALIZER, "check_index_time");
op.add(Builder::checkIndexTimeInMillis, DateTime._DESERIALIZER, "check_index_time_in_millis");
op.add(Builder::totalTime, Time._DESERIALIZER, "total_time");
op.add(Builder::totalTimeInMillis, DateTime._DESERIALIZER, "total_time_in_millis");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy