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.resources.implementation; import retrofit2.Retrofit; import com.google.common.reflect.TypeToken; import com.microsoft.azure.AzureServiceFuture; import com.microsoft.azure.CloudException; import com.microsoft.azure.ListOperationCallback; 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 DeploymentOperations.
/** * An instance of this class provides access to all the operations defined * in DeploymentOperations. */
public class DeploymentOperationsInner {
The Retrofit service to perform REST calls.
/** The Retrofit service to perform REST calls. */
private DeploymentOperationsService service;
The service client containing this operation class.
/** The service client containing this operation class. */
private ResourceManagementClientImpl client;
Initializes an instance of DeploymentOperationsInner.
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 DeploymentOperationsInner. * * @param retrofit the Retrofit instance built from a Retrofit Builder. * @param client the instance of the service client containing this operation class. */
public DeploymentOperationsInner(Retrofit retrofit, ResourceManagementClientImpl client) { this.service = retrofit.create(DeploymentOperationsService.class); this.client = client; }
The interface defining all the services for DeploymentOperations to be used by Retrofit to perform actually REST calls.
/** * The interface defining all the services for DeploymentOperations to be * used by Retrofit to perform actually REST calls. */
interface DeploymentOperationsService { @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.resources.DeploymentOperations getAtScope" }) @GET("{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}") Observable<Response<ResponseBody>> getAtScope(@Path(value = "scope", encoded = true) String scope, @Path("deploymentName") String deploymentName, @Path("operationId") String operationId, @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.resources.DeploymentOperations listAtScope" }) @GET("{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/operations") Observable<Response<ResponseBody>> listAtScope(@Path(value = "scope", encoded = true) String scope, @Path("deploymentName") String deploymentName, @Query("$top") Integer top, @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.resources.DeploymentOperations getAtTenantScope" }) @GET("providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}") Observable<Response<ResponseBody>> getAtTenantScope(@Path("deploymentName") String deploymentName, @Path("operationId") String operationId, @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.resources.DeploymentOperations listAtTenantScope" }) @GET("providers/Microsoft.Resources/deployments/{deploymentName}/operations") Observable<Response<ResponseBody>> listAtTenantScope(@Path("deploymentName") String deploymentName, @Query("$top") Integer top, @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.resources.DeploymentOperations getAtManagementGroupScope" }) @GET("providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}") Observable<Response<ResponseBody>> getAtManagementGroupScope(@Path("groupId") String groupId, @Path("deploymentName") String deploymentName, @Path("operationId") String operationId, @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.resources.DeploymentOperations listAtManagementGroupScope" }) @GET("providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations") Observable<Response<ResponseBody>> listAtManagementGroupScope(@Path("groupId") String groupId, @Path("deploymentName") String deploymentName, @Query("$top") Integer top, @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.resources.DeploymentOperations getAtSubscriptionScope" }) @GET("subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}") Observable<Response<ResponseBody>> getAtSubscriptionScope(@Path("deploymentName") String deploymentName, @Path("operationId") String operationId, @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.resources.DeploymentOperations listAtSubscriptionScope" }) @GET("subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations") Observable<Response<ResponseBody>> listAtSubscriptionScope(@Path("deploymentName") String deploymentName, @Path("subscriptionId") String subscriptionId, @Query("$top") Integer top, @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.resources.DeploymentOperations get" }) @GET("subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations/{operationId}") Observable<Response<ResponseBody>> get(@Path("resourceGroupName") String resourceGroupName, @Path("deploymentName") String deploymentName, @Path("operationId") String operationId, @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.resources.DeploymentOperations listByResourceGroup" }) @GET("subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations") Observable<Response<ResponseBody>> listByResourceGroup(@Path("resourceGroupName") String resourceGroupName, @Path("deploymentName") String deploymentName, @Path("subscriptionId") String subscriptionId, @Query("$top") Integer top, @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.resources.DeploymentOperations listAtScopeNext" }) @GET Observable<Response<ResponseBody>> listAtScopeNext(@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.resources.DeploymentOperations listAtTenantScopeNext" }) @GET Observable<Response<ResponseBody>> listAtTenantScopeNext(@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.resources.DeploymentOperations listAtManagementGroupScopeNext" }) @GET Observable<Response<ResponseBody>> listAtManagementGroupScopeNext(@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.resources.DeploymentOperations listAtSubscriptionScopeNext" }) @GET Observable<Response<ResponseBody>> listAtSubscriptionScopeNext(@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.resources.DeploymentOperations listByResourceGroupNext" }) @GET Observable<Response<ResponseBody>> listByResourceGroupNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); }
Gets a deployments operation.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the DeploymentOperationInner object if successful.
/** * Gets a deployments operation. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the DeploymentOperationInner object if successful. */
public DeploymentOperationInner getAtScope(String scope, String deploymentName, String operationId) { return getAtScopeWithServiceResponseAsync(scope, deploymentName, operationId).toBlocking().single().body(); }
Gets a deployments operation.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets a deployments operation. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @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<DeploymentOperationInner> getAtScopeAsync(String scope, String deploymentName, String operationId, final ServiceCallback<DeploymentOperationInner> serviceCallback) { return ServiceFuture.fromResponse(getAtScopeWithServiceResponseAsync(scope, deploymentName, operationId), serviceCallback); }
Gets a deployments operation.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<DeploymentOperationInner> getAtScopeAsync(String scope, String deploymentName, String operationId) { return getAtScopeWithServiceResponseAsync(scope, deploymentName, operationId).map(new Func1<ServiceResponse<DeploymentOperationInner>, DeploymentOperationInner>() { @Override public DeploymentOperationInner call(ServiceResponse<DeploymentOperationInner> response) { return response.body(); } }); }
Gets a deployments operation.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<ServiceResponse<DeploymentOperationInner>> getAtScopeWithServiceResponseAsync(String scope, String deploymentName, String operationId) { if (scope == null) { throw new IllegalArgumentException("Parameter scope is required and cannot be null."); } if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName is required and cannot be null."); } if (operationId == null) { throw new IllegalArgumentException("Parameter operationId 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.getAtScope(scope, deploymentName, operationId, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DeploymentOperationInner>>>() { @Override public Observable<ServiceResponse<DeploymentOperationInner>> call(Response<ResponseBody> response) { try { ServiceResponse<DeploymentOperationInner> clientResponse = getAtScopeDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<DeploymentOperationInner> getAtScopeDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<DeploymentOperationInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<DeploymentOperationInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtScope(final String scope, final String deploymentName) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtScopeSinglePageAsync(scope, deploymentName).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @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<DeploymentOperationInner>> listAtScopeAsync(final String scope, final String deploymentName, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtScopeSinglePageAsync(scope, deploymentName), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtScopeAsync(final String scope, final String deploymentName) { return listAtScopeWithServiceResponseAsync(scope, deploymentName) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtScopeWithServiceResponseAsync(final String scope, final String deploymentName) { return listAtScopeSinglePageAsync(scope, deploymentName) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtScopeSinglePageAsync(final String scope, final String deploymentName) { if (scope == null) { throw new IllegalArgumentException("Parameter scope is required and cannot be null."); } if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } final Integer top = null; return service.listAtScope(scope, deploymentName, top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtScopeDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); }
Gets all deployments operations for a deployment.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtScope(final String scope, final String deploymentName, final Integer top) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtScopeSinglePageAsync(scope, deploymentName, top).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @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<DeploymentOperationInner>> listAtScopeAsync(final String scope, final String deploymentName, final Integer top, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtScopeSinglePageAsync(scope, deploymentName, top), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtScopeAsync(final String scope, final String deploymentName, final Integer top) { return listAtScopeWithServiceResponseAsync(scope, deploymentName, top) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • scope – The resource scope.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param scope The resource scope. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtScopeWithServiceResponseAsync(final String scope, final String deploymentName, final Integer top) { return listAtScopeSinglePageAsync(scope, deploymentName, top) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param scope The resource scope. ServiceResponse> * @param deploymentName The name of the deployment. ServiceResponse> * @param top The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param scope The resource scope. ServiceResponse<PageImpl<DeploymentOperationInner>> * @param deploymentName The name of the deployment. ServiceResponse<PageImpl<DeploymentOperationInner>> * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtScopeSinglePageAsync(final String scope, final String deploymentName, final Integer top) { if (scope == null) { throw new IllegalArgumentException("Parameter scope is required and cannot be null."); } if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName 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.listAtScope(scope, deploymentName, top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtScopeDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listAtScopeDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets a deployments operation.
Params:
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the DeploymentOperationInner object if successful.
/** * Gets a deployments operation. * * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the DeploymentOperationInner object if successful. */
public DeploymentOperationInner getAtTenantScope(String deploymentName, String operationId) { return getAtTenantScopeWithServiceResponseAsync(deploymentName, operationId).toBlocking().single().body(); }
Gets a deployments operation.
Params:
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets a deployments operation. * * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @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<DeploymentOperationInner> getAtTenantScopeAsync(String deploymentName, String operationId, final ServiceCallback<DeploymentOperationInner> serviceCallback) { return ServiceFuture.fromResponse(getAtTenantScopeWithServiceResponseAsync(deploymentName, operationId), serviceCallback); }
Gets a deployments operation.
Params:
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<DeploymentOperationInner> getAtTenantScopeAsync(String deploymentName, String operationId) { return getAtTenantScopeWithServiceResponseAsync(deploymentName, operationId).map(new Func1<ServiceResponse<DeploymentOperationInner>, DeploymentOperationInner>() { @Override public DeploymentOperationInner call(ServiceResponse<DeploymentOperationInner> response) { return response.body(); } }); }
Gets a deployments operation.
Params:
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<ServiceResponse<DeploymentOperationInner>> getAtTenantScopeWithServiceResponseAsync(String deploymentName, String operationId) { if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName is required and cannot be null."); } if (operationId == null) { throw new IllegalArgumentException("Parameter operationId 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.getAtTenantScope(deploymentName, operationId, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DeploymentOperationInner>>>() { @Override public Observable<ServiceResponse<DeploymentOperationInner>> call(Response<ResponseBody> response) { try { ServiceResponse<DeploymentOperationInner> clientResponse = getAtTenantScopeDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<DeploymentOperationInner> getAtTenantScopeDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<DeploymentOperationInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<DeploymentOperationInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtTenantScope(final String deploymentName) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtTenantScopeSinglePageAsync(deploymentName).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtTenantScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @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<DeploymentOperationInner>> listAtTenantScopeAsync(final String deploymentName, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtTenantScopeSinglePageAsync(deploymentName), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtTenantScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtTenantScopeAsync(final String deploymentName) { return listAtTenantScopeWithServiceResponseAsync(deploymentName) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtTenantScopeWithServiceResponseAsync(final String deploymentName) { return listAtTenantScopeSinglePageAsync(deploymentName) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtTenantScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtTenantScopeSinglePageAsync(final String deploymentName) { if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } final Integer top = null; return service.listAtTenantScope(deploymentName, top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtTenantScopeDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtTenantScope(final String deploymentName, final Integer top) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtTenantScopeSinglePageAsync(deploymentName, top).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtTenantScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @param top The number of results to return. * @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<DeploymentOperationInner>> listAtTenantScopeAsync(final String deploymentName, final Integer top, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtTenantScopeSinglePageAsync(deploymentName, top), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtTenantScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtTenantScopeAsync(final String deploymentName, final Integer top) { return listAtTenantScopeWithServiceResponseAsync(deploymentName, top) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtTenantScopeWithServiceResponseAsync(final String deploymentName, final Integer top) { return listAtTenantScopeSinglePageAsync(deploymentName, top) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtTenantScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param deploymentName The name of the deployment. ServiceResponse> * @param top The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param deploymentName The name of the deployment. ServiceResponse<PageImpl<DeploymentOperationInner>> * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtTenantScopeSinglePageAsync(final String deploymentName, final Integer top) { if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName 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.listAtTenantScope(deploymentName, top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtTenantScopeDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listAtTenantScopeDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets a deployments operation.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the DeploymentOperationInner object if successful.
/** * Gets a deployments operation. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the DeploymentOperationInner object if successful. */
public DeploymentOperationInner getAtManagementGroupScope(String groupId, String deploymentName, String operationId) { return getAtManagementGroupScopeWithServiceResponseAsync(groupId, deploymentName, operationId).toBlocking().single().body(); }
Gets a deployments operation.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets a deployments operation. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @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<DeploymentOperationInner> getAtManagementGroupScopeAsync(String groupId, String deploymentName, String operationId, final ServiceCallback<DeploymentOperationInner> serviceCallback) { return ServiceFuture.fromResponse(getAtManagementGroupScopeWithServiceResponseAsync(groupId, deploymentName, operationId), serviceCallback); }
Gets a deployments operation.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<DeploymentOperationInner> getAtManagementGroupScopeAsync(String groupId, String deploymentName, String operationId) { return getAtManagementGroupScopeWithServiceResponseAsync(groupId, deploymentName, operationId).map(new Func1<ServiceResponse<DeploymentOperationInner>, DeploymentOperationInner>() { @Override public DeploymentOperationInner call(ServiceResponse<DeploymentOperationInner> response) { return response.body(); } }); }
Gets a deployments operation.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<ServiceResponse<DeploymentOperationInner>> getAtManagementGroupScopeWithServiceResponseAsync(String groupId, String deploymentName, String operationId) { if (groupId == null) { throw new IllegalArgumentException("Parameter groupId is required and cannot be null."); } if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName is required and cannot be null."); } if (operationId == null) { throw new IllegalArgumentException("Parameter operationId 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.getAtManagementGroupScope(groupId, deploymentName, operationId, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DeploymentOperationInner>>>() { @Override public Observable<ServiceResponse<DeploymentOperationInner>> call(Response<ResponseBody> response) { try { ServiceResponse<DeploymentOperationInner> clientResponse = getAtManagementGroupScopeDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<DeploymentOperationInner> getAtManagementGroupScopeDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<DeploymentOperationInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<DeploymentOperationInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtManagementGroupScope(final String groupId, final String deploymentName) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtManagementGroupScopeSinglePageAsync(groupId, deploymentName).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtManagementGroupScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @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<DeploymentOperationInner>> listAtManagementGroupScopeAsync(final String groupId, final String deploymentName, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtManagementGroupScopeSinglePageAsync(groupId, deploymentName), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtManagementGroupScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtManagementGroupScopeAsync(final String groupId, final String deploymentName) { return listAtManagementGroupScopeWithServiceResponseAsync(groupId, deploymentName) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtManagementGroupScopeWithServiceResponseAsync(final String groupId, final String deploymentName) { return listAtManagementGroupScopeSinglePageAsync(groupId, deploymentName) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtManagementGroupScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtManagementGroupScopeSinglePageAsync(final String groupId, final String deploymentName) { if (groupId == null) { throw new IllegalArgumentException("Parameter groupId is required and cannot be null."); } if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } final Integer top = null; return service.listAtManagementGroupScope(groupId, deploymentName, top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtManagementGroupScopeDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); }
Gets all deployments operations for a deployment.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtManagementGroupScope(final String groupId, final String deploymentName, final Integer top) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtManagementGroupScopeSinglePageAsync(groupId, deploymentName, top).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtManagementGroupScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @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<DeploymentOperationInner>> listAtManagementGroupScopeAsync(final String groupId, final String deploymentName, final Integer top, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtManagementGroupScopeSinglePageAsync(groupId, deploymentName, top), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtManagementGroupScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtManagementGroupScopeAsync(final String groupId, final String deploymentName, final Integer top) { return listAtManagementGroupScopeWithServiceResponseAsync(groupId, deploymentName, top) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • groupId – The management group ID.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param groupId The management group ID. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtManagementGroupScopeWithServiceResponseAsync(final String groupId, final String deploymentName, final Integer top) { return listAtManagementGroupScopeSinglePageAsync(groupId, deploymentName, top) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtManagementGroupScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param groupId The management group ID. ServiceResponse> * @param deploymentName The name of the deployment. ServiceResponse> * @param top The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param groupId The management group ID. ServiceResponse<PageImpl<DeploymentOperationInner>> * @param deploymentName The name of the deployment. ServiceResponse<PageImpl<DeploymentOperationInner>> * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtManagementGroupScopeSinglePageAsync(final String groupId, final String deploymentName, final Integer top) { if (groupId == null) { throw new IllegalArgumentException("Parameter groupId is required and cannot be null."); } if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName 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.listAtManagementGroupScope(groupId, deploymentName, top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtManagementGroupScopeDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listAtManagementGroupScopeDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets a deployments operation.
Params:
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the DeploymentOperationInner object if successful.
/** * Gets a deployments operation. * * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the DeploymentOperationInner object if successful. */
public DeploymentOperationInner getAtSubscriptionScope(String deploymentName, String operationId) { return getAtSubscriptionScopeWithServiceResponseAsync(deploymentName, operationId).toBlocking().single().body(); }
Gets a deployments operation.
Params:
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets a deployments operation. * * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @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<DeploymentOperationInner> getAtSubscriptionScopeAsync(String deploymentName, String operationId, final ServiceCallback<DeploymentOperationInner> serviceCallback) { return ServiceFuture.fromResponse(getAtSubscriptionScopeWithServiceResponseAsync(deploymentName, operationId), serviceCallback); }
Gets a deployments operation.
Params:
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<DeploymentOperationInner> getAtSubscriptionScopeAsync(String deploymentName, String operationId) { return getAtSubscriptionScopeWithServiceResponseAsync(deploymentName, operationId).map(new Func1<ServiceResponse<DeploymentOperationInner>, DeploymentOperationInner>() { @Override public DeploymentOperationInner call(ServiceResponse<DeploymentOperationInner> response) { return response.body(); } }); }
Gets a deployments operation.
Params:
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<ServiceResponse<DeploymentOperationInner>> getAtSubscriptionScopeWithServiceResponseAsync(String deploymentName, String operationId) { if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName is required and cannot be null."); } if (operationId == null) { throw new IllegalArgumentException("Parameter operationId 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.getAtSubscriptionScope(deploymentName, operationId, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DeploymentOperationInner>>>() { @Override public Observable<ServiceResponse<DeploymentOperationInner>> call(Response<ResponseBody> response) { try { ServiceResponse<DeploymentOperationInner> clientResponse = getAtSubscriptionScopeDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<DeploymentOperationInner> getAtSubscriptionScopeDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<DeploymentOperationInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<DeploymentOperationInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtSubscriptionScope(final String deploymentName) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtSubscriptionScopeSinglePageAsync(deploymentName).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtSubscriptionScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @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<DeploymentOperationInner>> listAtSubscriptionScopeAsync(final String deploymentName, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtSubscriptionScopeSinglePageAsync(deploymentName), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtSubscriptionScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtSubscriptionScopeAsync(final String deploymentName) { return listAtSubscriptionScopeWithServiceResponseAsync(deploymentName) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtSubscriptionScopeWithServiceResponseAsync(final String deploymentName) { return listAtSubscriptionScopeSinglePageAsync(deploymentName) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtSubscriptionScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtSubscriptionScopeSinglePageAsync(final String deploymentName) { if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName 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."); } final Integer top = null; return service.listAtSubscriptionScope(deploymentName, this.client.subscriptionId(), top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtSubscriptionScopeDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtSubscriptionScope(final String deploymentName, final Integer top) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtSubscriptionScopeSinglePageAsync(deploymentName, top).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtSubscriptionScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @param top The number of results to return. * @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<DeploymentOperationInner>> listAtSubscriptionScopeAsync(final String deploymentName, final Integer top, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtSubscriptionScopeSinglePageAsync(deploymentName, top), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtSubscriptionScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtSubscriptionScopeAsync(final String deploymentName, final Integer top) { return listAtSubscriptionScopeWithServiceResponseAsync(deploymentName, top) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtSubscriptionScopeWithServiceResponseAsync(final String deploymentName, final Integer top) { return listAtSubscriptionScopeSinglePageAsync(deploymentName, top) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtSubscriptionScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param deploymentName The name of the deployment. ServiceResponse> * @param top The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param deploymentName The name of the deployment. ServiceResponse<PageImpl<DeploymentOperationInner>> * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtSubscriptionScopeSinglePageAsync(final String deploymentName, final Integer top) { if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName 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.listAtSubscriptionScope(deploymentName, this.client.subscriptionId(), top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtSubscriptionScopeDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listAtSubscriptionScopeDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets a deployments operation.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the DeploymentOperationInner object if successful.
/** * Gets a deployments operation. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the DeploymentOperationInner object if successful. */
public DeploymentOperationInner get(String resourceGroupName, String deploymentName, String operationId) { return getWithServiceResponseAsync(resourceGroupName, deploymentName, operationId).toBlocking().single().body(); }
Gets a deployments operation.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets a deployments operation. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @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<DeploymentOperationInner> getAsync(String resourceGroupName, String deploymentName, String operationId, final ServiceCallback<DeploymentOperationInner> serviceCallback) { return ServiceFuture.fromResponse(getWithServiceResponseAsync(resourceGroupName, deploymentName, operationId), serviceCallback); }
Gets a deployments operation.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<DeploymentOperationInner> getAsync(String resourceGroupName, String deploymentName, String operationId) { return getWithServiceResponseAsync(resourceGroupName, deploymentName, operationId).map(new Func1<ServiceResponse<DeploymentOperationInner>, DeploymentOperationInner>() { @Override public DeploymentOperationInner call(ServiceResponse<DeploymentOperationInner> response) { return response.body(); } }); }
Gets a deployments operation.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
  • operationId – The ID of the operation to get.
Throws:
Returns:the observable to the DeploymentOperationInner object
/** * Gets a deployments operation. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @param operationId The ID of the operation to get. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeploymentOperationInner object */
public Observable<ServiceResponse<DeploymentOperationInner>> getWithServiceResponseAsync(String resourceGroupName, String deploymentName, String operationId) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName is required and cannot be null."); } if (operationId == null) { throw new IllegalArgumentException("Parameter operationId 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.get(resourceGroupName, deploymentName, operationId, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DeploymentOperationInner>>>() { @Override public Observable<ServiceResponse<DeploymentOperationInner>> call(Response<ResponseBody> response) { try { ServiceResponse<DeploymentOperationInner> clientResponse = getDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<DeploymentOperationInner> getDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<DeploymentOperationInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<DeploymentOperationInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listByResourceGroup(final String resourceGroupName, final String deploymentName) { ServiceResponse<Page<DeploymentOperationInner>> response = listByResourceGroupSinglePageAsync(resourceGroupName, deploymentName).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listByResourceGroupNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @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<DeploymentOperationInner>> listByResourceGroupAsync(final String resourceGroupName, final String deploymentName, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listByResourceGroupSinglePageAsync(resourceGroupName, deploymentName), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listByResourceGroupNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listByResourceGroupAsync(final String resourceGroupName, final String deploymentName) { return listByResourceGroupWithServiceResponseAsync(resourceGroupName, deploymentName) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listByResourceGroupWithServiceResponseAsync(final String resourceGroupName, final String deploymentName) { return listByResourceGroupSinglePageAsync(resourceGroupName, deploymentName) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listByResourceGroupNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listByResourceGroupSinglePageAsync(final String resourceGroupName, final String deploymentName) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName 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."); } final Integer top = null; return service.listByResourceGroup(resourceGroupName, deploymentName, this.client.subscriptionId(), top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listByResourceGroupDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); }
Gets all deployments operations for a deployment.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listByResourceGroup(final String resourceGroupName, final String deploymentName, final Integer top) { ServiceResponse<Page<DeploymentOperationInner>> response = listByResourceGroupSinglePageAsync(resourceGroupName, deploymentName, top).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listByResourceGroupNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @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<DeploymentOperationInner>> listByResourceGroupAsync(final String resourceGroupName, final String deploymentName, final Integer top, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listByResourceGroupSinglePageAsync(resourceGroupName, deploymentName, top), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listByResourceGroupNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listByResourceGroupAsync(final String resourceGroupName, final String deploymentName, final Integer top) { return listByResourceGroupWithServiceResponseAsync(resourceGroupName, deploymentName, top) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • resourceGroupName – The name of the resource group. The name is case insensitive.
  • deploymentName – The name of the deployment.
  • top – The number of results to return.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param deploymentName The name of the deployment. * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listByResourceGroupWithServiceResponseAsync(final String resourceGroupName, final String deploymentName, final Integer top) { return listByResourceGroupSinglePageAsync(resourceGroupName, deploymentName, top) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listByResourceGroupNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param resourceGroupName The name of the resource group. The name is case insensitive. ServiceResponse> * @param deploymentName The name of the deployment. ServiceResponse> * @param top The number of results to return.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param resourceGroupName The name of the resource group. The name is case insensitive. ServiceResponse<PageImpl<DeploymentOperationInner>> * @param deploymentName The name of the deployment. ServiceResponse<PageImpl<DeploymentOperationInner>> * @param top The number of results to return. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listByResourceGroupSinglePageAsync(final String resourceGroupName, final String deploymentName, final Integer top) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (deploymentName == null) { throw new IllegalArgumentException("Parameter deploymentName 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.listByResourceGroup(resourceGroupName, deploymentName, this.client.subscriptionId(), top, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listByResourceGroupDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listByResourceGroupDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtScopeNext(final String nextPageLink) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtScopeNextSinglePageAsync(nextPageLink).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
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:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @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<DeploymentOperationInner>> listAtScopeNextAsync(final String nextPageLink, final ServiceFuture<List<DeploymentOperationInner>> serviceFuture, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtScopeNextSinglePageAsync(nextPageLink), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtScopeNextAsync(final String nextPageLink) { return listAtScopeNextWithServiceResponseAsync(nextPageLink) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtScopeNextWithServiceResponseAsync(final String nextPageLink) { return listAtScopeNextSinglePageAsync(nextPageLink) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param nextPageLink The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtScopeNextSinglePageAsync(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.listAtScopeNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtScopeNextDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listAtScopeNextDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtTenantScopeNext(final String nextPageLink) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtTenantScopeNextSinglePageAsync(nextPageLink).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtTenantScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
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:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @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<DeploymentOperationInner>> listAtTenantScopeNextAsync(final String nextPageLink, final ServiceFuture<List<DeploymentOperationInner>> serviceFuture, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtTenantScopeNextSinglePageAsync(nextPageLink), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtTenantScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtTenantScopeNextAsync(final String nextPageLink) { return listAtTenantScopeNextWithServiceResponseAsync(nextPageLink) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtTenantScopeNextWithServiceResponseAsync(final String nextPageLink) { return listAtTenantScopeNextSinglePageAsync(nextPageLink) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtTenantScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param nextPageLink The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtTenantScopeNextSinglePageAsync(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.listAtTenantScopeNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtTenantScopeNextDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listAtTenantScopeNextDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtManagementGroupScopeNext(final String nextPageLink) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtManagementGroupScopeNextSinglePageAsync(nextPageLink).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtManagementGroupScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
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:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @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<DeploymentOperationInner>> listAtManagementGroupScopeNextAsync(final String nextPageLink, final ServiceFuture<List<DeploymentOperationInner>> serviceFuture, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtManagementGroupScopeNextSinglePageAsync(nextPageLink), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtManagementGroupScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtManagementGroupScopeNextAsync(final String nextPageLink) { return listAtManagementGroupScopeNextWithServiceResponseAsync(nextPageLink) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtManagementGroupScopeNextWithServiceResponseAsync(final String nextPageLink) { return listAtManagementGroupScopeNextSinglePageAsync(nextPageLink) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtManagementGroupScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param nextPageLink The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtManagementGroupScopeNextSinglePageAsync(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.listAtManagementGroupScopeNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtManagementGroupScopeNextDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listAtManagementGroupScopeNextDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listAtSubscriptionScopeNext(final String nextPageLink) { ServiceResponse<Page<DeploymentOperationInner>> response = listAtSubscriptionScopeNextSinglePageAsync(nextPageLink).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listAtSubscriptionScopeNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
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:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @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<DeploymentOperationInner>> listAtSubscriptionScopeNextAsync(final String nextPageLink, final ServiceFuture<List<DeploymentOperationInner>> serviceFuture, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listAtSubscriptionScopeNextSinglePageAsync(nextPageLink), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listAtSubscriptionScopeNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listAtSubscriptionScopeNextAsync(final String nextPageLink) { return listAtSubscriptionScopeNextWithServiceResponseAsync(nextPageLink) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtSubscriptionScopeNextWithServiceResponseAsync(final String nextPageLink) { return listAtSubscriptionScopeNextSinglePageAsync(nextPageLink) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listAtSubscriptionScopeNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param nextPageLink The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listAtSubscriptionScopeNextSinglePageAsync(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.listAtSubscriptionScopeNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listAtSubscriptionScopeNextDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listAtSubscriptionScopeNextDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object if successful.
/** * Gets all deployments operations for a deployment. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException 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&lt;DeploymentOperationInner&gt; object if successful. */
public PagedList<DeploymentOperationInner> listByResourceGroupNext(final String nextPageLink) { ServiceResponse<Page<DeploymentOperationInner>> response = listByResourceGroupNextSinglePageAsync(nextPageLink).toBlocking().single(); return new PagedList<DeploymentOperationInner>(response.body()) { @Override public Page<DeploymentOperationInner> nextPage(String nextPageLink) { return listByResourceGroupNextSinglePageAsync(nextPageLink).toBlocking().single().body(); } }; }
Gets all deployments operations for a deployment.
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:
Returns:the ServiceFuture object
/** * Gets all deployments operations for a deployment. * * @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<DeploymentOperationInner>> listByResourceGroupNextAsync(final String nextPageLink, final ServiceFuture<List<DeploymentOperationInner>> serviceFuture, final ListOperationCallback<DeploymentOperationInner> serviceCallback) { return AzureServiceFuture.fromPageResponse( listByResourceGroupNextSinglePageAsync(nextPageLink), new Func1<String, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(String nextPageLink) { return listByResourceGroupNextSinglePageAsync(nextPageLink); } }, serviceCallback); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<Page<DeploymentOperationInner>> listByResourceGroupNextAsync(final String nextPageLink) { return listByResourceGroupNextWithServiceResponseAsync(nextPageLink) .map(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Page<DeploymentOperationInner>>() { @Override public Page<DeploymentOperationInner> call(ServiceResponse<Page<DeploymentOperationInner>> response) { return response.body(); } }); }
Gets all deployments operations for a deployment.
Params:
  • nextPageLink – The NextLink from the previous successful call to List operation.
Throws:
Returns:the observable to the PagedList<DeploymentOperationInner> object
/** * Gets all deployments operations for a deployment. * * @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&lt;DeploymentOperationInner&gt; object */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listByResourceGroupNextWithServiceResponseAsync(final String nextPageLink) { return listByResourceGroupNextSinglePageAsync(nextPageLink) .concatMap(new Func1<ServiceResponse<Page<DeploymentOperationInner>>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(ServiceResponse<Page<DeploymentOperationInner>> page) { String nextPageLink = page.body().nextPageLink(); if (nextPageLink == null) { return Observable.just(page); } return Observable.just(page).concatWith(listByResourceGroupNextWithServiceResponseAsync(nextPageLink)); } }); }
Gets all deployments operations for a deployment. ServiceResponse> * @param nextPageLink The NextLink from the previous successful call to List operation.
Throws:
Returns:the PagedList<DeploymentOperationInner> object wrapped in ServiceResponse if successful.
/** * Gets all deployments operations for a deployment. * ServiceResponse<PageImpl<DeploymentOperationInner>> * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList&lt;DeploymentOperationInner&gt; object wrapped in {@link ServiceResponse} if successful. */
public Observable<ServiceResponse<Page<DeploymentOperationInner>>> listByResourceGroupNextSinglePageAsync(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.listByResourceGroupNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DeploymentOperationInner>>>>() { @Override public Observable<ServiceResponse<Page<DeploymentOperationInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<DeploymentOperationInner>> result = listByResourceGroupNextDelegate(response); return Observable.just(new ServiceResponse<Page<DeploymentOperationInner>>(result.body(), result.response())); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<DeploymentOperationInner>> listByResourceGroupNextDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<DeploymentOperationInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<DeploymentOperationInner>>() { }.getType()) .registerError(CloudException.class) .build(response); } }