Interface LinkConfigManager
public interface LinkConfigManager
-
Method Summary
Modifier and TypeMethodDescriptionalterLinkConfigs(String clusterId, String linkName, List<io.confluent.kafkarest.entities.AlterConfigCommand> commands, boolean validateOnly) Atomically alters the KafkaLink Configsaccording tocommands.getLinkConfig(String clusterId, String linkName, String name) Returns the KafkaLinkConfigwith the givenname.listLinkConfigs(String clusterId, String linkName) resetLinkConfig(String clusterId, String linkName, String name) Resets the KafkaLinkConfigwith the givennameto its default value.updateLinkConfig(String clusterId, String linkName, String name, String newValue)
-
Method Details
-
listLinkConfigs
-
getLinkConfig
CompletableFuture<Optional<LinkConfig>> getLinkConfig(String clusterId, String linkName, String name) Returns the KafkaLinkConfigwith the givenname. -
updateLinkConfig
-
resetLinkConfig
Resets the KafkaLinkConfigwith the givennameto its default value. -
alterLinkConfigs
CompletableFuture<Void> alterLinkConfigs(String clusterId, String linkName, List<io.confluent.kafkarest.entities.AlterConfigCommand> commands, boolean validateOnly) Atomically alters the KafkaLink Configsaccording tocommands.
-