Class DescribeClusterLinksOptions
java.lang.Object
org.apache.kafka.clients.admin.AbstractOptions<DescribeClusterLinksOptions>
org.apache.kafka.clients.admin.DescribeClusterLinksOptions
@Confluent
@Evolving
public class DescribeClusterLinksOptions
extends AbstractOptions<DescribeClusterLinksOptions>
Options for
ConfluentAdmin.describeClusterLinks(DescribeClusterLinksOptions).
The API of this class is evolving, see Admin for details.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanWhether to include the tasks for the cluster link.includeTasks(boolean includeTasks) Set whether to include the tasks for the cluster link.booleanWhether to include the topics that are linked for the cluster link.includeTopics(boolean includeTopics) Set whether to include the topics that are linked for the cluster link.Names of the cluster links to include in the response, otherwise if empty, then all cluster links are included.linkNames(Collection<String> linkNames) Sets the names of the cluster links to include in the response, otherwise if null, then sets all cluster links to be listed.Methods inherited from class org.apache.kafka.clients.admin.AbstractOptions
timeoutMs, timeoutMs
-
Constructor Details
-
DescribeClusterLinksOptions
public DescribeClusterLinksOptions()
-
-
Method Details
-
linkNames
Names of the cluster links to include in the response, otherwise if empty, then all cluster links are included. -
linkNames
Sets the names of the cluster links to include in the response, otherwise if null, then sets all cluster links to be listed. -
includeTopics
public boolean includeTopics()Whether to include the topics that are linked for the cluster link. -
includeTopics
Set whether to include the topics that are linked for the cluster link. -
includeTasks
public boolean includeTasks()Whether to include the tasks for the cluster link. -
includeTasks
Set whether to include the tasks for the cluster link.
-