com.huaweicloud.sdk.cpts.v1.model.UpdateProjectRequestBody Maven / Gradle / Ivy
package com.huaweicloud.sdk.cpts.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
/**
* UpdateProjectRequestBody
*/
public class UpdateProjectRequestBody {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "id")
private Integer id;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "name")
private String name;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "description")
private String description;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "variables_no_file")
private List variablesNoFile = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "source")
private Integer source;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "external_params")
private Object externalParams;
public UpdateProjectRequestBody withId(Integer id) {
this.id = id;
return this;
}
/**
* 工程id
* minimum: 0
* maximum: 2147483647
* @return id
*/
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public UpdateProjectRequestBody withName(String name) {
this.name = name;
return this;
}
/**
* 工程名称
* @return name
*/
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public UpdateProjectRequestBody withDescription(String description) {
this.description = description;
return this;
}
/**
* 工程描述
* @return description
*/
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public UpdateProjectRequestBody withVariablesNoFile(List variablesNoFile) {
this.variablesNoFile = variablesNoFile;
return this;
}
public UpdateProjectRequestBody addVariablesNoFileItem(String variablesNoFileItem) {
if (this.variablesNoFile == null) {
this.variablesNoFile = new ArrayList<>();
}
this.variablesNoFile.add(variablesNoFileItem);
return this;
}
public UpdateProjectRequestBody withVariablesNoFile(Consumer> variablesNoFileSetter) {
if (this.variablesNoFile == null) {
this.variablesNoFile = new ArrayList<>();
}
variablesNoFileSetter.accept(this.variablesNoFile);
return this;
}
/**
* 导入工程时,缺失的存在于变量文件中的变量
* @return variablesNoFile
*/
public List getVariablesNoFile() {
return variablesNoFile;
}
public void setVariablesNoFile(List variablesNoFile) {
this.variablesNoFile = variablesNoFile;
}
public UpdateProjectRequestBody withSource(Integer source) {
this.source = source;
return this;
}
/**
* 来源(0-PerfTest;2-CloudTest)
* minimum: 0
* maximum: 2147483647
* @return source
*/
public Integer getSource() {
return source;
}
public void setSource(Integer source) {
this.source = source;
}
public UpdateProjectRequestBody withExternalParams(Object externalParams) {
this.externalParams = externalParams;
return this;
}
/**
* 扩展参数
* @return externalParams
*/
public Object getExternalParams() {
return externalParams;
}
public void setExternalParams(Object externalParams) {
this.externalParams = externalParams;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
UpdateProjectRequestBody that = (UpdateProjectRequestBody) obj;
return Objects.equals(this.id, that.id) && Objects.equals(this.name, that.name)
&& Objects.equals(this.description, that.description)
&& Objects.equals(this.variablesNoFile, that.variablesNoFile) && Objects.equals(this.source, that.source)
&& Objects.equals(this.externalParams, that.externalParams);
}
@Override
public int hashCode() {
return Objects.hash(id, name, description, variablesNoFile, source, externalParams);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateProjectRequestBody {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" variablesNoFile: ").append(toIndentedString(variablesNoFile)).append("\n");
sb.append(" source: ").append(toIndentedString(source)).append("\n");
sb.append(" externalParams: ").append(toIndentedString(externalParams)).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 ");
}
}