com.huaweicloud.sdk.codeartsinspector.v3.model.BatchCreateHostsRequestBody Maven / Gradle / Ivy
package com.huaweicloud.sdk.codeartsinspector.v3.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;
/**
* BatchCreateHostsRequestBody
*/
public class BatchCreateHostsRequestBody {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "hosts")
private List hosts = null;
public BatchCreateHostsRequestBody withHosts(List hosts) {
this.hosts = hosts;
return this;
}
public BatchCreateHostsRequestBody addHostsItem(HostItem hostsItem) {
if (this.hosts == null) {
this.hosts = new ArrayList<>();
}
this.hosts.add(hostsItem);
return this;
}
public BatchCreateHostsRequestBody withHosts(Consumer> hostsSetter) {
if (this.hosts == null) {
this.hosts = new ArrayList<>();
}
hostsSetter.accept(this.hosts);
return this;
}
/**
* 主机资产列表
* @return hosts
*/
public List getHosts() {
return hosts;
}
public void setHosts(List hosts) {
this.hosts = hosts;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
BatchCreateHostsRequestBody that = (BatchCreateHostsRequestBody) obj;
return Objects.equals(this.hosts, that.hosts);
}
@Override
public int hashCode() {
return Objects.hash(hosts);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BatchCreateHostsRequestBody {\n");
sb.append(" hosts: ").append(toIndentedString(hosts)).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 ");
}
}