summaryrefslogtreecommitdiff
path: root/app/src/main/java/io/swagger/client/model/ModelsGateway.java
blob: 8c020eb1c9433487e3b8bedbb9d13f2c923754ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/*
 * Menshen API
 * This is a LEAP VPN Service API
 *
 * OpenAPI spec version: 0.5.2
 * 
 *
 * 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 io.swagger.client.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.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;

/**
 * ModelsGateway
 */

public class ModelsGateway {
  @SerializedName("bucket")
  private String bucket = null;

  @SerializedName("experimental")
  private Boolean experimental = null;

  @SerializedName("healthy")
  private Boolean healthy = null;

  @SerializedName("host")
  private String host = null;

  @SerializedName("ip_addr")
  private String ipAddr = null;

  @SerializedName("ip6_addr")
  private String ip6Addr = null;

  @SerializedName("last_seen_millis")
  private Long lastSeenMillis = null;

  @SerializedName("load")
  private BigDecimal load = null;

  @SerializedName("location")
  private String location = null;

  @SerializedName("overloaded")
  private Boolean overloaded = null;

  @SerializedName("port")
  private Integer port = null;

  @SerializedName("transport")
  private String transport = null;

  @SerializedName("type")
  private String type = null;

  public ModelsGateway bucket(String bucket) {
    this.bucket = bucket;
    return this;
  }

   /**
   * Bucket is a \"bucket\" tag that connotes a resource group that a user may or may not have access to. An empty bucket string implies that it is open access
   * @return bucket
  **/
  @ApiModelProperty(value = "Bucket is a \"bucket\" tag that connotes a resource group that a user may or may not have access to. An empty bucket string implies that it is open access")
  public String getBucket() {
    return bucket;
  }

  public void setBucket(String bucket) {
    this.bucket = bucket;
  }

  public ModelsGateway experimental(Boolean experimental) {
    this.experimental = experimental;
    return this;
  }

   /**
   * An experimental gateway flags any gateway that, for whatever reason, is not deemed stable. The expectation is that clients have to opt-in to experimental gateways (and bridges too).
   * @return experimental
  **/
  @ApiModelProperty(value = "An experimental gateway flags any gateway that, for whatever reason, is not deemed stable. The expectation is that clients have to opt-in to experimental gateways (and bridges too).")
  public Boolean isExperimental() {
    return experimental;
  }

  public void setExperimental(Boolean experimental) {
    this.experimental = experimental;
  }

  public ModelsGateway healthy(Boolean healthy) {
    this.healthy = healthy;
    return this;
  }

   /**
   * Not used now - we could potentially flag gateways that are planned to undergo maintenance mode some time in advance. We can also automatically flag as not healthy gateways that appear not to be routing to the internet.
   * @return healthy
  **/
  @ApiModelProperty(value = "Not used now - we could potentially flag gateways that are planned to undergo maintenance mode some time in advance. We can also automatically flag as not healthy gateways that appear not to be routing to the internet.")
  public Boolean isHealthy() {
    return healthy;
  }

  public void setHealthy(Boolean healthy) {
    this.healthy = healthy;
  }

  public ModelsGateway host(String host) {
    this.host = host;
    return this;
  }

   /**
   * Host is a unique identifier for the gateway host. It does not need to resolve, since we're not using DNS to resolve the gateways.
   * @return host
  **/
  @ApiModelProperty(value = "Host is a unique identifier for the gateway host. It does not need to resolve, since we're not using DNS to resolve the gateways.")
  public String getHost() {
    return host;
  }

  public void setHost(String host) {
    this.host = host;
  }

  public ModelsGateway ipAddr(String ipAddr) {
    this.ipAddr = ipAddr;
    return this;
  }

   /**
   * IPAddr is the IPv4 address
   * @return ipAddr
  **/
  @ApiModelProperty(value = "IPAddr is the IPv4 address")
  public String getIpAddr() {
    return ipAddr;
  }

  public void setIpAddr(String ipAddr) {
    this.ipAddr = ipAddr;
  }

  public ModelsGateway ip6Addr(String ip6Addr) {
    this.ip6Addr = ip6Addr;
    return this;
  }

   /**
   * IP6Addr is the IPv6 address
   * @return ip6Addr
  **/
  @ApiModelProperty(value = "IP6Addr is the IPv6 address")
  public String getIp6Addr() {
    return ip6Addr;
  }

  public void setIp6Addr(String ip6Addr) {
    this.ip6Addr = ip6Addr;
  }

  public ModelsGateway lastSeenMillis(Long lastSeenMillis) {
    this.lastSeenMillis = lastSeenMillis;
    return this;
  }

   /**
   * LastSeenMillis is a unix time in milliseconds representing the last time we received a heartbeat update from this gateway
   * @return lastSeenMillis
  **/
  @ApiModelProperty(value = "LastSeenMillis is a unix time in milliseconds representing the last time we received a heartbeat update from this gateway")
  public Long getLastSeenMillis() {
    return lastSeenMillis;
  }

