Class LinkConfigResource
java.lang.Object
io.confluent.kafkarest.resources.v3.LinkConfigResource
@Path("/v3/clusters/{clusterId}/links/{linkName}/configs")
public final class LinkConfigResource
extends Object
-
Constructor Summary
ConstructorsConstructorDescriptionLinkConfigResource(jakarta.inject.Provider<LinkConfigManager> linkConfigManager, io.confluent.kafkarest.response.UrlFactory urlFactory) -
Method Summary
Modifier and TypeMethodDescriptionvoidgetLinkConfig(jakarta.ws.rs.container.AsyncResponse asyncResponse, String clusterId, String linkName, String configName) voidlistLinkConfigs(jakarta.ws.rs.container.AsyncResponse asyncResponse, String clusterId, String linkName) voidresetLinkConfig(jakarta.ws.rs.container.AsyncResponse asyncResponse, String clusterId, String linkName, String configName) voidupdateLinkConfig(jakarta.ws.rs.container.AsyncResponse asyncResponse, String clusterId, String linkName, String configName, @Valid UpdateLinkConfigRequest request)
-
Constructor Details
-
LinkConfigResource
@Inject public LinkConfigResource(jakarta.inject.Provider<LinkConfigManager> linkConfigManager, io.confluent.kafkarest.response.UrlFactory urlFactory)
-
-
Method Details
-
listLinkConfigs
-
getLinkConfig
@GET @Path("/{configName}") @Produces("application/json") @PerformanceMetric("v3.link-configs.get") public void getLinkConfig(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("linkName") String linkName, @PathParam("configName") String configName) -
updateLinkConfig
@PUT @Path("/{configName}") @Produces("application/json") @PerformanceMetric("v3.link-configs.update") public void updateLinkConfig(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("linkName") String linkName, @PathParam("configName") String configName, @Valid @Valid UpdateLinkConfigRequest request) -
resetLinkConfig
@DELETE @Path("/{configName}") @Produces("application/json") @PerformanceMetric("v3.link-configs.delete") public void resetLinkConfig(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("linkName") String linkName, @PathParam("configName") String configName)
-