conduktor.io ↗

Kafka ListConfigResources Response Wire Format v0 — Binary Protocol Layout

What is ListConfigResources?

Discovers what resource types support dynamic configuration. Less commonly called directly; AdminClient wraps this capability into higher-level describe/alter operations.

Wire Diagram

Response Header · flexible
message_size int32 · 4B
correlation_id int32 · 4B
tagged var
ListConfigResourcesResponse v0
ThrottleTimeMs int32 · 4B
ErrorCode int16 · 2B
ConfigResources array
tagged var
ResourceName string (compact)
tagged var

Schema & Example

Schema
{
  "ThrottleTimeMs": int32,
  "ErrorCode": int16,
  "ConfigResources": [{
      "ResourceName": string
  }]
}
Example
{
  "ThrottleTimeMs": 0,
  "ErrorCode": 0,
  "ConfigResources": [{
      "ResourceName": "orders"
  }]
}