-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathswagger.yml
More file actions
4032 lines (4012 loc) · 106 KB
/
swagger.yml
File metadata and controls
4032 lines (4012 loc) · 106 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
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
swagger: "2.0"
info:
description: "CloudGen Access Console API docs"
version: "1.0.2"
title: "CloudGen Access Console"
termsOfService: "https://www.barracuda.com/company/legal/prd_trm"
contact:
email: "hello@barracuda.com"
license:
name: "Apache 2.0"
url: "http://www.apache.org/licenses/LICENSE-2.0.html"
host: "api.us.access.barracuda.com"
basePath: "/api"
tags:
- name: "auth"
description: "Authentication on management console"
- name: "access_policies"
description: "Operations on access policies"
externalDocs:
description: "Console docs"
url: "https://campus.barracuda.com/product/cloudgenaccess/doc/93201523/add-policy/"
- name: "web_policies"
description: "Operations on web policies"
externalDocs:
description: "Console docs"
url: "https://campus.barracuda.com/product/cloudgenaccess"
- name: "web_categories"
description: "Read-only operations on web categories"
externalDocs:
description: "Console docs"
url: "https://campus.barracuda.com/product/cloudgenaccess"
- name: "access_proxies"
description: "Operations on access proxies"
externalDocs:
description: "Console docs"
url: "https://campus.barracuda.com/product/cloudgenaccess/doc/93201527/add-cloudgen-access-proxy/"
- name: "access_resources"
description: "Operations on access resources"
externalDocs:
description: "Console docs"
url: "https://campus.barracuda.com/product/cloudgenaccess/doc/93201529/add-resource/"
- name: "asset_sources"
description: "Operations on asset sources"
- name: "assets"
description: "Operations on assets"
- name: "device_events"
description: "Operations on device events"
- name: "devices"
description: "Operations on devices"
- name: "groups"
description: "Operations on groups"
externalDocs:
description: "Console docs"
url: "https://campus.barracuda.com/product/cloudgenaccess/doc/93201517/add-group/"
- name: "user_directories"
description: "Operations on user directories"
- name: "users"
description: "Operations on users"
externalDocs:
description: "Console docs"
url: "https://campus.barracuda.com/product/cloudgenaccess/doc/93201515/add-user/"
- name: "tenants"
description: "Operations on tenants"
- name: "admins"
description: "Operations on admins"
schemes:
- "https"
paths:
/v1/auth/sign_in:
post:
tags:
- "auth"
summary: "Initiate a management session"
operationId: "signIn"
consumes:
- "application/json"
produces:
- "application/json"
security: []
parameters:
- in: "body"
name: "body"
description: "Object with management credentials"
required: true
schema:
$ref: "#/definitions/SignInRequest"
responses:
200:
description: "successful operation"
schema:
$ref: "#/definitions/SignInResponse"
headers:
Access-Token:
type: string
description: Authentication - Access Token
Client:
type: string
description: Authentication - Client
Token-Type:
type: string
description: Authentication - Token Type (Bearer)
UID:
type: string
description: Authentication - User ID
401:
$ref: "#/responses/Unauthorized"
/v1/auth/validate_token:
get:
tags:
- "auth"
summary: "Verifies if current session token is still valid"
operationId: "verifyToken"
consumes:
- "application/json"
produces:
- "application/json"
security: []
parameters:
- in: query
name: uid
type: "string"
required: true
- in: query
name: access-token
type: "string"
required: true
- in: query
name: client
type: "string"
required: true
responses:
200:
description: "successful operation"
schema:
$ref: "#/definitions/SignInResponse"
401:
$ref: "#/responses/Unauthorized"
/v1/auth/password:
put:
tags:
- "auth"
summary: "Change management password"
operationId: "changePassword"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Object with old and new password"
required: true
schema:
$ref: "#/definitions/PasswordChangeRequest"
responses:
200:
description: "successful operation"
schema:
$ref: "#/definitions/PasswordChangeResponse"
401:
$ref: "#/responses/Unauthorized"
post:
# TODO this POST auth/password appears to be deprecated, always returns 404
tags:
- "auth"
summary: "Reset management password"
operationId: "resetPassword"
consumes:
- "application/json"
produces:
- "application/json"
parameters:
- in: "body"
name: "body"
description: "Object with user email and redirect URL"
required: true
schema:
$ref: "#/definitions/PasswordResetRequest"
responses:
200:
description: "successful operation"
/v1/tenants/{tenant_id}/users:
get:
tags:
- "users"
summary: "List users"
operationId: "listUsers"
produces:
- "application/json"
parameters:
- in: query
name: "status"
description: "Restrict status of the returned users"
required: false
type: string
enum: [enabled, disabled]
- in: query
name: "enrollment_status"
description: "Restrict enrollment status of the returned users"
required: false
type: string
enum: [enrolled, unenrolled, pending, expired]
- in: query
name: "group_name[]"
description: "Restrict groups of the returned users"
required: false
type: array
collectionFormat: multi
items:
type: string
- in: query
name: "group_id[]"
description: "Restrict groups of the returned users"
required: false
type: array
collectionFormat: multi
items:
type: integer
- $ref: '#/parameters/tenantIdParam'
- $ref: '#/parameters/sortParam'
- $ref: '#/parameters/pageParam'
- $ref: '#/parameters/perPageParam'
- $ref: '#/parameters/searchParam'
responses:
200:
description: "successful operation"
headers:
total:
description: "Total number of items (for pagination)"
type: integer
schema:
type: array
items:
allOf:
- $ref: "#/definitions/User"
- type: object
properties:
total_devices:
type: integer
example: 2
401:
$ref: "#/responses/Unauthorized"
404:
$ref: "#/responses/NotFound"
post:
tags:
- "users"
produces:
- "application/json"
consumes:
- "application/json"
summary: "Create user"
operationId: "createUser"
parameters:
- in: "body"
name: "user"
description: "Information about the user to create and whether to send an email invitation"
required: true
schema:
type: object
properties:
user:
type: object
properties:
email:
type: string
format: email
enabled:
type: boolean
example: true
group_ids:
type: array
items:
type: integer
name:
type: string
example: "John Doe"
phone_number:
type: string
send_email_invitation:
type: boolean
- $ref: '#/parameters/tenantIdParam'
responses:
201:
description: "User created"
schema:
allOf:
- $ref: "#/definitions/User"
- type: object
properties:
devices:
# TODO point to device model (probably)
type: array
items:
type: object
401:
$ref: "#/responses/Unauthorized"
404:
$ref: "#/responses/NotFound"
422:
$ref: "#/responses/UnprocessableEntity"
/v1/tenants/{tenant_id}/users/{id}:
get:
tags:
- "users"
produces:
- "application/json"
summary: "Retrieve information about a user"
operationId: "getUser"
parameters:
- in: path
name: "id"
required: true
type: integer
description: "The ID of the user to retrieve"
- $ref: '#/parameters/tenantIdParam'
responses:
200:
description: "User info"
schema:
allOf:
- $ref: "#/definitions/User"
- type: object
properties:
devices:
type: array
items:
$ref: "#/definitions/DevicePartial"
401:
$ref: "#/responses/Unauthorized"
403:
$ref: "#/responses/Forbidden"
404:
$ref: "#/responses/NotFound"
patch:
tags:
- "users"
produces:
- "application/json"
consumes:
- "application/json"
summary: "Edit user"
operationId: "editUser"
parameters:
- in: path
name: "id"
required: true
type: integer
description: "The ID of the user to edit"
- in: body
name: "user"
description: "User information to modify"
required: true
schema:
type: object
properties:
user:
type: object
required:
- enabled
properties:
email:
type: string
format: email
enabled:
type: boolean
example: true
group_ids:
type: array
items:
type: integer
name:
type: string
example: "John Doe"
phone_number:
type: string
- $ref: '#/parameters/tenantIdParam'
responses:
200:
description: "User edited"
schema:
allOf:
- $ref: "#/definitions/User"
- type: object
properties:
devices:
type: array
items:
$ref: "#/definitions/DevicePartial"
401:
$ref: "#/responses/Unauthorized"
403:
$ref: "#/responses/Forbidden"
404:
$ref: "#/responses/NotFound"
422:
$ref: "#/responses/UnprocessableEntity"
delete:
tags:
- "users"
summary: "Delete user"
operationId: "deleteUser"
parameters:
- in: path
name: "id"
required: true
type: array
collectionFormat: csv
items:
type: integer
description: "The IDs of the users to delete, comma-separated"
- $ref: '#/parameters/tenantIdParam'
responses:
204:
description: "User deleted"
401:
$ref: "#/responses/Unauthorized"
404:
$ref: "#/responses/NotFound"
422:
$ref: "#/responses/UnprocessableEntity"
/v1/tenants/{tenant_id}/users/{id}/enrollment:
post:
tags:
- "users"
summary: "Generate user enrollment link"
operationId: "generateEnrollmentLink"
parameters:
- in: path
name: "id"
required: true
type: integer
description: "The ID of the user for which to generate a enrollment link"
- $ref: '#/parameters/tenantIdParam'
- in: "body"
name: "enrollment"
description: "Information about the enrollment type to create"
required: true
schema:
type: object
required:
- enrollment
properties:
enrollment:
type: object
properties:
device_classification:
type: string
enum:
- 'supervised'
- 'managed'
- 'personal'
default: 'supervised'
refcount:
type: integer
default: 10
description: "The number of slots to create"
responses:
201:
description: "Enrollment link created"
schema:
type: object
properties:
count:
type: integer
expiration:
type: string
format: date-time
url:
type: string
format: url
device_classification:
type: string
enum: [supervised, managed, personal]
400:
$ref: "#/responses/BadRequest"
401:
$ref: "#/responses/Unauthorized"
403:
$ref: "#/responses/Forbidden"
404:
$ref: "#/responses/NotFound"
/v1/tenants/{tenant_id}/users/{id}/enrollment/{enrollment_id}:
patch:
tags:
- "users"
summary: "Change number of slots available for user enrollment link"
operationId: "changeEnrollmentLinkSlots"
parameters:
- in: path
name: "id"
required: true
type: integer
description: "The ID of the user for which to change the number of slots"
- in: path
name: "enrollment_id"
required: true
type: string
format: uuid
description: "The ID of the enrollment link for which to change the number of slots"
- in: "body"
name: "request"
description: "Request body"
required: true
schema:
type: object
properties:
user_id:
type: integer
description: "The ID of the user for which to change the number of slots"
enrollment:
type: object
properties:
refcount:
type: integer
description: "The desired number of slots"
- $ref: '#/parameters/tenantIdParam'
responses:
200:
description: "Enrollment link changed"
schema:
type: object
properties:
count:
type: integer
id:
type: string
format: uuid
expiration:
type: string
format: date-time
url:
type: string
format: url
user_id:
type: integer
device_classification:
type: string
enum: [supervised, managed, personal]
401:
$ref: "#/responses/Unauthorized"
403:
$ref: "#/responses/Forbidden"
404:
$ref: "#/responses/NotFound"
422:
$ref: "#/responses/UnprocessableEntity"
delete:
tags:
- "users"
summary: "Revoke user enrollment link"
operationId: "revokeEnrollmentLink"
parameters:
- in: path
name: "id"
required: true
type: integer
description: "The ID of the user for which to revoke the enrollment link"
- in: path
name: "enrollment_id"
required: true
type: string
format: uuid
description: "The ID of the enrollment link"
- $ref: '#/parameters/tenantIdParam'
responses:
204:
description: "Enrollment link revoked"
401:
$ref: "#/responses/Unauthorized"
403:
$ref: "#/responses/Forbidden"
404:
$ref: "#/responses/NotFound"
/v1/tenants/{tenant_id}/users/{id}/send_enrollment_email:
post:
tags:
- "users"
produces:
- "application/json"
summary: "Send email with enrollment link"
operationId: "sendEnrollmentEmail"
parameters:
- in: path
name: "id"
required: true
type: integer
description: "The ID of the user for which to send the email"
- $ref: '#/parameters/tenantIdParam'
- in: body
name: "device_classifications"
description: "Device classifications to send enrollment emails for"
required: true
schema:
type: object
properties:
device_classifications:
type: object
properties:
managed:
type: integer
personal:
type: integer
supervised:
type: integer
responses:
201:
description: "Email sent"
422:
$ref: "#/responses/UnprocessableEntity"
/v1/tenants/{tenant_id}/users/{user_id}/devices/{device_id}:
delete:
tags:
- "devices"
- "users"
summary: "Delete device"
operationId: "deleteDevice"
parameters:
- in: path
name: "user_id"
required: true
type: integer
description: "The ID of the user who owns the device to delete"
- in: path
name: "device_id"
required: true
type: string
format: uuid
description: "The ID of the device to delete"
- $ref: '#/parameters/tenantIdParam'
responses:
204:
description: "Device deleted"
401:
$ref: "#/responses/Unauthorized"
404:
$ref: "#/responses/NotFound"
/v1/tenants/{tenant_id}/groups:
get:
tags:
- "groups"
summary: "List groups"
operationId: "listGroups"
produces:
- "application/json"
parameters:
- $ref: '#/parameters/tenantIdParam'
- $ref: '#/parameters/sortParam'
- $ref: '#/parameters/pageParam'
- $ref: '#/parameters/perPageParam'
- $ref: '#/parameters/searchParam'
responses:
200:
description: "successful operation"
headers:
total:
description: "Total number of items (for pagination)"
type: integer
schema:
type: array
items:
allOf:
- $ref: "#/definitions/Group"
- type: object
properties:
total_users:
type: object
properties:
pending:
type: integer
example: 1
unenrolled:
type: integer
example: 1
enrolled:
type: integer
example: 1
401:
$ref: "#/responses/Unauthorized"
404:
$ref: "#/responses/NotFound"
post:
tags:
- "groups"
produces:
- "application/json"
consumes:
- "application/json"
summary: "Create group"
operationId: "createGroup"
parameters:
- in: "body"
name: "group"
description: "Information about the group to create"
required: true
schema:
type: object
properties:
group:
type: object
properties:
color:
type: string
description:
type: string
example: "An example group"
name:
type: string
example: "Ninjas"
- $ref: '#/parameters/tenantIdParam'
responses:
201:
description: "Group created"
schema:
allOf:
- $ref: "#/definitions/Group"
- type: object
properties:
users:
type: array
items:
type: object
properties:
id:
type: integer
example: 23
name:
type: string
example: "John Doe"
401:
$ref: "#/responses/Unauthorized"
404:
$ref: "#/responses/NotFound"
422:
$ref: "#/responses/UnprocessableEntity"
/v1/tenants/{tenant_id}/groups/{id}:
get:
tags:
- "groups"
produces:
- "application/json"
summary: "Retrieve information about a group"
operationId: "getGroup"
parameters:
- in: path
name: "id"
required: true
type: integer
description: "The ID of the group to retrieve"
- $ref: '#/parameters/tenantIdParam'
responses:
200:
description: "Group info"
schema:
allOf:
- $ref: "#/definitions/Group"
- type: object
properties:
users:
type: array
items:
type: object
properties:
id:
type: integer
example: 23
name:
type: string
example: "John Doe"
401:
$ref: "#/responses/Unauthorized"
403:
$ref: "#/responses/Forbidden"
404:
$ref: "#/responses/NotFound"
patch:
tags:
- "groups"
produces:
- "application/json"
consumes:
- "application/json"
summary: "Edit group"
operationId: "editGroup"
parameters:
- in: path
name: "id"
required: true
type: integer
description: "The ID of the group to edit"
- in: body
name: "group"
description: "Group information to modify"
required: true
schema:
type: object
properties:
group:
$ref: "#/definitions/Group"
- $ref: '#/parameters/tenantIdParam'
responses:
200:
description: "Group edited"
schema:
allOf:
- $ref: "#/definitions/Group"
- type: object
properties:
users:
type: array
items:
type: object
properties:
id:
type: integer
example: 23
name:
type: string
example: "John Doe"
401:
$ref: "#/responses/Unauthorized"
403:
$ref: "#/responses/Forbidden"
404:
$ref: "#/responses/NotFound"
422:
$ref: "#/responses/UnprocessableEntity"
delete:
tags:
- "groups"
summary: "Delete group"
operationId: "deleteGroup"
parameters:
- in: path
name: "id"
required: true
type: array
collectionFormat: csv
items:
type: integer
description: "The IDs of the groups to delete"
- $ref: '#/parameters/tenantIdParam'
responses:
204:
description: "Group deleted"
401:
$ref: "#/responses/Unauthorized"
404:
$ref: "#/responses/NotFound"
/v1/tenants/{tenant_id}/devices:
get:
tags:
- "devices"
summary: "List devices"
operationId: "listDevices"
produces:
- "application/json"
parameters:
- $ref: '#/parameters/sortParam'
- $ref: '#/parameters/pageParam'
- $ref: '#/parameters/perPageParam'
- $ref: '#/parameters/tenantIdParam'
responses:
200:
description: "successful operation"
headers:
total:
description: "Total number of items (for pagination)"
type: integer
schema:
type: array
items:
allOf:
- $ref: "#/definitions/Device"
- type: object
properties:
user:
type: object
properties:
id:
type: integer
example: 23
name:
type: string
example: "John Doe"
401:
$ref: "#/responses/Unauthorized"
404:
$ref: "#/responses/NotFound"
/v1/tenants/{tenant_id}/devices/{id}:
get:
tags:
- "devices"
produces:
- "application/json"
summary: "Retrieve information about a device"
operationId: "getDevice"
parameters:
- in: path
name: "id"
required: true
type: string
format: uuid
description: "The ID of the device to retrieve"
- $ref: '#/parameters/tenantIdParam'
responses:
200:
description: "Device info"
schema:
allOf:
- $ref: "#/definitions/Device"
- type: object
properties:
notes:
type: string
x-nullable: true
example: null
enabled:
type: boolean
example: true
last_successful_auth:
type: string
format: date-time
x-nullable: true
# User is returned with more properties in this one
user:
type: object
properties:
email:
type: string
format: email
phone_number:
type: string
# we must still include these two because go-swagger is bad at merging allOf
id:
type: integer
example: 23
name:
type: string
example: "John Doe"
401:
$ref: "#/responses/Unauthorized"
403:
$ref: "#/responses/Forbidden"
404:
$ref: "#/responses/NotFound"
patch:
tags:
- "devices"
produces:
- "application/json"
consumes:
- "application/json"
summary: "Edit device"
operationId: "editDevice"
parameters:
- in: path
name: "id"
required: true
type: string
format: uuid
description: "The ID of the device to edit"
- $ref: '#/parameters/tenantIdParam'
- in: body
name: "device"
description: "Device information to modify"
required: true
schema:
type: object
properties:
device:
type: object
required:
- enabled
properties:
enabled:
type: boolean
notes:
type: string
x-nullable: true
example: null
responses:
200:
description: "Device edited"
schema:
$ref: "#/definitions/DevicePartial"
401:
$ref: "#/responses/Unauthorized"
403:
$ref: "#/responses/Forbidden"
404:
$ref: "#/responses/NotFound"
422:
$ref: "#/responses/UnprocessableEntity"
/v1/tenants/{tenant_id}/devices/{id}/revoke_auth_attempt:
delete:
tags:
- "devices"
produces: