com.volcengine.waf.model.RelatedRuleForListHostGroupOutput 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 io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* RelatedRuleForListHostGroupOutput
*/
public class RelatedRuleForListHostGroupOutput {
@SerializedName("Host")
private String host = null;
@SerializedName("RuleName")
private String ruleName = null;
@SerializedName("RuleTag")
private String ruleTag = null;
@SerializedName("RuleType")
private String ruleType = null;
public RelatedRuleForListHostGroupOutput host(String host) {
this.host = host;
return this;
}
/**
* Get host
* @return host
**/
@Schema(description = "")
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public RelatedRuleForListHostGroupOutput ruleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* Get ruleName
* @return ruleName
**/
@Schema(description = "")
public String getRuleName() {
return ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public RelatedRuleForListHostGroupOutput ruleTag(String ruleTag) {
this.ruleTag = ruleTag;
return this;
}
/**
* Get ruleTag
* @return ruleTag
**/
@Schema(description = "")
public String getRuleTag() {
return ruleTag;
}
public void setRuleTag(String ruleTag) {
this.ruleTag = ruleTag;
}
public RelatedRuleForListHostGroupOutput ruleType(String ruleType) {
this.ruleType = ruleType;
return this;
}
/**
* Get ruleType
* @return ruleType
**/
@Schema(description = "")
public String getRuleType() {
return ruleType;
}
public void setRuleType(String ruleType) {
this.ruleType = ruleType;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RelatedRuleForListHostGroupOutput relatedRuleForListHostGroupOutput = (RelatedRuleForListHostGroupOutput) o;
return Objects.equals(this.host, relatedRuleForListHostGroupOutput.host) &&
Objects.equals(this.ruleName, relatedRuleForListHostGroupOutput.ruleName) &&
Objects.equals(this.ruleTag, relatedRuleForListHostGroupOutput.ruleTag) &&
Objects.equals(this.ruleType, relatedRuleForListHostGroupOutput.ruleType);
}
@Override
public int hashCode() {
return Objects.hash(host, ruleName, ruleTag, ruleType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RelatedRuleForListHostGroupOutput {\n");
sb.append(" host: ").append(toIndentedString(host)).append("\n");
sb.append(" ruleName: ").append(toIndentedString(ruleName)).append("\n");
sb.append(" ruleTag: ").append(toIndentedString(ruleTag)).append("\n");
sb.append(" ruleType: ").append(toIndentedString(ruleType)).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