Class DescribeClusterResult
Represents the result of a describe cluster operation.
Inheritance
System.Object
DescribeClusterResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Confluent.Kafka.Admin
Assembly: cs.temp.dll.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 |
---|---|
System.Collections.Generic.List<AclOperation> |
ClusterId
Current cluster Id (null if not supported).
Declaration
public string ClusterId { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.Collections.Generic.List<Node> |
Methods
ToString()
Returns a JSON representation of this object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A JSON representation of this object. |
Overrides
System.Object.ToString()