Class BrokerTaskByBrokerResource

java.lang.Object
io.confluent.kafkarest.resources.v3.BrokerTaskByBrokerResource

@Path("/v3/clusters/{clusterId}/brokers/{brokerId}/tasks") public final class BrokerTaskByBrokerResource extends Object
  • Constructor Details

    • BrokerTaskByBrokerResource

      @Inject public BrokerTaskByBrokerResource(jakarta.inject.Provider<BrokerTaskManager> brokerTaskManager, io.confluent.kafkarest.response.CrnFactory crnFactory, io.confluent.kafkarest.response.UrlFactory urlFactory)
  • Method Details

    • listBrokerTasksByBroker

      @GET @Produces("application/json") @PerformanceMetric("v3.brokers.broker-tasks.list") public void listBrokerTasksByBroker(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("brokerId") Integer brokerId)
    • getBrokerTask

      @GET @Path("/{taskType}") @Produces("application/json") @PerformanceMetric("v3.brokers.broker-tasks.search-by-type") public void getBrokerTask(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("brokerId") Integer brokerId, @PathParam("taskType") BrokerTaskType taskType)