All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.seeq.model.ConditionMonitorOutputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 60.1.3-v202304250417
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.seeq.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.seeq.model.IdentityPreviewV1;
import com.seeq.model.PermissionsV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
* ConditionMonitorOutputV1
*/
public class ConditionMonitorOutputV1 {
@JsonProperty("conditionIds")
private List conditionIds = new ArrayList();
@JsonProperty("createdAt")
private String createdAt = null;
@JsonProperty("creator")
private IdentityPreviewV1 creator = null;
@JsonProperty("creatorId")
private String creatorId = null;
@JsonProperty("cronSchedule")
private List cronSchedule = new ArrayList();
@JsonProperty("cronScheduleDescription")
private String cronScheduleDescription = null;
@JsonProperty("description")
private String description = null;
@JsonProperty("effectivePermissions")
private PermissionsV1 effectivePermissions = null;
@JsonProperty("enabled")
private Boolean enabled = null;
@JsonProperty("id")
private String id = null;
@JsonProperty("isArchived")
private Boolean isArchived = false;
@JsonProperty("name")
private String name = null;
@JsonProperty("queryRangeLookAhead")
private String queryRangeLookAhead = null;
@JsonProperty("statusMessage")
private String statusMessage = null;
@JsonProperty("type")
private String type = null;
@JsonProperty("updatedAt")
private String updatedAt = null;
public ConditionMonitorOutputV1 conditionIds(List conditionIds) {
this.conditionIds = conditionIds;
return this;
}
public ConditionMonitorOutputV1 addConditionIdsItem(String conditionIdsItem) {
this.conditionIds.add(conditionIdsItem);
return this;
}
/**
* The IDs of the monitored conditions
* @return conditionIds
**/
@Schema(required = true, description = "The IDs of the monitored conditions")
public List getConditionIds() {
return conditionIds;
}
public void setConditionIds(List conditionIds) {
this.conditionIds = conditionIds;
}
public ConditionMonitorOutputV1 createdAt(String createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* The time the condition monitor was created
* @return createdAt
**/
@Schema(required = true, description = "The time the condition monitor was created")
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
public ConditionMonitorOutputV1 creator(IdentityPreviewV1 creator) {
this.creator = creator;
return this;
}
/**
* Get creator
* @return creator
**/
@Schema(description = "")
public IdentityPreviewV1 getCreator() {
return creator;
}
public void setCreator(IdentityPreviewV1 creator) {
this.creator = creator;
}
public ConditionMonitorOutputV1 creatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
/**
* ID of the monitor's creator
* @return creatorId
**/
@Schema(required = true, description = "ID of the monitor's creator")
public String getCreatorId() {
return creatorId;
}
public void setCreatorId(String creatorId) {
this.creatorId = creatorId;
}
public ConditionMonitorOutputV1 cronSchedule(List cronSchedule) {
this.cronSchedule = cronSchedule;
return this;
}
public ConditionMonitorOutputV1 addCronScheduleItem(String cronScheduleItem) {
if (this.cronSchedule == null) {
this.cronSchedule = new ArrayList();
}
this.cronSchedule.add(cronScheduleItem);
return this;
}
/**
* The condition monitor's check interval(s) as a list of cron expressions (see https://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html)
* @return cronSchedule
**/
@Schema(description = "The condition monitor's check interval(s) as a list of cron expressions (see https://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html)")
public List getCronSchedule() {
return cronSchedule;
}
public void setCronSchedule(List cronSchedule) {
this.cronSchedule = cronSchedule;
}
public ConditionMonitorOutputV1 cronScheduleDescription(String cronScheduleDescription) {
this.cronScheduleDescription = cronScheduleDescription;
return this;
}
/**
* A human readable description of the cronSchedule attribute
* @return cronScheduleDescription
**/
@Schema(description = "A human readable description of the cronSchedule attribute")
public String getCronScheduleDescription() {
return cronScheduleDescription;
}
public void setCronScheduleDescription(String cronScheduleDescription) {
this.cronScheduleDescription = cronScheduleDescription;
}
public ConditionMonitorOutputV1 description(String description) {
this.description = description;
return this;
}
/**
* Clarifying information or other plain language description of this item
* @return description
**/
@Schema(description = "Clarifying information or other plain language description of this item")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public ConditionMonitorOutputV1 effectivePermissions(PermissionsV1 effectivePermissions) {
this.effectivePermissions = effectivePermissions;
return this;
}
/**
* Get effectivePermissions
* @return effectivePermissions
**/
@Schema(description = "")
public PermissionsV1 getEffectivePermissions() {
return effectivePermissions;
}
public void setEffectivePermissions(PermissionsV1 effectivePermissions) {
this.effectivePermissions = effectivePermissions;
}
public ConditionMonitorOutputV1 enabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
/**
* Whether this condition monitor is enabled or not
* @return enabled
**/
@Schema(required = true, description = "Whether this condition monitor is enabled or not")
public Boolean getEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public ConditionMonitorOutputV1 id(String id) {
this.id = id;
return this;
}
/**
* The ID that can be used to interact with the item
* @return id
**/
@Schema(required = true, description = "The ID that can be used to interact with the item")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
/**
* Whether item is archived
* @return isArchived
**/
@Schema(description = "Whether item is archived")
public Boolean getIsArchived() {
return isArchived;
}
public ConditionMonitorOutputV1 name(String name) {
this.name = name;
return this;
}
/**
* The human readable name
* @return name
**/
@Schema(required = true, description = "The human readable name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public ConditionMonitorOutputV1 queryRangeLookAhead(String queryRangeLookAhead) {
this.queryRangeLookAhead = queryRangeLookAhead;
return this;
}
/**
* Query range look ahead in seconds
* @return queryRangeLookAhead
**/
@Schema(required = true, description = "Query range look ahead in seconds")
public String getQueryRangeLookAhead() {
return queryRangeLookAhead;
}
public void setQueryRangeLookAhead(String queryRangeLookAhead) {
this.queryRangeLookAhead = queryRangeLookAhead;
}
public ConditionMonitorOutputV1 statusMessage(String statusMessage) {
this.statusMessage = statusMessage;
return this;
}
/**
* A plain language status message with information about any issues that may have been encountered during an operation
* @return statusMessage
**/
@Schema(description = "A plain language status message with information about any issues that may have been encountered during an operation")
public String getStatusMessage() {
return statusMessage;
}
public void setStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
}
public ConditionMonitorOutputV1 type(String type) {
this.type = type;
return this;
}
/**
* The type of the item
* @return type
**/
@Schema(required = true, description = "The type of the item")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public ConditionMonitorOutputV1 updatedAt(String updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* The last time the condition monitor was updated
* @return updatedAt
**/
@Schema(required = true, description = "The last time the condition monitor was updated")
public String getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(String updatedAt) {
this.updatedAt = updatedAt;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ConditionMonitorOutputV1 conditionMonitorOutputV1 = (ConditionMonitorOutputV1) o;
return Objects.equals(this.conditionIds, conditionMonitorOutputV1.conditionIds) &&
Objects.equals(this.createdAt, conditionMonitorOutputV1.createdAt) &&
Objects.equals(this.creator, conditionMonitorOutputV1.creator) &&
Objects.equals(this.creatorId, conditionMonitorOutputV1.creatorId) &&
Objects.equals(this.cronSchedule, conditionMonitorOutputV1.cronSchedule) &&
Objects.equals(this.cronScheduleDescription, conditionMonitorOutputV1.cronScheduleDescription) &&
Objects.equals(this.description, conditionMonitorOutputV1.description) &&
Objects.equals(this.effectivePermissions, conditionMonitorOutputV1.effectivePermissions) &&
Objects.equals(this.enabled, conditionMonitorOutputV1.enabled) &&
Objects.equals(this.id, conditionMonitorOutputV1.id) &&
Objects.equals(this.isArchived, conditionMonitorOutputV1.isArchived) &&
Objects.equals(this.name, conditionMonitorOutputV1.name) &&
Objects.equals(this.queryRangeLookAhead, conditionMonitorOutputV1.queryRangeLookAhead) &&
Objects.equals(this.statusMessage, conditionMonitorOutputV1.statusMessage) &&
Objects.equals(this.type, conditionMonitorOutputV1.type) &&
Objects.equals(this.updatedAt, conditionMonitorOutputV1.updatedAt);
}
@Override
public int hashCode() {
return Objects.hash(conditionIds, createdAt, creator, creatorId, cronSchedule, cronScheduleDescription, description, effectivePermissions, enabled, id, isArchived, name, queryRangeLookAhead, statusMessage, type, updatedAt);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ConditionMonitorOutputV1 {\n");
sb.append(" conditionIds: ").append(toIndentedString(conditionIds)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" creator: ").append(toIndentedString(creator)).append("\n");
sb.append(" creatorId: ").append(toIndentedString(creatorId)).append("\n");
sb.append(" cronSchedule: ").append(toIndentedString(cronSchedule)).append("\n");
sb.append(" cronScheduleDescription: ").append(toIndentedString(cronScheduleDescription)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" effectivePermissions: ").append(toIndentedString(effectivePermissions)).append("\n");
sb.append(" enabled: ").append(toIndentedString(enabled)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" isArchived: ").append(toIndentedString(isArchived)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" queryRangeLookAhead: ").append(toIndentedString(queryRangeLookAhead)).append("\n");
sb.append(" statusMessage: ").append(toIndentedString(statusMessage)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).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 ");
}
}