-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlertEvent.java
More file actions
579 lines (464 loc) · 19.4 KB
/
Copy pathAlertEvent.java
File metadata and controls
579 lines (464 loc) · 19.4 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
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
/*
* Rootly API v1
* # How to generate an API Key? - **Organization dropdown** > **Organization Settings** > **API Keys** # JSON:API Specification Rootly is using **JSON:API** (https://jsonapi.org) specification: - JSON:API is a specification for how a client should request that resources be fetched or modified, and how a server should respond to those requests. - JSON:API is designed to minimize both the number of requests and the amount of data transmitted between clients and servers. This efficiency is achieved without compromising readability, flexibility, or discoverability. - JSON:API requires use of the JSON:API media type (**application/vnd.api+json**) for exchanging data. # Authentication and Requests We use standard HTTP Authentication over HTTPS to authorize your requests. ``` curl --request GET \\ --header 'Content-Type: application/vnd.api+json' \\ --header 'Authorization: Bearer YOUR-TOKEN' \\ --url https://api.rootly.com/v1/incidents ``` <br/> # Rate limiting - There is a default limit of **5** **GET**, **HEAD**, and **OPTIONS** calls **per API key** every **60 seconds** (0 hours). The limit is calculated over a **0-hour sliding window** looking back from the current time. While the limit can be configured to support higher thresholds, you must first contact your **Rootly Customer Success Manager** to make any adjustments. - There is a default limit of **3** **POST**, **PUT**, **PATCH** or **DELETE** calls **per API key** every **60 seconds** (0 hours). The limit is calculated over a **0-hour sliding window** looking back from the current time. While the limit can be configured to support higher thresholds, you must first contact your **Rootly Customer Success Manager** to make any adjustments. - When rate limits are exceeded, the API will return a **429 Too Many Requests** HTTP status code with the response: `{\"error\": \"Rate limit exceeded. Try again later.\"}` - **X-RateLimit headers** are included in every API response, providing real-time rate limit information: - **X-RateLimit-Limit** - The maximum number of requests permitted and the time window (e.g., \"1000, 1000;window=3600\" for 1000 requests per hour) - **X-RateLimit-Remaining** - The number of requests remaining in the current rate limit window - **X-RateLimit-Used** - The number of requests already made in the current window - **X-RateLimit-Reset** - The time at which the current rate limit window resets, in UTC epoch seconds # Pagination - Pagination is supported for all endpoints that return a collection of items. - Pagination is controlled by the **page** query parameter ## Example ``` curl --request GET \\ --header 'Content-Type: application/vnd.api+json' \\ --header 'Authorization: Bearer YOUR-TOKEN' \\ --url https://api.rootly.com/v1/incidents?page[number]=1&page[size]=10 ```
*
* The version of the OpenAPI document: v1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.rootly.client.model;
import java.util.Objects;
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 java.io.IOException;
import java.util.Arrays;
import org.openapitools.jackson.nullable.JsonNullable;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonArray;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.rootly.client.JSON;
/**
* AlertEvent
*/
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-20T18:42:42.907690594Z[Etc/UTC]", comments = "Generator version: 7.13.0")
public class AlertEvent {
/**
* Gets or Sets kind
*/
@JsonAdapter(KindEnum.Adapter.class)
public enum KindEnum {
INFORMATIONAL("informational"),
NOTIFICATION("notification"),
ACTION("action"),
STATUS_UPDATE("status_update"),
RECORDING("recording"),
ALERT_GROUPING("alert_grouping"),
ALERT_URGENCY("alert_urgency"),
ALERT_ROUTING("alert_routing"),
NOTE("note"),
NOISE("noise"),
MAINTENANCE("maintenance");
private String value;
KindEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static KindEnum fromValue(String value) {
for (KindEnum b : KindEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter<KindEnum> {
@Override
public void write(final JsonWriter jsonWriter, final KindEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public KindEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return KindEnum.fromValue(value);
}
}
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
String value = jsonElement.getAsString();
KindEnum.fromValue(value);
}
}
public static final String SERIALIZED_NAME_KIND = "kind";
@SerializedName(SERIALIZED_NAME_KIND)
@jakarta.annotation.Nonnull
private KindEnum kind;
/**
* Gets or Sets action
*/
@JsonAdapter(ActionEnum.Adapter.class)
public enum ActionEnum {
CREATED("created"),
ESCALATION_POLICY_PAGED("escalation_policy_paged"),
IGNORED_ALERT_REQUEST("ignored_alert_request"),
EMAILED("emailed"),
SLACKED("slacked"),
CALLED("called"),
TEXTED("texted"),
NOTIFIED("notified"),
SKIPPED("skipped"),
OPENED("opened"),
RETRIGGERED("retriggered"),
ANSWERED("answered"),
ACKNOWLEDGED("acknowledged"),
ESCALATED("escalated"),
PAGED("paged"),
RESOLVED("resolved"),
ATTACHED("attached"),
SNOOZED("snoozed"),
TRIGGERED("triggered"),
UPDATED("updated"),
ADDED("added"),
REMOVED("removed"),
MARKED("marked"),
NOT_MARKED("not_marked"),
MUTED("muted");
private String value;
ActionEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ActionEnum fromValue(String value) {
for (ActionEnum b : ActionEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter<ActionEnum> {
@Override
public void write(final JsonWriter jsonWriter, final ActionEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ActionEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ActionEnum.fromValue(value);
}
}
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
String value = jsonElement.getAsString();
ActionEnum.fromValue(value);
}
}
public static final String SERIALIZED_NAME_ACTION = "action";
@SerializedName(SERIALIZED_NAME_ACTION)
@jakarta.annotation.Nonnull
private ActionEnum action;
public static final String SERIALIZED_NAME_SOURCE = "source";
@SerializedName(SERIALIZED_NAME_SOURCE)
@jakarta.annotation.Nonnull
private String source;
public static final String SERIALIZED_NAME_USER_ID = "user_id";
@SerializedName(SERIALIZED_NAME_USER_ID)
@jakarta.annotation.Nullable
private Integer userId;
public static final String SERIALIZED_NAME_DETAILS = "details";
@SerializedName(SERIALIZED_NAME_DETAILS)
@jakarta.annotation.Nullable
private String details;
public static final String SERIALIZED_NAME_CREATED_AT = "created_at";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
@jakarta.annotation.Nonnull
private String createdAt;
public static final String SERIALIZED_NAME_UPDATED_AT = "updated_at";
@SerializedName(SERIALIZED_NAME_UPDATED_AT)
@jakarta.annotation.Nonnull
private String updatedAt;
public AlertEvent() {
}
public AlertEvent kind(@jakarta.annotation.Nonnull KindEnum kind) {
this.kind = kind;
return this;
}
/**
* Get kind
* @return kind
*/
@jakarta.annotation.Nonnull
public KindEnum getKind() {
return kind;
}
public void setKind(@jakarta.annotation.Nonnull KindEnum kind) {
this.kind = kind;
}
public AlertEvent action(@jakarta.annotation.Nonnull ActionEnum action) {
this.action = action;
return this;
}
/**
* Get action
* @return action
*/
@jakarta.annotation.Nonnull
public ActionEnum getAction() {
return action;
}
public void setAction(@jakarta.annotation.Nonnull ActionEnum action) {
this.action = action;
}
public AlertEvent source(@jakarta.annotation.Nonnull String source) {
this.source = source;
return this;
}
/**
* Get source
* @return source
*/
@jakarta.annotation.Nonnull
public String getSource() {
return source;
}
public void setSource(@jakarta.annotation.Nonnull String source) {
this.source = source;
}
public AlertEvent userId(@jakarta.annotation.Nullable Integer userId) {
this.userId = userId;
return this;
}
/**
* Author of the note.
* @return userId
*/
@jakarta.annotation.Nullable
public Integer getUserId() {
return userId;
}
public void setUserId(@jakarta.annotation.Nullable Integer userId) {
this.userId = userId;
}
public AlertEvent details(@jakarta.annotation.Nullable String details) {
this.details = details;
return this;
}
/**
* Note message.
* @return details
*/
@jakarta.annotation.Nullable
public String getDetails() {
return details;
}
public void setDetails(@jakarta.annotation.Nullable String details) {
this.details = details;
}
public AlertEvent createdAt(@jakarta.annotation.Nonnull String createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Get createdAt
* @return createdAt
*/
@jakarta.annotation.Nonnull
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(@jakarta.annotation.Nonnull String createdAt) {
this.createdAt = createdAt;
}
public AlertEvent updatedAt(@jakarta.annotation.Nonnull String updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* Get updatedAt
* @return updatedAt
*/
@jakarta.annotation.Nonnull
public String getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(@jakarta.annotation.Nonnull String updatedAt) {
this.updatedAt = updatedAt;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AlertEvent alertEvent = (AlertEvent) o;
return Objects.equals(this.kind, alertEvent.kind) &&
Objects.equals(this.action, alertEvent.action) &&
Objects.equals(this.source, alertEvent.source) &&
Objects.equals(this.userId, alertEvent.userId) &&
Objects.equals(this.details, alertEvent.details) &&
Objects.equals(this.createdAt, alertEvent.createdAt) &&
Objects.equals(this.updatedAt, alertEvent.updatedAt);
}
private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b) {
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(kind, action, source, userId, details, createdAt, updatedAt);
}
private static <T> int hashCodeNullable(JsonNullable<T> a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AlertEvent {\n");
sb.append(" kind: ").append(toIndentedString(kind)).append("\n");
sb.append(" action: ").append(toIndentedString(action)).append("\n");
sb.append(" source: ").append(toIndentedString(source)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" details: ").append(toIndentedString(details)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
public static HashSet<String> openapiFields;
public static HashSet<String> openapiRequiredFields;
static {
// a set of all properties/fields (JSON key names)
openapiFields = new HashSet<String>();
openapiFields.add("kind");
openapiFields.add("action");
openapiFields.add("source");
openapiFields.add("user_id");
openapiFields.add("details");
openapiFields.add("created_at");
openapiFields.add("updated_at");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet<String>();
openapiRequiredFields.add("kind");
openapiRequiredFields.add("action");
openapiRequiredFields.add("source");
openapiRequiredFields.add("created_at");
openapiRequiredFields.add("updated_at");
}
/**
* Validates the JSON Element and throws an exception if issues found
*
* @param jsonElement JSON Element
* @throws IOException if the JSON Element is invalid with respect to AlertEvent
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!AlertEvent.openapiRequiredFields.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(String.format("The required field(s) %s in AlertEvent is not found in the empty JSON string", AlertEvent.openapiRequiredFields.toString()));
}
}
Set<Map.Entry<String, JsonElement>> entries = jsonElement.getAsJsonObject().entrySet();
// check to see if the JSON string contains additional fields
for (Map.Entry<String, JsonElement> entry : entries) {
if (!AlertEvent.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `AlertEvent` properties. JSON: %s", entry.getKey(), jsonElement.toString()));
}
}
// check to make sure all required properties/fields are present in the JSON string
for (String requiredField : AlertEvent.openapiRequiredFields) {
if (jsonElement.getAsJsonObject().get(requiredField) == null) {
throw new IllegalArgumentException(String.format("The required field `%s` is not found in the JSON string: %s", requiredField, jsonElement.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
if (!jsonObj.get("kind").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `kind` to be a primitive type in the JSON string but got `%s`", jsonObj.get("kind").toString()));
}
// validate the required field `kind`
KindEnum.validateJsonElement(jsonObj.get("kind"));
if (!jsonObj.get("action").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `action` to be a primitive type in the JSON string but got `%s`", jsonObj.get("action").toString()));
}
// validate the required field `action`
ActionEnum.validateJsonElement(jsonObj.get("action"));
if (!jsonObj.get("source").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `source` to be a primitive type in the JSON string but got `%s`", jsonObj.get("source").toString()));
}
if ((jsonObj.get("details") != null && !jsonObj.get("details").isJsonNull()) && !jsonObj.get("details").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `details` to be a primitive type in the JSON string but got `%s`", jsonObj.get("details").toString()));
}
if (!jsonObj.get("created_at").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `created_at` to be a primitive type in the JSON string but got `%s`", jsonObj.get("created_at").toString()));
}
if (!jsonObj.get("updated_at").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `updated_at` to be a primitive type in the JSON string but got `%s`", jsonObj.get("updated_at").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
if (!AlertEvent.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'AlertEvent' and its subtypes
}
final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter<AlertEvent> thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(AlertEvent.class));
return (TypeAdapter<T>) new TypeAdapter<AlertEvent>() {
@Override
public void write(JsonWriter out, AlertEvent value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public AlertEvent read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of AlertEvent given an JSON string
*
* @param jsonString JSON string
* @return An instance of AlertEvent
* @throws IOException if the JSON string is invalid with respect to AlertEvent
*/
public static AlertEvent fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, AlertEvent.class);
}
/**
* Convert an instance of AlertEvent to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}