forked from devtron-labs/devtron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotification.yaml
326 lines (317 loc) · 9.1 KB
/
notification.yaml
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
openapi: "3.0.0"
info:
version: 1.0.0
title: Swagger Petstore
description: A sample API that uses a petstore as an example to demonstrate features in the OpenAPI 3.0 specification
termsOfService: http://swagger.io/terms/
contact:
name: Swagger API Team
email: [email protected]
url: http://swagger.io
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: http://petstore.swagger.io/api
paths:
/notification:
get:
summary: Returns all notification settings
description: Returns all notification settings
operationId: findNotificationSetting
parameters:
- name: offset
in: query
description: value can be regex search string.
required: true
schema:
type: integer
- name: size
in: query
description: value can be regex search string.
required: true
schema:
type: integer
responses:
'200':
description: list response
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationSetting'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
summary: Creates a new NotificationSetting
description: create NotificationSetting api.
operationId: addNotificationSetting
requestBody:
description: json as request body
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationSetting'
responses:
'200':
description: create NotificationSetting response
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationSetting'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
put:
summary: Update NotificationSetting
description: Update NotificationSetting api either recipients or events(trigger/success/failed).
operationId: updateNotificationSetting
requestBody:
description: json as request body
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationSetting'
responses:
'200':
description: create NotificationSetting response
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationSetting'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
delete:
summary: delete NotificationSetting
description: delete NotificationSetting.
operationId: deleteNotificationSetting
requestBody:
description: json as request body
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationSetting'
responses:
'200':
description: create NotificationSetting response
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationSetting'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/notification/recipient:
get:
summary: used to fetch providers(recipients)
description: recipients fetch by string search, it will return slacks providers and email ids
operationId: deleteGroupPolicy
parameters:
- name: value
in: query
description: value can be regex search string.
required: true
schema:
type: string
responses:
'204':
description: list of recipients
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/notification/channel:
get:
summary: get all NotificationSettingConfig list
description: get all NotificationSettingConfig list
operationId: findNotificationSettingConfig
responses:
'200':
description: list response
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationConfigResponse'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
summary: Creates a new NotificationSettingConfig
description: create NotificationSettingConfig, Slack or SES
operationId: addNotificationSettingConfig
requestBody:
description: json as request body
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationConfig'
responses:
'200':
description: create NotificationSettingConfig response
content:
application/json:
schema:
$ref: '#/components/schemas/NotificationConfigResponse'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
NotificationSetting:
type: object
required:
- configName
properties:
id:
type: integer
description: Unique id
configName:
type: string
description: Unique name of group
appId:
type: integer
description: app id
envId:
type: integer
description: env id
pipelineIds:
type: array
items:
type: integer
eventTypeIds:
type: array
items:
type: integer
pipelineType:
type: string
description: pipeline type CI or CD
providers:
type: array
items:
$ref: '#/components/schemas/providers'
description: role filters objects
providers:
type: object
required:
- dest
properties:
dest:
type: string
description: channel destination name
rule:
type: string
description: rule
configId:
type: integer
description: config id
NotificationConfig:
type: object
required:
- channel
properties:
channel:
type: string
description: channel type
enum:
- slack
- ses
configs:
type: array
items:
$ref: '#/components/schemas/configs'
description: config holds for either slack or ses
NotificationConfigResponse:
type: object
properties:
slackConfigs:
type: array
items:
$ref: '#/components/schemas/configs'
description: config holds for either slack or ses
sesConfigs:
type: array
items:
$ref: '#/components/schemas/configs'
description: config holds for either slack or ses
configs:
type: object
required:
- type
- configName
properties:
id:
type: integer
description: unique id for config either slack or ses on response or update only
type:
type: string
description: channel destination type, slack or ses
configName:
type: string
description: configName
secretKey:
type: string
description: secretKey, only in case of ses
accessKey:
type: string
description: accessKey, only in case of ses
fromEmail:
type: string
description: fromEmail, only in case of ses
region:
type: string
description: region, only in case of ses
webhookUrl:
type: string
description: webhook url, only fill in case of type is slack
teamId:
type: integer
description: project id, only fill in case of type is slack
userId:
type: integer
description: project id, only fill in case of type is slack
entity:
type: object
properties:
id:
type: integer
description: it contains entity id
name:
type: string
description: it contains entity name
Error:
required:
- code
- message
properties:
code:
type: integer
format: int32
description: Error code
message:
type: string
description: Error message