Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.appservice.implementation;
import retrofit2.Retrofit;
import com.google.common.reflect.TypeToken;
import com.microsoft.azure.AzureServiceFuture;
import com.microsoft.azure.ListOperationCallback;
import com.microsoft.azure.management.appservice.DefaultErrorResponseException;
import com.microsoft.azure.Page;
import com.microsoft.azure.PagedList;
import com.microsoft.rest.ServiceCallback;
import com.microsoft.rest.ServiceFuture;
import com.microsoft.rest.ServiceResponse;
import java.io.IOException;
import java.util.List;
import okhttp3.ResponseBody;
import retrofit2.http.GET;
import retrofit2.http.Header;
import retrofit2.http.Headers;
import retrofit2.http.Path;
import retrofit2.http.Query;
import retrofit2.http.Url;
import retrofit2.Response;
import rx.functions.Func1;
import rx.Observable;
An instance of this class provides access to all the operations defined
in DeletedWebApps.
/**
* An instance of this class provides access to all the operations defined
* in DeletedWebApps.
*/
public class DeletedWebAppsInner {
The Retrofit service to perform REST calls. /** The Retrofit service to perform REST calls. */
private DeletedWebAppsService service;
The service client containing this operation class. /** The service client containing this operation class. */
private WebSiteManagementClientImpl client;
Initializes an instance of DeletedWebAppsInner.
Params: - retrofit – the Retrofit instance built from a Retrofit Builder.
- client – the instance of the service client containing this operation class.
/**
* Initializes an instance of DeletedWebAppsInner.
*
* @param retrofit the Retrofit instance built from a Retrofit Builder.
* @param client the instance of the service client containing this operation class.
*/
public DeletedWebAppsInner(Retrofit retrofit, WebSiteManagementClientImpl client) {
this.service = retrofit.create(DeletedWebAppsService.class);
this.client = client;
}
The interface defining all the services for DeletedWebApps to be
used by Retrofit to perform actually REST calls.
/**
* The interface defining all the services for DeletedWebApps to be
* used by Retrofit to perform actually REST calls.
*/
interface DeletedWebAppsService {
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.DeletedWebApps list" })
@GET("subscriptions/{subscriptionId}/providers/Microsoft.Web/deletedSites")
Observable<Response<ResponseBody>> list(@Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.DeletedWebApps listByLocation" })
@GET("subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites")
Observable<Response<ResponseBody>> listByLocation(@Path("location") String location, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.DeletedWebApps getDeletedWebAppByLocation" })
@GET("subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites/{deletedSiteId}")
Observable<Response<ResponseBody>> getDeletedWebAppByLocation(@Path("location") String location, @Path("deletedSiteId") String deletedSiteId, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.DeletedWebApps listNext" })
@GET
Observable<Response<ResponseBody>> listNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
@Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.DeletedWebApps listByLocationNext" })
@GET
Observable<Response<ResponseBody>> listByLocationNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
- DefaultErrorResponseException – thrown if the request is rejected by server
- RuntimeException – all other wrapped checked exceptions if the request fails to be sent
Returns: the PagedList<DeletedSiteInner> object if successful.
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws DefaultErrorResponseException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList<DeletedSiteInner> object if successful.
*/
public PagedList<DeletedSiteInner> list() {
ServiceResponse<Page<DeletedSiteInner>> response = listSinglePageAsync().toBlocking().single();
return new PagedList<DeletedSiteInner>(response.body()) {
@Override
public Page<DeletedSiteInner> nextPage(String nextPageLink) {
return listNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
Params: - serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the ServiceFuture
object
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<DeletedSiteInner>> listAsync(final ListOperationCallback<DeletedSiteInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listSinglePageAsync(),
new Func1<String, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(String nextPageLink) {
return listNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the PagedList<DeletedSiteInner> object
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList<DeletedSiteInner> object
*/
public Observable<Page<DeletedSiteInner>> listAsync() {
return listWithServiceResponseAsync()
.map(new Func1<ServiceResponse<Page<DeletedSiteInner>>, Page<DeletedSiteInner>>() {
@Override
public Page<DeletedSiteInner> call(ServiceResponse<Page<DeletedSiteInner>> response) {
return response.body();
}
});
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the PagedList<DeletedSiteInner> object
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList<DeletedSiteInner> object
*/
public Observable<ServiceResponse<Page<DeletedSiteInner>>> listWithServiceResponseAsync() {
return listSinglePageAsync()
.concatMap(new Func1<ServiceResponse<Page<DeletedSiteInner>>, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(ServiceResponse<Page<DeletedSiteInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listNextWithServiceResponseAsync(nextPageLink));
}
});
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the PagedList<DeletedSiteInner> object wrapped in ServiceResponse
if successful.
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList<DeletedSiteInner> object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<DeletedSiteInner>>> listSinglePageAsync() {
if (this.client.subscriptionId() == null) {
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
return service.list(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<DeletedSiteInner>> result = listDelegate(response);
return Observable.just(new ServiceResponse<Page<DeletedSiteInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<DeletedSiteInner>> listDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<DeletedSiteInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<DeletedSiteInner>>() { }.getType())
.registerError(DefaultErrorResponseException.class)
.build(response);
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
Params: - location – the String value
Throws: - IllegalArgumentException – thrown if parameters fail the validation
- DefaultErrorResponseException – thrown if the request is rejected by server
- RuntimeException – all other wrapped checked exceptions if the request fails to be sent
Returns: the PagedList<DeletedSiteInner> object if successful.
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
* @param location the String value
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws DefaultErrorResponseException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList<DeletedSiteInner> object if successful.
*/
public PagedList<DeletedSiteInner> listByLocation(final String location) {
ServiceResponse<Page<DeletedSiteInner>> response = listByLocationSinglePageAsync(location).toBlocking().single();
return new PagedList<DeletedSiteInner>(response.body()) {
@Override
public Page<DeletedSiteInner> nextPage(String nextPageLink) {
return listByLocationNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
Params: - location – the String value
- serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the ServiceFuture
object
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
* @param location the String value
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<DeletedSiteInner>> listByLocationAsync(final String location, final ListOperationCallback<DeletedSiteInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listByLocationSinglePageAsync(location),
new Func1<String, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(String nextPageLink) {
return listByLocationNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
Params: - location – the String value
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the PagedList<DeletedSiteInner> object
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
* @param location the String value
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList<DeletedSiteInner> object
*/
public Observable<Page<DeletedSiteInner>> listByLocationAsync(final String location) {
return listByLocationWithServiceResponseAsync(location)
.map(new Func1<ServiceResponse<Page<DeletedSiteInner>>, Page<DeletedSiteInner>>() {
@Override
public Page<DeletedSiteInner> call(ServiceResponse<Page<DeletedSiteInner>> response) {
return response.body();
}
});
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
Params: - location – the String value
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the PagedList<DeletedSiteInner> object
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
* @param location the String value
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList<DeletedSiteInner> object
*/
public Observable<ServiceResponse<Page<DeletedSiteInner>>> listByLocationWithServiceResponseAsync(final String location) {
return listByLocationSinglePageAsync(location)
.concatMap(new Func1<ServiceResponse<Page<DeletedSiteInner>>, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(ServiceResponse<Page<DeletedSiteInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listByLocationNextWithServiceResponseAsync(nextPageLink));
}
});
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
ServiceResponse> * @param location the String value
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the PagedList<DeletedSiteInner> object wrapped in ServiceResponse
if successful.
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
ServiceResponse<PageImpl<DeletedSiteInner>> * @param location the String value
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList<DeletedSiteInner> object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<DeletedSiteInner>>> listByLocationSinglePageAsync(final String location) {
if (location == null) {
throw new IllegalArgumentException("Parameter location is required and cannot be null.");
}
if (this.client.subscriptionId() == null) {
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
return service.listByLocation(location, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<DeletedSiteInner>> result = listByLocationDelegate(response);
return Observable.just(new ServiceResponse<Page<DeletedSiteInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<DeletedSiteInner>> listByLocationDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<DeletedSiteInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<DeletedSiteInner>>() { }.getType())
.registerError(DefaultErrorResponseException.class)
.build(response);
}
Get deleted app for a subscription at location.
Description for Get deleted app for a subscription at location.
Params: - location – the String value
- deletedSiteId – The numeric ID of the deleted app, e.g. 12345
Throws: - IllegalArgumentException – thrown if parameters fail the validation
- DefaultErrorResponseException – thrown if the request is rejected by server
- RuntimeException – all other wrapped checked exceptions if the request fails to be sent
Returns: the DeletedSiteInner object if successful.
/**
* Get deleted app for a subscription at location.
* Description for Get deleted app for a subscription at location.
*
* @param location the String value
* @param deletedSiteId The numeric ID of the deleted app, e.g. 12345
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws DefaultErrorResponseException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the DeletedSiteInner object if successful.
*/
public DeletedSiteInner getDeletedWebAppByLocation(String location, String deletedSiteId) {
return getDeletedWebAppByLocationWithServiceResponseAsync(location, deletedSiteId).toBlocking().single().body();
}
Get deleted app for a subscription at location.
Description for Get deleted app for a subscription at location.
Params: - location – the String value
- deletedSiteId – The numeric ID of the deleted app, e.g. 12345
- serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the ServiceFuture
object
/**
* Get deleted app for a subscription at location.
* Description for Get deleted app for a subscription at location.
*
* @param location the String value
* @param deletedSiteId The numeric ID of the deleted app, e.g. 12345
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<DeletedSiteInner> getDeletedWebAppByLocationAsync(String location, String deletedSiteId, final ServiceCallback<DeletedSiteInner> serviceCallback) {
return ServiceFuture.fromResponse(getDeletedWebAppByLocationWithServiceResponseAsync(location, deletedSiteId), serviceCallback);
}
Get deleted app for a subscription at location.
Description for Get deleted app for a subscription at location.
Params: - location – the String value
- deletedSiteId – The numeric ID of the deleted app, e.g. 12345
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the DeletedSiteInner object
/**
* Get deleted app for a subscription at location.
* Description for Get deleted app for a subscription at location.
*
* @param location the String value
* @param deletedSiteId The numeric ID of the deleted app, e.g. 12345
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the DeletedSiteInner object
*/
public Observable<DeletedSiteInner> getDeletedWebAppByLocationAsync(String location, String deletedSiteId) {
return getDeletedWebAppByLocationWithServiceResponseAsync(location, deletedSiteId).map(new Func1<ServiceResponse<DeletedSiteInner>, DeletedSiteInner>() {
@Override
public DeletedSiteInner call(ServiceResponse<DeletedSiteInner> response) {
return response.body();
}
});
}
Get deleted app for a subscription at location.
Description for Get deleted app for a subscription at location.
Params: - location – the String value
- deletedSiteId – The numeric ID of the deleted app, e.g. 12345
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the DeletedSiteInner object
/**
* Get deleted app for a subscription at location.
* Description for Get deleted app for a subscription at location.
*
* @param location the String value
* @param deletedSiteId The numeric ID of the deleted app, e.g. 12345
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the DeletedSiteInner object
*/
public Observable<ServiceResponse<DeletedSiteInner>> getDeletedWebAppByLocationWithServiceResponseAsync(String location, String deletedSiteId) {
if (location == null) {
throw new IllegalArgumentException("Parameter location is required and cannot be null.");
}
if (deletedSiteId == null) {
throw new IllegalArgumentException("Parameter deletedSiteId is required and cannot be null.");
}
if (this.client.subscriptionId() == null) {
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
}
if (this.client.apiVersion() == null) {
throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
}
return service.getDeletedWebAppByLocation(location, deletedSiteId, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DeletedSiteInner>>>() {
@Override
public Observable<ServiceResponse<DeletedSiteInner>> call(Response<ResponseBody> response) {
try {
ServiceResponse<DeletedSiteInner> clientResponse = getDeletedWebAppByLocationDelegate(response);
return Observable.just(clientResponse);
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<DeletedSiteInner> getDeletedWebAppByLocationDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<DeletedSiteInner, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<DeletedSiteInner>() { }.getType())
.registerError(DefaultErrorResponseException.class)
.build(response);
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
Params: - nextPageLink – The NextLink from the previous successful call to List operation.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
- DefaultErrorResponseException – thrown if the request is rejected by server
- RuntimeException – all other wrapped checked exceptions if the request fails to be sent
Returns: the PagedList<DeletedSiteInner> object if successful.
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws DefaultErrorResponseException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList<DeletedSiteInner> object if successful.
*/
public PagedList<DeletedSiteInner> listNext(final String nextPageLink) {
ServiceResponse<Page<DeletedSiteInner>> response = listNextSinglePageAsync(nextPageLink).toBlocking().single();
return new PagedList<DeletedSiteInner>(response.body()) {
@Override
public Page<DeletedSiteInner> nextPage(String nextPageLink) {
return listNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
Params: - nextPageLink – The NextLink from the previous successful call to List operation.
- serviceFuture – the ServiceFuture object tracking the Retrofit calls
- serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the ServiceFuture
object
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param serviceFuture the ServiceFuture object tracking the Retrofit calls
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<DeletedSiteInner>> listNextAsync(final String nextPageLink, final ServiceFuture<List<DeletedSiteInner>> serviceFuture, final ListOperationCallback<DeletedSiteInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listNextSinglePageAsync(nextPageLink),
new Func1<String, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(String nextPageLink) {
return listNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
Params: - nextPageLink – The NextLink from the previous successful call to List operation.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the PagedList<DeletedSiteInner> object
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList<DeletedSiteInner> object
*/
public Observable<Page<DeletedSiteInner>> listNextAsync(final String nextPageLink) {
return listNextWithServiceResponseAsync(nextPageLink)
.map(new Func1<ServiceResponse<Page<DeletedSiteInner>>, Page<DeletedSiteInner>>() {
@Override
public Page<DeletedSiteInner> call(ServiceResponse<Page<DeletedSiteInner>> response) {
return response.body();
}
});
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
Params: - nextPageLink – The NextLink from the previous successful call to List operation.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the PagedList<DeletedSiteInner> object
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList<DeletedSiteInner> object
*/
public Observable<ServiceResponse<Page<DeletedSiteInner>>> listNextWithServiceResponseAsync(final String nextPageLink) {
return listNextSinglePageAsync(nextPageLink)
.concatMap(new Func1<ServiceResponse<Page<DeletedSiteInner>>, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(ServiceResponse<Page<DeletedSiteInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listNextWithServiceResponseAsync(nextPageLink));
}
});
}
Get all deleted apps for a subscription.
Description for Get all deleted apps for a subscription.
ServiceResponse> * @param nextPageLink The NextLink from the previous successful call to List operation.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the PagedList<DeletedSiteInner> object wrapped in ServiceResponse
if successful.
/**
* Get all deleted apps for a subscription.
* Description for Get all deleted apps for a subscription.
*
ServiceResponse<PageImpl<DeletedSiteInner>> * @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList<DeletedSiteInner> object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<DeletedSiteInner>>> listNextSinglePageAsync(final String nextPageLink) {
if (nextPageLink == null) {
throw new IllegalArgumentException("Parameter nextPageLink is required and cannot be null.");
}
String nextUrl = String.format("%s", nextPageLink);
return service.listNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<DeletedSiteInner>> result = listNextDelegate(response);
return Observable.just(new ServiceResponse<Page<DeletedSiteInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<DeletedSiteInner>> listNextDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<DeletedSiteInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<DeletedSiteInner>>() { }.getType())
.registerError(DefaultErrorResponseException.class)
.build(response);
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
Params: - nextPageLink – The NextLink from the previous successful call to List operation.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
- DefaultErrorResponseException – thrown if the request is rejected by server
- RuntimeException – all other wrapped checked exceptions if the request fails to be sent
Returns: the PagedList<DeletedSiteInner> object if successful.
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws DefaultErrorResponseException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
* @return the PagedList<DeletedSiteInner> object if successful.
*/
public PagedList<DeletedSiteInner> listByLocationNext(final String nextPageLink) {
ServiceResponse<Page<DeletedSiteInner>> response = listByLocationNextSinglePageAsync(nextPageLink).toBlocking().single();
return new PagedList<DeletedSiteInner>(response.body()) {
@Override
public Page<DeletedSiteInner> nextPage(String nextPageLink) {
return listByLocationNextSinglePageAsync(nextPageLink).toBlocking().single().body();
}
};
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
Params: - nextPageLink – The NextLink from the previous successful call to List operation.
- serviceFuture – the ServiceFuture object tracking the Retrofit calls
- serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the ServiceFuture
object
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @param serviceFuture the ServiceFuture object tracking the Retrofit calls
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
*/
public ServiceFuture<List<DeletedSiteInner>> listByLocationNextAsync(final String nextPageLink, final ServiceFuture<List<DeletedSiteInner>> serviceFuture, final ListOperationCallback<DeletedSiteInner> serviceCallback) {
return AzureServiceFuture.fromPageResponse(
listByLocationNextSinglePageAsync(nextPageLink),
new Func1<String, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(String nextPageLink) {
return listByLocationNextSinglePageAsync(nextPageLink);
}
},
serviceCallback);
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
Params: - nextPageLink – The NextLink from the previous successful call to List operation.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the PagedList<DeletedSiteInner> object
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList<DeletedSiteInner> object
*/
public Observable<Page<DeletedSiteInner>> listByLocationNextAsync(final String nextPageLink) {
return listByLocationNextWithServiceResponseAsync(nextPageLink)
.map(new Func1<ServiceResponse<Page<DeletedSiteInner>>, Page<DeletedSiteInner>>() {
@Override
public Page<DeletedSiteInner> call(ServiceResponse<Page<DeletedSiteInner>> response) {
return response.body();
}
});
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
Params: - nextPageLink – The NextLink from the previous successful call to List operation.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the observable to the PagedList<DeletedSiteInner> object
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
* @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList<DeletedSiteInner> object
*/
public Observable<ServiceResponse<Page<DeletedSiteInner>>> listByLocationNextWithServiceResponseAsync(final String nextPageLink) {
return listByLocationNextSinglePageAsync(nextPageLink)
.concatMap(new Func1<ServiceResponse<Page<DeletedSiteInner>>, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(ServiceResponse<Page<DeletedSiteInner>> page) {
String nextPageLink = page.body().nextPageLink();
if (nextPageLink == null) {
return Observable.just(page);
}
return Observable.just(page).concatWith(listByLocationNextWithServiceResponseAsync(nextPageLink));
}
});
}
Get all deleted apps for a subscription at location.
Description for Get all deleted apps for a subscription at location.
ServiceResponse> * @param nextPageLink The NextLink from the previous successful call to List operation.
Throws: - IllegalArgumentException – thrown if parameters fail the validation
Returns: the PagedList<DeletedSiteInner> object wrapped in ServiceResponse
if successful.
/**
* Get all deleted apps for a subscription at location.
* Description for Get all deleted apps for a subscription at location.
*
ServiceResponse<PageImpl<DeletedSiteInner>> * @param nextPageLink The NextLink from the previous successful call to List operation.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList<DeletedSiteInner> object wrapped in {@link ServiceResponse} if successful.
*/
public Observable<ServiceResponse<Page<DeletedSiteInner>>> listByLocationNextSinglePageAsync(final String nextPageLink) {
if (nextPageLink == null) {
throw new IllegalArgumentException("Parameter nextPageLink is required and cannot be null.");
}
String nextUrl = String.format("%s", nextPageLink);
return service.listByLocationNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent())
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeletedSiteInner>>>>() {
@Override
public Observable<ServiceResponse<Page<DeletedSiteInner>>> call(Response<ResponseBody> response) {
try {
ServiceResponse<PageImpl<DeletedSiteInner>> result = listByLocationNextDelegate(response);
return Observable.just(new ServiceResponse<Page<DeletedSiteInner>>(result.body(), result.response()));
} catch (Throwable t) {
return Observable.error(t);
}
}
});
}
private ServiceResponse<PageImpl<DeletedSiteInner>> listByLocationNextDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
return this.client.restClient().responseBuilderFactory().<PageImpl<DeletedSiteInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
.register(200, new TypeToken<PageImpl<DeletedSiteInner>>() { }.getType())
.registerError(DefaultErrorResponseException.class)
.build(response);
}
}