@@ -506,9 +506,18 @@ components:
506506 redpanda.core.admin.v2.AuthenticationConfiguration :
507507 additionalProperties : false
508508 description : |-
509- Authentication config. Currently only supporting SASL/SCRAM,
510- however made as a oneof for expansion
509+ Authentication config. Supports:
510+ * SASL/SCRAM
511+ * SASL/PLAIN
511512 oneOf :
513+ - properties :
514+ plainConfiguration :
515+ $ref : " #/components/schemas/redpanda.core.admin.v2.PlainConfig"
516+ description : SASL/PLAIN configuration
517+ title : plain_configuration
518+ required :
519+ - plainConfiguration
520+ title : plain_configuration
512521 - properties :
513522 scramConfiguration :
514523 $ref : " #/components/schemas/redpanda.core.admin.v2.ScramConfig"
@@ -1146,8 +1155,36 @@ components:
11461155 - PATTERN_TYPE_UNSPECIFIED
11471156 - PATTERN_TYPE_LITERAL
11481157 - PATTERN_TYPE_PREFIX
1158+ - PATTERN_TYPE_PREFIXED
11491159 title : PatternType
11501160 type : string
1161+ redpanda.core.admin.v2.PlainConfig :
1162+ additionalProperties : false
1163+ description : PLAIN settings
1164+ properties :
1165+ password :
1166+ description : Password
1167+ title : password
1168+ type : string
1169+ writeOnly : true
1170+ passwordSet :
1171+ description : Indicates that the password has been set
1172+ readOnly : true
1173+ title : password_set
1174+ type : boolean
1175+ passwordSetAt :
1176+ $ref : " #/components/schemas/google.protobuf.Timestamp"
1177+ description : |-
1178+ Timestamp of when the password was last set - only valid if password_set
1179+ is true
1180+ readOnly : true
1181+ title : password_set_at
1182+ username :
1183+ description : PLAIN username
1184+ title : username
1185+ type : string
1186+ title : PlainConfig
1187+ type : object
11511188 redpanda.core.admin.v2.RPCRoute :
11521189 additionalProperties : false
11531190 description : A route in the Admin API RPC server.
@@ -1849,6 +1886,7 @@ components:
18491886 - ACL_PATTERN_ANY
18501887 - ACL_PATTERN_LITERAL
18511888 - ACL_PATTERN_PREFIXED
1889+ - ACL_PATTERN_PREFIX
18521890 - ACL_PATTERN_MATCH
18531891 title : ACLPattern
18541892 type : string
@@ -1958,9 +1996,9 @@ info:
19581996 title : Redpanda Admin API
19591997 version : v2.0.0
19601998 x-admin-api-major : v2.0.0
1961- x-generated-at : 2025-11-13T21:09:09.434Z
1999+ x-generated-at : 2025-12-12T04:54:23.532Z
19622000 x-generator : redpanda-docs-openapi-bundler
1963- x-redpanda-core-version : kb/proto/docs/openapi-summaries
2001+ x-redpanda-core-version : v25.3.2
19642002openapi : 3.1.0
19652003paths :
19662004 /redpanda.core.admin.v2.BrokerService/GetBroker :
0 commit comments