|
| 1 | +/* |
| 2 | + * graph |
| 3 | + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) |
| 4 | + * |
| 5 | + * OpenAPI spec version: common-version |
| 6 | + * |
| 7 | + * |
| 8 | + * NOTE: This class is auto generated by the swagger code generator program. |
| 9 | + * https://github.com/swagger-api/swagger-codegen.git |
| 10 | + * Do not edit the class manually. |
| 11 | + */ |
| 12 | + |
| 13 | +package com.volcengine.graph.model; |
| 14 | + |
| 15 | +import java.util.Objects; |
| 16 | +import java.util.Arrays; |
| 17 | +import com.google.gson.TypeAdapter; |
| 18 | +import com.google.gson.annotations.JsonAdapter; |
| 19 | +import com.google.gson.annotations.SerializedName; |
| 20 | +import com.google.gson.stream.JsonReader; |
| 21 | +import com.google.gson.stream.JsonWriter; |
| 22 | +import io.swagger.v3.oas.annotations.media.Schema; |
| 23 | +import java.io.IOException; |
| 24 | +import javax.validation.constraints.*; |
| 25 | +import javax.validation.Valid; |
| 26 | +/** |
| 27 | + * DescribeVegraphConfigInK8sResponse |
| 28 | + */ |
| 29 | + |
| 30 | + |
| 31 | + |
| 32 | +public class DescribeVegraphConfigInK8sResponse extends com.volcengine.model.AbstractResponse { |
| 33 | + @SerializedName("bg3CanaryConfig") |
| 34 | + private String bg3CanaryConfig = null; |
| 35 | + |
| 36 | + @SerializedName("bg3Config") |
| 37 | + private String bg3Config = null; |
| 38 | + |
| 39 | + @SerializedName("msCanaryConfig") |
| 40 | + private String msCanaryConfig = null; |
| 41 | + |
| 42 | + @SerializedName("msConfig") |
| 43 | + private String msConfig = null; |
| 44 | + |
| 45 | + public DescribeVegraphConfigInK8sResponse bg3CanaryConfig(String bg3CanaryConfig) { |
| 46 | + this.bg3CanaryConfig = bg3CanaryConfig; |
| 47 | + return this; |
| 48 | + } |
| 49 | + |
| 50 | + /** |
| 51 | + * Get bg3CanaryConfig |
| 52 | + * @return bg3CanaryConfig |
| 53 | + **/ |
| 54 | + @Schema(description = "") |
| 55 | + public String getBg3CanaryConfig() { |
| 56 | + return bg3CanaryConfig; |
| 57 | + } |
| 58 | + |
| 59 | + public void setBg3CanaryConfig(String bg3CanaryConfig) { |
| 60 | + this.bg3CanaryConfig = bg3CanaryConfig; |
| 61 | + } |
| 62 | + |
| 63 | + public DescribeVegraphConfigInK8sResponse bg3Config(String bg3Config) { |
| 64 | + this.bg3Config = bg3Config; |
| 65 | + return this; |
| 66 | + } |
| 67 | + |
| 68 | + /** |
| 69 | + * Get bg3Config |
| 70 | + * @return bg3Config |
| 71 | + **/ |
| 72 | + @Schema(description = "") |
| 73 | + public String getBg3Config() { |
| 74 | + return bg3Config; |
| 75 | + } |
| 76 | + |
| 77 | + public void setBg3Config(String bg3Config) { |
| 78 | + this.bg3Config = bg3Config; |
| 79 | + } |
| 80 | + |
| 81 | + public DescribeVegraphConfigInK8sResponse msCanaryConfig(String msCanaryConfig) { |
| 82 | + this.msCanaryConfig = msCanaryConfig; |
| 83 | + return this; |
| 84 | + } |
| 85 | + |
| 86 | + /** |
| 87 | + * Get msCanaryConfig |
| 88 | + * @return msCanaryConfig |
| 89 | + **/ |
| 90 | + @Schema(description = "") |
| 91 | + public String getMsCanaryConfig() { |
| 92 | + return msCanaryConfig; |
| 93 | + } |
| 94 | + |
| 95 | + public void setMsCanaryConfig(String msCanaryConfig) { |
| 96 | + this.msCanaryConfig = msCanaryConfig; |
| 97 | + } |
| 98 | + |
| 99 | + public DescribeVegraphConfigInK8sResponse msConfig(String msConfig) { |
| 100 | + this.msConfig = msConfig; |
| 101 | + return this; |
| 102 | + } |
| 103 | + |
| 104 | + /** |
| 105 | + * Get msConfig |
| 106 | + * @return msConfig |
| 107 | + **/ |
| 108 | + @Schema(description = "") |
| 109 | + public String getMsConfig() { |
| 110 | + return msConfig; |
| 111 | + } |
| 112 | + |
| 113 | + public void setMsConfig(String msConfig) { |
| 114 | + this.msConfig = msConfig; |
| 115 | + } |
| 116 | + |
| 117 | + |
| 118 | + @Override |
| 119 | + public boolean equals(java.lang.Object o) { |
| 120 | + if (this == o) { |
| 121 | + return true; |
| 122 | + } |
| 123 | + if (o == null || getClass() != o.getClass()) { |
| 124 | + return false; |
| 125 | + } |
| 126 | + DescribeVegraphConfigInK8sResponse describeVegraphConfigInK8sResponse = (DescribeVegraphConfigInK8sResponse) o; |
| 127 | + return Objects.equals(this.bg3CanaryConfig, describeVegraphConfigInK8sResponse.bg3CanaryConfig) && |
| 128 | + Objects.equals(this.bg3Config, describeVegraphConfigInK8sResponse.bg3Config) && |
| 129 | + Objects.equals(this.msCanaryConfig, describeVegraphConfigInK8sResponse.msCanaryConfig) && |
| 130 | + Objects.equals(this.msConfig, describeVegraphConfigInK8sResponse.msConfig); |
| 131 | + } |
| 132 | + |
| 133 | + @Override |
| 134 | + public int hashCode() { |
| 135 | + return Objects.hash(bg3CanaryConfig, bg3Config, msCanaryConfig, msConfig); |
| 136 | + } |
| 137 | + |
| 138 | + |
| 139 | + @Override |
| 140 | + public String toString() { |
| 141 | + StringBuilder sb = new StringBuilder(); |
| 142 | + sb.append("class DescribeVegraphConfigInK8sResponse {\n"); |
| 143 | + |
| 144 | + sb.append(" bg3CanaryConfig: ").append(toIndentedString(bg3CanaryConfig)).append("\n"); |
| 145 | + sb.append(" bg3Config: ").append(toIndentedString(bg3Config)).append("\n"); |
| 146 | + sb.append(" msCanaryConfig: ").append(toIndentedString(msCanaryConfig)).append("\n"); |
| 147 | + sb.append(" msConfig: ").append(toIndentedString(msConfig)).append("\n"); |
| 148 | + sb.append("}"); |
| 149 | + return sb.toString(); |
| 150 | + } |
| 151 | + |
| 152 | + /** |
| 153 | + * Convert the given object to string with each line indented by 4 spaces |
| 154 | + * (except the first line). |
| 155 | + */ |
| 156 | + private String toIndentedString(java.lang.Object o) { |
| 157 | + if (o == null) { |
| 158 | + return "null"; |
| 159 | + } |
| 160 | + return o.toString().replace("\n", "\n "); |
| 161 | + } |
| 162 | + |
| 163 | +} |
0 commit comments