Class DescribeClusterResult
Represents the result of a describe cluster operation.
Inherited Members
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class DescribeClusterResult
Properties
AuthorizedOperations
AclOperation list (null if not requested or not supported).
Declaration
public List<AclOperation> AuthorizedOperations { get; set; }
Property Value
Type | Description |
---|---|
List<AclOperation> |
ClusterId
Current cluster Id (null if not supported).
Declaration
public string ClusterId { get; set; }
Property Value
Type | Description |
---|---|
string |
Controller
Current controller (null if not known).
Declaration
public Node Controller { get; set; }
Property Value
Type | Description |
---|---|
Node |
Nodes
Nodes in the cluster.
Declaration
public List<Node> Nodes { get; set; }
Property Value
Type | Description |
---|---|
List<Node> |
Methods
ToString()
Returns a JSON representation of this object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A JSON representation of this object. |