com.dominodatalab.pub.model.ModelApiSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domino-java-client Show documentation
Show all versions of domino-java-client Show documentation
Domino Data Lab API Client to connect to Domino web services using Java HTTP Client.
/*
* Domino Public API
* Domino Public API Endpoints
*
* The version of the OpenAPI document: 0.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.pub.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.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.dominodatalab.pub.invoker.ApiClient;
/**
* ModelApiSource
*/
@JsonPropertyOrder({
ModelApiSource.JSON_PROPERTY_EXCLUDE_FILES,
ModelApiSource.JSON_PROPERTY_FILE,
ModelApiSource.JSON_PROPERTY_FUNCTION,
ModelApiSource.JSON_PROPERTY_REGISTERED_MODEL_NAME,
ModelApiSource.JSON_PROPERTY_REGISTERED_MODEL_VERSION,
ModelApiSource.JSON_PROPERTY_TYPE
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-10-04T16:37:28.765500600-04:00[America/New_York]", comments = "Generator version: 7.8.0")
public class ModelApiSource {
public static final String JSON_PROPERTY_EXCLUDE_FILES = "excludeFiles";
private List excludeFiles = new ArrayList<>();
public static final String JSON_PROPERTY_FILE = "file";
private String _file;
public static final String JSON_PROPERTY_FUNCTION = "function";
private String function;
public static final String JSON_PROPERTY_REGISTERED_MODEL_NAME = "registeredModelName";
private String registeredModelName;
public static final String JSON_PROPERTY_REGISTERED_MODEL_VERSION = "registeredModelVersion";
private Integer registeredModelVersion;
/**
* The type of source of the Model API.
*/
public enum TypeEnum {
FILE("File"),
REGISTRY("Registry");
private String value;
TypeEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static TypeEnum fromValue(String value) {
for (TypeEnum b : TypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
public static final String JSON_PROPERTY_TYPE = "type";
private TypeEnum type;
public ModelApiSource() {
}
public ModelApiSource excludeFiles(List excludeFiles) {
this.excludeFiles = excludeFiles;
return this;
}
public ModelApiSource addExcludeFilesItem(String excludeFilesItem) {
if (this.excludeFiles == null) {
this.excludeFiles = new ArrayList<>();
}
this.excludeFiles.add(excludeFilesItem);
return this;
}
/**
* The files excluded from the Model API.
* @return excludeFiles
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXCLUDE_FILES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getExcludeFiles() {
return excludeFiles;
}
@JsonProperty(JSON_PROPERTY_EXCLUDE_FILES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setExcludeFiles(List excludeFiles) {
this.excludeFiles = excludeFiles;
}
public ModelApiSource _file(String _file) {
this._file = _file;
return this;
}
/**
* The name of the source file of the model served by the Model API.
* @return _file
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFile() {
return _file;
}
@JsonProperty(JSON_PROPERTY_FILE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFile(String _file) {
this._file = _file;
}
public ModelApiSource function(String function) {
this.function = function;
return this;
}
/**
* The function used to call the model served by the Model API.
* @return function
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FUNCTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFunction() {
return function;
}
@JsonProperty(JSON_PROPERTY_FUNCTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFunction(String function) {
this.function = function;
}
public ModelApiSource registeredModelName(String registeredModelName) {
this.registeredModelName = registeredModelName;
return this;
}
/**
* The name of the registered model served by the Model API.
* @return registeredModelName
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REGISTERED_MODEL_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRegisteredModelName() {
return registeredModelName;
}
@JsonProperty(JSON_PROPERTY_REGISTERED_MODEL_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRegisteredModelName(String registeredModelName) {
this.registeredModelName = registeredModelName;
}
public ModelApiSource registeredModelVersion(Integer registeredModelVersion) {
this.registeredModelVersion = registeredModelVersion;
return this;
}
/**
* The version of the registered model served by the Model API.
* @return registeredModelVersion
*/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REGISTERED_MODEL_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getRegisteredModelVersion() {
return registeredModelVersion;
}
@JsonProperty(JSON_PROPERTY_REGISTERED_MODEL_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRegisteredModelVersion(Integer registeredModelVersion) {
this.registeredModelVersion = registeredModelVersion;
}
public ModelApiSource type(TypeEnum type) {
this.type = type;
return this;
}
/**
* The type of source of the Model API.
* @return type
*/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public TypeEnum getType() {
return type;
}
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setType(TypeEnum type) {
this.type = type;
}
/**
* Return true if this ModelApiSource object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ModelApiSource modelApiSource = (ModelApiSource) o;
return Objects.equals(this.excludeFiles, modelApiSource.excludeFiles) &&
Objects.equals(this._file, modelApiSource._file) &&
Objects.equals(this.function, modelApiSource.function) &&
Objects.equals(this.registeredModelName, modelApiSource.registeredModelName) &&
Objects.equals(this.registeredModelVersion, modelApiSource.registeredModelVersion) &&
Objects.equals(this.type, modelApiSource.type);
}
@Override
public int hashCode() {
return Objects.hash(excludeFiles, _file, function, registeredModelName, registeredModelVersion, type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ModelApiSource {\n");
sb.append(" excludeFiles: ").append(toIndentedString(excludeFiles)).append("\n");
sb.append(" _file: ").append(toIndentedString(_file)).append("\n");
sb.append(" function: ").append(toIndentedString(function)).append("\n");
sb.append(" registeredModelName: ").append(toIndentedString(registeredModelName)).append("\n");
sb.append(" registeredModelVersion: ").append(toIndentedString(registeredModelVersion)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 `excludeFiles` to the URL query string
if (getExcludeFiles() != null) {
for (int i = 0; i < getExcludeFiles().size(); i++) {
joiner.add(String.format("%sexcludeFiles%s%s=%s", prefix, suffix,
"".equals(suffix) ? "" : String.format("%s%d%s", containerPrefix, i, containerSuffix),
URLEncoder.encode(ApiClient.valueToString(getExcludeFiles().get(i)), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
}
// add `file` to the URL query string
if (getFile() != null) {
joiner.add(String.format("%sfile%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getFile()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `function` to the URL query string
if (getFunction() != null) {
joiner.add(String.format("%sfunction%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getFunction()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `registeredModelName` to the URL query string
if (getRegisteredModelName() != null) {
joiner.add(String.format("%sregisteredModelName%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getRegisteredModelName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `registeredModelVersion` to the URL query string
if (getRegisteredModelVersion() != null) {
joiner.add(String.format("%sregisteredModelVersion%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getRegisteredModelVersion()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `type` to the URL query string
if (getType() != null) {
joiner.add(String.format("%stype%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getType()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy