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

co.elastic.clients.elasticsearch.rollup.get_jobs.RollupJobConfiguration Maven / Gradle / Ivy

/*
 * 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.rollup.get_jobs;

import co.elastic.clients.elasticsearch._types.Time;
import co.elastic.clients.elasticsearch.rollup.FieldMetric;
import co.elastic.clients.elasticsearch.rollup.Groupings;
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.Long;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.function.Function;
import javax.annotation.Nullable;

// typedef: rollup.get_jobs.RollupJobConfiguration

/**
 *
 * @see API
 *      specification
 */
@JsonpDeserializable
public class RollupJobConfiguration implements JsonpSerializable {
	private final String cron;

	private final Groupings groups;

	private final String id;

	private final String indexPattern;

	private final List metrics;

	private final long pageSize;

	private final String rollupIndex;

	private final Time timeout;

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

	private RollupJobConfiguration(Builder builder) {

		this.cron = ApiTypeHelper.requireNonNull(builder.cron, this, "cron");
		this.groups = ApiTypeHelper.requireNonNull(builder.groups, this, "groups");
		this.id = ApiTypeHelper.requireNonNull(builder.id, this, "id");
		this.indexPattern = ApiTypeHelper.requireNonNull(builder.indexPattern, this, "indexPattern");
		this.metrics = ApiTypeHelper.unmodifiableRequired(builder.metrics, this, "metrics");
		this.pageSize = ApiTypeHelper.requireNonNull(builder.pageSize, this, "pageSize");
		this.rollupIndex = ApiTypeHelper.requireNonNull(builder.rollupIndex, this, "rollupIndex");
		this.timeout = ApiTypeHelper.requireNonNull(builder.timeout, this, "timeout");

	}

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

	/**
	 * Required - API name: {@code cron}
	 */
	public final String cron() {
		return this.cron;
	}

	/**
	 * Required - API name: {@code groups}
	 */
	public final Groupings groups() {
		return this.groups;
	}

	/**
	 * Required - API name: {@code id}
	 */
	public final String id() {
		return this.id;
	}

	/**
	 * Required - API name: {@code index_pattern}
	 */
	public final String indexPattern() {
		return this.indexPattern;
	}

	/**
	 * Required - API name: {@code metrics}
	 */
	public final List metrics() {
		return this.metrics;
	}

	/**
	 * Required - API name: {@code page_size}
	 */
	public final long pageSize() {
		return this.pageSize;
	}

	/**
	 * Required - API name: {@code rollup_index}
	 */
	public final String rollupIndex() {
		return this.rollupIndex;
	}

	/**
	 * Required - API name: {@code timeout}
	 */
	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) {

		generator.writeKey("cron");
		generator.write(this.cron);

		generator.writeKey("groups");
		this.groups.serialize(generator, mapper);

		generator.writeKey("id");
		generator.write(this.id);

		generator.writeKey("index_pattern");
		generator.write(this.indexPattern);

		if (ApiTypeHelper.isDefined(this.metrics)) {
			generator.writeKey("metrics");
			generator.writeStartArray();
			for (FieldMetric item0 : this.metrics) {
				item0.serialize(generator, mapper);

			}
			generator.writeEnd();

		}
		generator.writeKey("page_size");
		generator.write(this.pageSize);

		generator.writeKey("rollup_index");
		generator.write(this.rollupIndex);

		generator.writeKey("timeout");
		this.timeout.serialize(generator, mapper);

	}

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

	/**
	 * Builder for {@link RollupJobConfiguration}.
	 */

	public static class Builder extends WithJsonObjectBuilderBase
			implements
				ObjectBuilder {
		private String cron;

		private Groupings groups;

		private String id;

		private String indexPattern;

		private List metrics;

		private Long pageSize;

		private String rollupIndex;

		private Time timeout;

		/**
		 * Required - API name: {@code cron}
		 */
		public final Builder cron(String value) {
			this.cron = value;
			return this;
		}

		/**
		 * Required - API name: {@code groups}
		 */
		public final Builder groups(Groupings value) {
			this.groups = value;
			return this;
		}

		/**
		 * Required - API name: {@code groups}
		 */
		public final Builder groups(Function> fn) {
			return this.groups(fn.apply(new Groupings.Builder()).build());
		}

		/**
		 * Required - API name: {@code id}
		 */
		public final Builder id(String value) {
			this.id = value;
			return this;
		}

		/**
		 * Required - API name: {@code index_pattern}
		 */
		public final Builder indexPattern(String value) {
			this.indexPattern = value;
			return this;
		}

		/**
		 * Required - API name: {@code metrics}
		 * 

* Adds all elements of list to metrics. */ public final Builder metrics(List list) { this.metrics = _listAddAll(this.metrics, list); return this; } /** * Required - API name: {@code metrics} *

* Adds one or more values to metrics. */ public final Builder metrics(FieldMetric value, FieldMetric... values) { this.metrics = _listAdd(this.metrics, value, values); return this; } /** * Required - API name: {@code metrics} *

* Adds a value to metrics using a builder lambda. */ public final Builder metrics(Function> fn) { return metrics(fn.apply(new FieldMetric.Builder()).build()); } /** * Required - API name: {@code page_size} */ public final Builder pageSize(long value) { this.pageSize = value; return this; } /** * Required - API name: {@code rollup_index} */ public final Builder rollupIndex(String value) { this.rollupIndex = value; return this; } /** * Required - API name: {@code timeout} */ public final Builder timeout(Time value) { this.timeout = value; return this; } /** * Required - 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 RollupJobConfiguration}. * * @throws NullPointerException * if some of the required fields are null. */ public RollupJobConfiguration build() { _checkSingleUse(); return new RollupJobConfiguration(this); } } // --------------------------------------------------------------------------------------------- /** * Json deserializer for {@link RollupJobConfiguration} */ public static final JsonpDeserializer _DESERIALIZER = ObjectBuilderDeserializer .lazy(Builder::new, RollupJobConfiguration::setupRollupJobConfigurationDeserializer); protected static void setupRollupJobConfigurationDeserializer( ObjectDeserializer op) { op.add(Builder::cron, JsonpDeserializer.stringDeserializer(), "cron"); op.add(Builder::groups, Groupings._DESERIALIZER, "groups"); op.add(Builder::id, JsonpDeserializer.stringDeserializer(), "id"); op.add(Builder::indexPattern, JsonpDeserializer.stringDeserializer(), "index_pattern"); op.add(Builder::metrics, JsonpDeserializer.arrayDeserializer(FieldMetric._DESERIALIZER), "metrics"); op.add(Builder::pageSize, JsonpDeserializer.longDeserializer(), "page_size"); op.add(Builder::rollupIndex, JsonpDeserializer.stringDeserializer(), "rollup_index"); op.add(Builder::timeout, Time._DESERIALIZER, "timeout"); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy