forked from Azure/autorest.java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPagings.java
More file actions
552 lines (519 loc) · 28.6 KB
/
Pagings.java
File metadata and controls
552 lines (519 loc) · 28.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package fixtures.custombaseuri.paging;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.exception.HttpResponseException;
import com.azure.core.http.rest.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.PagedResponse;
import com.azure.core.http.rest.PagedResponseBase;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import fixtures.custombaseuri.paging.models.Product;
import fixtures.custombaseuri.paging.models.ProductResult;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in Pagings.
*/
public final class Pagings {
/**
* The proxy service used to perform REST calls.
*/
private final PagingsService service;
/**
* The service client containing this operation class.
*/
private final AutoRestParameterizedHostTestPagingClient client;
/**
* Initializes an instance of Pagings.
*
* @param client the instance of the service client containing this operation class.
*/
Pagings(AutoRestParameterizedHostTestPagingClient client) {
this.service = RestProxy.create(PagingsService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for AutoRestParameterizedHostTestPagingClientPagings to be used by the
* proxy service to perform REST calls.
*/
@Host("http://{accountName}{host}")
@ServiceInterface(name = "AutoRestParameterize")
public interface PagingsService {
@Get("/paging/customurl/partialnextlink")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(HttpResponseException.class)
Mono<Response<ProductResult>> getPagesPartialUrl(@HostParam("accountName") String accountName,
@HostParam("host") String host, @HeaderParam("Accept") String accept, Context context);
@Get("/paging/customurl/partialnextlinkop")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(HttpResponseException.class)
Mono<Response<ProductResult>> getPagesPartialUrlOperation(@HostParam("accountName") String accountName,
@HostParam("host") String host, @HeaderParam("Accept") String accept, Context context);
@Get("/paging/customurl/{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(HttpResponseException.class)
Mono<Response<ProductResult>> getPagesPartialUrlOperationNext(@HostParam("accountName") String accountName,
@HostParam("host") String host, @PathParam(value = "nextLink", encoded = true) String nextLink,
@HeaderParam("Accept") String accept, Context context);
@Get("{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(HttpResponseException.class)
Mono<Response<ProductResult>> getPagesPartialUrlNext(
@PathParam(value = "nextLink", encoded = true) String nextLink,
@HostParam("accountName") String accountName, @HostParam("host") String host,
@HeaderParam("Accept") String accept, Context context);
}
/**
* A paging operation that combines custom url, paging and partial URL and expect to concat after host.
*
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<PagedResponse<Product>> getPagesPartialUrlSinglePageAsync(String accountName) {
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName is required and cannot be null."));
}
if (this.client.getHost() == null) {
return Mono
.error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.getPagesPartialUrl(accountName, this.client.getHost(), accept, context))
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().getValues(), res.getValue().getNextLink(), null));
}
/**
* A paging operation that combines custom url, paging and partial URL and expect to concat after host.
*
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<PagedResponse<Product>> getPagesPartialUrlSinglePageAsync(String accountName, Context context) {
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName is required and cannot be null."));
}
if (this.client.getHost() == null) {
return Mono
.error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null."));
}
final String accept = "application/json";
return service.getPagesPartialUrl(accountName, this.client.getHost(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().getValues(), res.getValue().getNextLink(), null));
}
/**
* A paging operation that combines custom url, paging and partial URL and expect to concat after host.
*
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<Product> getPagesPartialUrlAsync(String accountName) {
return new PagedFlux<>(() -> getPagesPartialUrlSinglePageAsync(accountName),
nextLink -> getPagesPartialUrlNextSinglePageAsync(nextLink, accountName));
}
/**
* A paging operation that combines custom url, paging and partial URL and expect to concat after host.
*
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<Product> getPagesPartialUrlAsync(String accountName, Context context) {
return new PagedFlux<>(() -> getPagesPartialUrlSinglePageAsync(accountName, context),
nextLink -> getPagesPartialUrlNextSinglePageAsync(nextLink, accountName, context));
}
/**
* A paging operation that combines custom url, paging and partial URL and expect to concat after host.
*
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PagedResponse<Product> getPagesPartialUrlSinglePage(String accountName) {
return getPagesPartialUrlSinglePageAsync(accountName).block();
}
/**
* A paging operation that combines custom url, paging and partial URL and expect to concat after host.
*
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PagedResponse<Product> getPagesPartialUrlSinglePage(String accountName, Context context) {
return getPagesPartialUrlSinglePageAsync(accountName, context).block();
}
/**
* A paging operation that combines custom url, paging and partial URL and expect to concat after host.
*
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<Product> getPagesPartialUrl(String accountName) {
return new PagedIterable<>(getPagesPartialUrlAsync(accountName));
}
/**
* A paging operation that combines custom url, paging and partial URL and expect to concat after host.
*
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<Product> getPagesPartialUrl(String accountName, Context context) {
return new PagedIterable<>(getPagesPartialUrlAsync(accountName, context));
}
/**
* A paging operation that combines custom url, paging and partial URL with next operation.
*
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<PagedResponse<Product>> getPagesPartialUrlOperationSinglePageAsync(String accountName) {
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName is required and cannot be null."));
}
if (this.client.getHost() == null) {
return Mono
.error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(
context -> service.getPagesPartialUrlOperation(accountName, this.client.getHost(), accept, context))
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().getValues(), res.getValue().getNextLink(), null));
}
/**
* A paging operation that combines custom url, paging and partial URL with next operation.
*
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<PagedResponse<Product>> getPagesPartialUrlOperationSinglePageAsync(String accountName,
Context context) {
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName is required and cannot be null."));
}
if (this.client.getHost() == null) {
return Mono
.error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null."));
}
final String accept = "application/json";
return service.getPagesPartialUrlOperation(accountName, this.client.getHost(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().getValues(), res.getValue().getNextLink(), null));
}
/**
* A paging operation that combines custom url, paging and partial URL with next operation.
*
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<Product> getPagesPartialUrlOperationAsync(String accountName) {
return new PagedFlux<>(() -> getPagesPartialUrlOperationSinglePageAsync(accountName),
nextLink -> getPagesPartialUrlOperationNextSinglePageAsync(accountName, nextLink));
}
/**
* A paging operation that combines custom url, paging and partial URL with next operation.
*
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<Product> getPagesPartialUrlOperationAsync(String accountName, Context context) {
return new PagedFlux<>(() -> getPagesPartialUrlOperationSinglePageAsync(accountName, context),
nextLink -> getPagesPartialUrlOperationNextSinglePageAsync(accountName, nextLink, context));
}
/**
* A paging operation that combines custom url, paging and partial URL with next operation.
*
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PagedResponse<Product> getPagesPartialUrlOperationSinglePage(String accountName) {
return getPagesPartialUrlOperationSinglePageAsync(accountName).block();
}
/**
* A paging operation that combines custom url, paging and partial URL with next operation.
*
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PagedResponse<Product> getPagesPartialUrlOperationSinglePage(String accountName, Context context) {
return getPagesPartialUrlOperationSinglePageAsync(accountName, context).block();
}
/**
* A paging operation that combines custom url, paging and partial URL with next operation.
*
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<Product> getPagesPartialUrlOperation(String accountName) {
return new PagedIterable<>(getPagesPartialUrlOperationAsync(accountName));
}
/**
* A paging operation that combines custom url, paging and partial URL with next operation.
*
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<Product> getPagesPartialUrlOperation(String accountName, Context context) {
return new PagedIterable<>(getPagesPartialUrlOperationAsync(accountName, context));
}
/**
* A paging operation that combines custom url, paging and partial URL.
*
* @param accountName Account Name.
* @param nextLink Next link for the list operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<PagedResponse<Product>> getPagesPartialUrlOperationNextSinglePageAsync(String accountName,
String nextLink) {
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName is required and cannot be null."));
}
if (this.client.getHost() == null) {
return Mono
.error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null."));
}
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.getPagesPartialUrlOperationNext(accountName, this.client.getHost(),
nextLink, accept, context))
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().getValues(), res.getValue().getNextLink(), null));
}
/**
* A paging operation that combines custom url, paging and partial URL.
*
* @param accountName Account Name.
* @param nextLink Next link for the list operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<PagedResponse<Product>> getPagesPartialUrlOperationNextSinglePageAsync(String accountName,
String nextLink, Context context) {
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName is required and cannot be null."));
}
if (this.client.getHost() == null) {
return Mono
.error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null."));
}
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
final String accept = "application/json";
return service.getPagesPartialUrlOperationNext(accountName, this.client.getHost(), nextLink, accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().getValues(), res.getValue().getNextLink(), null));
}
/**
* A paging operation that combines custom url, paging and partial URL.
*
* @param accountName Account Name.
* @param nextLink Next link for the list operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PagedResponse<Product> getPagesPartialUrlOperationNextSinglePage(String accountName, String nextLink) {
return getPagesPartialUrlOperationNextSinglePageAsync(accountName, nextLink).block();
}
/**
* A paging operation that combines custom url, paging and partial URL.
*
* @param accountName Account Name.
* @param nextLink Next link for the list operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PagedResponse<Product> getPagesPartialUrlOperationNextSinglePage(String accountName, String nextLink,
Context context) {
return getPagesPartialUrlOperationNextSinglePageAsync(accountName, nextLink, context).block();
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<PagedResponse<Product>> getPagesPartialUrlNextSinglePageAsync(String nextLink, String accountName) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName is required and cannot be null."));
}
if (this.client.getHost() == null) {
return Mono
.error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil.withContext(
context -> service.getPagesPartialUrlNext(nextLink, accountName, this.client.getHost(), accept, context))
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().getValues(), res.getValue().getNextLink(), null));
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<PagedResponse<Product>> getPagesPartialUrlNextSinglePageAsync(String nextLink, String accountName,
Context context) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName is required and cannot be null."));
}
if (this.client.getHost() == null) {
return Mono
.error(new IllegalArgumentException("Parameter this.client.getHost() is required and cannot be null."));
}
final String accept = "application/json";
return service.getPagesPartialUrlNext(nextLink, accountName, this.client.getHost(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().getValues(), res.getValue().getNextLink(), null));
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @param accountName Account Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PagedResponse<Product> getPagesPartialUrlNextSinglePage(String nextLink, String accountName) {
return getPagesPartialUrlNextSinglePageAsync(nextLink, accountName).block();
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @param accountName Account Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws HttpResponseException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link PagedResponse}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PagedResponse<Product> getPagesPartialUrlNextSinglePage(String nextLink, String accountName,
Context context) {
return getPagesPartialUrlNextSinglePageAsync(nextLink, accountName, context).block();
}
}