com.volcengine.waf.model.CommonDetectionForGetVulnerabilityConfigOutput Maven / Gradle / Ivy
/*
* 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.RuleSetDetailForGetVulnerabilityConfigOutput;
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;
/**
* CommonDetectionForGetVulnerabilityConfigOutput
*/
public class CommonDetectionForGetVulnerabilityConfigOutput {
@SerializedName("Description")
private String description = null;
@SerializedName("EnableRuleCount")
private Integer enableRuleCount = null;
@SerializedName("RuleSetDetail")
private List ruleSetDetail = null;
@SerializedName("RuleSetName")
private String ruleSetName = null;
@SerializedName("TotalRuleCount")
private Integer totalRuleCount = null;
public CommonDetectionForGetVulnerabilityConfigOutput 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 CommonDetectionForGetVulnerabilityConfigOutput enableRuleCount(Integer enableRuleCount) {
this.enableRuleCount = enableRuleCount;
return this;
}
/**
* Get enableRuleCount
* @return enableRuleCount
**/
@Schema(description = "")
public Integer getEnableRuleCount() {
return enableRuleCount;
}
public void setEnableRuleCount(Integer enableRuleCount) {
this.enableRuleCount = enableRuleCount;
}
public CommonDetectionForGetVulnerabilityConfigOutput ruleSetDetail(List ruleSetDetail) {
this.ruleSetDetail = ruleSetDetail;
return this;
}
public CommonDetectionForGetVulnerabilityConfigOutput addRuleSetDetailItem(RuleSetDetailForGetVulnerabilityConfigOutput ruleSetDetailItem) {
if (this.ruleSetDetail == null) {
this.ruleSetDetail = new ArrayList();
}
this.ruleSetDetail.add(ruleSetDetailItem);
return this;
}
/**
* Get ruleSetDetail
* @return ruleSetDetail
**/
@Valid
@Schema(description = "")
public List getRuleSetDetail() {
return ruleSetDetail;
}
public void setRuleSetDetail(List ruleSetDetail) {
this.ruleSetDetail = ruleSetDetail;
}
public CommonDetectionForGetVulnerabilityConfigOutput ruleSetName(String ruleSetName) {
this.ruleSetName = ruleSetName;
return this;
}
/**
* Get ruleSetName
* @return ruleSetName
**/
@Schema(description = "")
public String getRuleSetName() {
return ruleSetName;
}
public void setRuleSetName(String ruleSetName) {
this.ruleSetName = ruleSetName;
}
public CommonDetectionForGetVulnerabilityConfigOutput totalRuleCount(Integer totalRuleCount) {
this.totalRuleCount = totalRuleCount;
return this;
}
/**
* Get totalRuleCount
* @return totalRuleCount
**/
@Schema(description = "")
public Integer getTotalRuleCount() {
return totalRuleCount;
}
public void setTotalRuleCount(Integer totalRuleCount) {
this.totalRuleCount = totalRuleCount;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CommonDetectionForGetVulnerabilityConfigOutput commonDetectionForGetVulnerabilityConfigOutput = (CommonDetectionForGetVulnerabilityConfigOutput) o;
return Objects.equals(this.description, commonDetectionForGetVulnerabilityConfigOutput.description) &&
Objects.equals(this.enableRuleCount, commonDetectionForGetVulnerabilityConfigOutput.enableRuleCount) &&
Objects.equals(this.ruleSetDetail, commonDetectionForGetVulnerabilityConfigOutput.ruleSetDetail) &&
Objects.equals(this.ruleSetName, commonDetectionForGetVulnerabilityConfigOutput.ruleSetName) &&
Objects.equals(this.totalRuleCount, commonDetectionForGetVulnerabilityConfigOutput.totalRuleCount);
}
@Override
public int hashCode() {
return Objects.hash(description, enableRuleCount, ruleSetDetail, ruleSetName, totalRuleCount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CommonDetectionForGetVulnerabilityConfigOutput {\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" enableRuleCount: ").append(toIndentedString(enableRuleCount)).append("\n");
sb.append(" ruleSetDetail: ").append(toIndentedString(ruleSetDetail)).append("\n");
sb.append(" ruleSetName: ").append(toIndentedString(ruleSetName)).append("\n");
sb.append(" totalRuleCount: ").append(toIndentedString(totalRuleCount)).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