com.dominodatalab.api.model.DominoGruzApiPreparedRepository Maven / Gradle / Ivy
/*
* Domino Data Lab API v4
* This API is going to provide access to all the Domino functions available in the user interface. To authenticate your requests, include your API Key (which you can find on your account page) with the header X-Domino-Api-Key.
*
* The version of the OpenAPI document: 4.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.dominodatalab.api.model;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.StringJoiner;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* DominoGruzApiPreparedRepository
*/
@JsonPropertyOrder({
DominoGruzApiPreparedRepository.JSON_PROPERTY_ID,
DominoGruzApiPreparedRepository.JSON_PROPERTY_NAME,
DominoGruzApiPreparedRepository.JSON_PROPERTY_URI_HOST,
DominoGruzApiPreparedRepository.JSON_PROPERTY_URI_PORT,
DominoGruzApiPreparedRepository.JSON_PROPERTY_URI_PATH,
DominoGruzApiPreparedRepository.JSON_PROPERTY_SERVICE_PROVIDER,
DominoGruzApiPreparedRepository.JSON_PROPERTY_REF,
DominoGruzApiPreparedRepository.JSON_PROPERTY_STARTING_REF,
DominoGruzApiPreparedRepository.JSON_PROPERTY_FINISHED_REF,
DominoGruzApiPreparedRepository.JSON_PROPERTY_STARTING_BRANCH,
DominoGruzApiPreparedRepository.JSON_PROPERTY_FINISHED_BRANCH,
DominoGruzApiPreparedRepository.JSON_PROPERTY_IS_FEATURE_STORE
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoGruzApiPreparedRepository {
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_URI_HOST = "uriHost";
private String uriHost;
public static final String JSON_PROPERTY_URI_PORT = "uriPort";
private String uriPort;
public static final String JSON_PROPERTY_URI_PATH = "uriPath";
private String uriPath;
public static final String JSON_PROPERTY_SERVICE_PROVIDER = "serviceProvider";
private String serviceProvider;
public static final String JSON_PROPERTY_REF = "ref";
private String ref;
public static final String JSON_PROPERTY_STARTING_REF = "startingRef";
private String startingRef;
public static final String JSON_PROPERTY_FINISHED_REF = "finishedRef";
private String finishedRef;
public static final String JSON_PROPERTY_STARTING_BRANCH = "startingBranch";
private String startingBranch;
public static final String JSON_PROPERTY_FINISHED_BRANCH = "finishedBranch";
private String finishedBranch;
public static final String JSON_PROPERTY_IS_FEATURE_STORE = "isFeatureStore";
private Boolean isFeatureStore;
public DominoGruzApiPreparedRepository() {
}
public DominoGruzApiPreparedRepository id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(String id) {
this.id = id;
}
public DominoGruzApiPreparedRepository name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setName(String name) {
this.name = name;
}
public DominoGruzApiPreparedRepository uriHost(String uriHost) {
this.uriHost = uriHost;
return this;
}
/**
* Get uriHost
* @return uriHost
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_URI_HOST)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getUriHost() {
return uriHost;
}
@JsonProperty(JSON_PROPERTY_URI_HOST)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUriHost(String uriHost) {
this.uriHost = uriHost;
}
public DominoGruzApiPreparedRepository uriPort(String uriPort) {
this.uriPort = uriPort;
return this;
}
/**
* Get uriPort
* @return uriPort
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_URI_PORT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getUriPort() {
return uriPort;
}
@JsonProperty(JSON_PROPERTY_URI_PORT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUriPort(String uriPort) {
this.uriPort = uriPort;
}
public DominoGruzApiPreparedRepository uriPath(String uriPath) {
this.uriPath = uriPath;
return this;
}
/**
* Get uriPath
* @return uriPath
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_URI_PATH)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getUriPath() {
return uriPath;
}
@JsonProperty(JSON_PROPERTY_URI_PATH)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setUriPath(String uriPath) {
this.uriPath = uriPath;
}
public DominoGruzApiPreparedRepository serviceProvider(String serviceProvider) {
this.serviceProvider = serviceProvider;
return this;
}
/**
* Get serviceProvider
* @return serviceProvider
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_SERVICE_PROVIDER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getServiceProvider() {
return serviceProvider;
}
@JsonProperty(JSON_PROPERTY_SERVICE_PROVIDER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setServiceProvider(String serviceProvider) {
this.serviceProvider = serviceProvider;
}
public DominoGruzApiPreparedRepository ref(String ref) {
this.ref = ref;
return this;
}
/**
* Get ref
* @return ref
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_REF)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getRef() {
return ref;
}
@JsonProperty(JSON_PROPERTY_REF)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setRef(String ref) {
this.ref = ref;
}
public DominoGruzApiPreparedRepository startingRef(String startingRef) {
this.startingRef = startingRef;
return this;
}
/**
* Get startingRef
* @return startingRef
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STARTING_REF)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getStartingRef() {
return startingRef;
}
@JsonProperty(JSON_PROPERTY_STARTING_REF)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setStartingRef(String startingRef) {
this.startingRef = startingRef;
}
public DominoGruzApiPreparedRepository finishedRef(String finishedRef) {
this.finishedRef = finishedRef;
return this;
}
/**
* Get finishedRef
* @return finishedRef
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FINISHED_REF)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFinishedRef() {
return finishedRef;
}
@JsonProperty(JSON_PROPERTY_FINISHED_REF)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFinishedRef(String finishedRef) {
this.finishedRef = finishedRef;
}
public DominoGruzApiPreparedRepository startingBranch(String startingBranch) {
this.startingBranch = startingBranch;
return this;
}
/**
* Get startingBranch
* @return startingBranch
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STARTING_BRANCH)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getStartingBranch() {
return startingBranch;
}
@JsonProperty(JSON_PROPERTY_STARTING_BRANCH)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setStartingBranch(String startingBranch) {
this.startingBranch = startingBranch;
}
public DominoGruzApiPreparedRepository finishedBranch(String finishedBranch) {
this.finishedBranch = finishedBranch;
return this;
}
/**
* Get finishedBranch
* @return finishedBranch
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FINISHED_BRANCH)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFinishedBranch() {
return finishedBranch;
}
@JsonProperty(JSON_PROPERTY_FINISHED_BRANCH)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFinishedBranch(String finishedBranch) {
this.finishedBranch = finishedBranch;
}
public DominoGruzApiPreparedRepository isFeatureStore(Boolean isFeatureStore) {
this.isFeatureStore = isFeatureStore;
return this;
}
/**
* Get isFeatureStore
* @return isFeatureStore
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_FEATURE_STORE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getIsFeatureStore() {
return isFeatureStore;
}
@JsonProperty(JSON_PROPERTY_IS_FEATURE_STORE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setIsFeatureStore(Boolean isFeatureStore) {
this.isFeatureStore = isFeatureStore;
}
/**
* Return true if this domino.gruz.api.PreparedRepository object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DominoGruzApiPreparedRepository dominoGruzApiPreparedRepository = (DominoGruzApiPreparedRepository) o;
return Objects.equals(this.id, dominoGruzApiPreparedRepository.id) &&
Objects.equals(this.name, dominoGruzApiPreparedRepository.name) &&
Objects.equals(this.uriHost, dominoGruzApiPreparedRepository.uriHost) &&
Objects.equals(this.uriPort, dominoGruzApiPreparedRepository.uriPort) &&
Objects.equals(this.uriPath, dominoGruzApiPreparedRepository.uriPath) &&
Objects.equals(this.serviceProvider, dominoGruzApiPreparedRepository.serviceProvider) &&
Objects.equals(this.ref, dominoGruzApiPreparedRepository.ref) &&
Objects.equals(this.startingRef, dominoGruzApiPreparedRepository.startingRef) &&
Objects.equals(this.finishedRef, dominoGruzApiPreparedRepository.finishedRef) &&
Objects.equals(this.startingBranch, dominoGruzApiPreparedRepository.startingBranch) &&
Objects.equals(this.finishedBranch, dominoGruzApiPreparedRepository.finishedBranch) &&
Objects.equals(this.isFeatureStore, dominoGruzApiPreparedRepository.isFeatureStore);
}
@Override
public int hashCode() {
return Objects.hash(id, name, uriHost, uriPort, uriPath, serviceProvider, ref, startingRef, finishedRef, startingBranch, finishedBranch, isFeatureStore);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DominoGruzApiPreparedRepository {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" uriHost: ").append(toIndentedString(uriHost)).append("\n");
sb.append(" uriPort: ").append(toIndentedString(uriPort)).append("\n");
sb.append(" uriPath: ").append(toIndentedString(uriPath)).append("\n");
sb.append(" serviceProvider: ").append(toIndentedString(serviceProvider)).append("\n");
sb.append(" ref: ").append(toIndentedString(ref)).append("\n");
sb.append(" startingRef: ").append(toIndentedString(startingRef)).append("\n");
sb.append(" finishedRef: ").append(toIndentedString(finishedRef)).append("\n");
sb.append(" startingBranch: ").append(toIndentedString(startingBranch)).append("\n");
sb.append(" finishedBranch: ").append(toIndentedString(finishedBranch)).append("\n");
sb.append(" isFeatureStore: ").append(toIndentedString(isFeatureStore)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
/**
* Convert the instance into URL query string.
*
* @return URL query string
*/
public String toUrlQueryString() {
return toUrlQueryString(null);
}
/**
* Convert the instance into URL query string.
*
* @param prefix prefix of the query string
* @return URL query string
*/
public String toUrlQueryString(String prefix) {
String suffix = "";
String containerSuffix = "";
String containerPrefix = "";
if (prefix == null) {
// style=form, explode=true, e.g. /pet?name=cat&type=manx
prefix = "";
} else {
// deepObject style e.g. /pet?id[name]=cat&id[type]=manx
prefix = prefix + "[";
suffix = "]";
containerSuffix = "]";
containerPrefix = "[";
}
StringJoiner joiner = new StringJoiner("&");
// add `id` to the URL query string
if (getId() != null) {
joiner.add(String.format("%sid%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `name` to the URL query string
if (getName() != null) {
joiner.add(String.format("%sname%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `uriHost` to the URL query string
if (getUriHost() != null) {
joiner.add(String.format("%suriHost%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getUriHost()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `uriPort` to the URL query string
if (getUriPort() != null) {
joiner.add(String.format("%suriPort%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getUriPort()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `uriPath` to the URL query string
if (getUriPath() != null) {
joiner.add(String.format("%suriPath%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getUriPath()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `serviceProvider` to the URL query string
if (getServiceProvider() != null) {
joiner.add(String.format("%sserviceProvider%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getServiceProvider()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `ref` to the URL query string
if (getRef() != null) {
joiner.add(String.format("%sref%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getRef()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `startingRef` to the URL query string
if (getStartingRef() != null) {
joiner.add(String.format("%sstartingRef%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getStartingRef()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `finishedRef` to the URL query string
if (getFinishedRef() != null) {
joiner.add(String.format("%sfinishedRef%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getFinishedRef()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `startingBranch` to the URL query string
if (getStartingBranch() != null) {
joiner.add(String.format("%sstartingBranch%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getStartingBranch()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `finishedBranch` to the URL query string
if (getFinishedBranch() != null) {
joiner.add(String.format("%sfinishedBranch%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getFinishedBranch()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `isFeatureStore` to the URL query string
if (getIsFeatureStore() != null) {
joiner.add(String.format("%sisFeatureStore%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getIsFeatureStore()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy