com.huaweicloud.sdk.ims.v2.model.GlanceUpdateImageRequest Maven / Gradle / Ivy
package com.huaweicloud.sdk.ims.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;
/**
* Request Object
*/
public class GlanceUpdateImageRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "image_id")
private String imageId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "body")
private List body = null;
public GlanceUpdateImageRequest withImageId(String imageId) {
this.imageId = imageId;
return this;
}
/**
* 镜像ID
* @return imageId
*/
public String getImageId() {
return imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
public GlanceUpdateImageRequest withBody(List body) {
this.body = body;
return this;
}
public GlanceUpdateImageRequest addBodyItem(GlanceUpdateImageRequestBody bodyItem) {
if (this.body == null) {
this.body = new ArrayList<>();
}
this.body.add(bodyItem);
return this;
}
public GlanceUpdateImageRequest withBody(Consumer> bodySetter) {
if (this.body == null) {
this.body = new ArrayList<>();
}
bodySetter.accept(this.body);
return this;
}
/**
* Get body
* @return body
*/
public List getBody() {
return body;
}
public void setBody(List body) {
this.body = body;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
GlanceUpdateImageRequest that = (GlanceUpdateImageRequest) obj;
return Objects.equals(this.imageId, that.imageId) && Objects.equals(this.body, that.body);
}
@Override
public int hashCode() {
return Objects.hash(imageId, body);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GlanceUpdateImageRequest {\n");
sb.append(" imageId: ").append(toIndentedString(imageId)).append("\n");
sb.append(" body: ").append(toIndentedString(body)).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 ");
}
}