  public void setLastSeenMillis(Long lastSeenMillis) {
    this.lastSeenMillis = lastSeenMillis;
  }

  public ModelsGateway load(BigDecimal load) {
    this.load = load;
    return this;
  }

   /**
   * Load is the fractional load received from the menshen agent. For the time being it is a synthethic metric that takes into account number of clients and network information for the node.
   * @return load
  **/
  @ApiModelProperty(value = "Load is the fractional load received from the menshen agent. For the time being it is a synthethic metric that takes into account number of clients and network information for the node.")
  public BigDecimal getLoad() {
    return load;
  }

  public void setLoad(BigDecimal load) {
    this.load = load;
  }

  public ModelsGateway location(String location) {
    this.location = location;
    return this;
  }

   /**
   * Location is the canonical label for the location of the gateway.
   * @return location
  **/
  @ApiModelProperty(value = "Location is the canonical label for the location of the gateway.")
  public String getLocation() {
    return location;
  }

  public void setLocation(String location) {
    this.location = location;
  }

  public ModelsGateway overloaded(Boolean overloaded) {
    this.overloaded = overloaded;
    return this;
  }

   /**
   * Overloaded should be set to true if the fractional load is above threshold.
   * @return overloaded
  **/
  @ApiModelProperty(value = "Overloaded should be set to true if the fractional load is above threshold.")
  public Boolean isOverloaded() {
    return overloaded;
  }

  public void setOverloaded(Boolean overloaded) {
    this.overloaded = overloaded;
  }

  public ModelsGateway port(Integer port) {
    this.port = port;
    return this;
  }

   /**
   * The (primary) port this gateway is listening on.
   * @return port
  **/
  @ApiModelProperty(value = "The (primary) port this gateway is listening on.")
  public Integer getPort() {
    return port;
  }

  public void setPort(Integer port) {
    this.port = port;
  }

  public ModelsGateway transport(String transport) {
    this.transport = transport;
    return this;
  }

   /**
   * TCP, UDP, KCP or Quic. This was called \"protocol\" in previous versions of the API.
   * @return transport
  **/
  @ApiModelProperty(value = "TCP, UDP, KCP or Quic. This was called \"protocol\" in previous versions of the API.")
  public String getTransport() {
    return transport;
  }

  public void setTransport(String transport) {
    this.transport = transport;
  }

  public ModelsGateway type(String type) {
    this.type = type;
    return this;
  }

   /**
   * Type is the type of gateway. The only valid type as of 2023 is openvpn.
   * @return type
  **/
  @ApiModelProperty(value = "Type is the type of gateway. The only valid type as of 2023 is openvpn.")
  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ModelsGateway modelsGateway = (ModelsGateway) o;
    return Objects.equals(this.bucket, modelsGateway.bucket) &&
        Objects.equals(this.experimental, modelsGateway.experimental) &&
        Objects.equals(this.healthy, modelsGateway.healthy) &&
        Objects.equals(this.host, modelsGateway.host) &&
        Objects.equals(this.ipAddr, modelsGateway.ipAddr) &&
        Objects.equals(this.ip6Addr, modelsGateway.ip6Addr) &&
        Objects.equals(this.lastSeenMillis, modelsGateway.lastSeenMillis) &&
        Objects.equals(this.load, modelsGateway.load) &&
        Objects.equals(this.location, modelsGateway.location) &&
        Objects.equals(this.overloaded, modelsGateway.overloaded) &&
        Objects.equals(this.port, modelsGateway.port) &&
        Objects.equals(this.transport, modelsGateway.transport) &&
        Objects.equals(this.type, modelsGateway.type);
  }

  @Override
  public int hashCode() {
    return Objects.hash(bucket, experimental, healthy, host, ipAddr, ip6Addr, lastSeenMillis, load, location, overloaded, port, transport, type);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class ModelsGateway {\n");
    
    sb.append("    bucket: ").append(toIndentedString(bucket)).append("\n");
    sb.append("    experimental: ").append(toIndentedString(experimental)).append("\n");
    sb.append("    healthy: ").append(toIndentedString(healthy)).append("\n");
    sb.append("    host: ").append(toIndentedString(host)).append("\n");
    sb.append("    ipAddr: ").append(toIndentedString(ipAddr)).append("\n");
    sb.append("    ip6Addr: ").append(toIndentedString(ip6Addr)).append("\n");
    sb.append("    lastSeenMillis: ").append(toIndentedString(lastSeenMillis)).append("\n");
    sb.append("    load: ").append(toIndentedString(load)).append("\n");
    sb.append("    location: ").append(toIndentedString(location)).append("\n");
    sb.append("    overloaded: ").append(toIndentedString(overloaded)).append("\n");
    sb.append("    port: ").append(toIndentedString(port)).append("\n");
    sb.append("    transport: ").append(toIndentedString(transport)).append("\n");
    sb.append("    type: ").append(toIndentedString(type)).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    ");
  }

}