
com.influxdb.client.domain.DBRPUpdate 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 java.io.IOException;
/**
* DBRPUpdate
*/
public class DBRPUpdate {
public static final String SERIALIZED_NAME_RETENTION_POLICY = "retention_policy";
@SerializedName(SERIALIZED_NAME_RETENTION_POLICY)
private String retentionPolicy;
public static final String SERIALIZED_NAME_DEFAULT = "default";
@SerializedName(SERIALIZED_NAME_DEFAULT)
private Boolean _default;
public DBRPUpdate retentionPolicy(String retentionPolicy) {
this.retentionPolicy = retentionPolicy;
return this;
}
/**
* InfluxDB v1 retention policy
* @return retentionPolicy
**/
public String getRetentionPolicy() {
return retentionPolicy;
}
public void setRetentionPolicy(String retentionPolicy) {
this.retentionPolicy = retentionPolicy;
}
public DBRPUpdate _default(Boolean _default) {
this._default = _default;
return this;
}
/**
* Get _default
* @return _default
**/
public Boolean getDefault() {
return _default;
}
public void setDefault(Boolean _default) {
this._default = _default;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DBRPUpdate dbRPUpdate = (DBRPUpdate) o;
return Objects.equals(this.retentionPolicy, dbRPUpdate.retentionPolicy) &&
Objects.equals(this._default, dbRPUpdate._default);
}
@Override
public int hashCode() {
return Objects.hash(retentionPolicy, _default);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DBRPUpdate {\n");
sb.append(" retentionPolicy: ").append(toIndentedString(retentionPolicy)).append("\n");
sb.append(" _default: ").append(toIndentedString(_default)).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