-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAutoScalingPolicy.java
More file actions
288 lines (220 loc) · 7.8 KB
/
AutoScalingPolicy.java
File metadata and controls
288 lines (220 loc) · 7.8 KB
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
/*
* REST API
* Rockset's REST API allows for creating and managing all resources in Rockset. Each supported endpoint is documented below. All requests must be authorized with a Rockset API key, which can be created in the [Rockset console](https://console.rockset.com). The API key must be provided as `ApiKey <api_key>` in the `Authorization` request header. For example: ``` Authorization: ApiKey aB35kDjg93J5nsf4GjwMeErAVd832F7ad4vhsW1S02kfZiab42sTsfW5Sxt25asT ``` All endpoints are only accessible via https. Build something awesome!
*
* OpenAPI spec version: v1
*
*
* 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.rockset.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 com.fasterxml.jackson.annotation.JsonProperty;
/**
* AutoScalingPolicy
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2024-01-25T12:03:52.511Z")
public class AutoScalingPolicy {
@SerializedName("enabled")
private Boolean enabled = null;
/**
* Maximum size Rockset can auto scale the Virtual Instance to. This value should be one of the dedicated sizes greater than or same as the min_size and lower than or same as the current size.
*/
@JsonAdapter(MaxSizeEnum.Adapter.class)
public enum MaxSizeEnum {
FREE("FREE"),
NANO("NANO"),
SHARED("SHARED"),
MILLI("MILLI"),
XSMALL("XSMALL"),
SMALL("SMALL"),
MEDIUM("MEDIUM"),
LARGE("LARGE"),
XLARGE("XLARGE"),
XLARGE2("XLARGE2"),
XLARGE4("XLARGE4"),
XLARGE8("XLARGE8"),
XLARGE16("XLARGE16");
private String value;
MaxSizeEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@com.fasterxml.jackson.annotation.JsonCreator
public static MaxSizeEnum fromValue(String text) {
for (MaxSizeEnum b : MaxSizeEnum.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter<MaxSizeEnum> {
@Override
public void write(final JsonWriter jsonWriter, final MaxSizeEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public MaxSizeEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return MaxSizeEnum.fromValue(String.valueOf(value));
}
}
}
@SerializedName("max_size")
private MaxSizeEnum maxSize = null;
/**
* Minimum size Rockset can auto scale the Virtual Instance to. This value should be one of the dedicated sizes lower than or same as the max_size and greater than or same as the current size.
*/
@JsonAdapter(MinSizeEnum.Adapter.class)
public enum MinSizeEnum {
FREE("FREE"),
NANO("NANO"),
SHARED("SHARED"),
MILLI("MILLI"),
XSMALL("XSMALL"),
SMALL("SMALL"),
MEDIUM("MEDIUM"),
LARGE("LARGE"),
XLARGE("XLARGE"),
XLARGE2("XLARGE2"),
XLARGE4("XLARGE4"),
XLARGE8("XLARGE8"),
XLARGE16("XLARGE16");
private String value;
MinSizeEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@com.fasterxml.jackson.annotation.JsonCreator
public static MinSizeEnum fromValue(String text) {
for (MinSizeEnum b : MinSizeEnum.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter<MinSizeEnum> {
@Override
public void write(final JsonWriter jsonWriter, final MinSizeEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public MinSizeEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return MinSizeEnum.fromValue(String.valueOf(value));
}
}
}
@SerializedName("min_size")
private MinSizeEnum minSize = null;
public AutoScalingPolicy enabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
/**
* Whether auto scaling policy is enabled.
* @return enabled
**/
@JsonProperty("enabled")
@ApiModelProperty(example = "true", value = "Whether auto scaling policy is enabled.")
public Boolean isEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public AutoScalingPolicy maxSize(MaxSizeEnum maxSize) {
this.maxSize = maxSize;
return this;
}
/**
* Maximum size Rockset can auto scale the Virtual Instance to. This value should be one of the dedicated sizes greater than or same as the min_size and lower than or same as the current size.
* @return maxSize
**/
@JsonProperty("max_size")
@ApiModelProperty(example = "XLARGE2", value = "Maximum size Rockset can auto scale the Virtual Instance to. This value should be one of the dedicated sizes greater than or same as the min_size and lower than or same as the current size.")
public MaxSizeEnum getMaxSize() {
return maxSize;
}
public void setMaxSize(MaxSizeEnum maxSize) {
this.maxSize = maxSize;
}
public AutoScalingPolicy minSize(MinSizeEnum minSize) {
this.minSize = minSize;
return this;
}
/**
* Minimum size Rockset can auto scale the Virtual Instance to. This value should be one of the dedicated sizes lower than or same as the max_size and greater than or same as the current size.
* @return minSize
**/
@JsonProperty("min_size")
@ApiModelProperty(example = "LARGE", value = "Minimum size Rockset can auto scale the Virtual Instance to. This value should be one of the dedicated sizes lower than or same as the max_size and greater than or same as the current size.")
public MinSizeEnum getMinSize() {
return minSize;
}
public void setMinSize(MinSizeEnum minSize) {
this.minSize = minSize;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AutoScalingPolicy autoScalingPolicy = (AutoScalingPolicy) o;
return Objects.equals(this.enabled, autoScalingPolicy.enabled) &&
Objects.equals(this.maxSize, autoScalingPolicy.maxSize) &&
Objects.equals(this.minSize, autoScalingPolicy.minSize);
}
@Override
public int hashCode() {
return Objects.hash(enabled, maxSize, minSize);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AutoScalingPolicy {\n");
sb.append(" enabled: ").append(toIndentedString(enabled)).append("\n");
sb.append(" maxSize: ").append(toIndentedString(maxSize)).append("\n");
sb.append(" minSize: ").append(toIndentedString(minSize)).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 ");
}
}