com.volcengine.waf.model.UpdateBlockRuleRequest Maven / Gradle / Ivy
The newest version!
/*
* waf
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: common-version
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.volcengine.waf.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.volcengine.waf.model.AccurateForUpdateBlockRuleInput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* UpdateBlockRuleRequest
*/
public class UpdateBlockRuleRequest {
@SerializedName("Accurate")
private AccurateForUpdateBlockRuleInput accurate = null;
/**
* Gets or Sets action
*/
@JsonAdapter(ActionEnum.Adapter.class)
public enum ActionEnum {
@SerializedName("observe")
OBSERVE("observe"),
@SerializedName("block")
BLOCK("block");
private String value;
ActionEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ActionEnum fromValue(String input) {
for (ActionEnum b : ActionEnum.values()) {
if (b.value.equals(input)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final ActionEnum enumeration) throws IOException {
jsonWriter.value(String.valueOf(enumeration.getValue()));
}
@Override
public ActionEnum read(final JsonReader jsonReader) throws IOException {
Object value = jsonReader.nextString();
return ActionEnum.fromValue((String)(value));
}
}
} @SerializedName("Action")
private ActionEnum action = null;
@SerializedName("Advanced")
private Integer advanced = null;
@SerializedName("ClientIp")
private String clientIp = null;
@SerializedName("Description")
private String description = null;
@SerializedName("Enable")
private Integer enable = null;
@SerializedName("Host")
private String host = null;
@SerializedName("Id")
private Integer id = null;
@SerializedName("IpAddType")
private Integer ipAddType = null;
@SerializedName("IpGroupId")
private List ipGroupId = null;
@SerializedName("Name")
private String name = null;
@SerializedName("Url")
private String url = null;
public UpdateBlockRuleRequest accurate(AccurateForUpdateBlockRuleInput accurate) {
this.accurate = accurate;
return this;
}
/**
* Get accurate
* @return accurate
**/
@Valid
@Schema(description = "")
public AccurateForUpdateBlockRuleInput getAccurate() {
return accurate;
}
public void setAccurate(AccurateForUpdateBlockRuleInput accurate) {
this.accurate = accurate;
}
public UpdateBlockRuleRequest action(ActionEnum action) {
this.action = action;
return this;
}
/**
* Get action
* @return action
**/
@NotNull
@Schema(required = true, description = "")
public ActionEnum getAction() {
return action;
}
public void setAction(ActionEnum action) {
this.action = action;
}
public UpdateBlockRuleRequest advanced(Integer advanced) {
this.advanced = advanced;
return this;
}
/**
* Get advanced
* @return advanced
**/
@NotNull
@Schema(required = true, description = "")
public Integer getAdvanced() {
return advanced;
}
public void setAdvanced(Integer advanced) {
this.advanced = advanced;
}
public UpdateBlockRuleRequest clientIp(String clientIp) {
this.clientIp = clientIp;
return this;
}
/**
* Get clientIp
* @return clientIp
**/
@Schema(description = "")
public String getClientIp() {
return clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public UpdateBlockRuleRequest description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@Schema(description = "")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public UpdateBlockRuleRequest enable(Integer enable) {
this.enable = enable;
return this;
}
/**
* Get enable
* @return enable
**/
@Schema(description = "")
public Integer getEnable() {
return enable;
}
public void setEnable(Integer enable) {
this.enable = enable;
}
public UpdateBlockRuleRequest host(String host) {
this.host = host;
return this;
}
/**
* Get host
* @return host
**/
@NotNull
@Schema(required = true, description = "")
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public UpdateBlockRuleRequest id(Integer id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@NotNull
@Schema(required = true, description = "")
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public UpdateBlockRuleRequest ipAddType(Integer ipAddType) {
this.ipAddType = ipAddType;
return this;
}
/**
* Get ipAddType
* @return ipAddType
**/
@Schema(description = "")
public Integer getIpAddType() {
return ipAddType;
}
public void setIpAddType(Integer ipAddType) {
this.ipAddType = ipAddType;
}
public UpdateBlockRuleRequest ipGroupId(List ipGroupId) {
this.ipGroupId = ipGroupId;
return this;
}
public UpdateBlockRuleRequest addIpGroupIdItem(Integer ipGroupIdItem) {
if (this.ipGroupId == null) {
this.ipGroupId = new ArrayList();
}
this.ipGroupId.add(ipGroupIdItem);
return this;
}
/**
* Get ipGroupId
* @return ipGroupId
**/
@Schema(description = "")
public List getIpGroupId() {
return ipGroupId;
}
public void setIpGroupId(List ipGroupId) {
this.ipGroupId = ipGroupId;
}
public UpdateBlockRuleRequest name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@NotNull
@Schema(required = true, description = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public UpdateBlockRuleRequest url(String url) {
this.url = url;
return this;
}
/**
* Get url
* @return url
**/
@NotNull
@Schema(required = true, description = "")
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UpdateBlockRuleRequest updateBlockRuleRequest = (UpdateBlockRuleRequest) o;
return Objects.equals(this.accurate, updateBlockRuleRequest.accurate) &&
Objects.equals(this.action, updateBlockRuleRequest.action) &&
Objects.equals(this.advanced, updateBlockRuleRequest.advanced) &&
Objects.equals(this.clientIp, updateBlockRuleRequest.clientIp) &&
Objects.equals(this.description, updateBlockRuleRequest.description) &&
Objects.equals(this.enable, updateBlockRuleRequest.enable) &&
Objects.equals(this.host, updateBlockRuleRequest.host) &&
Objects.equals(this.id, updateBlockRuleRequest.id) &&
Objects.equals(this.ipAddType, updateBlockRuleRequest.ipAddType) &&
Objects.equals(this.ipGroupId, updateBlockRuleRequest.ipGroupId) &&
Objects.equals(this.name, updateBlockRuleRequest.name) &&
Objects.equals(this.url, updateBlockRuleRequest.url);
}
@Override
public int hashCode() {
return Objects.hash(accurate, action, advanced, clientIp, description, enable, host, id, ipAddType, ipGroupId, name, url);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateBlockRuleRequest {\n");
sb.append(" accurate: ").append(toIndentedString(accurate)).append("\n");
sb.append(" action: ").append(toIndentedString(action)).append("\n");
sb.append(" advanced: ").append(toIndentedString(advanced)).append("\n");
sb.append(" clientIp: ").append(toIndentedString(clientIp)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" enable: ").append(toIndentedString(enable)).append("\n");
sb.append(" host: ").append(toIndentedString(host)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" ipAddType: ").append(toIndentedString(ipAddType)).append("\n");
sb.append(" ipGroupId: ").append(toIndentedString(ipGroupId)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" url: ").append(toIndentedString(url)).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 ");
}
}