-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathkafka-admin-rest.yaml
More file actions
1840 lines (1840 loc) · 53.5 KB
/
Copy pathkafka-admin-rest.yaml
File metadata and controls
1840 lines (1840 loc) · 53.5 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
---
openapi: 3.0.3
info:
title: Kafka Instance API
description: "API for interacting with Kafka Instance. Includes Produce, Consume\
\ and Admin APIs"
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
version: 0.14.1-SNAPSHOT
servers:
- url: /
description: Kafka Admin REST API
security:
- Bearer: []
- OAuth2: []
tags:
- name: topics
description: Topic Management
- name: groups
description: Consumer Group Management
- name: acls
description: Access Control Management (ACLs)
- name: records
description: Send and receive records interactively
- name: errors
description: Error Type Retrieval
paths:
/api/v1/topics:
get:
tags:
- topics
summary: Retrieves a list of topics
description: "Returns a list of all of the available topics, or the list of\
\ topics that meet the request query parameters. The topics returned are limited\
\ to those records the requestor is authorized to view."
operationId: getTopics
parameters:
- name: offset
in: query
description: "Offset of the first record to return, zero-based"
schema:
format: int32
minimum: 0
type: integer
deprecated: true
- name: limit
in: query
description: Maximum number of records to return
schema:
format: int32
minimum: 1
type: integer
deprecated: true
- name: size
in: query
description: Number of records per page
schema:
format: int32
default: "10"
minimum: 1
type: integer
- name: filter
in: query
description: Filter to apply when returning the list of topics
schema:
type: string
- name: page
in: query
description: Page number
schema:
format: int32
default: "1"
minimum: 1
type: integer
- name: order
in: query
description: Order items are sorted
required: false
schema:
$ref: '#/components/schemas/SortDirection'
- name: orderKey
in: query
description: Order key to sort the topics by.
required: false
schema:
allOf:
- $ref: '#/components/schemas/TopicOrderKey'
- default: name
responses:
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
"200":
description: List of topics matching the request query parameters. The topics
returned are limited to those records the requestor is authorized to view.
content:
application/json:
schema:
$ref: '#/components/schemas/TopicsList'
post:
tags:
- topics
summary: Creates a new topic
description: Creates a new topic for Kafka.
operationId: createTopic
requestBody:
description: Topic to create.
content:
application/json:
schema:
$ref: '#/components/schemas/NewTopicInput'
examples:
NewTopicExample:
$ref: '#/components/examples/NewTopicExample'
required: true
responses:
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"409":
$ref: '#/components/responses/Conflict'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
"201":
description: Topic created successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/Topic'
/api/v1/topics/{topicName}:
get:
tags:
- topics
summary: Retrieves a single topic
description: Topic
operationId: getTopic
parameters:
- name: topicName
in: path
description: Name of the topic to describe
required: true
schema:
type: string
responses:
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"404":
$ref: '#/components/responses/NotFound'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
"200":
description: Kafka topic details
content:
application/json:
schema:
$ref: '#/components/schemas/Topic'
delete:
tags:
- topics
summary: Deletes a topic
description: Deletes the topic with the specified name.
operationId: deleteTopic
parameters:
- name: topicName
in: path
description: Name of the topic to delete
required: true
schema:
type: string
responses:
"204":
description: Topic deleted successfully.
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"404":
$ref: '#/components/responses/NotFound'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
patch:
tags:
- topics
summary: Updates a single topic
description: Update the configuration settings for a topic.
operationId: updateTopic
parameters:
- name: topicName
in: path
description: Name of the topic to update
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/TopicSettings'
required: true
responses:
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"404":
$ref: '#/components/responses/NotFound'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
"200":
description: Topic updated successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/Topic'
/api/v1/topics/{topicName}/records:
get:
tags:
- records
summary: Consume records from a topic
description: "Consume a limited number of records from a topic, optionally specifying\
\ a partition and an absolute offset or timestamp as the starting point for\
\ message retrieval."
operationId: consumeRecords
parameters:
- name: include
in: query
description: List of properties to include for each record in the response
schema:
type: array
items:
$ref: '#/components/schemas/RecordIncludedProperty'
explode: false
- name: limit
in: query
description: Limit the number of records fetched and returned
schema:
format: int32
default: "20"
minimum: 1
type: integer
- name: maxValueLength
in: query
description: "Maximum length of string values returned in the response. Values\
\ with a length that exceeds this parameter will be truncated. When this\
\ parameter is not included in the request, the full string values will\
\ be returned."
schema:
format: int32
minimum: 1
type: integer
- name: offset
in: query
description: "Retrieve messages with an offset equal to or greater than this\
\ offset. If both `timestamp` and `offset` are requested, `timestamp` is\
\ given preference."
schema:
format: int32
minimum: 0
type: integer
- name: partition
in: query
description: Retrieve messages only from this partition
schema:
format: int32
type: integer
- name: timestamp
in: query
description: "Retrieve messages with a timestamp equal to or later than this\
\ timestamp. If both `timestamp` and `offset` are requested, `timestamp`\
\ is given preference."
schema:
format: date-time
- name: topicName
in: path
description: Topic name
required: true
schema:
type: string
responses:
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
"200":
description: List of records matching the request query parameters.
content:
application/json:
schema:
$ref: '#/components/schemas/RecordList'
post:
tags:
- records
summary: Send a record to a topic
description: Produce (write) a single record to a topic.
operationId: produceRecord
parameters:
- name: topicName
in: path
description: Topic name
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Record'
examples:
RecordProduceExample:
$ref: '#/components/examples/RecordProduceExample'
required: true
responses:
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
"201":
description: Record was successfully sent to the topic
content:
application/json:
schema:
$ref: '#/components/schemas/Record'
/api/v1/consumer-groups:
get:
tags:
- groups
summary: List of consumer groups in the Kafka instance.
description: Returns a list of all consumer groups for a particular Kafka instance.
The consumer groups returned are limited to those records the requestor is
authorized to view.
operationId: getConsumerGroups
parameters:
- name: offset
in: query
description: "Offset of the first record to return, zero-based"
schema:
format: int32
minimum: 0
type: integer
deprecated: true
- name: limit
in: query
description: Maximum number of records to return
schema:
format: int32
minimum: 1
type: integer
deprecated: true
- name: size
in: query
description: Number of records per page
schema:
format: int32
default: "10"
minimum: 1
type: integer
- name: page
in: query
description: Page number
schema:
format: int32
default: "1"
minimum: 1
type: integer
- name: topic
in: query
description: Return consumer groups where the topic name contains this value
schema:
type: string
- name: group-id-filter
in: query
description: Return the consumer groups where the ID contains this value
schema:
type: string
- name: order
in: query
description: Order items are sorted
required: false
schema:
$ref: '#/components/schemas/SortDirection'
- name: orderKey
in: query
schema:
allOf:
- $ref: '#/components/schemas/ConsumerGroupOrderKey'
- default: name
responses:
"200":
description: List of consumer groups matching the request parameters. The
consumer groups returned are limited to those records the requestor is
authorized to view.
content:
application/json:
schema:
$ref: '#/components/schemas/ConsumerGroupList'
examples:
List of consumer groups:
value:
kind: ConsumerGroupList
count: 1
limit: 10
offset: 0
items:
- id: consumer_group_1
kind: ConsumerGroup
href: /api/v1/consumer-groups/consumer_group_1
groupId: consumer_group_1
consumers:
- groupId: consumer_group_1
topic: topic-1
partition: 0
memberId: consumer_group_member1
offset: 5
lag: 0
logEndOffset: 5
- groupId: consumer_group_1
topic: topic-1
partition: 1
memberId: consumer_group_member2
offset: 3
lag: 0
logEndOffset: 3
- groupId: consumer_group_1
topic: topic-1
partition: 2
memberId: consumer_group_member3
offset: 6
lag: 1
logEndOffset: 5
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
/api/v1/consumer-groups/{consumerGroupId}:
get:
tags:
- groups
summary: Get a single consumer group by its unique ID.
operationId: getConsumerGroupById
parameters:
- name: consumerGroupId
in: path
description: Consumer group identifier
required: true
schema:
type: string
- name: order
in: query
description: Order items are sorted
required: false
schema:
$ref: '#/components/schemas/SortDirection'
- name: orderKey
in: query
schema:
allOf:
- $ref: '#/components/schemas/ConsumerGroupDescriptionOrderKey'
- default: partition
- name: partitionFilter
in: query
description: Value of partition to include. Value -1 means filter is not active.
required: false
schema:
format: int32
type: integer
- name: topic
in: query
description: Filter consumer groups for a specific topic
schema:
type: string
responses:
"200":
description: Consumer group details.
content:
application/json:
schema:
$ref: '#/components/schemas/ConsumerGroup'
examples:
ConsumerGroupExample:
$ref: '#/components/examples/ConsumerGroupExample'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"404":
$ref: '#/components/responses/NotFound'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
delete:
tags:
- groups
summary: Delete a consumer group.
description: "Delete a consumer group, along with its consumers."
operationId: deleteConsumerGroupById
parameters:
- name: consumerGroupId
in: path
description: Consumer group identifier
required: true
schema:
type: string
responses:
"204":
description: The consumer group was deleted successfully.
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"404":
$ref: '#/components/responses/NotFound'
"423":
description: User cannot delete consumer group with active members.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
/api/v1/consumer-groups/{consumerGroupId}/reset-offset:
post:
tags:
- groups
summary: Reset the offset for a consumer group.
description: Reset the offset for a particular consumer group.
operationId: resetConsumerGroupOffset
parameters:
- name: consumerGroupId
in: path
description: Consumer group identifier
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ConsumerGroupResetOffsetParameters'
examples:
ConsumerGroupOffsetResetExample:
$ref: '#/components/examples/ConsumerGroupOffsetResetExample'
required: true
responses:
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"404":
$ref: '#/components/responses/NotFound'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
"200":
description: The consumer group offsets have been reset.
content:
application/json:
schema:
$ref: '#/components/schemas/ConsumerGroupResetOffsetResult'
/api/v1/acls:
get:
tags:
- acls
summary: List ACL bindings
description: "Returns a list of all of the available ACL bindings, or the list\
\ of bindings that meet the user's URL query parameters. If no parameters\
\ are specified, all ACL bindings known to the system will be returned (with\
\ paging)."
operationId: getAcls
parameters:
- name: resourceType
in: query
description: ACL Resource Type Filter
schema:
allOf:
- $ref: '#/components/schemas/AclResourceTypeFilter'
- default: ANY
examples:
anything:
summary: Match any ACL binding resource type
value: ANY
group:
summary: Match ACL bindings for consumer groups
value: GROUP
topic:
summary: Match ACL bindings for topics
value: TOPIC
cluster:
summary: Match ACL bindings for the cluster
value: CLUSTER
transactional_id:
summary: Match ACL bindings for transactional IDs
value: TRANSACTIONAL_ID
- name: resourceName
in: query
description: ACL Resource Name Filter
schema:
type: string
- name: patternType
in: query
description: ACL Pattern Type Filter
schema:
allOf:
- $ref: '#/components/schemas/AclPatternTypeFilter'
- default: ANY
examples:
anything:
summary: Match any ACL binding pattern type
value: ANY
literal:
summary: Match a literal resource name or `*`
value: LITERAL
prefixed:
summary: Match a prefixed resource name
value: PREFIXED
- name: principal
in: query
description: |-
ACL Principal Filter. Either a specific user or the wildcard user `User:*` may be provided.
- When fetching by a specific user, the results will also include ACL bindings that apply to all users.
- When deleting, ACL bindings to be delete must match the provided `principal` exactly.
schema:
default: ""
pattern: "^User:(\\*|[a-zA-Z0-9_@.-]+)$"
type: string
examples:
wildcard:
summary: Match ACL entries that apply to all users
value: User:*
specific:
summary: Match ACL entries for a specific user
value: User:admin-5a1-0c1
- name: operation
in: query
description: "ACL Operation Filter. The ACL binding operation provided should\
\ be valid for the resource type in the request, if not `ANY`."
schema:
allOf:
- $ref: '#/components/schemas/AclOperationFilter'
- default: ANY
examples:
anything:
summary: Match any ACL binding operation
value: ANY
- name: permission
in: query
description: ACL Permission Type Filter
schema:
allOf:
- $ref: '#/components/schemas/AclPermissionTypeFilter'
- default: ANY
examples:
anything:
summary: Match any ACL binding permission type
value: ANY
allow:
summary: Match only ACL bindings allowing access
value: ALLOW
deny:
summary: Match only ACL bindings denying access
value: DENY
- name: page
in: query
description: Page number
schema:
format: int32
default: "1"
minimum: 1
type: integer
- name: size
in: query
description: Number of records per page
schema:
format: int32
default: "10"
minimum: 1
type: integer
- name: order
in: query
description: Order items are sorted
required: false
schema:
$ref: '#/components/schemas/SortDirection'
- name: orderKey
in: query
schema:
allOf:
- $ref: '#/components/schemas/AclBindingOrderKey'
- default: permission
responses:
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
"200":
description: List of ACL bindings matching the query parameters.
content:
application/json:
schema:
$ref: '#/components/schemas/AclBindingListPage'
post:
tags:
- acls
summary: Create ACL binding
description: Creates a new ACL binding for a Kafka instance.
operationId: createAcl
requestBody:
description: ACL to create.
content:
application/json:
schema:
$ref: '#/components/schemas/AclBinding'
required: true
responses:
"201":
description: ACL created successfully.
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
delete:
tags:
- acls
summary: Delete ACL bindings
description: Deletes ACL bindings that match the query parameters.
operationId: deleteAcls
parameters:
- name: resourceType
in: query
description: ACL Resource Type Filter
schema:
allOf:
- $ref: '#/components/schemas/AclResourceTypeFilter'
- default: ANY
examples:
anything:
summary: Match any ACL binding resource type
value: ANY
group:
summary: Match ACL bindings for consumer groups
value: GROUP
topic:
summary: Match ACL bindings for topics
value: TOPIC
cluster:
summary: Match ACL bindings for the cluster
value: CLUSTER
transactional_id:
summary: Match ACL bindings for transactional IDs
value: TRANSACTIONAL_ID
- name: resourceName
in: query
description: ACL Resource Name Filter
schema:
type: string
- name: patternType
in: query
description: ACL Pattern Type Filter
schema:
allOf:
- $ref: '#/components/schemas/AclPatternTypeFilter'
- default: ANY
examples:
anything:
summary: Match any ACL binding pattern type
value: ANY
literal:
summary: Match a literal resource name or `*`
value: LITERAL
prefixed:
summary: Match a prefixed resource name
value: PREFIXED
- name: principal
in: query
description: |-
ACL Principal Filter. Either a specific user or the wildcard user `User:*` may be provided.
- When fetching by a specific user, the results will also include ACL bindings that apply to all users.
- When deleting, ACL bindings to be delete must match the provided `principal` exactly.
schema:
default: ""
pattern: "^User:(\\*|[a-zA-Z0-9_@.-]+)$"
type: string
examples:
wildcard:
summary: Match ACL entries that apply to all users
value: User:*
specific:
summary: Match ACL entries for a specific user
value: User:admin-5a1-0c1
- name: operation
in: query
description: "ACL Operation Filter. The ACL binding operation provided should\
\ be valid for the resource type in the request, if not `ANY`."
schema:
allOf:
- $ref: '#/components/schemas/AclOperationFilter'
- default: ANY
examples:
anything:
summary: Match any ACL binding operation
value: ANY
- name: permission
in: query
description: ACL Permission Type Filter
schema:
allOf:
- $ref: '#/components/schemas/AclPermissionTypeFilter'
- default: ANY
examples:
anything:
summary: Match any ACL binding permission type
value: ANY
allow:
summary: Match only ACL bindings allowing access
value: ALLOW
deny:
summary: Match only ACL bindings denying access
value: DENY
responses:
"400":
$ref: '#/components/responses/BadRequest'
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"500":
$ref: '#/components/responses/ServerError'
"503":
$ref: '#/components/responses/ServiceUnavailable'
"200":
description: List of all ACL bindings matching the query parameters that
were deleted.
content:
application/json:
schema:
$ref: '#/components/schemas/AclBindingListPage'
/api/v1/acls/resource-operations:
get:
tags:
- acls
summary: Retrieve allowed ACL resources and operations
description: Retrieve the resources and associated operations that may have
ACLs configured.
operationId: getAclResourceOperations
responses:
"200":
description: Map of allowed resources and operations for ACL creation
content:
application/json:
schema:
type: object
additionalProperties:
type: array
items:
type: string
examples:
success:
summary: Map of resources to allowed ACL operations
value: |-
{
"cluster": [ "describe", "alter" ],
"group": [ "all", "delete", "describe", "read" ],
"topic": [ "all", "alter", "alter_configs", "create", "delete", "describe", "describe_configs", "read", "write" ],
"transactional_id": [ "all", "describe", "write" ]
}
disabled:
summary: No configuration of ACL bindings is allowed
value: "{}"
"401":
$ref: '#/components/responses/NotAuthorized'
"403":
$ref: '#/components/responses/Forbidden'
"500":
$ref: '#/components/responses/ServerError'
security:
- {}
/api/v1/errors:
get:
tags:
- errors
summary: Get list of errors
operationId: getErrors
responses:
"200":
description: Error listing
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorList'
"500":
$ref: '#/components/responses/ServerError'
security:
- {}
/api/v1/errors/{errorId}:
get:
tags:
- errors
summary: Get an error by its unique ID
operationId: getError
parameters:
- name: errorId
in: path
description: Error identifier
required: true
schema:
type: string
responses:
"200":
description: Error details
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
"404":
$ref: '#/components/responses/NotFound'
"500":
$ref: '#/components/responses/ServerError'
security:
- {}
components:
schemas:
AclBinding:
allOf:
- $ref: '#/components/schemas/ObjectReference'
- description: Represents a binding between a resource pattern and an access
control entry
required:
- resourceType
- resourceName
- patternType
- principal
- operation
- permission
type: object
properties:
resourceType:
$ref: '#/components/schemas/AclResourceType'
resourceName:
pattern: \S
type: string
patternType:
$ref: '#/components/schemas/AclPatternType'