Interface GroupConfigManager
public interface GroupConfigManager
-
Method Summary
Modifier and TypeMethodDescriptionalterGroupConfigs(String clusterId, String groupId, List<io.confluent.kafkarest.entities.AlterConfigCommand> commands, boolean validateOnly) Atomically alters the KafkaGroup Configsaccording tocommands.getGroupConfig(String clusterId, String groupId, String name) Returns the KafkaGroupConfigwith the givenname.listGroupConfigs(String clusterId, String groupId) Returns a list of KafkaGroupConfigsbelonging to the group with the givengroupId.resetGroupConfig(String clusterId, String groupId, String name) Resets the KafkaGroupConfigwith the givennameto its default value.updateGroupConfig(String clusterId, String groupId, String name, String newValue)
-
Method Details
-
listGroupConfigs
Returns a list of KafkaGroupConfigsbelonging to the group with the givengroupId. -
getGroupConfig
CompletableFuture<Optional<GroupConfig>> getGroupConfig(String clusterId, String groupId, String name) Returns the KafkaGroupConfigwith the givenname. -
updateGroupConfig
-
resetGroupConfig
Resets the KafkaGroupConfigwith the givennameto its default value. -
alterGroupConfigs
CompletableFuture<Void> alterGroupConfigs(String clusterId, String groupId, List<io.confluent.kafkarest.entities.AlterConfigCommand> commands, boolean validateOnly) Atomically alters the KafkaGroup Configsaccording tocommands.
-