lucasbru commented on code in PR #19116: URL: https://github.com/apache/kafka/pull/19116#discussion_r1983475235
########## clients/src/main/java/org/apache/kafka/clients/admin/KafkaAdminClient.java: ########## @@ -3840,6 +3841,17 @@ public ListShareGroupOffsetsResult listShareGroupOffsets(final Map<String, ListS return new ListShareGroupOffsetsResult(future.all()); } + @Override + public DescribeStreamsGroupsResult describeStreamsGroups(final Collection<String> groupIds, + final DescribeStreamsGroupsOptions options) { Review Comment: Done ########## clients/src/main/java/org/apache/kafka/clients/admin/Admin.java: ########## @@ -1957,6 +1957,29 @@ default DeleteShareGroupsResult deleteShareGroups(Collection<String> groupIds) { */ DeleteShareGroupsResult deleteShareGroups(Collection<String> groupIds, DeleteShareGroupsOptions options); + /** + * Describe some streams groups in the cluster. Review Comment: Done ########## clients/src/main/java/org/apache/kafka/clients/admin/Admin.java: ########## @@ -1957,6 +1957,29 @@ default DeleteShareGroupsResult deleteShareGroups(Collection<String> groupIds) { */ DeleteShareGroupsResult deleteShareGroups(Collection<String> groupIds, DeleteShareGroupsOptions options); + /** + * Describe some streams groups in the cluster. + * + * @param groupIds The IDs of the groups to describe. + * @param options The options to use when describing the groups. + * @return The DescribeStreamsGroupsResult. + */ + DescribeStreamsGroupsResult describeStreamsGroups(Collection<String> groupIds, + DescribeStreamsGroupsOptions options); + + /** + * Describe some streams groups in the cluster, with the default options. Review Comment: Done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org