View Source KlifeProtocol.Messages.DeleteAcls (Klife Protocol v0.5.0)

Kafka protocol DeleteAcls message

Request versions summary:

  • Version 1 adds the pattern type. Version 2 enables flexible versions. Version 3 adds the user resource type.

Response versions summary:

  • Version 1 adds the resource pattern type. Starting in version 1, on quota violation, brokers send out responses before throttling. Version 2 enables flexible versions. Version 3 adds the user resource type.

Link to this section Summary

Functions

Returns the message api key number.

Receive a binary in the kafka wire format and deserialize it into a map.

Returns the current max supported version of this message.

Returns the current min supported version of this message.

Receives a map and serialize it to kafka wire format of the given version.

Link to this section Functions

Returns the message api key number.

Link to this function

deserialize_response(data, version, with_header? \\ true)

View Source

Receive a binary in the kafka wire format and deserialize it into a map.

Response content fields:

  • throttle_time_ms: The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota. (int32 | versions 0+)

  • filter_results: The results for each filter. ([]DeleteAclsFilterResult | versions 0+)

    • error_code: The error code, or 0 if the filter succeeded. (int16 | versions 0+)

    • error_message: The error message, or null if the filter succeeded. (string | versions 0+)

    • matching_acls: The ACLs which matched this filter. ([]DeleteAclsMatchingAcl | versions 0+)

      • error_code: The deletion error code, or 0 if the deletion succeeded. (int16 | versions 0+)

      • error_message: The deletion error message, or null if the deletion succeeded. (string | versions 0+)

      • resource_type: The ACL resource type. (int8 | versions 0+)

      • resource_name: The ACL resource name. (string | versions 0+)

      • pattern_type: The ACL resource pattern type. (int8 | versions 1+)

      • principal: The ACL principal. (string | versions 0+)

      • host: The ACL host. (string | versions 0+)

      • operation: The ACL operation. (int8 | versions 0+)

      • permission_type: The ACL permission type. (int8 | versions 0+)

Returns the current max supported version of this message.

Returns the current min supported version of this message.

Link to this function

serialize_request(map, version)

View Source

Receives a map and serialize it to kafka wire format of the given version.

Input content fields:

  • filters: The filters to use when deleting ACLs. ([]DeleteAclsFilter | versions 0+)

    • resource_type_filter: The resource type. (int8 | versions 0+)

    • resource_name_filter: The resource name. (string | versions 0+)

    • pattern_type_filter: The pattern type. (int8 | versions 1+)

    • principal_filter: The principal filter, or null to accept all principals. (string | versions 0+)

    • host_filter: The host filter, or null to accept all hosts. (string | versions 0+)

    • operation: The ACL operation. (int8 | versions 0+)

    • permission_type: The permission type. (int8 | versions 0+)