@@ -171,7 +171,7 @@ Name | Type | Description | Notes
171171
172172## getConsumerGroups
173173
174- > ConsumerGroupList getConsumerGroups(limit , page, topic, groupIdFilter, order, orderKey)
174+ > ConsumerGroupList getConsumerGroups(size , page, topic, groupIdFilter, order, orderKey)
175175
176176List of consumer groups in the Kafka instance.
177177
@@ -198,14 +198,14 @@ public class Example {
198198 Bearer . setAccessToken(" YOUR ACCESS TOKEN" );
199199
200200 GroupsApi apiInstance = new GroupsApi (defaultClient);
201- Integer limit = 56 ; // Integer | Maximum number of consumer groups to return
201+ Integer size = 56 ; // Integer | Maximum number of consumer groups to return on single page
202202 Integer page = 56 ; // Integer | The page when returning the list of consumer groups
203203 String topic = " topic_example" ; // String | Return consumer groups where the topic name contains with this value
204204 String groupIdFilter = " groupIdFilter_example" ; // String | Return the consumer groups where the ID contains with this value
205205 String order = " asc" ; // String | Order of the consumer groups sorting. Ascending order is used as default.
206206 String orderKey = " name" ; // String | Order key to sort the items by. Only the value 'name' is currently applicable.
207207 try {
208- ConsumerGroupList result = apiInstance. getConsumerGroups(limit , page, topic, groupIdFilter, order, orderKey);
208+ ConsumerGroupList result = apiInstance. getConsumerGroups(size , page, topic, groupIdFilter, order, orderKey);
209209 System . out. println(result);
210210 } catch (ApiException e) {
211211 System . err. println(" Exception when calling GroupsApi#getConsumerGroups" );
@@ -223,7 +223,7 @@ public class Example {
223223
224224Name | Type | Description | Notes
225225------------- | ------------- | ------------- | -------------
226- ** limit ** | ** Integer** | Maximum number of consumer groups to return | [ optional]
226+ ** size ** | ** Integer** | Maximum number of consumer groups to return on single page | [ optional]
227227 ** page** | ** Integer** | The page when returning the list of consumer groups | [ optional]
228228 ** topic** | ** String** | Return consumer groups where the topic name contains with this value | [ optional]
229229 ** groupIdFilter** | ** String** | Return the consumer groups where the ID contains with this value | [ optional]
0 commit comments