fun configEntryOf(default: Boolean? = null, name: String? = null, readOnly: Boolean? = null, sensitive: Boolean? = null, source: ConfigSource? = null, synonyms: Iterable<ConfigSynonym>? = null, value: String? = null): ConfigEntry
A function providing a DSL for building io.vertx.kafka.admin.ConfigEntry objects.
A class representing a configuration entry containing name, value and additional metadata
default
- Set whether the config value is the default or if it's been explicitly set
readOnly
- Set whether the config is read-only and cannot be updated
sensitive
- Set whether the config value is sensitive. The value is always set to null by the broker if the config value is sensitive
source
- Set the source of this configuration entry
synonyms
- Set all config values that may be used as the value of this config along with their source, in the order of precedence
value
- Set the value or null. Null is returned if the config is unset or if isSensitive is true