co.elastic.clients.elasticsearch.watcher.Watch 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.Transform;
import co.elastic.clients.json.JsonData;
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.Map;
import java.util.Objects;
import java.util.function.Function;
import javax.annotation.Nullable;
// typedef: watcher._types.Watch
/**
*
* @see API
* specification
*/
@JsonpDeserializable
public class Watch implements JsonpSerializable {
private final Map actions;
private final Condition condition;
private final Input input;
private final Map metadata;
@Nullable
private final WatchStatus status;
@Nullable
private final String throttlePeriod;
@Nullable
private final Transform transform;
private final Trigger trigger;
@Nullable
private final Long throttlePeriodInMillis;
// ---------------------------------------------------------------------------------------------
private Watch(Builder builder) {
this.actions = ApiTypeHelper.unmodifiableRequired(builder.actions, this, "actions");
this.condition = ApiTypeHelper.requireNonNull(builder.condition, this, "condition");
this.input = ApiTypeHelper.requireNonNull(builder.input, this, "input");
this.metadata = ApiTypeHelper.unmodifiable(builder.metadata);
this.status = builder.status;
this.throttlePeriod = builder.throttlePeriod;
this.transform = builder.transform;
this.trigger = ApiTypeHelper.requireNonNull(builder.trigger, this, "trigger");
this.throttlePeriodInMillis = builder.throttlePeriodInMillis;
}
public static Watch of(Function> fn) {
return fn.apply(new Builder()).build();
}
/**
* Required - API name: {@code actions}
*/
public final Map actions() {
return this.actions;
}
/**
* Required - API name: {@code condition}
*/
public final Condition condition() {
return this.condition;
}
/**
* Required - API name: {@code input}
*/
public final Input input() {
return this.input;
}
/**
* API name: {@code metadata}
*/
public final Map metadata() {
return this.metadata;
}
/**
* API name: {@code status}
*/
@Nullable
public final WatchStatus status() {
return this.status;
}
/**
* API name: {@code throttle_period}
*/
@Nullable
public final String throttlePeriod() {
return this.throttlePeriod;
}
/**
* API name: {@code transform}
*/
@Nullable
public final Transform transform() {
return this.transform;
}
/**
* Required - API name: {@code trigger}
*/
public final Trigger trigger() {
return this.trigger;
}
/**
* API name: {@code throttle_period_in_millis}
*/
@Nullable
public final Long throttlePeriodInMillis() {
return this.throttlePeriodInMillis;
}
/**
* 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.actions)) {
generator.writeKey("actions");
generator.writeStartObject();
for (Map.Entry item0 : this.actions.entrySet()) {
generator.writeKey(item0.getKey());
item0.getValue().serialize(generator, mapper);
}
generator.writeEnd();
}
generator.writeKey("condition");
this.condition.serialize(generator, mapper);
generator.writeKey("input");
this.input.serialize(generator, mapper);
if (ApiTypeHelper.isDefined(this.metadata)) {
generator.writeKey("metadata");
generator.writeStartObject();
for (Map.Entry item0 : this.metadata.entrySet()) {
generator.writeKey(item0.getKey());
item0.getValue().serialize(generator, mapper);
}
generator.writeEnd();
}
if (this.status != null) {
generator.writeKey("status");
this.status.serialize(generator, mapper);
}
if (this.throttlePeriod != null) {
generator.writeKey("throttle_period");
generator.write(this.throttlePeriod);
}
if (this.transform != null) {
generator.writeKey("transform");
this.transform.serialize(generator, mapper);
}
generator.writeKey("trigger");
this.trigger.serialize(generator, mapper);
if (this.throttlePeriodInMillis != null) {
generator.writeKey("throttle_period_in_millis");
generator.write(this.throttlePeriodInMillis);
}
}
// ---------------------------------------------------------------------------------------------
/**
* Builder for {@link Watch}.
*/
public static class Builder extends WithJsonObjectBuilderBase implements ObjectBuilder {
private Map actions;
private Condition condition;
private Input input;
@Nullable
private Map metadata;
@Nullable
private WatchStatus status;
@Nullable
private String throttlePeriod;
@Nullable
private Transform transform;
private Trigger trigger;
@Nullable
private Long throttlePeriodInMillis;
/**
* Required - API name: {@code actions}
*
* Adds all entries of map
to actions
.
*/
public final Builder actions(Map map) {
this.actions = _mapPutAll(this.actions, map);
return this;
}
/**
* Required - API name: {@code actions}
*
* Adds an entry to actions
.
*/
public final Builder actions(String key, Action value) {
this.actions = _mapPut(this.actions, key, value);
return this;
}
/**
* Required - API name: {@code actions}
*
* Adds an entry to actions
using a builder lambda.
*/
public final Builder actions(String key, Function> fn) {
return actions(key, fn.apply(new Action.Builder()).build());
}
/**
* Required - API name: {@code condition}
*/
public final Builder condition(Condition value) {
this.condition = value;
return this;
}
/**
* Required - API name: {@code condition}
*/
public final Builder condition(Function> fn) {
return this.condition(fn.apply(new Condition.Builder()).build());
}
/**
* Required - API name: {@code input}
*/
public final Builder input(Input value) {
this.input = value;
return this;
}
/**
* Required - API name: {@code input}
*/
public final Builder input(Function> fn) {
return this.input(fn.apply(new Input.Builder()).build());
}
/**
* API name: {@code metadata}
*
* Adds all entries of map
to metadata
.
*/
public final Builder metadata(Map map) {
this.metadata = _mapPutAll(this.metadata, map);
return this;
}
/**
* API name: {@code metadata}
*
* Adds an entry to metadata
.
*/
public final Builder metadata(String key, JsonData value) {
this.metadata = _mapPut(this.metadata, key, value);
return this;
}
/**
* API name: {@code status}
*/
public final Builder status(@Nullable WatchStatus value) {
this.status = value;
return this;
}
/**
* API name: {@code status}
*/
public final Builder status(Function> fn) {
return this.status(fn.apply(new WatchStatus.Builder()).build());
}
/**
* API name: {@code throttle_period}
*/
public final Builder throttlePeriod(@Nullable String value) {
this.throttlePeriod = value;
return this;
}
/**
* API name: {@code transform}
*/
public final Builder transform(@Nullable Transform value) {
this.transform = value;
return this;
}
/**
* API name: {@code transform}
*/
public final Builder transform(Function> fn) {
return this.transform(fn.apply(new Transform.Builder()).build());
}
/**
* Required - API name: {@code trigger}
*/
public final Builder trigger(Trigger value) {
this.trigger = value;
return this;
}
/**
* Required - API name: {@code trigger}
*/
public final Builder trigger(Function> fn) {
return this.trigger(fn.apply(new Trigger.Builder()).build());
}
/**
* API name: {@code throttle_period_in_millis}
*/
public final Builder throttlePeriodInMillis(@Nullable Long value) {
this.throttlePeriodInMillis = value;
return this;
}
@Override
protected Builder self() {
return this;
}
/**
* Builds a {@link Watch}.
*
* @throws NullPointerException
* if some of the required fields are null.
*/
public Watch build() {
_checkSingleUse();
return new Watch(this);
}
}
// ---------------------------------------------------------------------------------------------
/**
* Json deserializer for {@link Watch}
*/
public static final JsonpDeserializer _DESERIALIZER = ObjectBuilderDeserializer.lazy(Builder::new,
Watch::setupWatchDeserializer);
protected static void setupWatchDeserializer(ObjectDeserializer op) {
op.add(Builder::actions, JsonpDeserializer.stringMapDeserializer(Action._DESERIALIZER), "actions");
op.add(Builder::condition, Condition._DESERIALIZER, "condition");
op.add(Builder::input, Input._DESERIALIZER, "input");
op.add(Builder::metadata, JsonpDeserializer.stringMapDeserializer(JsonData._DESERIALIZER), "metadata");
op.add(Builder::status, WatchStatus._DESERIALIZER, "status");
op.add(Builder::throttlePeriod, JsonpDeserializer.stringDeserializer(), "throttle_period");
op.add(Builder::transform, Transform._DESERIALIZER, "transform");
op.add(Builder::trigger, Trigger._DESERIALIZER, "trigger");
op.add(Builder::throttlePeriodInMillis, JsonpDeserializer.longDeserializer(), "throttle_period_in_millis");
}
}