
com.influxdb.client.domain.OnboardingRequest 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;
/**
* OnboardingRequest
*/
public class OnboardingRequest {
public static final String SERIALIZED_NAME_USERNAME = "username";
@SerializedName(SERIALIZED_NAME_USERNAME)
private String username;
public static final String SERIALIZED_NAME_PASSWORD = "password";
@SerializedName(SERIALIZED_NAME_PASSWORD)
private String password;
public static final String SERIALIZED_NAME_ORG = "org";
@SerializedName(SERIALIZED_NAME_ORG)
private String org;
public static final String SERIALIZED_NAME_BUCKET = "bucket";
@SerializedName(SERIALIZED_NAME_BUCKET)
private String bucket;
public static final String SERIALIZED_NAME_RETENTION_PERIOD_SECONDS = "retentionPeriodSeconds";
@SerializedName(SERIALIZED_NAME_RETENTION_PERIOD_SECONDS)
private Long retentionPeriodSeconds;
public static final String SERIALIZED_NAME_RETENTION_PERIOD_HRS = "retentionPeriodHrs";
@SerializedName(SERIALIZED_NAME_RETENTION_PERIOD_HRS)
private Integer retentionPeriodHrs;
public static final String SERIALIZED_NAME_TOKEN = "token";
@SerializedName(SERIALIZED_NAME_TOKEN)
private String token;
public OnboardingRequest username(String username) {
this.username = username;
return this;
}
/**
* Get username
* @return username
**/
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public OnboardingRequest password(String password) {
this.password = password;
return this;
}
/**
* Get password
* @return password
**/
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public OnboardingRequest org(String org) {
this.org = org;
return this;
}
/**
* Get org
* @return org
**/
public String getOrg() {
return org;
}
public void setOrg(String org) {
this.org = org;
}
public OnboardingRequest bucket(String bucket) {
this.bucket = bucket;
return this;
}
/**
* Get bucket
* @return bucket
**/
public String getBucket() {
return bucket;
}
public void setBucket(String bucket) {
this.bucket = bucket;
}
public OnboardingRequest retentionPeriodSeconds(Long retentionPeriodSeconds) {
this.retentionPeriodSeconds = retentionPeriodSeconds;
return this;
}
/**
* Get retentionPeriodSeconds
* @return retentionPeriodSeconds
**/
public Long getRetentionPeriodSeconds() {
return retentionPeriodSeconds;
}
public void setRetentionPeriodSeconds(Long retentionPeriodSeconds) {
this.retentionPeriodSeconds = retentionPeriodSeconds;
}
public OnboardingRequest retentionPeriodHrs(Integer retentionPeriodHrs) {
this.retentionPeriodHrs = retentionPeriodHrs;
return this;
}
/**
* Retention period *in nanoseconds* for the new bucket. This key's name has been misleading since OSS 2.0 GA, please transition to use `retentionPeriodSeconds`
* @return retentionPeriodHrs
**/
public Integer getRetentionPeriodHrs() {
return retentionPeriodHrs;
}
public void setRetentionPeriodHrs(Integer retentionPeriodHrs) {
this.retentionPeriodHrs = retentionPeriodHrs;
}
public OnboardingRequest token(String token) {
this.token = token;
return this;
}
/**
* Authentication token to set on the initial user. If not specified, the server will generate a token.
* @return token
**/
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OnboardingRequest onboardingRequest = (OnboardingRequest) o;
return Objects.equals(this.username, onboardingRequest.username) &&
Objects.equals(this.password, onboardingRequest.password) &&
Objects.equals(this.org, onboardingRequest.org) &&
Objects.equals(this.bucket, onboardingRequest.bucket) &&
Objects.equals(this.retentionPeriodSeconds, onboardingRequest.retentionPeriodSeconds) &&
Objects.equals(this.retentionPeriodHrs, onboardingRequest.retentionPeriodHrs) &&
Objects.equals(this.token, onboardingRequest.token);
}
@Override
public int hashCode() {
return Objects.hash(username, password, org, bucket, retentionPeriodSeconds, retentionPeriodHrs, token);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OnboardingRequest {\n");
sb.append(" username: ").append(toIndentedString(username)).append("\n");
sb.append(" password: ").append(toIndentedString(password)).append("\n");
sb.append(" org: ").append(toIndentedString(org)).append("\n");
sb.append(" bucket: ").append(toIndentedString(bucket)).append("\n");
sb.append(" retentionPeriodSeconds: ").append(toIndentedString(retentionPeriodSeconds)).append("\n");
sb.append(" retentionPeriodHrs: ").append(toIndentedString(retentionPeriodHrs)).append("\n");
sb.append(" token: ").append(toIndentedString(token)).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