com.dominodatalab.api.model.DominoModelmanagerApiModelBuild 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;
/**
* DominoModelmanagerApiModelBuild
*/
@JsonPropertyOrder({
DominoModelmanagerApiModelBuild.JSON_PROPERTY_MODEL_ID,
DominoModelmanagerApiModelBuild.JSON_PROPERTY_NAME,
DominoModelmanagerApiModelBuild.JSON_PROPERTY_DESCRIPTION,
DominoModelmanagerApiModelBuild.JSON_PROPERTY_ENVIRONMENT_ID,
DominoModelmanagerApiModelBuild.JSON_PROPERTY_PROJECT_ID,
DominoModelmanagerApiModelBuild.JSON_PROPERTY_PROJECT_NAME,
DominoModelmanagerApiModelBuild.JSON_PROPERTY_BUILD_STATUS,
DominoModelmanagerApiModelBuild.JSON_PROPERTY_MODEL_VERSION_ID,
DominoModelmanagerApiModelBuild.JSON_PROPERTY_MODEL_VERSION_NUMBER
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoModelmanagerApiModelBuild {
public static final String JSON_PROPERTY_MODEL_ID = "modelId";
private String modelId;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;
public static final String JSON_PROPERTY_ENVIRONMENT_ID = "environmentId";
private String environmentId;
public static final String JSON_PROPERTY_PROJECT_ID = "projectId";
private String projectId;
public static final String JSON_PROPERTY_PROJECT_NAME = "projectName";
private String projectName;
/**
* Gets or Sets buildStatus
*/
public enum BuildStatusEnum {
PREPARING("preparing"),
BUILDING("building"),
COMPLETE("complete"),
FAILED("failed");
private String value;
BuildStatusEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static BuildStatusEnum fromValue(String value) {
for (BuildStatusEnum b : BuildStatusEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
public static final String JSON_PROPERTY_BUILD_STATUS = "buildStatus";
private BuildStatusEnum buildStatus;
public static final String JSON_PROPERTY_MODEL_VERSION_ID = "modelVersionId";
private String modelVersionId;
public static final String JSON_PROPERTY_MODEL_VERSION_NUMBER = "modelVersionNumber";
private Integer modelVersionNumber;
public DominoModelmanagerApiModelBuild() {
}
public DominoModelmanagerApiModelBuild modelId(String modelId) {
this.modelId = modelId;
return this;
}
/**
* Get modelId
* @return modelId
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_MODEL_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getModelId() {
return modelId;
}
@JsonProperty(JSON_PROPERTY_MODEL_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setModelId(String modelId) {
this.modelId = modelId;
}
public DominoModelmanagerApiModelBuild 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 DominoModelmanagerApiModelBuild description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDescription() {
return description;
}
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDescription(String description) {
this.description = description;
}
public DominoModelmanagerApiModelBuild environmentId(String environmentId) {
this.environmentId = environmentId;
return this;
}
/**
* Get environmentId
* @return environmentId
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ENVIRONMENT_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getEnvironmentId() {
return environmentId;
}
@JsonProperty(JSON_PROPERTY_ENVIRONMENT_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setEnvironmentId(String environmentId) {
this.environmentId = environmentId;
}
public DominoModelmanagerApiModelBuild projectId(String projectId) {
this.projectId = projectId;
return this;
}
/**
* Get projectId
* @return projectId
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PROJECT_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getProjectId() {
return projectId;
}
@JsonProperty(JSON_PROPERTY_PROJECT_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setProjectId(String projectId) {
this.projectId = projectId;
}
public DominoModelmanagerApiModelBuild projectName(String projectName) {
this.projectName = projectName;
return this;
}
/**
* Get projectName
* @return projectName
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PROJECT_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getProjectName() {
return projectName;
}
@JsonProperty(JSON_PROPERTY_PROJECT_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public DominoModelmanagerApiModelBuild buildStatus(BuildStatusEnum buildStatus) {
this.buildStatus = buildStatus;
return this;
}
/**
* Get buildStatus
* @return buildStatus
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_BUILD_STATUS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public BuildStatusEnum getBuildStatus() {
return buildStatus;
}
@JsonProperty(JSON_PROPERTY_BUILD_STATUS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setBuildStatus(BuildStatusEnum buildStatus) {
this.buildStatus = buildStatus;
}
public DominoModelmanagerApiModelBuild modelVersionId(String modelVersionId) {
this.modelVersionId = modelVersionId;
return this;
}
/**
* Get modelVersionId
* @return modelVersionId
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_MODEL_VERSION_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getModelVersionId() {
return modelVersionId;
}
@JsonProperty(JSON_PROPERTY_MODEL_VERSION_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setModelVersionId(String modelVersionId) {
this.modelVersionId = modelVersionId;
}
public DominoModelmanagerApiModelBuild modelVersionNumber(Integer modelVersionNumber) {
this.modelVersionNumber = modelVersionNumber;
return this;
}
/**
* Get modelVersionNumber
* @return modelVersionNumber
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_MODEL_VERSION_NUMBER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Integer getModelVersionNumber() {
return modelVersionNumber;
}
@JsonProperty(JSON_PROPERTY_MODEL_VERSION_NUMBER)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setModelVersionNumber(Integer modelVersionNumber) {
this.modelVersionNumber = modelVersionNumber;
}
/**
* Return true if this domino.modelmanager.api.ModelBuild object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DominoModelmanagerApiModelBuild dominoModelmanagerApiModelBuild = (DominoModelmanagerApiModelBuild) o;
return Objects.equals(this.modelId, dominoModelmanagerApiModelBuild.modelId) &&
Objects.equals(this.name, dominoModelmanagerApiModelBuild.name) &&
Objects.equals(this.description, dominoModelmanagerApiModelBuild.description) &&
Objects.equals(this.environmentId, dominoModelmanagerApiModelBuild.environmentId) &&
Objects.equals(this.projectId, dominoModelmanagerApiModelBuild.projectId) &&
Objects.equals(this.projectName, dominoModelmanagerApiModelBuild.projectName) &&
Objects.equals(this.buildStatus, dominoModelmanagerApiModelBuild.buildStatus) &&
Objects.equals(this.modelVersionId, dominoModelmanagerApiModelBuild.modelVersionId) &&
Objects.equals(this.modelVersionNumber, dominoModelmanagerApiModelBuild.modelVersionNumber);
}
@Override
public int hashCode() {
return Objects.hash(modelId, name, description, environmentId, projectId, projectName, buildStatus, modelVersionId, modelVersionNumber);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DominoModelmanagerApiModelBuild {\n");
sb.append(" modelId: ").append(toIndentedString(modelId)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" environmentId: ").append(toIndentedString(environmentId)).append("\n");
sb.append(" projectId: ").append(toIndentedString(projectId)).append("\n");
sb.append(" projectName: ").append(toIndentedString(projectName)).append("\n");
sb.append(" buildStatus: ").append(toIndentedString(buildStatus)).append("\n");
sb.append(" modelVersionId: ").append(toIndentedString(modelVersionId)).append("\n");
sb.append(" modelVersionNumber: ").append(toIndentedString(modelVersionNumber)).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 `modelId` to the URL query string
if (getModelId() != null) {
joiner.add(String.format("%smodelId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getModelId()), 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 `description` to the URL query string
if (getDescription() != null) {
joiner.add(String.format("%sdescription%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getDescription()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `environmentId` to the URL query string
if (getEnvironmentId() != null) {
joiner.add(String.format("%senvironmentId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getEnvironmentId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `projectId` to the URL query string
if (getProjectId() != null) {
joiner.add(String.format("%sprojectId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getProjectId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `projectName` to the URL query string
if (getProjectName() != null) {
joiner.add(String.format("%sprojectName%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getProjectName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `buildStatus` to the URL query string
if (getBuildStatus() != null) {
joiner.add(String.format("%sbuildStatus%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getBuildStatus()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `modelVersionId` to the URL query string
if (getModelVersionId() != null) {
joiner.add(String.format("%smodelVersionId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getModelVersionId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `modelVersionNumber` to the URL query string
if (getModelVersionNumber() != null) {
joiner.add(String.format("%smodelVersionNumber%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getModelVersionNumber()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy