-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathopenapi.argus.yaml
More file actions
834 lines (808 loc) · 21.6 KB
/
Copy pathopenapi.argus.yaml
File metadata and controls
834 lines (808 loc) · 21.6 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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
openapi: 3.0.0
info:
version: 0.1.0
title: E2B Argus API
servers:
- url: https://api.e2b.app
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: X-API-Key
AccessTokenAuth:
type: http
scheme: bearer
bearerFormat: access_token
# Generated code uses security schemas in the alphabetical order.
# In order to check first the token, and then the team (so we can already use the user),
# there is a 1 and 2 present in the names of the security schemas.
Supabase1TokenAuth:
type: apiKey
in: header
name: X-Supabase-Token
Supabase2TeamAuth:
type: apiKey
in: header
name: X-Supabase-Team
AdminTokenAuth:
type: apiKey
in: header
name: X-Admin-Token
parameters:
sandboxID:
name: sandboxID
in: path
required: true
schema:
type: string
webhookID:
name: webhookID
in: path
required: true
schema:
type: string
format: uuid
responses:
"400":
description: Bad request
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"401":
description: Authentication error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"404":
description: Not found
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"409":
description: Conflict
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"500":
description: Server error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
schemas:
Error:
required:
- code
- message
properties:
code:
type: integer
format: int32
description: Error code
message:
type: string
description: Error
SandboxEvent:
description: Sandbox event
required:
- id
- version
- type
- timestamp
- sandboxId
- sandboxExecutionId
- sandboxTemplateId
- sandboxBuildId
- sandboxTeamId
properties:
id:
type: string
format: uuid
description: Event unique identifier
version:
type: string
description: Event structure version
type:
type: string
description: Event name
eventCategory:
type: string
deprecated: true
description: Category of the event (e.g., 'lifecycle', 'process', etc.)
eventLabel:
type: string
deprecated: true
description: Label for the specific event type (e.g., 'sandbox_started', 'process_oom', etc.)
eventData:
type: object
nullable: true
description: Optional JSON data associated with the event
timestamp:
type: string
format: date-time
description: Timestamp of the event
sandboxId:
type: string
format: string
description: Unique identifier for the sandbox
sandboxExecutionId:
type: string
format: string
description: Unique identifier for the sandbox execution
sandboxTemplateId:
type: string
format: string
description: Unique identifier for the sandbox template
sandboxBuildId:
type: string
format: string
description: Unique identifier for the sandbox build
sandboxTeamId:
type: string
format: uuid
description: Team identifier associated with the sandbox
WebhookCreate:
description: Configuration for registering new webhooks
required:
- name
- url
- events
- signatureSecret
properties:
name:
type: string
url:
type: string
format: uri
events:
type: array
items:
type: string
enabled:
type: boolean
default: true
signatureSecret:
type: string
description: Secret used to sign the webhook payloads
WebhookCreation:
description: Webhook creation response
required:
- id
- name
- createdAt
- teamId
- url
- enabled
- events
properties:
id:
type: string
description: Webhook unique identifier
name:
type: string
description: Webhook user friendly name
createdAt:
type: string
format: date-time
description: Time when the template was created
teamId:
type: string
description: Unique identifier for the team
url:
type: string
format: uri
enabled:
type: boolean
events:
type: array
items:
type: string
WebhookDetail:
description: Webhook detail response
required:
- id
- teamId
- name
- createdAt
- url
- enabled
- events
properties:
id:
type: string
description: Webhook unique identifier
teamId:
type: string
description: Unique identifier for the team
name:
type: string
description: Webhook user friendly name
createdAt:
type: string
format: date-time
description: Time when the template was created
url:
type: string
format: uri
enabled:
type: boolean
events:
type: array
items:
type: string
WebhookConfiguration:
description: Configuration for updating existing webhooks
properties:
enabled:
type: boolean
name:
type: string
description: Webhook user friendly name
url:
type: string
format: uri
events:
type: array
items:
type: string
signatureSecret:
type: string
description: Secret used to sign the webhook payloads
WebhookDelivery:
description: Webhook delivery attempt
required:
- id
- teamId
- webhookId
- eventId
- sandboxId
- eventType
- status
- durationMs
- requestBody
- requestHeaders
- requestUrl
- errorClass
- timestamp
properties:
id:
type: string
format: uuid
description: Delivery attempt identifier
teamId:
type: string
format: uuid
description: Team identifier
webhookId:
type: string
format: uuid
description: Webhook configuration identifier
eventId:
type: string
format: uuid
description: Sandbox event identifier
sandboxId:
type: string
description: Sandbox identifier
eventType:
type: string
description: Sandbox event type
status:
type: string
enum: [success, failed]
description: Delivery attempt status
durationMs:
type: integer
format: int32
description: Delivery request duration in milliseconds
requestBody:
type: string
description: Serialized webhook request body
requestHeaders:
type: string
description: JSON-encoded request headers with sensitive values redacted
requestUrl:
type: string
format: uri
description: URL attempted for this delivery
responseBody:
type: string
nullable: true
description: Truncated response body, if a response was received
responseHeaders:
type: string
nullable: true
description: JSON-encoded response headers, if a response was received
responseHttpStatusCode:
type: integer
format: int32
nullable: true
description: HTTP response status code, if a response was received
errorClass:
type: string
nullable: true
enum:
- http_error
- dns_error
- timeout
- transport_error
- request_error
- signature_error
- canceled
description: Machine-readable non-HTTP or HTTP failure class
errorMessage:
type: string
nullable: true
description: Error message for failures without a useful response body
timestamp:
type: string
format: date-time
description: Time when the delivery attempt started
WebhookDeliveryStats:
description: Webhook delivery aggregate stats
required:
- buckets
- total
- failed
- durationMs
properties:
buckets:
type: array
items:
$ref: "#/components/schemas/WebhookDeliveryStatsBucket"
total:
type: integer
format: int64
failed:
type: integer
format: int64
durationMs:
$ref: "#/components/schemas/WebhookDeliveryDurationStats"
WebhookDeliveryDurationStats:
description: Webhook delivery duration statistics in milliseconds
required:
- minimum
- average
- maximum
properties:
minimum:
type: number
format: double
average:
type: number
format: double
maximum:
type: number
format: double
WebhookDeliveryStatsBucket:
description: Webhook delivery stats for a time bucket
required:
- timestamp
- total
- failed
- durationMs
properties:
timestamp:
type: string
format: date-time
total:
type: integer
format: int64
failed:
type: integer
format: int64
durationMs:
$ref: "#/components/schemas/WebhookDeliveryDurationStats"
WebhookDeliveryGroup:
description: Webhook delivery attempts grouped by sandbox event
required:
- eventId
- eventType
- sandboxId
- attempts
properties:
eventId:
type: string
format: uuid
eventType:
type: string
sandboxId:
type: string
attempts:
type: array
items:
$ref: "#/components/schemas/WebhookDelivery"
WebhookDeliveriesListPayload:
description: Paginated webhook delivery attempts grouped by event
required:
- data
- nextCursor
properties:
data:
type: array
items:
$ref: "#/components/schemas/WebhookDeliveryGroup"
nextCursor:
type: string
nullable: true
description: Cursor to pass to the next list request, or null when there is no next page.
paths:
/health:
get:
description: Health check
responses:
200:
description: Request was successful
401:
$ref: "#/components/responses/401"
/events/sandboxes/{sandboxID}:
get:
description: Get sandbox events
tags: [events]
security:
- ApiKeyAuth: []
- Supabase1TokenAuth: []
Supabase2TeamAuth: []
parameters:
- $ref: "#/components/parameters/sandboxID"
- name: offset
in: query
required: false
schema:
type: integer
format: int32
minimum: 0
default: 0
- name: limit
in: query
required: false
schema:
type: integer
format: int32
minimum: 1
maximum: 100
default: 10
- name: orderAsc
in: query
required: false
schema:
type: boolean
default: false
- name: types
in: query
required: false
style: form
explode: true
schema:
type: array
items:
type: string
description: Filter events to the provided event types
responses:
"200":
description: Successfully returned the sandbox events
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/SandboxEvent"
"400":
$ref: "#/components/responses/400"
"404":
$ref: "#/components/responses/404"
"401":
$ref: "#/components/responses/401"
"500":
$ref: "#/components/responses/500"
/events/sandboxes:
get:
description: Get all sandbox events for the team associated with the API key
tags: [events]
security:
- ApiKeyAuth: []
- Supabase1TokenAuth: []
Supabase2TeamAuth: []
parameters:
- name: offset
in: query
required: false
schema:
type: integer
format: int32
minimum: 0
default: 0
- name: limit
in: query
required: false
schema:
type: integer
format: int32
minimum: 1
maximum: 100
default: 10
- name: orderAsc
in: query
required: false
schema:
type: boolean
default: false
- name: types
in: query
required: false
style: form
explode: true
schema:
type: array
items:
type: string
description: Filter events to the provided event types
responses:
"200":
description: Successfully returned the sandbox events
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/SandboxEvent"
"400":
$ref: "#/components/responses/400"
"404":
$ref: "#/components/responses/404"
"401":
$ref: "#/components/responses/401"
"500":
$ref: "#/components/responses/500"
/events/webhooks:
post:
operationId: webhookCreate
description: Register events webhook.
tags: [webhooks]
security:
- ApiKeyAuth: []
- Supabase1TokenAuth: []
Supabase2TeamAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/WebhookCreate"
responses:
"201":
description: Successfully created webhook.
content:
application/json:
schema:
$ref: "#/components/schemas/WebhookCreation"
"400":
$ref: "#/components/responses/400"
"404":
$ref: "#/components/responses/404"
"401":
$ref: "#/components/responses/401"
"500":
$ref: "#/components/responses/500"
get:
operationId: webhooksList
description: List registered webhooks.
tags: [webhooks]
security:
- ApiKeyAuth: []
- Supabase1TokenAuth: []
Supabase2TeamAuth: []
responses:
"200":
description: List of registered webhooks.
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/WebhookDetail"
"404":
$ref: "#/components/responses/404"
"401":
$ref: "#/components/responses/401"
"500":
$ref: "#/components/responses/500"
/events/webhooks/{webhookID}:
get:
operationId: webhookGet
description: Get a registered webhook.
tags: [webhooks]
security:
- ApiKeyAuth: []
- Supabase1TokenAuth: []
Supabase2TeamAuth: []
parameters:
- $ref: "#/components/parameters/webhookID"
responses:
"200":
description: Successfully returned the webhook configuration.
content:
application/json:
schema:
$ref: "#/components/schemas/WebhookDetail"
"404":
$ref: "#/components/responses/404"
"401":
$ref: "#/components/responses/401"
"500":
$ref: "#/components/responses/500"
patch:
operationId: webhookUpdate
description: Update a registered webhook configuration.
tags: [webhooks]
security:
- ApiKeyAuth: []
- Supabase1TokenAuth: []
Supabase2TeamAuth: []
parameters:
- $ref: "#/components/parameters/webhookID"
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/WebhookConfiguration"
responses:
"200":
description: Successfully updated webhook.
content:
application/json:
schema:
$ref: "#/components/schemas/WebhookDetail"
"400":
$ref: "#/components/responses/400"
"404":
$ref: "#/components/responses/404"
"401":
$ref: "#/components/responses/401"
"500":
$ref: "#/components/responses/500"
delete:
operationId: webhookDelete
description: Delete a registered webhook.
tags: [webhooks]
security:
- ApiKeyAuth: []
- Supabase1TokenAuth: []
Supabase2TeamAuth: []
parameters:
- $ref: "#/components/parameters/webhookID"
responses:
"200":
description: Successfully deleted webhook.
"404":
$ref: "#/components/responses/404"
"401":
$ref: "#/components/responses/401"
"500":
$ref: "#/components/responses/500"
/events/webhooks/{webhookID}/deliveries:
get:
operationId: webhookDeliveriesList
description: List webhook delivery attempts.
tags: [webhooks]
security:
- ApiKeyAuth: []
- Supabase1TokenAuth: []
Supabase2TeamAuth: []
parameters:
- $ref: "#/components/parameters/webhookID"
- name: cursor
in: query
required: false
schema:
type: string
description: Opaque cursor from the previous response's nextCursor field.
- name: limit
in: query
required: false
schema:
type: integer
format: int32
minimum: 1
maximum: 100
default: 25
- name: orderAsc
in: query
required: false
schema:
type: boolean
default: false
- name: start
in: query
required: false
schema:
type: string
format: date-time
description: Include deliveries at or after this timestamp.
- name: end
in: query
required: false
schema:
type: string
format: date-time
description: Include deliveries before this timestamp.
- name: deliveryStatus
in: query
required: false
style: form
explode: false
schema:
type: array
items:
type: string
enum: [success, failed]
description: Filter deliveries by delivery status
- name: eventType
in: query
required: false
style: form
explode: false
schema:
type: array
items:
type: string
description: Filter deliveries by event type
responses:
"200":
description: List of webhook delivery attempts grouped by event.
content:
application/json:
schema:
$ref: "#/components/schemas/WebhookDeliveriesListPayload"
"400":
$ref: "#/components/responses/400"
"404":
$ref: "#/components/responses/404"
"401":
$ref: "#/components/responses/401"
"500":
$ref: "#/components/responses/500"
/events/webhooks/{webhookID}/stats:
get:
operationId: webhookDeliveryStats
description: Get webhook delivery aggregate stats.
tags: [webhooks]
security:
- ApiKeyAuth: []
- Supabase1TokenAuth: []
Supabase2TeamAuth: []
parameters:
- $ref: "#/components/parameters/webhookID"
- name: start
in: query
required: false
schema:
type: string
format: date-time
description: Inclusive stats range start. Defaults to 24 hours ago.
- name: end
in: query
required: false
schema:
type: string
format: date-time
description: Exclusive stats range end. Defaults to now.
responses:
"200":
description: Webhook delivery stats.
content:
application/json:
schema:
$ref: "#/components/schemas/WebhookDeliveryStats"
"404":
$ref: "#/components/responses/404"
"401":
$ref: "#/components/responses/401"
"500":
$ref: "#/components/responses/500"