-
Notifications
You must be signed in to change notification settings - Fork 10
/
quartz-oem.yml
588 lines (588 loc) · 17.7 KB
/
quartz-oem.yml
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
579
580
581
582
583
584
585
586
587
588
openapi: 3.0.0
info:
title: QuartzPublicAPI
version: 0.1.0
license:
name: MIT
url: 'https://opensource.org/licenses/MIT'
servers:
- url: /api/v2
security:
- bearerAuth: []
paths:
/orgs:
get:
operationId: GetOrgs
tags:
- Organizations
summary: List all organizations
responses:
'200':
description: A list of organizations
content:
application/json:
schema:
$ref: '#/components/schemas/Organizations'
'401':
description: Unauthorized bearer token
$ref: '#/components/responses/ServerError'
default:
description: Unexpected error
$ref: '#/components/responses/ServerError'
post:
operationId: PostOrgs
tags:
- Organizations
summary: Creates an organization
requestBody:
description: Information for provisioning an organization
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationRequest'
responses:
'201':
description: Organization created
content:
application/json:
schema:
$ref: '#/components/schemas/OrganizationWithToken'
'400':
description: Invalid request
$ref: '#/components/responses/ServerError'
'401':
description: Unauthorized bearer token
$ref: '#/components/responses/ServerError'
'403':
description: Organization limit reached
$ref: '#/components/responses/ServerError'
'409':
description: Organization name taken
$ref: '#/components/responses/ServerError'
default:
description: Unexpected error
$ref: '#/components/responses/ServerError'
'/orgs/{orgID}':
get:
operationId: GetOrgsID
tags:
- Organizations
summary: Retrieve a single organization
parameters:
- in: path
name: orgID
schema:
type: string
required: true
description: The ID of the organization
responses:
'200':
description: The found organization
content:
application/json:
schema:
$ref: '#/components/schemas/Organization'
'401':
description: Unauthorized bearer token
$ref: '#/components/responses/ServerError'
'404':
description: Organization not found
$ref: '#/components/responses/ServerError'
default:
description: Unexpected error
$ref: '#/components/responses/ServerError'
delete:
operationId: DeleteOrgsID
tags:
- Organizations
summary: Delete a single organization
parameters:
- in: path
name: orgID
schema:
type: string
required: true
description: The ID of the organization
responses:
'204':
description: The organization was deleted
content:
application/json:
schema:
type: string
'401':
description: Unauthorized bearer token
$ref: '#/components/responses/ServerError'
'503':
description: Service Unavailable
$ref: '#/components/responses/ServerError'
default:
description: Unexpected error
$ref: '#/components/responses/ServerError'
'/orgs/{orgID}/limits':
get:
operationId: GetOrgsIDLimits
tags:
- Limits
summary: Get the limits of an organization
parameters:
- in: path
name: orgID
schema:
type: string
required: true
description: The ID of the organization
responses:
'200':
description: Organization limits
content:
application/json:
schema:
$ref: '#/components/schemas/OrgLimits'
'401':
description: Unauthorized bearer token
$ref: '#/components/responses/ServerError'
'404':
description: Organization not found
$ref: '#/components/responses/ServerError'
default:
description: Unexpected error
$ref: '#/components/responses/ServerError'
put:
operationId: PatchOrgsIDLimits
tags:
- Limits
summary: Update the limits of an organization
parameters:
- in: path
name: orgID
schema:
type: string
required: true
description: The ID of the organization
requestBody:
description: Updated limits for an organization
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/OrgLimits'
responses:
'200':
description: Organization limits
content:
application/json:
schema:
$ref: '#/components/schemas/OrgLimits'
'400':
description: Invalid request
$ref: '#/components/responses/ServerError'
'401':
description: Unauthorized bearer token
$ref: '#/components/responses/ServerError'
'404':
description: Organization not found
$ref: '#/components/responses/ServerError'
default:
description: Unexpected error
$ref: '#/components/responses/ServerError'
'/orgs/{orgId}/users':
get:
operationId: GetOrgUsers
tags:
- Users
summary: Get all users in an organization
parameters:
- in: path
name: orgID
schema:
type: string
required: true
description: The ID of the organization
responses:
'200':
description: Organization's users
content:
application/json:
schema:
type: array
items:
properties:
email:
type: string
description: user's email
firstName:
type: string
description: user's first name
id:
type: string
description: user's id in idpe
lastName:
type: string
description: user's last name
required:
- email
- firstName
- id
- lastName
'400':
description: Invalid request
$ref: '#/components/responses/ServerError'
'401':
description: Unauthorized bearer token
$ref: '#/components/responses/ServerError'
'404':
description: Organization not found
$ref: '#/components/responses/ServerError'
default:
description: Unexpected error
$ref: '#/components/responses/ServerError'
post:
operationId: PostUsersToOrg
tags:
- Users
summary: Add users to an organization
parameters:
- in: path
name: orgID
schema:
type: string
required: true
description: The ID of the organization
requestBody:
description: A list of email address's to be invited to the organization
required: true
content:
application/json:
schema:
type: array
description: A list of email address's to be invited to the organization
items:
type: string
responses:
'200':
description: Email addresses successfully invited to the OEM organization and errors for failed email addresses
content:
application/json:
schema:
$ref: '#/components/schemas/OEMInvitedResponse'
'400':
description: Invalid request
$ref: '#/components/responses/ServerError'
'401':
description: Unauthorized bearer token
$ref: '#/components/responses/ServerError'
'404':
description: Organization not found
$ref: '#/components/responses/ServerError'
'429':
description: User already exists in organization
$ref: '#/components/responses/ServerError'
default:
description: Unexpected error
$ref: '#/components/responses/ServerError'
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
schemas:
BucketLimits:
description: Bucket limits
type: object
properties:
maxBuckets:
example: 2
description: Number of buckets allowed
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Unlimited'
- $ref: '#/components/schemas/Limit'
maxRetentionDuration:
description: Retention duration limits in nanoseconds
example: 2592000000000000
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Unlimited'
- $ref: '#/components/schemas/Limit'
CheckLimits:
description: Check limits
type: object
properties:
maxChecks:
description: Number of checks allowed
example: 2
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Unlimited'
- $ref: '#/components/schemas/Limit'
DashboardLimits:
description: Dashboard limits
type: object
properties:
maxDashboards:
description: Number of dashboards allowed
example: 5
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Unlimited'
- $ref: '#/components/schemas/Limit'
Error:
properties:
code:
description: code is the machine-readable error code.
readOnly: true
type: string
enum:
- internal error
- not implemented
- not found
- conflict
- invalid
- unprocessable entity
- empty value
- unavailable
- forbidden
- too many requests
- unauthorized
- method not allowed
- request too large
- unsupported media type
message:
readOnly: true
description: Human-readable message.
type: string
op:
readOnly: true
description: Describes the logical code operation when the error occurred. Useful for debugging.
type: string
err:
readOnly: true
description: Stack of errors that occurred during processing of the request. Useful for debugging.
type: string
required:
- code
Limit:
description: Limit of at least 1
type: integer
minimum: 1
NotificationEndpointLimits:
description: Notification endpoint limits
type: object
properties:
blockedNotificationEndpoints:
description: Notification endpoints not allowed CSV
example: 'http,pagerduty'
type: string
NotificationRuleLimits:
description: Notification rule limits
type: object
properties:
maxNotifications:
description: Number of notifications allowed
example: 2
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Unlimited'
- $ref: '#/components/schemas/Limit'
blockedNotificationRules:
description: Notification rules not allowed CSV
example: 'http,pagerduty'
type: string
OEMInvitedEmail:
type: string
description: Email of successfully invited user for an OEM organization
OEMInvitedError:
type: string
description: Conflict or Validation error message for failed invites to an OEM organization
OEMInvitedResponse:
type: object
properties:
emails:
type: array
items:
$ref: '#/components/schemas/OEMInvitedEmail'
errors:
type: array
items:
$ref: '#/components/schemas/OEMInvitedError'
OrganizationRequest:
type: object
properties:
orgName:
description: name of the organization
type: string
provider:
description: name of the cloud provider
type: string
enum:
- AWS
- GCP
- Azure
region:
description: name of the region within the cloud provider
type: string
rateLimits:
$ref: '#/components/schemas/OrgLimits'
OrganizationWithToken:
allOf:
- $ref: '#/components/schemas/Organization'
- type: object
properties:
token:
description: Authentication token to manage the organization and its resources in IDPE
readOnly: true
type: string
links:
description: Links to the IDPE resources for this organization
readOnly: true
type: object
example:
resource: path/to/resource
Organization:
type: object
properties:
id:
description: the IDPE organization ID
readOnly: true
type: string
apiUrl:
description: URL for talking to a specific cluster
readOnly: true
type: string
name:
description: name of the organization
type: string
region:
description: name of the region within the cloud provider
type: string
provider:
description: name of the cloud provider
type: string
enum:
- AWS
- GCP
- Azure
Organizations:
type: array
items:
$ref: '#/components/schemas/Organization'
OrgLimits:
type: object
properties:
orgID:
type: string
readOnly: true
description: The ID of the organization that the rates apply to.
rate:
$ref: '#/components/schemas/RateLimits'
bucket:
$ref: '#/components/schemas/BucketLimits'
task:
$ref: '#/components/schemas/TaskLimits'
dashboard:
$ref: '#/components/schemas/DashboardLimits'
check:
$ref: '#/components/schemas/CheckLimits'
notificationRule:
$ref: '#/components/schemas/NotificationRuleLimits'
notificationEndpoint:
$ref: '#/components/schemas/NotificationEndpointLimits'
stack:
description: Stack limits
type: object
properties:
enabled:
example: true
type: boolean
timeout:
description: Timeout limits
type: object
properties:
queryUnconditionalTimeoutSeconds:
example: 10
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Unlimited'
- $ref: '#/components/schemas/Limit'
queryidleWriteTimeoutSeconds:
example: 10
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Unlimited'
- $ref: '#/components/schemas/Limit'
ioxQuery:
description: IOx query limits
type: object
properties:
partitions:
description: Number of partitions allowed in a single query.
$ref: '#/components/schemas/Limit'
parquetFiles:
description: Number of parquet files allowed in a single query.
$ref: '#/components/schemas/Limit'
required:
- orgID
- rate
- bucket
- task
- dashboard
- check
- notificationRule
- notificationEndpoint
RateLimits:
description: Usage rate limits
type: object
properties:
readKBs:
description: KB of data query'd per second
example: 1000
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Limit'
maximum: 10000
writeKBs:
description: KB of data written per second
example: 17
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Limit'
maximum: 10000
cardinality:
description: Max cardinality of data
example: 10000
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Limit'
maximum: 1000000
RestrictedLimit:
description: Restrict access entirely
type: integer
enum:
- -1
TaskLimits:
description: Task limits
type: object
properties:
maxTasks:
description: Number of tasks allowed
example: 5
oneOf:
- $ref: '#/components/schemas/RestrictedLimit'
- $ref: '#/components/schemas/Unlimited'
- $ref: '#/components/schemas/Limit'
Unlimited:
description: Unbounded limit
type: integer
enum:
- 0
responses:
NoContent:
description: No content
ServerError:
description: Non 2XX error response from server.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'