-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalerts.go
More file actions
280 lines (245 loc) · 6.87 KB
/
alerts.go
File metadata and controls
280 lines (245 loc) · 6.87 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
// This file was auto-generated by Fern from our API Definition.
package livesession
import (
json "encoding/json"
fmt "fmt"
internal "go.livesession.io/livesession-go/internal"
)
type AlertCreate struct {
// Name of the alert for easy identification
Name string `json:"name" url:"-"`
// List of events that will trigger the alert
Events []*AlertEvent `json:"events,omitempty" url:"-"`
// Notification provider for the alert, `slack` or `webhooks`
Provider AlertProviderEnum `json:"provider" url:"-"`
// Slack channel ID where notifications will be sent (required if provider is `slack`)
SlackChannelId *string `json:"slack_channel_id,omitempty" url:"-"`
// Webhook ID where notifications will be sent (required if provider is `webhooks`)
WebhookId *string `json:"webhook_id,omitempty" url:"-"`
}
type Alert struct {
// Unique identifier for the alert
AlertId *string `json:"alert_id,omitempty" url:"alert_id,omitempty"`
// Name of the alert
Name *string `json:"name,omitempty" url:"name,omitempty"`
// List of events that trigger the alert
Events []*AlertEvent `json:"events,omitempty" url:"events,omitempty"`
// Notification provider for the alert
Provider *AlertProviderEnum `json:"provider,omitempty" url:"provider,omitempty"`
// Slack channel ID for notifications
SlackChannelId *string `json:"slack_channel_id,omitempty" url:"slack_channel_id,omitempty"`
// Webhook ID for notifications
WebhookId *string `json:"webhook_id,omitempty" url:"webhook_id,omitempty"`
// Whether the alert is currently active
Enabled *bool `json:"enabled,omitempty" url:"enabled,omitempty"`
// [ISO 8601](https://wikipedia.org/wiki/ISO_8601) timestamp when the alert was created
CreationDate *string `json:"creation_date,omitempty" url:"creation_date,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *Alert) GetAlertId() *string {
if a == nil {
return nil
}
return a.AlertId
}
func (a *Alert) GetName() *string {
if a == nil {
return nil
}
return a.Name
}
func (a *Alert) GetEvents() []*AlertEvent {
if a == nil {
return nil
}
return a.Events
}
func (a *Alert) GetProvider() *AlertProviderEnum {
if a == nil {
return nil
}
return a.Provider
}
func (a *Alert) GetSlackChannelId() *string {
if a == nil {
return nil
}
return a.SlackChannelId
}
func (a *Alert) GetWebhookId() *string {
if a == nil {
return nil
}
return a.WebhookId
}
func (a *Alert) GetEnabled() *bool {
if a == nil {
return nil
}
return a.Enabled
}
func (a *Alert) GetCreationDate() *string {
if a == nil {
return nil
}
return a.CreationDate
}
func (a *Alert) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *Alert) UnmarshalJSON(data []byte) error {
type unmarshaler Alert
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = Alert(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *Alert) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
type AlertEvent struct {
// Kind of event, more info [here](/docs/api/rest/EventKind)
Kind *int `json:"kind,omitempty" url:"kind,omitempty"`
// Value or threshold that triggers the alert
Value *string `json:"value,omitempty" url:"value,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *AlertEvent) GetKind() *int {
if a == nil {
return nil
}
return a.Kind
}
func (a *AlertEvent) GetValue() *string {
if a == nil {
return nil
}
return a.Value
}
func (a *AlertEvent) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *AlertEvent) UnmarshalJSON(data []byte) error {
type unmarshaler AlertEvent
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = AlertEvent(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *AlertEvent) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
// Available notification providers for alerts
type AlertProviderEnum string
const (
AlertProviderEnumSlack AlertProviderEnum = "slack"
AlertProviderEnumWebhooks AlertProviderEnum = "webhooks"
)
func NewAlertProviderEnumFromString(s string) (AlertProviderEnum, error) {
switch s {
case "slack":
return AlertProviderEnumSlack, nil
case "webhooks":
return AlertProviderEnumWebhooks, nil
}
var t AlertProviderEnum
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (a AlertProviderEnum) Ptr() *AlertProviderEnum {
return &a
}
type AlertsDeleteResponse struct {
// ID of the alert that was deleted
AlertId *string `json:"alert_id,omitempty" url:"alert_id,omitempty"`
// Indicates whether the alert was successfully deleted
Deleted *bool `json:"deleted,omitempty" url:"deleted,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *AlertsDeleteResponse) GetAlertId() *string {
if a == nil {
return nil
}
return a.AlertId
}
func (a *AlertsDeleteResponse) GetDeleted() *bool {
if a == nil {
return nil
}
return a.Deleted
}
func (a *AlertsDeleteResponse) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *AlertsDeleteResponse) UnmarshalJSON(data []byte) error {
type unmarshaler AlertsDeleteResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = AlertsDeleteResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *AlertsDeleteResponse) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
type AlertUpdate struct {
// New name for the alert
Name *string `json:"name,omitempty" url:"-"`
// Updated list of events that will trigger the alert
Events []*AlertEvent `json:"events,omitempty" url:"-"`
// Updated notification provider for the alert
Provider *AlertProviderEnum `json:"provider,omitempty" url:"-"`
// Updated Slack channel ID for notifications
SlackChannelId *string `json:"slack_channel_id,omitempty" url:"-"`
// Updated webhook ID for notifications
WebhookId *string `json:"webhook_id,omitempty" url:"-"`
}