Class ConfigEntryResult
A config property entry, as reported by the Kafka admin api.
Inherited Members
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class ConfigEntryResult
Properties
IsDefault
Whether or not the config value is the default or was explicitly set.
Declaration
public bool IsDefault { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsReadOnly
Whether or not the config is read-only (cannot be updated).
Declaration
public bool IsReadOnly { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsSensitive
Whether or not the config value is sensitive. The value for sensitive configuration values is always returned as null.
Declaration
public bool IsSensitive { get; set; }
Property Value
Type | Description |
---|---|
bool |
Name
The config name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Source
The config source. Refer to ConfigSource for more information.
Declaration
public ConfigSource Source { get; set; }
Property Value
Type | Description |
---|---|
ConfigSource |
Synonyms
All config values that may be used as the value of this config along with their source, in the order of precedence.
Declaration
public List<ConfigSynonym> Synonyms { get; set; }
Property Value
Type | Description |
---|---|
List<ConfigSynonym> |
Value
The config value.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string |