Skip to content

Commit

Permalink
Automated SDK update
Browse files Browse the repository at this point in the history
This updates the SDK from internal repo commit segmentio/public-api@c58497dc.
  • Loading branch information
APIs and Common Services team committed Mar 22, 2024
1 parent 3215133 commit c4ad4bf
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,8 @@ public okhttp3.Call listRegulationsFromSourceCall(

if (regulationTypes != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "regulationTypes", regulationTypes));
localVarApiClient.parameterToPairs(
"multi", "regulationTypes", regulationTypes));
}

if (pagination != null) {
Expand Down Expand Up @@ -1458,7 +1459,8 @@ public okhttp3.Call listWorkspaceRegulationsCall(

if (regulationTypes != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "regulationTypes", regulationTypes));
localVarApiClient.parameterToPairs(
"multi", "regulationTypes", regulationTypes));
}

if (pagination != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public okhttp3.Call getEgressFailedMetricsFromDeliveryOverviewCall(

if (groupBy != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "groupBy", groupBy));
localVarApiClient.parameterToPairs("multi", "groupBy", groupBy));
}

if (granularity != null) {
Expand Down Expand Up @@ -900,7 +900,7 @@ public okhttp3.Call getFilteredAtSourceMetricsFromDeliveryOverviewCall(

if (groupBy != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "groupBy", groupBy));
localVarApiClient.parameterToPairs("multi", "groupBy", groupBy));
}

if (granularity != null) {
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/com/segment/publicapi/api/EventsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,27 +150,27 @@ public okhttp3.Call getEventsVolumeFromWorkspaceCall(

if (groupBy != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "groupBy", groupBy));
localVarApiClient.parameterToPairs("multi", "groupBy", groupBy));
}

if (sourceId != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "sourceId", sourceId));
localVarApiClient.parameterToPairs("multi", "sourceId", sourceId));
}

if (eventName != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "eventName", eventName));
localVarApiClient.parameterToPairs("multi", "eventName", eventName));
}

if (eventType != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "eventType", eventType));
localVarApiClient.parameterToPairs("multi", "eventType", eventType));
}

if (appVersion != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "appVersion", appVersion));
localVarApiClient.parameterToPairs("multi", "appVersion", appVersion));
}

if (pagination != null) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/segment/publicapi/api/IamGroupsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -1627,7 +1627,7 @@ public okhttp3.Call removeUsersFromUserGroupCall(

if (emails != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "emails", emails));
localVarApiClient.parameterToPairs("multi", "emails", emails));
}

final String[] localVarAccepts = {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/segment/publicapi/api/IamUsersApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ public okhttp3.Call deleteInvitesCall(List<String> emails, final ApiCallback _ca

if (emails != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "emails", emails));
localVarApiClient.parameterToPairs("multi", "emails", emails));
}

final String[] localVarAccepts = {
Expand Down Expand Up @@ -699,7 +699,7 @@ public okhttp3.Call deleteUsersCall(List<String> userIds, final ApiCallback _cal

if (userIds != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "userIds", userIds));
localVarApiClient.parameterToPairs("multi", "userIds", userIds));
}

final String[] localVarAccepts = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,7 @@ public okhttp3.Call removeRulesFromTrackingPlanCall(

if (rules != null) {
localVarCollectionQueryParams.addAll(
localVarApiClient.parameterToPairs("csv", "rules", rules));
localVarApiClient.parameterToPairs("multi", "rules", rules));
}

final String[] localVarAccepts = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public PaginationInput count(Integer count) {
}

/**
* The number of items to retrieve in a page, between 1 and 200.
* The number of items to retrieve in a page, between 1 and 1000.
*
* @return count
*/
Expand Down

0 comments on commit c4ad4bf

Please sign in to comment.