com.volcengine.fwcenter.model.ModifyVpcFirewallAclRulePositionRequest Maven / Gradle / Ivy
/*
* fwcenter
* 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.fwcenter.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 io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* ModifyVpcFirewallAclRulePositionRequest
*/
public class ModifyVpcFirewallAclRulePositionRequest {
@SerializedName("NewPrio")
private Integer newPrio = null;
@SerializedName("RuleId")
private String ruleId = null;
@SerializedName("VpcFirewallId")
private String vpcFirewallId = null;
public ModifyVpcFirewallAclRulePositionRequest newPrio(Integer newPrio) {
this.newPrio = newPrio;
return this;
}
/**
* Get newPrio
* minimum: 1
* @return newPrio
**/
@NotNull
@Min(1) @Schema(required = true, description = "")
public Integer getNewPrio() {
return newPrio;
}
public void setNewPrio(Integer newPrio) {
this.newPrio = newPrio;
}
public ModifyVpcFirewallAclRulePositionRequest ruleId(String ruleId) {
this.ruleId = ruleId;
return this;
}
/**
* Get ruleId
* @return ruleId
**/
@NotNull
@Schema(required = true, description = "")
public String getRuleId() {
return ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
public ModifyVpcFirewallAclRulePositionRequest vpcFirewallId(String vpcFirewallId) {
this.vpcFirewallId = vpcFirewallId;
return this;
}
/**
* Get vpcFirewallId
* @return vpcFirewallId
**/
@NotNull
@Schema(required = true, description = "")
public String getVpcFirewallId() {
return vpcFirewallId;
}
public void setVpcFirewallId(String vpcFirewallId) {
this.vpcFirewallId = vpcFirewallId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ModifyVpcFirewallAclRulePositionRequest modifyVpcFirewallAclRulePositionRequest = (ModifyVpcFirewallAclRulePositionRequest) o;
return Objects.equals(this.newPrio, modifyVpcFirewallAclRulePositionRequest.newPrio) &&
Objects.equals(this.ruleId, modifyVpcFirewallAclRulePositionRequest.ruleId) &&
Objects.equals(this.vpcFirewallId, modifyVpcFirewallAclRulePositionRequest.vpcFirewallId);
}
@Override
public int hashCode() {
return Objects.hash(newPrio, ruleId, vpcFirewallId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ModifyVpcFirewallAclRulePositionRequest {\n");
sb.append(" newPrio: ").append(toIndentedString(newPrio)).append("\n");
sb.append(" ruleId: ").append(toIndentedString(ruleId)).append("\n");
sb.append(" vpcFirewallId: ").append(toIndentedString(vpcFirewallId)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy