Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 42 additions & 4 deletions admin/admin-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -506,9 +506,18 @@ components:
redpanda.core.admin.v2.AuthenticationConfiguration:
additionalProperties: false
description: |-
Authentication config. Currently only supporting SASL/SCRAM,
however made as a oneof for expansion
Authentication config. Supports:
* SASL/SCRAM
* SASL/PLAIN
oneOf:
- properties:
plainConfiguration:
$ref: "#/components/schemas/redpanda.core.admin.v2.PlainConfig"
description: SASL/PLAIN configuration
title: plain_configuration
required:
- plainConfiguration
title: plain_configuration
- properties:
scramConfiguration:
$ref: "#/components/schemas/redpanda.core.admin.v2.ScramConfig"
Expand Down Expand Up @@ -1146,8 +1155,36 @@ components:
- PATTERN_TYPE_UNSPECIFIED
- PATTERN_TYPE_LITERAL
- PATTERN_TYPE_PREFIX
- PATTERN_TYPE_PREFIXED
title: PatternType
type: string
redpanda.core.admin.v2.PlainConfig:
additionalProperties: false
description: PLAIN settings
properties:
password:
description: Password
title: password
type: string
writeOnly: true
passwordSet:
description: Indicates that the password has been set
readOnly: true
title: password_set
type: boolean
passwordSetAt:
$ref: "#/components/schemas/google.protobuf.Timestamp"
description: |-
Timestamp of when the password was last set - only valid if password_set
is true
readOnly: true
title: password_set_at
username:
description: PLAIN username
title: username
type: string
title: PlainConfig
type: object
redpanda.core.admin.v2.RPCRoute:
additionalProperties: false
description: A route in the Admin API RPC server.
Expand Down Expand Up @@ -1849,6 +1886,7 @@ components:
- ACL_PATTERN_ANY
- ACL_PATTERN_LITERAL
- ACL_PATTERN_PREFIXED
- ACL_PATTERN_PREFIX
- ACL_PATTERN_MATCH
title: ACLPattern
type: string
Expand Down Expand Up @@ -1958,9 +1996,9 @@ info:
title: Redpanda Admin API
version: v2.0.0
x-admin-api-major: v2.0.0
x-generated-at: 2025-11-13T21:09:09.434Z
x-generated-at: 2025-12-12T04:54:23.532Z
x-generator: redpanda-docs-openapi-bundler
x-redpanda-core-version: kb/proto/docs/openapi-summaries
x-redpanda-core-version: v25.3.2
openapi: 3.1.0
paths:
/redpanda.core.admin.v2.BrokerService/GetBroker:
Expand Down