All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.waf.model.LogicalVulnerabilityForGetVulnerabilityConfigOutput Maven / Gradle / Ivy

There is a newer version: 0.1.143
Show 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.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;
/**
 * LogicalVulnerabilityForGetVulnerabilityConfigOutput
 */



public class LogicalVulnerabilityForGetVulnerabilityConfigOutput {
  @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 LogicalVulnerabilityForGetVulnerabilityConfigOutput 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 LogicalVulnerabilityForGetVulnerabilityConfigOutput 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 LogicalVulnerabilityForGetVulnerabilityConfigOutput ruleSetDetail(List ruleSetDetail) {
    this.ruleSetDetail = ruleSetDetail;
    return this;
  }

  public LogicalVulnerabilityForGetVulnerabilityConfigOutput 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 LogicalVulnerabilityForGetVulnerabilityConfigOutput 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 LogicalVulnerabilityForGetVulnerabilityConfigOutput 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;
    }
    LogicalVulnerabilityForGetVulnerabilityConfigOutput logicalVulnerabilityForGetVulnerabilityConfigOutput = (LogicalVulnerabilityForGetVulnerabilityConfigOutput) o;
    return Objects.equals(this.description, logicalVulnerabilityForGetVulnerabilityConfigOutput.description) &&
        Objects.equals(this.enableRuleCount, logicalVulnerabilityForGetVulnerabilityConfigOutput.enableRuleCount) &&
        Objects.equals(this.ruleSetDetail, logicalVulnerabilityForGetVulnerabilityConfigOutput.ruleSetDetail) &&
        Objects.equals(this.ruleSetName, logicalVulnerabilityForGetVulnerabilityConfigOutput.ruleSetName) &&
        Objects.equals(this.totalRuleCount, logicalVulnerabilityForGetVulnerabilityConfigOutput.totalRuleCount);
  }

  @Override
  public int hashCode() {
    return Objects.hash(description, enableRuleCount, ruleSetDetail, ruleSetName, totalRuleCount);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class LogicalVulnerabilityForGetVulnerabilityConfigOutput {\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