Apache Kafka ACL V2

List all ACLs in the Kafka cluster.

SecurityBasic Authentication
Request
path Parameters
clusterId
required
string <uuid>

ID of the Kafka cluster.

Responses
200

Successfully retrieved Kafka ACLs.

get/cluster-management/v2/data-sources/kafka_cluster/{clusterId}/acls/v2/
Request samples
Response samples
application/json
[
  • {
    }
]

Search for ACLs in the Kafka cluster with optional filters as ACL parameters

SecurityBasic Authentication
Request
path Parameters
clusterId
required
string <uuid>

ID of the Kafka cluster.

query Parameters
principal
string

(Optional) Specifies the users(s) for which this ACL applies and can include the wildcard *. Valid values must start with "User:" including the wildcard

host
string

(Optional) The IP address to which this ACL applies. It takes any string including the wildcard * for all IP addresses

resourceType
string

(Optional) Specifies the type of resource

Enum: "CLUSTER" "TOPIC" "GROUP" "DELEGATION_TOKEN" "TRANSACTIONAL_ID" "ANY"
resourceName
string

(Optional) Any string that fits the resource name, e.g. topic name if the resource type is TOPIC

operation
string

(Optional) The operation that will be allowed or denied

Enum: "ALL" "READ" "WRITE" "CREATE" "DELETE" "ALTER" "DESCRIBE" "CLUSTER_ACTION" "DESCRIBE_CONFIGS" "ALTER_CONFIGS" "IDEMPOTENT_WRITE" "ANY"
permissionType
string

(Optional) Specifies whether to allow or deny the operation

Enum: "ALLOW" "DENY" "ANY"
patternType
string

(Optional) Indicates the resource-pattern-type

Enum: "LITERAL" "PREFIXED" "ANY"
Responses
200

Successfully retrieved Kafka ACLs.

get/cluster-management/v2/data-sources/kafka_cluster/{clusterId}/acls/v2/search
Request samples
Response samples
application/json
[
  • {
    }
]