
com.influxdb.client.domain.TaskCreateRequest Maven / Gradle / Ivy
/*
* InfluxDB OSS API Service
* The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
*
* OpenAPI spec version: 2.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.influxdb.client.domain;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.influxdb.client.domain.TaskStatusType;
import java.io.IOException;
/**
* TaskCreateRequest
*/
public class TaskCreateRequest {
public static final String SERIALIZED_NAME_ORG_I_D = "orgID";
@SerializedName(SERIALIZED_NAME_ORG_I_D)
private String orgID;
public static final String SERIALIZED_NAME_ORG = "org";
@SerializedName(SERIALIZED_NAME_ORG)
private String org;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private TaskStatusType status = null;
public static final String SERIALIZED_NAME_FLUX = "flux";
@SerializedName(SERIALIZED_NAME_FLUX)
private String flux;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public TaskCreateRequest orgID(String orgID) {
this.orgID = orgID;
return this;
}
/**
* The ID of the organization that owns this Task.
* @return orgID
**/
public String getOrgID() {
return orgID;
}
public void setOrgID(String orgID) {
this.orgID = orgID;
}
public TaskCreateRequest org(String org) {
this.org = org;
return this;
}
/**
* The name of the organization that owns this Task.
* @return org
**/
public String getOrg() {
return org;
}
public void setOrg(String org) {
this.org = org;
}
public TaskCreateRequest status(TaskStatusType status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
public TaskStatusType getStatus() {
return status;
}
public void setStatus(TaskStatusType status) {
this.status = status;
}
public TaskCreateRequest flux(String flux) {
this.flux = flux;
return this;
}
/**
* The Flux script to run for this task.
* @return flux
**/
public String getFlux() {
return flux;
}
public void setFlux(String flux) {
this.flux = flux;
}
public TaskCreateRequest description(String description) {
this.description = description;
return this;
}
/**
* An optional description of the task.
* @return description
**/
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TaskCreateRequest taskCreateRequest = (TaskCreateRequest) o;
return Objects.equals(this.orgID, taskCreateRequest.orgID) &&
Objects.equals(this.org, taskCreateRequest.org) &&
Objects.equals(this.status, taskCreateRequest.status) &&
Objects.equals(this.flux, taskCreateRequest.flux) &&
Objects.equals(this.description, taskCreateRequest.description);
}
@Override
public int hashCode() {
return Objects.hash(orgID, org, status, flux, description);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TaskCreateRequest {\n");
sb.append(" orgID: ").append(toIndentedString(orgID)).append("\n");
sb.append(" org: ").append(toIndentedString(org)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" flux: ").append(toIndentedString(flux)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy