com.huaweicloud.sdk.aom.v2.model.EventList Maven / Gradle / Ivy
package com.huaweicloud.sdk.aom.v2.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
/**
* 事件告警上报实体。
*/
public class EventList {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "events")
private List events = null;
public EventList withEvents(List events) {
this.events = events;
return this;
}
public EventList addEventsItem(EventModel eventsItem) {
if (this.events == null) {
this.events = new ArrayList<>();
}
this.events.add(eventsItem);
return this;
}
public EventList withEvents(Consumer> eventsSetter) {
if (this.events == null) {
this.events = new ArrayList<>();
}
eventsSetter.accept(this.events);
return this;
}
/**
* 事件或者告警详情。
* @return events
*/
public List getEvents() {
return events;
}
public void setEvents(List events) {
this.events = events;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
EventList that = (EventList) obj;
return Objects.equals(this.events, that.events);
}
@Override
public int hashCode() {
return Objects.hash(events);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EventList {\n");
sb.append(" events: ").append(toIndentedString(events)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}