All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.elastic.clients.elasticsearch.ingest.geo_ip_stats.GeoIpDownloadStatistics Maven / Gradle / Ivy

There is a newer version: 8.17.0
Show newest version
/*
 * 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.ingest.geo_ip_stats;

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.Integer;
import java.util.Objects;
import java.util.function.Function;

// typedef: ingest.geo_ip_stats.GeoIpDownloadStatistics

/**
 *
 * @see API
 *      specification
 */
@JsonpDeserializable
public class GeoIpDownloadStatistics implements JsonpSerializable {
	private final int successfulDownloads;

	private final int failedDownloads;

	private final int totalDownloadTime;

	private final int databaseCount;

	private final int skippedUpdates;

	// ---------------------------------------------------------------------------------------------

	private GeoIpDownloadStatistics(Builder builder) {

		this.successfulDownloads = ApiTypeHelper.requireNonNull(builder.successfulDownloads, this,
				"successfulDownloads");
		this.failedDownloads = ApiTypeHelper.requireNonNull(builder.failedDownloads, this, "failedDownloads");
		this.totalDownloadTime = ApiTypeHelper.requireNonNull(builder.totalDownloadTime, this, "totalDownloadTime");
		this.databaseCount = ApiTypeHelper.requireNonNull(builder.databaseCount, this, "databaseCount");
		this.skippedUpdates = ApiTypeHelper.requireNonNull(builder.skippedUpdates, this, "skippedUpdates");

	}

	public static GeoIpDownloadStatistics of(Function> fn) {
		return fn.apply(new Builder()).build();
	}

	/**
	 * Required - Total number of successful database downloads.
	 * 

* API name: {@code successful_downloads} */ public final int successfulDownloads() { return this.successfulDownloads; } /** * Required - Total number of failed database downloads. *

* API name: {@code failed_downloads} */ public final int failedDownloads() { return this.failedDownloads; } /** * Required - Total milliseconds spent downloading databases. *

* API name: {@code total_download_time} */ public final int totalDownloadTime() { return this.totalDownloadTime; } /** * Required - Current number of databases available for use. *

* API name: {@code database_count} */ public final int databaseCount() { return this.databaseCount; } /** * Required - Total number of database updates skipped. *

* API name: {@code skipped_updates} */ public final int skippedUpdates() { return this.skippedUpdates; } /** * 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) { generator.writeKey("successful_downloads"); generator.write(this.successfulDownloads); generator.writeKey("failed_downloads"); generator.write(this.failedDownloads); generator.writeKey("total_download_time"); generator.write(this.totalDownloadTime); generator.writeKey("database_count"); generator.write(this.databaseCount); generator.writeKey("skipped_updates"); generator.write(this.skippedUpdates); } // --------------------------------------------------------------------------------------------- /** * Builder for {@link GeoIpDownloadStatistics}. */ public static class Builder extends WithJsonObjectBuilderBase implements ObjectBuilder { private Integer successfulDownloads; private Integer failedDownloads; private Integer totalDownloadTime; private Integer databaseCount; private Integer skippedUpdates; /** * Required - Total number of successful database downloads. *

* API name: {@code successful_downloads} */ public final Builder successfulDownloads(int value) { this.successfulDownloads = value; return this; } /** * Required - Total number of failed database downloads. *

* API name: {@code failed_downloads} */ public final Builder failedDownloads(int value) { this.failedDownloads = value; return this; } /** * Required - Total milliseconds spent downloading databases. *

* API name: {@code total_download_time} */ public final Builder totalDownloadTime(int value) { this.totalDownloadTime = value; return this; } /** * Required - Current number of databases available for use. *

* API name: {@code database_count} */ public final Builder databaseCount(int value) { this.databaseCount = value; return this; } /** * Required - Total number of database updates skipped. *

* API name: {@code skipped_updates} */ public final Builder skippedUpdates(int value) { this.skippedUpdates = value; return this; } @Override protected Builder self() { return this; } /** * Builds a {@link GeoIpDownloadStatistics}. * * @throws NullPointerException * if some of the required fields are null. */ public GeoIpDownloadStatistics build() { _checkSingleUse(); return new GeoIpDownloadStatistics(this); } } // --------------------------------------------------------------------------------------------- /** * Json deserializer for {@link GeoIpDownloadStatistics} */ public static final JsonpDeserializer _DESERIALIZER = ObjectBuilderDeserializer .lazy(Builder::new, GeoIpDownloadStatistics::setupGeoIpDownloadStatisticsDeserializer); protected static void setupGeoIpDownloadStatisticsDeserializer( ObjectDeserializer op) { op.add(Builder::successfulDownloads, JsonpDeserializer.integerDeserializer(), "successful_downloads"); op.add(Builder::failedDownloads, JsonpDeserializer.integerDeserializer(), "failed_downloads"); op.add(Builder::totalDownloadTime, JsonpDeserializer.integerDeserializer(), "total_download_time"); op.add(Builder::databaseCount, JsonpDeserializer.integerDeserializer(), "database_count"); op.add(Builder::skippedUpdates, JsonpDeserializer.integerDeserializer(), "skipped_updates"); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy