/sdk/appservice/mgmt-v2018_02_01/src/main/java/com/microsoft/azure/management/appservice/v2018_02_01/implementation/DomainsInner.java
http://github.com/WindowsAzure/azure-sdk-for-java · Java · 2372 lines · 1298 code · 141 blank · 933 comment · 166 complexity · 3ce85b82d32e0c46eaaab203e20fcba6 MD5 · raw file
Large files are truncated click here to view the full file
- /**
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- */
- package com.microsoft.azure.management.appservice.v2018_02_01.implementation;
- import com.microsoft.azure.arm.collection.InnerSupportsGet;
- import com.microsoft.azure.arm.collection.InnerSupportsDelete;
- import com.microsoft.azure.arm.collection.InnerSupportsListing;
- 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.management.appservice.v2018_02_01.DefaultErrorResponseException;
- import com.microsoft.azure.management.appservice.v2018_02_01.DomainPatchResource;
- import com.microsoft.azure.management.appservice.v2018_02_01.DomainRecommendationSearchParameters;
- 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 com.microsoft.rest.Validator;
- import java.io.IOException;
- import java.util.List;
- import okhttp3.ResponseBody;
- import retrofit2.http.Body;
- import retrofit2.http.GET;
- import retrofit2.http.Header;
- import retrofit2.http.Headers;
- import retrofit2.http.HTTP;
- import retrofit2.http.PATCH;
- import retrofit2.http.Path;
- import retrofit2.http.POST;
- import retrofit2.http.PUT;
- 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 Domains.
- */
- public class DomainsInner implements InnerSupportsGet<DomainInner>, InnerSupportsDelete<Void>, InnerSupportsListing<DomainInner> {
- /** The Retrofit service to perform REST calls. */
- private DomainsService service;
- /** The service client containing this operation class. */
- private WebSiteManagementClientImpl client;
- /**
- * Initializes an instance of DomainsInner.
- *
- * @param retrofit the Retrofit instance built from a Retrofit Builder.
- * @param client the instance of the service client containing this operation class.
- */
- public DomainsInner(Retrofit retrofit, WebSiteManagementClientImpl client) {
- this.service = retrofit.create(DomainsService.class);
- this.client = client;
- }
- /**
- * The interface defining all the services for Domains to be
- * used by Retrofit to perform actually REST calls.
- */
- interface DomainsService {
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains checkAvailability" })
- @POST("subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/checkDomainAvailability")
- Observable<Response<ResponseBody>> checkAvailability(@Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Body NameIdentifierInner identifier, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains list" })
- @GET("subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/domains")
- Observable<Response<ResponseBody>> list(@Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains getControlCenterSsoRequest" })
- @POST("subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/generateSsoRequest")
- Observable<Response<ResponseBody>> getControlCenterSsoRequest(@Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listRecommendations" })
- @POST("subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/listDomainRecommendations")
- Observable<Response<ResponseBody>> listRecommendations(@Path("subscriptionId") String subscriptionId, @Body DomainRecommendationSearchParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listByResourceGroup" })
- @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains")
- Observable<Response<ResponseBody>> listByResourceGroup(@Path("resourceGroupName") String resourceGroupName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains getByResourceGroup" })
- @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}")
- Observable<Response<ResponseBody>> getByResourceGroup(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains createOrUpdate" })
- @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}")
- Observable<Response<ResponseBody>> createOrUpdate(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("subscriptionId") String subscriptionId, @Body DomainInner domain, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains beginCreateOrUpdate" })
- @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}")
- Observable<Response<ResponseBody>> beginCreateOrUpdate(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("subscriptionId") String subscriptionId, @Body DomainInner domain, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains delete" })
- @HTTP(path = "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}", method = "DELETE", hasBody = true)
- Observable<Response<ResponseBody>> delete(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("subscriptionId") String subscriptionId, @Query("forceHardDeleteDomain") Boolean forceHardDeleteDomain, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains update" })
- @PATCH("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}")
- Observable<Response<ResponseBody>> update(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("subscriptionId") String subscriptionId, @Body DomainPatchResource domain, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listOwnershipIdentifiers" })
- @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers")
- Observable<Response<ResponseBody>> listOwnershipIdentifiers(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains getOwnershipIdentifier" })
- @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}")
- Observable<Response<ResponseBody>> getOwnershipIdentifier(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains createOrUpdateOwnershipIdentifier" })
- @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}")
- Observable<Response<ResponseBody>> createOrUpdateOwnershipIdentifier(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body DomainOwnershipIdentifierInner domainOwnershipIdentifier, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains deleteOwnershipIdentifier" })
- @HTTP(path = "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}", method = "DELETE", hasBody = true)
- Observable<Response<ResponseBody>> deleteOwnershipIdentifier(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains updateOwnershipIdentifier" })
- @PATCH("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}")
- Observable<Response<ResponseBody>> updateOwnershipIdentifier(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body DomainOwnershipIdentifierInner domainOwnershipIdentifier, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains renew" })
- @POST("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/renew")
- Observable<Response<ResponseBody>> renew(@Path("resourceGroupName") String resourceGroupName, @Path("domainName") String domainName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listNext" })
- @GET
- Observable<Response<ResponseBody>> listNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listRecommendationsNext" })
- @GET
- Observable<Response<ResponseBody>> listRecommendationsNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listByResourceGroupNext" })
- @GET
- Observable<Response<ResponseBody>> listByResourceGroupNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listOwnershipIdentifiersNext" })
- @GET
- Observable<Response<ResponseBody>> listOwnershipIdentifiersNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
- }
- /**
- * Check if a domain is available for registration.
- * Check if a domain is available for registration.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws DefaultErrorResponseException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- * @return the DomainAvailablilityCheckResultInner object if successful.
- */
- public DomainAvailablilityCheckResultInner checkAvailability() {
- return checkAvailabilityWithServiceResponseAsync().toBlocking().single().body();
- }
- /**
- * Check if a domain is available for registration.
- * Check if a domain is available for registration.
- *
- * @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<DomainAvailablilityCheckResultInner> checkAvailabilityAsync(final ServiceCallback<DomainAvailablilityCheckResultInner> serviceCallback) {
- return ServiceFuture.fromResponse(checkAvailabilityWithServiceResponseAsync(), serviceCallback);
- }
- /**
- * Check if a domain is available for registration.
- * Check if a domain is available for registration.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the DomainAvailablilityCheckResultInner object
- */
- public Observable<DomainAvailablilityCheckResultInner> checkAvailabilityAsync() {
- return checkAvailabilityWithServiceResponseAsync().map(new Func1<ServiceResponse<DomainAvailablilityCheckResultInner>, DomainAvailablilityCheckResultInner>() {
- @Override
- public DomainAvailablilityCheckResultInner call(ServiceResponse<DomainAvailablilityCheckResultInner> response) {
- return response.body();
- }
- });
- }
- /**
- * Check if a domain is available for registration.
- * Check if a domain is available for registration.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the DomainAvailablilityCheckResultInner object
- */
- public Observable<ServiceResponse<DomainAvailablilityCheckResultInner>> checkAvailabilityWithServiceResponseAsync() {
- 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 String name = null;
- NameIdentifierInner identifier = new NameIdentifierInner();
- identifier.withName(null);
- return service.checkAvailability(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), identifier, this.client.userAgent())
- .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DomainAvailablilityCheckResultInner>>>() {
- @Override
- public Observable<ServiceResponse<DomainAvailablilityCheckResultInner>> call(Response<ResponseBody> response) {
- try {
- ServiceResponse<DomainAvailablilityCheckResultInner> clientResponse = checkAvailabilityDelegate(response);
- return Observable.just(clientResponse);
- } catch (Throwable t) {
- return Observable.error(t);
- }
- }
- });
- }
- /**
- * Check if a domain is available for registration.
- * Check if a domain is available for registration.
- *
- * @param name Name of the object.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws DefaultErrorResponseException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- * @return the DomainAvailablilityCheckResultInner object if successful.
- */
- public DomainAvailablilityCheckResultInner checkAvailability(String name) {
- return checkAvailabilityWithServiceResponseAsync(name).toBlocking().single().body();
- }
- /**
- * Check if a domain is available for registration.
- * Check if a domain is available for registration.
- *
- * @param name Name of the object.
- * @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<DomainAvailablilityCheckResultInner> checkAvailabilityAsync(String name, final ServiceCallback<DomainAvailablilityCheckResultInner> serviceCallback) {
- return ServiceFuture.fromResponse(checkAvailabilityWithServiceResponseAsync(name), serviceCallback);
- }
- /**
- * Check if a domain is available for registration.
- * Check if a domain is available for registration.
- *
- * @param name Name of the object.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the DomainAvailablilityCheckResultInner object
- */
- public Observable<DomainAvailablilityCheckResultInner> checkAvailabilityAsync(String name) {
- return checkAvailabilityWithServiceResponseAsync(name).map(new Func1<ServiceResponse<DomainAvailablilityCheckResultInner>, DomainAvailablilityCheckResultInner>() {
- @Override
- public DomainAvailablilityCheckResultInner call(ServiceResponse<DomainAvailablilityCheckResultInner> response) {
- return response.body();
- }
- });
- }
- /**
- * Check if a domain is available for registration.
- * Check if a domain is available for registration.
- *
- * @param name Name of the object.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the DomainAvailablilityCheckResultInner object
- */
- public Observable<ServiceResponse<DomainAvailablilityCheckResultInner>> checkAvailabilityWithServiceResponseAsync(String name) {
- 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.");
- }
- NameIdentifierInner identifier = new NameIdentifierInner();
- identifier.withName(name);
- return service.checkAvailability(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), identifier, this.client.userAgent())
- .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DomainAvailablilityCheckResultInner>>>() {
- @Override
- public Observable<ServiceResponse<DomainAvailablilityCheckResultInner>> call(Response<ResponseBody> response) {
- try {
- ServiceResponse<DomainAvailablilityCheckResultInner> clientResponse = checkAvailabilityDelegate(response);
- return Observable.just(clientResponse);
- } catch (Throwable t) {
- return Observable.error(t);
- }
- }
- });
- }
- private ServiceResponse<DomainAvailablilityCheckResultInner> checkAvailabilityDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
- return this.client.restClient().responseBuilderFactory().<DomainAvailablilityCheckResultInner, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
- .register(200, new TypeToken<DomainAvailablilityCheckResultInner>() { }.getType())
- .registerError(DefaultErrorResponseException.class)
- .build(response);
- }
- /**
- * Get all domains in a subscription.
- * Get all domains in a subscription.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws DefaultErrorResponseException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- * @return the PagedList<DomainInner> object if successful.
- */
- public PagedList<DomainInner> list() {
- ServiceResponse<Page<DomainInner>> response = listSinglePageAsync().toBlocking().single();
- return new PagedList<DomainInner>(response.body()) {
- @Override
- public Page<DomainInner> nextPage(String nextPageLink) {
- return listNextSinglePageAsync(nextPageLink).toBlocking().single().body();
- }
- };
- }
- /**
- * Get all domains in a subscription.
- * Get all domains in a subscription.
- *
- * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the {@link ServiceFuture} object
- */
- public ServiceFuture<List<DomainInner>> listAsync(final ListOperationCallback<DomainInner> serviceCallback) {
- return AzureServiceFuture.fromPageResponse(
- listSinglePageAsync(),
- new Func1<String, Observable<ServiceResponse<Page<DomainInner>>>>() {
- @Override
- public Observable<ServiceResponse<Page<DomainInner>>> call(String nextPageLink) {
- return listNextSinglePageAsync(nextPageLink);
- }
- },
- serviceCallback);
- }
- /**
- * Get all domains in a subscription.
- * Get all domains in a subscription.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the PagedList<DomainInner> object
- */
- public Observable<Page<DomainInner>> listAsync() {
- return listWithServiceResponseAsync()
- .map(new Func1<ServiceResponse<Page<DomainInner>>, Page<DomainInner>>() {
- @Override
- public Page<DomainInner> call(ServiceResponse<Page<DomainInner>> response) {
- return response.body();
- }
- });
- }
- /**
- * Get all domains in a subscription.
- * Get all domains in a subscription.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the PagedList<DomainInner> object
- */
- public Observable<ServiceResponse<Page<DomainInner>>> listWithServiceResponseAsync() {
- return listSinglePageAsync()
- .concatMap(new Func1<ServiceResponse<Page<DomainInner>>, Observable<ServiceResponse<Page<DomainInner>>>>() {
- @Override
- public Observable<ServiceResponse<Page<DomainInner>>> call(ServiceResponse<Page<DomainInner>> page) {
- String nextPageLink = page.body().nextPageLink();
- if (nextPageLink == null) {
- return Observable.just(page);
- }
- return Observable.just(page).concatWith(listNextWithServiceResponseAsync(nextPageLink));
- }
- });
- }
- /**
- * Get all domains in a subscription.
- * Get all domains in a subscription.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the PagedList<DomainInner> object wrapped in {@link ServiceResponse} if successful.
- */
- public Observable<ServiceResponse<Page<DomainInner>>> listSinglePageAsync() {
- if (this.client.subscriptionId() == null) {
- throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
- }
- if (this.client.apiVersion() == null) {
- throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
- }
- return service.list(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
- .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DomainInner>>>>() {
- @Override
- public Observable<ServiceResponse<Page<DomainInner>>> call(Response<ResponseBody> response) {
- try {
- ServiceResponse<PageImpl<DomainInner>> result = listDelegate(response);
- return Observable.just(new ServiceResponse<Page<DomainInner>>(result.body(), result.response()));
- } catch (Throwable t) {
- return Observable.error(t);
- }
- }
- });
- }
- private ServiceResponse<PageImpl<DomainInner>> listDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
- return this.client.restClient().responseBuilderFactory().<PageImpl<DomainInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
- .register(200, new TypeToken<PageImpl<DomainInner>>() { }.getType())
- .registerError(DefaultErrorResponseException.class)
- .build(response);
- }
- /**
- * Generate a single sign-on request for the domain management portal.
- * Generate a single sign-on request for the domain management portal.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws DefaultErrorResponseException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- * @return the DomainControlCenterSsoRequestInner object if successful.
- */
- public DomainControlCenterSsoRequestInner getControlCenterSsoRequest() {
- return getControlCenterSsoRequestWithServiceResponseAsync().toBlocking().single().body();
- }
- /**
- * Generate a single sign-on request for the domain management portal.
- * Generate a single sign-on request for the domain management portal.
- *
- * @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<DomainControlCenterSsoRequestInner> getControlCenterSsoRequestAsync(final ServiceCallback<DomainControlCenterSsoRequestInner> serviceCallback) {
- return ServiceFuture.fromResponse(getControlCenterSsoRequestWithServiceResponseAsync(), serviceCallback);
- }
- /**
- * Generate a single sign-on request for the domain management portal.
- * Generate a single sign-on request for the domain management portal.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the DomainControlCenterSsoRequestInner object
- */
- public Observable<DomainControlCenterSsoRequestInner> getControlCenterSsoRequestAsync() {
- return getControlCenterSsoRequestWithServiceResponseAsync().map(new Func1<ServiceResponse<DomainControlCenterSsoRequestInner>, DomainControlCenterSsoRequestInner>() {
- @Override
- public DomainControlCenterSsoRequestInner call(ServiceResponse<DomainControlCenterSsoRequestInner> response) {
- return response.body();
- }
- });
- }
- /**
- * Generate a single sign-on request for the domain management portal.
- * Generate a single sign-on request for the domain management portal.
- *
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the DomainControlCenterSsoRequestInner object
- */
- public Observable<ServiceResponse<DomainControlCenterSsoRequestInner>> getControlCenterSsoRequestWithServiceResponseAsync() {
- 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.getControlCenterSsoRequest(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
- .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DomainControlCenterSsoRequestInner>>>() {
- @Override
- public Observable<ServiceResponse<DomainControlCenterSsoRequestInner>> call(Response<ResponseBody> response) {
- try {
- ServiceResponse<DomainControlCenterSsoRequestInner> clientResponse = getControlCenterSsoRequestDelegate(response);
- return Observable.just(clientResponse);
- } catch (Throwable t) {
- return Observable.error(t);
- }
- }
- });
- }
- private ServiceResponse<DomainControlCenterSsoRequestInner> getControlCenterSsoRequestDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
- return this.client.restClient().responseBuilderFactory().<DomainControlCenterSsoRequestInner, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
- .register(200, new TypeToken<DomainControlCenterSsoRequestInner>() { }.getType())
- .registerError(DefaultErrorResponseException.class)
- .build(response);
- }
- /**
- * Get domain name recommendations based on keywords.
- * Get domain name recommendations based on keywords.
- *
- * @param parameters Search parameters for domain name recommendations.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws DefaultErrorResponseException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- * @return the PagedList<NameIdentifierInner> object if successful.
- */
- public PagedList<NameIdentifierInner> listRecommendations(final DomainRecommendationSearchParameters parameters) {
- ServiceResponse<Page<NameIdentifierInner>> response = listRecommendationsSinglePageAsync(parameters).toBlocking().single();
- return new PagedList<NameIdentifierInner>(response.body()) {
- @Override
- public Page<NameIdentifierInner> nextPage(String nextPageLink) {
- return listRecommendationsNextSinglePageAsync(nextPageLink).toBlocking().single().body();
- }
- };
- }
- /**
- * Get domain name recommendations based on keywords.
- * Get domain name recommendations based on keywords.
- *
- * @param parameters Search parameters for domain name recommendations.
- * @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<NameIdentifierInner>> listRecommendationsAsync(final DomainRecommendationSearchParameters parameters, final ListOperationCallback<NameIdentifierInner> serviceCallback) {
- return AzureServiceFuture.fromPageResponse(
- listRecommendationsSinglePageAsync(parameters),
- new Func1<String, Observable<ServiceResponse<Page<NameIdentifierInner>>>>() {
- @Override
- public Observable<ServiceResponse<Page<NameIdentifierInner>>> call(String nextPageLink) {
- return listRecommendationsNextSinglePageAsync(nextPageLink);
- }
- },
- serviceCallback);
- }
- /**
- * Get domain name recommendations based on keywords.
- * Get domain name recommendations based on keywords.
- *
- * @param parameters Search parameters for domain name recommendations.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the PagedList<NameIdentifierInner> object
- */
- public Observable<Page<NameIdentifierInner>> listRecommendationsAsync(final DomainRecommendationSearchParameters parameters) {
- return listRecommendationsWithServiceResponseAsync(parameters)
- .map(new Func1<ServiceResponse<Page<NameIdentifierInner>>, Page<NameIdentifierInner>>() {
- @Override
- public Page<NameIdentifierInner> call(ServiceResponse<Page<NameIdentifierInner>> response) {
- return response.body();
- }
- });
- }
- /**
- * Get domain name recommendations based on keywords.
- * Get domain name recommendations based on keywords.
- *
- * @param parameters Search parameters for domain name recommendations.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the PagedList<NameIdentifierInner> object
- */
- public Observable<ServiceResponse<Page<NameIdentifierInner>>> listRecommendationsWithServiceResponseAsync(final DomainRecommendationSearchParameters parameters) {
- return listRecommendationsSinglePageAsync(parameters)
- .concatMap(new Func1<ServiceResponse<Page<NameIdentifierInner>>, Observable<ServiceResponse<Page<NameIdentifierInner>>>>() {
- @Override
- public Observable<ServiceResponse<Page<NameIdentifierInner>>> call(ServiceResponse<Page<NameIdentifierInner>> page) {
- String nextPageLink = page.body().nextPageLink();
- if (nextPageLink == null) {
- return Observable.just(page);
- }
- return Observable.just(page).concatWith(listRecommendationsNextWithServiceResponseAsync(nextPageLink));
- }
- });
- }
- /**
- * Get domain name recommendations based on keywords.
- * Get domain name recommendations based on keywords.
- *
- ServiceResponse<PageImpl<NameIdentifierInner>> * @param parameters Search parameters for domain name recommendations.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the PagedList<NameIdentifierInner> object wrapped in {@link ServiceResponse} if successful.
- */
- public Observable<ServiceResponse<Page<NameIdentifierInner>>> listRecommendationsSinglePageAsync(final DomainRecommendationSearchParameters parameters) {
- if (this.client.subscriptionId() == null) {
- throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
- }
- if (parameters == null) {
- throw new IllegalArgumentException("Parameter parameters is required and cannot be null.");
- }
- if (this.client.apiVersion() == null) {
- throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
- }
- Validator.validate(parameters);
- return service.listRecommendations(this.client.subscriptionId(), parameters, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
- .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<NameIdentifierInner>>>>() {
- @Override
- public Observable<ServiceResponse<Page<NameIdentifierInner>>> call(Response<ResponseBody> response) {
- try {
- ServiceResponse<PageImpl<NameIdentifierInner>> result = listRecommendationsDelegate(response);
- return Observable.just(new ServiceResponse<Page<NameIdentifierInner>>(result.body(), result.response()));
- } catch (Throwable t) {
- return Observable.error(t);
- }
- }
- });
- }
- private ServiceResponse<PageImpl<NameIdentifierInner>> listRecommendationsDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
- return this.client.restClient().responseBuilderFactory().<PageImpl<NameIdentifierInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
- .register(200, new TypeToken<PageImpl<NameIdentifierInner>>() { }.getType())
- .registerError(DefaultErrorResponseException.class)
- .build(response);
- }
- /**
- * Get all domains in a resource group.
- * Get all domains in a resource group.
- *
- * @param resourceGroupName Name of the resource group to which the resource belongs.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws DefaultErrorResponseException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- * @return the PagedList<DomainInner> object if successful.
- */
- public PagedList<DomainInner> listByResourceGroup(final String resourceGroupName) {
- ServiceResponse<Page<DomainInner>> response = listByResourceGroupSinglePageAsync(resourceGroupName).toBlocking().single();
- return new PagedList<DomainInner>(response.body()) {
- @Override
- public Page<DomainInner> nextPage(String nextPageLink) {
- return listByResourceGroupNextSinglePageAsync(nextPageLink).toBlocking().single().body();
- }
- };
- }
- /**
- * Get all domains in a resource group.
- * Get all domains in a resource group.
- *
- * @param resourceGroupName Name of the resource group to which the resource belongs.
- * @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<DomainInner>> listByResourceGroupAsync(final String resourceGroupName, final ListOperationCallback<DomainInner> serviceCallback) {
- return AzureServiceFuture.fromPageResponse(
- listByResourceGroupSinglePageAsync(resourceGroupName),
- new Func1<String, Observable<ServiceResponse<Page<DomainInner>>>>() {
- @Override
- public Observable<ServiceResponse<Page<DomainInner>>> call(String nextPageLink) {
- return listByResourceGroupNextSinglePageAsync(nextPageLink);
- }
- },
- serviceCallback);
- }
- /**
- * Get all domains in a resource group.
- * Get all domains in a resource group.
- *
- * @param resourceGroupName Name of the resource group to which the resource belongs.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the PagedList<DomainInner> object
- */
- public Observable<Page<DomainInner>> listByResourceGroupAsync(final String resourceGroupName) {
- return listByResourceGroupWithServiceResponseAsync(resourceGroupName)
- .map(new Func1<ServiceResponse<Page<DomainInner>>, Page<DomainInner>>() {
- @Override
- public Page<DomainInner> call(ServiceResponse<Page<DomainInner>> response) {
- return response.body();
- }
- });
- }
- /**
- * Get all domains in a resource group.
- * Get all domains in a resource group.
- *
- * @param resourceGroupName Name of the resource group to which the resource belongs.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the PagedList<DomainInner> object
- */
- public Observable<ServiceResponse<Page<DomainInner>>> listByResourceGroupWithServiceResponseAsync(final String resourceGroupName) {
- return listByResourceGroupSinglePageAsync(resourceGroupName)
- .concatMap(new Func1<ServiceResponse<Page<DomainInner>>, Observable<ServiceResponse<Page<DomainInner>>>>() {
- @Override
- public Observable<ServiceResponse<Page<DomainInner>>> call(ServiceResponse<Page<DomainInner>> page) {
- String nextPageLink = page.body().nextPageLink();
- if (nextPageLink == null) {
- return Observable.just(page);
- }
- return Observable.just(page).concatWith(listByResourceGroupNextWithServiceResponseAsync(nextPageLink));
- }
- });
- }
- /**
- * Get all domains in a resource group.
- * Get all domains in a resource group.
- *
- ServiceResponse<PageImpl<DomainInner>> * @param resourceGroupName Name of the resource group to which the resource belongs.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the PagedList<DomainInner> object wrapped in {@link ServiceResponse} if successful.
- */
- public Observable<ServiceResponse<Page<DomainInner>>> listByResourceGroupSinglePageAsync(final String resourceGroupName) {
- if (resourceGroupName == null) {
- throw new IllegalArgumentException("Parameter resourceGroupName 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, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
- .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DomainInner>>>>() {
- @Override
- public Observable<ServiceResponse<Page<DomainInner>>> call(Response<ResponseBody> response) {
- try {
- ServiceResponse<PageImpl<DomainInner>> result = listByResourceGroupDelegate(response);
- return Observable.just(new ServiceResponse<Page<DomainInner>>(result.body(), result.response()));
- } catch (Throwable t) {
- return Observable.error(t);
- }
- }
- });
- }
- private ServiceResponse<PageImpl<DomainInner>> listByResourceGroupDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
- return this.client.restClient().responseBuilderFactory().<PageImpl<DomainInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
- .register(200, new TypeToken<PageImpl<DomainInner>>() { }.getType())
- .registerError(DefaultErrorResponseException.class)
- .build(response);
- }
- /**
- * Get a domain.
- * Get a domain.
- *
- * @param resourceGroupName Name of the resource group to which the resource belongs.
- * @param domainName Name of the domain.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @throws DefaultErrorResponseException thrown if the request is rejected by server
- * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
- * @return the DomainInner object if successful.
- */
- public DomainInner getByResourceGroup(String resourceGroupName, String domainName) {
- return getByResourceGroupWithServiceResponseAsync(resourceGroupName, domainName).toBlocking().single().body();
- }
- /**
- * Get a domain.
- * Get a domain.
- *
- * @param resourceGroupName Name of the resource group to which the resource belongs.
- * @param domainName Name of the domain.
- * @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<DomainInner> getByResourceGroupAsync(String resourceGroupName, String domainName, final ServiceCallback<DomainInner> serviceCallback) {
- return ServiceFuture.fromResponse(getByResourceGroupWithServiceResponseAsync(resourceGroupName, domainName), serviceCallback);
- }
- /**
- * Get a domain.
- * Get a domain.
- *
- * @param resourceGroupName Name of the resource group to which the resource belongs.
- * @param domainName Name of the domain.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the DomainInner object
- */
- public Observable<DomainInner> getByResourceGroupAsync(String resourceGroupName, String domainName) {
- return getByResourceGroupWithServiceResponseAsync(resourceGroupName, domainName).map(new Func1<ServiceResponse<DomainInner>, DomainInner>() {
- @Override
- public DomainInner call(ServiceResponse<DomainInner> response) {
- return response.body();
- }
- });
- }
- /**
- * Get a domain.
- * Get a domain.
- *
- * @param resourceGroupName Name of the resource group to which the resource belongs.
- * @param domainName Name of the domain.
- * @throws IllegalArgumentException thrown if parameters fail the validation
- * @return the observable to the DomainInner object
- */
- public Observable<ServiceResponse<DomainInner>> getByResourceGroupWithServiceResponseAsync(String resourceGroupName, String domainName) {
- if (resourceGroupName == null) {
- throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.");
- }
- if (domainName == null) {
- throw new IllegalArgumentException("Parameter domainName 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.");…