-
Notifications
You must be signed in to change notification settings - Fork 366
Expand file tree
/
Copy pathtenant.yaml
More file actions
443 lines (414 loc) · 9.88 KB
/
tenant.yaml
File metadata and controls
443 lines (414 loc) · 9.88 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
Tenant:
properties:
metadata:
$ref: "./metadata.yaml#/APIResourceMeta"
name:
type: string
description: The name of the tenant.
slug:
type: string
description: The slug of the tenant.
analyticsOptOut:
type: boolean
description: Whether the tenant has opted out of analytics.
alertMemberEmails:
type: boolean
description: Whether to alert tenant members.
version:
$ref: "#/TenantVersion"
description: The version of the tenant.
environment:
$ref: "#/TenantEnvironment"
description: The environment type of the tenant.
dataRetentionPeriod:
type: string
description: The data retention period for the tenant, e.g. 720h.
required:
- metadata
- name
- slug
- version
type: object
TenantVersion:
enum:
- "V0"
- "V1"
type: string
TenantUIVersion:
enum:
- "V0"
- "V1"
type: string
TenantAlertingSettings:
properties:
metadata:
$ref: "./metadata.yaml#/APIResourceMeta"
alertMemberEmails:
type: boolean
description: Whether to alert tenant members.
enableWorkflowRunFailureAlerts:
type: boolean
description: Whether to send alerts when workflow runs fail.
enableExpiringTokenAlerts:
type: boolean
description: Whether to enable alerts when tokens are approaching expiration.
enableTenantResourceLimitAlerts:
type: boolean
description: Whether to enable alerts when tenant resources are approaching limits.
maxAlertingFrequency:
type: string
description: The max frequency at which to alert.
lastAlertedAt:
type: string
description: The last time an alert was sent.
format: date-time
required:
- metadata
- maxAlertingFrequency
type: object
# IMPORTANT: keep values in sync with sql/schema/v0.sql#TenantEnvironment
TenantEnvironment:
enum:
- "local"
- "development"
- "production"
type: string
CreateTenantRequest:
properties:
name:
type: string
description: The name of the tenant.
x-oapi-codegen-extra-tags:
validate: "required"
slug:
type: string
description: The slug of the tenant.
x-oapi-codegen-extra-tags:
validate: "required,hatchetName"
engineVersion:
$ref: "#/TenantVersion"
description: The engine version of the tenant. Defaults to V0.
environment:
$ref: "#/TenantEnvironment"
description: The environment type of the tenant.
onboardingData:
type: object
description: Additional onboarding data to store with the tenant.
additionalProperties: true
required:
- name
- slug
type: object
UpdateTenantRequest:
properties:
name:
type: string
description: The name of the tenant.
analyticsOptOut:
type: boolean
description: Whether the tenant has opted out of analytics.
alertMemberEmails:
type: boolean
description: Whether to alert tenant members.
enableWorkflowRunFailureAlerts:
type: boolean
description: Whether to send alerts when workflow runs fail.
enableExpiringTokenAlerts:
type: boolean
description: Whether to enable alerts when tokens are approaching expiration.
enableTenantResourceLimitAlerts:
type: boolean
description: Whether to enable alerts when tenant resources are approaching limits.
maxAlertingFrequency:
type: string
description: The max frequency at which to alert.
x-oapi-codegen-extra-tags:
validate: "omitnil,duration"
version:
$ref: "#/TenantVersion"
description: The version of the tenant.
type: object
TenantResource:
enum:
- "WORKER"
- "WORKER_SLOT"
- "EVENT"
- "TASK_RUN"
- "CRON"
- "SCHEDULE"
- "INCOMING_WEBHOOK"
type: string
TenantResourceLimit:
properties:
metadata:
$ref: "./metadata.yaml#/APIResourceMeta"
resource:
$ref: "#/TenantResource"
description: The resource associated with this limit.
limitValue:
type: integer
description: The limit associated with this limit.
alarmValue:
type: integer
description: The alarm value associated with this limit to warn of approaching limit value.
value:
type: integer
description: The current value associated with this limit.
window:
type: string
description: The meter window for the limit. (i.e. 1 day, 1 week, 1 month)
lastRefill:
type: string
description: The last time the limit was refilled.
format: date-time
required:
- metadata
- tenantId
- resource
- limitValue
- value
type: object
TenantResourcePolicy:
properties:
limits:
type: array
items:
$ref: "#/TenantResourceLimit"
description: A list of resource limits for the tenant.
required:
- limits
type: object
TenantMember:
properties:
metadata:
$ref: "./metadata.yaml#/APIResourceMeta"
user:
$ref: "./_index.yaml#/UserTenantPublic"
description: The user associated with this tenant member.
role:
$ref: "#/TenantMemberRole"
description: The role of the user in the tenant.
tenant:
$ref: "#/Tenant"
description: The tenant associated with this tenant member.
required:
- metadata
- user
- role
type: object
TenantMemberList:
properties:
pagination:
$ref: "./metadata.yaml#/PaginationResponse"
rows:
items:
$ref: "#/TenantMember"
type: array
x-go-name: Rows
TenantMemberRole:
enum:
- "OWNER"
- "ADMIN"
- "MEMBER"
type: string
TenantList:
properties:
pagination:
$ref: "./metadata.yaml#/PaginationResponse"
rows:
items:
$ref: "#/Tenant"
type: array
x-go-name: Rows
CreateTenantInviteRequest:
properties:
email:
type: string
description: The email of the user to invite.
x-oapi-codegen-extra-tags:
validate: "required,email"
role:
$ref: "#/TenantMemberRole"
description: The role of the user in the tenant.
x-oapi-codegen-extra-tags:
validate: "required"
required:
- email
- role
type: object
TenantAlertEmailGroup:
properties:
metadata:
$ref: "./metadata.yaml#/APIResourceMeta"
emails:
type: array
items:
type: string
description: A list of emails for users
required:
- metadata
- emails
type: object
TenantAlertEmailGroupList:
properties:
pagination:
$ref: "./metadata.yaml#/PaginationResponse"
rows:
items:
$ref: "#/TenantAlertEmailGroup"
type: array
x-go-name: Rows
CreateTenantAlertEmailGroupRequest:
properties:
emails:
type: array
items:
type: string
description: A list of emails for users
x-oapi-codegen-extra-tags:
validate: "required,dive,email"
required:
- emails
type: object
UpdateTenantAlertEmailGroupRequest:
properties:
emails:
type: array
items:
type: string
description: A list of emails for users
x-oapi-codegen-extra-tags:
validate: "required,dive,email"
required:
- emails
type: object
UpdateTenantInviteRequest:
properties:
role:
$ref: "#/TenantMemberRole"
description: The role of the user in the tenant.
x-oapi-codegen-extra-tags:
validate: "required"
required:
- role
type: object
UpdateTenantMemberRequest:
properties:
role:
$ref: "#/TenantMemberRole"
description: The role of the user in the tenant.
x-oapi-codegen-extra-tags:
validate: "required"
required:
- role
type: object
TenantInvite:
properties:
metadata:
$ref: "./metadata.yaml#/APIResourceMeta"
email:
type: string
description: The email of the user to invite.
role:
$ref: "#/TenantMemberRole"
description: The role of the user in the tenant.
tenantId:
type: string
description: The tenant id associated with this tenant invite.
tenantName:
type: string
description: The tenant name for the tenant.
expires:
type: string
description: The time that this invite expires.
format: date-time
required:
- metadata
- email
- role
- expires
- tenantId
type: object
TenantInviteList:
properties:
pagination:
$ref: "./metadata.yaml#/PaginationResponse"
rows:
items:
$ref: "#/TenantInvite"
type: array
x-go-name: Rows
QueueMetrics:
type: object
properties:
numQueued:
type: integer
description: The number of items in the queue.
numRunning:
type: integer
description: The number of items running.
numPending:
type: integer
description: The number of items pending.
required:
- numQueued
- numRunning
- numPending
TenantQueueMetrics:
properties:
total:
$ref: "#/QueueMetrics"
description: The total queue metrics.
workflow:
type: object
additionalProperties:
$ref: "#/QueueMetrics"
queues:
type: object
additionalProperties:
type: integer
TenantStepRunQueueMetrics:
properties:
queues:
type: object
TaskStats:
type: object
additionalProperties:
$ref: "#/TaskStat"
TaskStat:
properties:
queued:
$ref: "#/TaskStatusStat"
running:
$ref: "#/TaskStatusStat"
type: object
TaskStatusStat:
properties:
total:
type: integer
format: int64
queues:
type: object
additionalProperties:
type: integer
format: int64
concurrency:
type: array
items:
$ref: "#/ConcurrencyStat"
oldest:
type: string
format: date-time
type: object
ConcurrencyStat:
properties:
expression:
type: string
type:
type: string
keys:
type: object
additionalProperties:
type: integer
format: int64
type: object