@@ -3033,14 +3033,14 @@ public CompletableFuture<UserId> getUserIdAsync(String userID) throws AlgoliaRun
3033
3033
* A successful response indicates that the operation has been taken into account, and the userIDs
3034
3034
* are directly usable.
3035
3035
*
3036
- * @param getClusters Whether to get clusters or not . (optional)
3036
+ * @param getClusters If the clusters pending mapping state should be on the response . (optional)
3037
3037
* @param requestOptions The requestOptions to send along with the query, they will be merged with
3038
3038
* the transporter requestOptions.
3039
- * @return CreatedAtResponse
3039
+ * @return HasPendingMappingsResponse
3040
3040
* @throws AlgoliaRuntimeException If fail to call the API, e.g. server error or cannot
3041
3041
* deserialize the response body
3042
3042
*/
3043
- public CreatedAtResponse hasPendingMappings (Boolean getClusters , RequestOptions requestOptions ) throws AlgoliaRuntimeException {
3043
+ public HasPendingMappingsResponse hasPendingMappings (Boolean getClusters , RequestOptions requestOptions ) throws AlgoliaRuntimeException {
3044
3044
return LaunderThrowable .await (hasPendingMappingsAsync (getClusters , requestOptions ));
3045
3045
}
3046
3046
@@ -3051,11 +3051,11 @@ public CreatedAtResponse hasPendingMappings(Boolean getClusters, RequestOptions
3051
3051
* A successful response indicates that the operation has been taken into account, and the userIDs
3052
3052
* are directly usable.
3053
3053
*
3054
- * @param getClusters Whether to get clusters or not . (optional)
3055
- * @return CreatedAtResponse
3054
+ * @param getClusters If the clusters pending mapping state should be on the response . (optional)
3055
+ * @return HasPendingMappingsResponse
3056
3056
* @throws AlgoliaRuntimeException If it fails to process the API call
3057
3057
*/
3058
- public CreatedAtResponse hasPendingMappings (Boolean getClusters ) throws AlgoliaRuntimeException {
3058
+ public HasPendingMappingsResponse hasPendingMappings (Boolean getClusters ) throws AlgoliaRuntimeException {
3059
3059
return this .hasPendingMappings (getClusters , null );
3060
3060
}
3061
3061
@@ -3068,10 +3068,10 @@ public CreatedAtResponse hasPendingMappings(Boolean getClusters) throws AlgoliaR
3068
3068
*
3069
3069
* @param requestOptions The requestOptions to send along with the query, they will be merged with
3070
3070
* the transporter requestOptions.
3071
- * @return CreatedAtResponse
3071
+ * @return HasPendingMappingsResponse
3072
3072
* @throws AlgoliaRuntimeException If it fails to process the API call
3073
3073
*/
3074
- public CreatedAtResponse hasPendingMappings (RequestOptions requestOptions ) throws AlgoliaRuntimeException {
3074
+ public HasPendingMappingsResponse hasPendingMappings (RequestOptions requestOptions ) throws AlgoliaRuntimeException {
3075
3075
return this .hasPendingMappings (null , requestOptions );
3076
3076
}
3077
3077
@@ -3082,10 +3082,10 @@ public CreatedAtResponse hasPendingMappings(RequestOptions requestOptions) throw
3082
3082
* A successful response indicates that the operation has been taken into account, and the userIDs
3083
3083
* are directly usable.
3084
3084
*
3085
- * @return CreatedAtResponse
3085
+ * @return HasPendingMappingsResponse
3086
3086
* @throws AlgoliaRuntimeException If it fails to process the API call
3087
3087
*/
3088
- public CreatedAtResponse hasPendingMappings () throws AlgoliaRuntimeException {
3088
+ public HasPendingMappingsResponse hasPendingMappings () throws AlgoliaRuntimeException {
3089
3089
return this .hasPendingMappings (null , null );
3090
3090
}
3091
3091
@@ -3096,13 +3096,13 @@ public CreatedAtResponse hasPendingMappings() throws AlgoliaRuntimeException {
3096
3096
* response is 200 OK. A successful response indicates that the operation has been taken into
3097
3097
* account, and the userIDs are directly usable.
3098
3098
*
3099
- * @param getClusters Whether to get clusters or not . (optional)
3099
+ * @param getClusters If the clusters pending mapping state should be on the response . (optional)
3100
3100
* @param requestOptions The requestOptions to send along with the query, they will be merged with
3101
3101
* the transporter requestOptions.
3102
- * @return CompletableFuture<CreatedAtResponse > The awaitable future
3102
+ * @return CompletableFuture<HasPendingMappingsResponse > The awaitable future
3103
3103
* @throws AlgoliaRuntimeException If it fails to process the API call
3104
3104
*/
3105
- public CompletableFuture <CreatedAtResponse > hasPendingMappingsAsync (Boolean getClusters , RequestOptions requestOptions )
3105
+ public CompletableFuture <HasPendingMappingsResponse > hasPendingMappingsAsync (Boolean getClusters , RequestOptions requestOptions )
3106
3106
throws AlgoliaRuntimeException {
3107
3107
Object bodyObj = null ;
3108
3108
@@ -3117,7 +3117,7 @@ public CompletableFuture<CreatedAtResponse> hasPendingMappingsAsync(Boolean getC
3117
3117
}
3118
3118
3119
3119
Call call = this .buildCall (requestPath , "GET" , queryParameters , bodyObj , headers , requestOptions , false );
3120
- Type returnType = new TypeToken <CreatedAtResponse >() {}.getType ();
3120
+ Type returnType = new TypeToken <HasPendingMappingsResponse >() {}.getType ();
3121
3121
return this .executeAsync (call , returnType );
3122
3122
}
3123
3123
@@ -3128,11 +3128,11 @@ public CompletableFuture<CreatedAtResponse> hasPendingMappingsAsync(Boolean getC
3128
3128
* response is 200 OK. A successful response indicates that the operation has been taken into
3129
3129
* account, and the userIDs are directly usable.
3130
3130
*
3131
- * @param getClusters Whether to get clusters or not . (optional)
3132
- * @return CompletableFuture<CreatedAtResponse > The awaitable future
3131
+ * @param getClusters If the clusters pending mapping state should be on the response . (optional)
3132
+ * @return CompletableFuture<HasPendingMappingsResponse > The awaitable future
3133
3133
* @throws AlgoliaRuntimeException If it fails to process the API call
3134
3134
*/
3135
- public CompletableFuture <CreatedAtResponse > hasPendingMappingsAsync (Boolean getClusters ) throws AlgoliaRuntimeException {
3135
+ public CompletableFuture <HasPendingMappingsResponse > hasPendingMappingsAsync (Boolean getClusters ) throws AlgoliaRuntimeException {
3136
3136
return this .hasPendingMappingsAsync (getClusters , null );
3137
3137
}
3138
3138
@@ -3145,10 +3145,11 @@ public CompletableFuture<CreatedAtResponse> hasPendingMappingsAsync(Boolean getC
3145
3145
*
3146
3146
* @param requestOptions The requestOptions to send along with the query, they will be merged with
3147
3147
* the transporter requestOptions.
3148
- * @return CompletableFuture<CreatedAtResponse > The awaitable future
3148
+ * @return CompletableFuture<HasPendingMappingsResponse > The awaitable future
3149
3149
* @throws AlgoliaRuntimeException If it fails to process the API call
3150
3150
*/
3151
- public CompletableFuture <CreatedAtResponse > hasPendingMappingsAsync (RequestOptions requestOptions ) throws AlgoliaRuntimeException {
3151
+ public CompletableFuture <HasPendingMappingsResponse > hasPendingMappingsAsync (RequestOptions requestOptions )
3152
+ throws AlgoliaRuntimeException {
3152
3153
return this .hasPendingMappingsAsync (null , requestOptions );
3153
3154
}
3154
3155
@@ -3159,10 +3160,10 @@ public CompletableFuture<CreatedAtResponse> hasPendingMappingsAsync(RequestOptio
3159
3160
* response is 200 OK. A successful response indicates that the operation has been taken into
3160
3161
* account, and the userIDs are directly usable.
3161
3162
*
3162
- * @return CompletableFuture<CreatedAtResponse > The awaitable future
3163
+ * @return CompletableFuture<HasPendingMappingsResponse > The awaitable future
3163
3164
* @throws AlgoliaRuntimeException If it fails to process the API call
3164
3165
*/
3165
- public CompletableFuture <CreatedAtResponse > hasPendingMappingsAsync () throws AlgoliaRuntimeException {
3166
+ public CompletableFuture <HasPendingMappingsResponse > hasPendingMappingsAsync () throws AlgoliaRuntimeException {
3166
3167
return this .hasPendingMappingsAsync (null , null );
3167
3168
}
3168
3169
0 commit comments