com.huaweicloud.sdk.vas.v2.model.TaskOutputLocalpath Maven / Gradle / Ivy
package com.huaweicloud.sdk.vas.v2.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;
/**
* 输出为localpath类型时的配置信息
*/
public class TaskOutputLocalpath {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "mount_source_path")
private String mountSourcePath;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "data_category")
private List dataCategory = null;
public TaskOutputLocalpath withMountSourcePath(String mountSourcePath) {
this.mountSourcePath = mountSourcePath;
return this;
}
/**
* 挂载的源路径,存放作业运行结果的路径,选用localpath类型输出时必填。必须为linux路径,且为选用的边缘运行池挂载路径的子路径,长度不超过255。
* @return mountSourcePath
*/
public String getMountSourcePath() {
return mountSourcePath;
}
public void setMountSourcePath(String mountSourcePath) {
this.mountSourcePath = mountSourcePath;
}
public TaskOutputLocalpath withDataCategory(List dataCategory) {
this.dataCategory = dataCategory;
return this;
}
public TaskOutputLocalpath addDataCategoryItem(String dataCategoryItem) {
if (this.dataCategory == null) {
this.dataCategory = new ArrayList<>();
}
this.dataCategory.add(dataCategoryItem);
return this;
}
public TaskOutputLocalpath withDataCategory(Consumer> dataCategorySetter) {
if (this.dataCategory == null) {
this.dataCategory = new ArrayList<>();
}
dataCategorySetter.accept(this.dataCategory);
return this;
}
/**
* 作业输出数据类别的列表,选填,仅部分服务需要。当输出类型下有这个列表时,表示希望这个输出类型下存放dataCategory列表内的数据。
* @return dataCategory
*/
public List getDataCategory() {
return dataCategory;
}
public void setDataCategory(List dataCategory) {
this.dataCategory = dataCategory;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
TaskOutputLocalpath that = (TaskOutputLocalpath) obj;
return Objects.equals(this.mountSourcePath, that.mountSourcePath)
&& Objects.equals(this.dataCategory, that.dataCategory);
}
@Override
public int hashCode() {
return Objects.hash(mountSourcePath, dataCategory);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TaskOutputLocalpath {\n");
sb.append(" mountSourcePath: ").append(toIndentedString(mountSourcePath)).append("\n");
sb.append(" dataCategory: ").append(toIndentedString(dataCategory)).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 ");
}
}