Class ShareGroupsResource

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

@Path("/v3/clusters/{clusterId}/share-groups") public final class ShareGroupsResource extends Object
  • Constructor Details

    • ShareGroupsResource

      @Inject public ShareGroupsResource(jakarta.inject.Provider<ShareGroupManager> shareGroupManager, io.confluent.kafkarest.response.CrnFactory crnFactory, io.confluent.kafkarest.response.UrlFactory urlFactory)
  • Method Details

    • listShareGroups

      @GET @Produces("application/json") @PerformanceMetric("v3.share-groups.list") public void listShareGroups(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId)
    • getShareGroup

      @GET @Path("/{groupId}") @Produces("application/json") @PerformanceMetric("v3.share-groups.get") public void getShareGroup(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("groupId") String groupId)
    • deleteShareGroup

      @DELETE @Path("/{groupId}") @Produces("application/json") @PerformanceMetric("v3.share-groups.delete") public void deleteShareGroup(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("groupId") String groupId)