Class GroupConfigResource
java.lang.Object
io.confluent.kafkarest.resources.v3.GroupConfigResource
@Path("/v3/clusters/{clusterId}/groups/{groupId}/configs")
public final class GroupConfigResource
extends Object
-
Constructor Summary
ConstructorsConstructorDescriptionGroupConfigResource(jakarta.inject.Provider<GroupConfigManager> groupConfigManager, io.confluent.kafkarest.response.UrlFactory urlFactory) -
Method Summary
Modifier and TypeMethodDescriptionvoidgetGroupConfig(jakarta.ws.rs.container.AsyncResponse asyncResponse, String clusterId, String groupId, String configName) voidlistGroupConfigs(jakarta.ws.rs.container.AsyncResponse asyncResponse, String clusterId, String groupId) voidresetGroupConfig(jakarta.ws.rs.container.AsyncResponse asyncResponse, String clusterId, String groupId, String configName) voidupdateGroupConfig(jakarta.ws.rs.container.AsyncResponse asyncResponse, String clusterId, String groupId, String configName, @Valid UpdateGroupConfigRequest request)
-
Constructor Details
-
GroupConfigResource
@Inject public GroupConfigResource(jakarta.inject.Provider<GroupConfigManager> groupConfigManager, io.confluent.kafkarest.response.UrlFactory urlFactory)
-
-
Method Details
-
listGroupConfigs
-
getGroupConfig
@GET @Path("/{configName}") @Produces("application/json") @PerformanceMetric("v3.group-configs.get") public void getGroupConfig(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("groupId") String groupId, @PathParam("configName") String configName) -
updateGroupConfig
@PUT @Path("/{configName}") @Produces("application/json") @PerformanceMetric("v3.group-configs.update") public void updateGroupConfig(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("groupId") String groupId, @PathParam("configName") String configName, @Valid @Valid UpdateGroupConfigRequest request) -
resetGroupConfig
@DELETE @Path("/{configName}") @Produces("application/json") @PerformanceMetric("v3.group-configs.delete") public void resetGroupConfig(@Suspended jakarta.ws.rs.container.AsyncResponse asyncResponse, @PathParam("clusterId") String clusterId, @PathParam("groupId") String groupId, @PathParam("configName") String configName)
-