/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

  1. /**
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for
  4. * license information.
  5. *
  6. * Code generated by Microsoft (R) AutoRest Code Generator.
  7. */
  8. package com.microsoft.azure.management.appservice.v2018_02_01.implementation;
  9. import com.microsoft.azure.arm.collection.InnerSupportsGet;
  10. import com.microsoft.azure.arm.collection.InnerSupportsDelete;
  11. import com.microsoft.azure.arm.collection.InnerSupportsListing;
  12. import retrofit2.Retrofit;
  13. import com.google.common.reflect.TypeToken;
  14. import com.microsoft.azure.AzureServiceFuture;
  15. import com.microsoft.azure.CloudException;
  16. import com.microsoft.azure.ListOperationCallback;
  17. import com.microsoft.azure.management.appservice.v2018_02_01.DefaultErrorResponseException;
  18. import com.microsoft.azure.management.appservice.v2018_02_01.DomainPatchResource;
  19. import com.microsoft.azure.management.appservice.v2018_02_01.DomainRecommendationSearchParameters;
  20. import com.microsoft.azure.Page;
  21. import com.microsoft.azure.PagedList;
  22. import com.microsoft.rest.ServiceCallback;
  23. import com.microsoft.rest.ServiceFuture;
  24. import com.microsoft.rest.ServiceResponse;
  25. import com.microsoft.rest.Validator;
  26. import java.io.IOException;
  27. import java.util.List;
  28. import okhttp3.ResponseBody;
  29. import retrofit2.http.Body;
  30. import retrofit2.http.GET;
  31. import retrofit2.http.Header;
  32. import retrofit2.http.Headers;
  33. import retrofit2.http.HTTP;
  34. import retrofit2.http.PATCH;
  35. import retrofit2.http.Path;
  36. import retrofit2.http.POST;
  37. import retrofit2.http.PUT;
  38. import retrofit2.http.Query;
  39. import retrofit2.http.Url;
  40. import retrofit2.Response;
  41. import rx.functions.Func1;
  42. import rx.Observable;
  43. /**
  44. * An instance of this class provides access to all the operations defined
  45. * in Domains.
  46. */
  47. public class DomainsInner implements InnerSupportsGet<DomainInner>, InnerSupportsDelete<Void>, InnerSupportsListing<DomainInner> {
  48. /** The Retrofit service to perform REST calls. */
  49. private DomainsService service;
  50. /** The service client containing this operation class. */
  51. private WebSiteManagementClientImpl client;
  52. /**
  53. * Initializes an instance of DomainsInner.
  54. *
  55. * @param retrofit the Retrofit instance built from a Retrofit Builder.
  56. * @param client the instance of the service client containing this operation class.
  57. */
  58. public DomainsInner(Retrofit retrofit, WebSiteManagementClientImpl client) {
  59. this.service = retrofit.create(DomainsService.class);
  60. this.client = client;
  61. }
  62. /**
  63. * The interface defining all the services for Domains to be
  64. * used by Retrofit to perform actually REST calls.
  65. */
  66. interface DomainsService {
  67. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains checkAvailability" })
  68. @POST("subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/checkDomainAvailability")
  69. 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);
  70. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains list" })
  71. @GET("subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/domains")
  72. Observable<Response<ResponseBody>> list(@Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
  73. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains getControlCenterSsoRequest" })
  74. @POST("subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/generateSsoRequest")
  75. Observable<Response<ResponseBody>> getControlCenterSsoRequest(@Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
  76. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listRecommendations" })
  77. @POST("subscriptions/{subscriptionId}/providers/Microsoft.DomainRegistration/listDomainRecommendations")
  78. 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);
  79. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listByResourceGroup" })
  80. @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains")
  81. 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);
  82. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains getByResourceGroup" })
  83. @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}")
  84. 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);
  85. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains createOrUpdate" })
  86. @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}")
  87. 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);
  88. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains beginCreateOrUpdate" })
  89. @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}")
  90. 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);
  91. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains delete" })
  92. @HTTP(path = "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}", method = "DELETE", hasBody = true)
  93. 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);
  94. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains update" })
  95. @PATCH("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}")
  96. 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);
  97. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listOwnershipIdentifiers" })
  98. @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers")
  99. 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);
  100. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains getOwnershipIdentifier" })
  101. @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}")
  102. 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);
  103. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains createOrUpdateOwnershipIdentifier" })
  104. @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}")
  105. 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);
  106. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains deleteOwnershipIdentifier" })
  107. @HTTP(path = "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}", method = "DELETE", hasBody = true)
  108. 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);
  109. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains updateOwnershipIdentifier" })
  110. @PATCH("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}")
  111. 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);
  112. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains renew" })
  113. @POST("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/renew")
  114. 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);
  115. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listNext" })
  116. @GET
  117. Observable<Response<ResponseBody>> listNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
  118. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listRecommendationsNext" })
  119. @GET
  120. Observable<Response<ResponseBody>> listRecommendationsNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
  121. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listByResourceGroupNext" })
  122. @GET
  123. Observable<Response<ResponseBody>> listByResourceGroupNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
  124. @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.appservice.v2018_02_01.Domains listOwnershipIdentifiersNext" })
  125. @GET
  126. Observable<Response<ResponseBody>> listOwnershipIdentifiersNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent);
  127. }
  128. /**
  129. * Check if a domain is available for registration.
  130. * Check if a domain is available for registration.
  131. *
  132. * @throws IllegalArgumentException thrown if parameters fail the validation
  133. * @throws DefaultErrorResponseException thrown if the request is rejected by server
  134. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  135. * @return the DomainAvailablilityCheckResultInner object if successful.
  136. */
  137. public DomainAvailablilityCheckResultInner checkAvailability() {
  138. return checkAvailabilityWithServiceResponseAsync().toBlocking().single().body();
  139. }
  140. /**
  141. * Check if a domain is available for registration.
  142. * Check if a domain is available for registration.
  143. *
  144. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  145. * @throws IllegalArgumentException thrown if parameters fail the validation
  146. * @return the {@link ServiceFuture} object
  147. */
  148. public ServiceFuture<DomainAvailablilityCheckResultInner> checkAvailabilityAsync(final ServiceCallback<DomainAvailablilityCheckResultInner> serviceCallback) {
  149. return ServiceFuture.fromResponse(checkAvailabilityWithServiceResponseAsync(), serviceCallback);
  150. }
  151. /**
  152. * Check if a domain is available for registration.
  153. * Check if a domain is available for registration.
  154. *
  155. * @throws IllegalArgumentException thrown if parameters fail the validation
  156. * @return the observable to the DomainAvailablilityCheckResultInner object
  157. */
  158. public Observable<DomainAvailablilityCheckResultInner> checkAvailabilityAsync() {
  159. return checkAvailabilityWithServiceResponseAsync().map(new Func1<ServiceResponse<DomainAvailablilityCheckResultInner>, DomainAvailablilityCheckResultInner>() {
  160. @Override
  161. public DomainAvailablilityCheckResultInner call(ServiceResponse<DomainAvailablilityCheckResultInner> response) {
  162. return response.body();
  163. }
  164. });
  165. }
  166. /**
  167. * Check if a domain is available for registration.
  168. * Check if a domain is available for registration.
  169. *
  170. * @throws IllegalArgumentException thrown if parameters fail the validation
  171. * @return the observable to the DomainAvailablilityCheckResultInner object
  172. */
  173. public Observable<ServiceResponse<DomainAvailablilityCheckResultInner>> checkAvailabilityWithServiceResponseAsync() {
  174. if (this.client.subscriptionId() == null) {
  175. throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
  176. }
  177. if (this.client.apiVersion() == null) {
  178. throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
  179. }
  180. final String name = null;
  181. NameIdentifierInner identifier = new NameIdentifierInner();
  182. identifier.withName(null);
  183. return service.checkAvailability(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), identifier, this.client.userAgent())
  184. .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DomainAvailablilityCheckResultInner>>>() {
  185. @Override
  186. public Observable<ServiceResponse<DomainAvailablilityCheckResultInner>> call(Response<ResponseBody> response) {
  187. try {
  188. ServiceResponse<DomainAvailablilityCheckResultInner> clientResponse = checkAvailabilityDelegate(response);
  189. return Observable.just(clientResponse);
  190. } catch (Throwable t) {
  191. return Observable.error(t);
  192. }
  193. }
  194. });
  195. }
  196. /**
  197. * Check if a domain is available for registration.
  198. * Check if a domain is available for registration.
  199. *
  200. * @param name Name of the object.
  201. * @throws IllegalArgumentException thrown if parameters fail the validation
  202. * @throws DefaultErrorResponseException thrown if the request is rejected by server
  203. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  204. * @return the DomainAvailablilityCheckResultInner object if successful.
  205. */
  206. public DomainAvailablilityCheckResultInner checkAvailability(String name) {
  207. return checkAvailabilityWithServiceResponseAsync(name).toBlocking().single().body();
  208. }
  209. /**
  210. * Check if a domain is available for registration.
  211. * Check if a domain is available for registration.
  212. *
  213. * @param name Name of the object.
  214. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  215. * @throws IllegalArgumentException thrown if parameters fail the validation
  216. * @return the {@link ServiceFuture} object
  217. */
  218. public ServiceFuture<DomainAvailablilityCheckResultInner> checkAvailabilityAsync(String name, final ServiceCallback<DomainAvailablilityCheckResultInner> serviceCallback) {
  219. return ServiceFuture.fromResponse(checkAvailabilityWithServiceResponseAsync(name), serviceCallback);
  220. }
  221. /**
  222. * Check if a domain is available for registration.
  223. * Check if a domain is available for registration.
  224. *
  225. * @param name Name of the object.
  226. * @throws IllegalArgumentException thrown if parameters fail the validation
  227. * @return the observable to the DomainAvailablilityCheckResultInner object
  228. */
  229. public Observable<DomainAvailablilityCheckResultInner> checkAvailabilityAsync(String name) {
  230. return checkAvailabilityWithServiceResponseAsync(name).map(new Func1<ServiceResponse<DomainAvailablilityCheckResultInner>, DomainAvailablilityCheckResultInner>() {
  231. @Override
  232. public DomainAvailablilityCheckResultInner call(ServiceResponse<DomainAvailablilityCheckResultInner> response) {
  233. return response.body();
  234. }
  235. });
  236. }
  237. /**
  238. * Check if a domain is available for registration.
  239. * Check if a domain is available for registration.
  240. *
  241. * @param name Name of the object.
  242. * @throws IllegalArgumentException thrown if parameters fail the validation
  243. * @return the observable to the DomainAvailablilityCheckResultInner object
  244. */
  245. public Observable<ServiceResponse<DomainAvailablilityCheckResultInner>> checkAvailabilityWithServiceResponseAsync(String name) {
  246. if (this.client.subscriptionId() == null) {
  247. throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
  248. }
  249. if (this.client.apiVersion() == null) {
  250. throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
  251. }
  252. NameIdentifierInner identifier = new NameIdentifierInner();
  253. identifier.withName(name);
  254. return service.checkAvailability(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), identifier, this.client.userAgent())
  255. .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DomainAvailablilityCheckResultInner>>>() {
  256. @Override
  257. public Observable<ServiceResponse<DomainAvailablilityCheckResultInner>> call(Response<ResponseBody> response) {
  258. try {
  259. ServiceResponse<DomainAvailablilityCheckResultInner> clientResponse = checkAvailabilityDelegate(response);
  260. return Observable.just(clientResponse);
  261. } catch (Throwable t) {
  262. return Observable.error(t);
  263. }
  264. }
  265. });
  266. }
  267. private ServiceResponse<DomainAvailablilityCheckResultInner> checkAvailabilityDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
  268. return this.client.restClient().responseBuilderFactory().<DomainAvailablilityCheckResultInner, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
  269. .register(200, new TypeToken<DomainAvailablilityCheckResultInner>() { }.getType())
  270. .registerError(DefaultErrorResponseException.class)
  271. .build(response);
  272. }
  273. /**
  274. * Get all domains in a subscription.
  275. * Get all domains in a subscription.
  276. *
  277. * @throws IllegalArgumentException thrown if parameters fail the validation
  278. * @throws DefaultErrorResponseException thrown if the request is rejected by server
  279. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  280. * @return the PagedList&lt;DomainInner&gt; object if successful.
  281. */
  282. public PagedList<DomainInner> list() {
  283. ServiceResponse<Page<DomainInner>> response = listSinglePageAsync().toBlocking().single();
  284. return new PagedList<DomainInner>(response.body()) {
  285. @Override
  286. public Page<DomainInner> nextPage(String nextPageLink) {
  287. return listNextSinglePageAsync(nextPageLink).toBlocking().single().body();
  288. }
  289. };
  290. }
  291. /**
  292. * Get all domains in a subscription.
  293. * Get all domains in a subscription.
  294. *
  295. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  296. * @throws IllegalArgumentException thrown if parameters fail the validation
  297. * @return the {@link ServiceFuture} object
  298. */
  299. public ServiceFuture<List<DomainInner>> listAsync(final ListOperationCallback<DomainInner> serviceCallback) {
  300. return AzureServiceFuture.fromPageResponse(
  301. listSinglePageAsync(),
  302. new Func1<String, Observable<ServiceResponse<Page<DomainInner>>>>() {
  303. @Override
  304. public Observable<ServiceResponse<Page<DomainInner>>> call(String nextPageLink) {
  305. return listNextSinglePageAsync(nextPageLink);
  306. }
  307. },
  308. serviceCallback);
  309. }
  310. /**
  311. * Get all domains in a subscription.
  312. * Get all domains in a subscription.
  313. *
  314. * @throws IllegalArgumentException thrown if parameters fail the validation
  315. * @return the observable to the PagedList&lt;DomainInner&gt; object
  316. */
  317. public Observable<Page<DomainInner>> listAsync() {
  318. return listWithServiceResponseAsync()
  319. .map(new Func1<ServiceResponse<Page<DomainInner>>, Page<DomainInner>>() {
  320. @Override
  321. public Page<DomainInner> call(ServiceResponse<Page<DomainInner>> response) {
  322. return response.body();
  323. }
  324. });
  325. }
  326. /**
  327. * Get all domains in a subscription.
  328. * Get all domains in a subscription.
  329. *
  330. * @throws IllegalArgumentException thrown if parameters fail the validation
  331. * @return the observable to the PagedList&lt;DomainInner&gt; object
  332. */
  333. public Observable<ServiceResponse<Page<DomainInner>>> listWithServiceResponseAsync() {
  334. return listSinglePageAsync()
  335. .concatMap(new Func1<ServiceResponse<Page<DomainInner>>, Observable<ServiceResponse<Page<DomainInner>>>>() {
  336. @Override
  337. public Observable<ServiceResponse<Page<DomainInner>>> call(ServiceResponse<Page<DomainInner>> page) {
  338. String nextPageLink = page.body().nextPageLink();
  339. if (nextPageLink == null) {
  340. return Observable.just(page);
  341. }
  342. return Observable.just(page).concatWith(listNextWithServiceResponseAsync(nextPageLink));
  343. }
  344. });
  345. }
  346. /**
  347. * Get all domains in a subscription.
  348. * Get all domains in a subscription.
  349. *
  350. * @throws IllegalArgumentException thrown if parameters fail the validation
  351. * @return the PagedList&lt;DomainInner&gt; object wrapped in {@link ServiceResponse} if successful.
  352. */
  353. public Observable<ServiceResponse<Page<DomainInner>>> listSinglePageAsync() {
  354. if (this.client.subscriptionId() == null) {
  355. throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
  356. }
  357. if (this.client.apiVersion() == null) {
  358. throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
  359. }
  360. return service.list(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
  361. .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DomainInner>>>>() {
  362. @Override
  363. public Observable<ServiceResponse<Page<DomainInner>>> call(Response<ResponseBody> response) {
  364. try {
  365. ServiceResponse<PageImpl<DomainInner>> result = listDelegate(response);
  366. return Observable.just(new ServiceResponse<Page<DomainInner>>(result.body(), result.response()));
  367. } catch (Throwable t) {
  368. return Observable.error(t);
  369. }
  370. }
  371. });
  372. }
  373. private ServiceResponse<PageImpl<DomainInner>> listDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
  374. return this.client.restClient().responseBuilderFactory().<PageImpl<DomainInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
  375. .register(200, new TypeToken<PageImpl<DomainInner>>() { }.getType())
  376. .registerError(DefaultErrorResponseException.class)
  377. .build(response);
  378. }
  379. /**
  380. * Generate a single sign-on request for the domain management portal.
  381. * Generate a single sign-on request for the domain management portal.
  382. *
  383. * @throws IllegalArgumentException thrown if parameters fail the validation
  384. * @throws DefaultErrorResponseException thrown if the request is rejected by server
  385. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  386. * @return the DomainControlCenterSsoRequestInner object if successful.
  387. */
  388. public DomainControlCenterSsoRequestInner getControlCenterSsoRequest() {
  389. return getControlCenterSsoRequestWithServiceResponseAsync().toBlocking().single().body();
  390. }
  391. /**
  392. * Generate a single sign-on request for the domain management portal.
  393. * Generate a single sign-on request for the domain management portal.
  394. *
  395. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  396. * @throws IllegalArgumentException thrown if parameters fail the validation
  397. * @return the {@link ServiceFuture} object
  398. */
  399. public ServiceFuture<DomainControlCenterSsoRequestInner> getControlCenterSsoRequestAsync(final ServiceCallback<DomainControlCenterSsoRequestInner> serviceCallback) {
  400. return ServiceFuture.fromResponse(getControlCenterSsoRequestWithServiceResponseAsync(), serviceCallback);
  401. }
  402. /**
  403. * Generate a single sign-on request for the domain management portal.
  404. * Generate a single sign-on request for the domain management portal.
  405. *
  406. * @throws IllegalArgumentException thrown if parameters fail the validation
  407. * @return the observable to the DomainControlCenterSsoRequestInner object
  408. */
  409. public Observable<DomainControlCenterSsoRequestInner> getControlCenterSsoRequestAsync() {
  410. return getControlCenterSsoRequestWithServiceResponseAsync().map(new Func1<ServiceResponse<DomainControlCenterSsoRequestInner>, DomainControlCenterSsoRequestInner>() {
  411. @Override
  412. public DomainControlCenterSsoRequestInner call(ServiceResponse<DomainControlCenterSsoRequestInner> response) {
  413. return response.body();
  414. }
  415. });
  416. }
  417. /**
  418. * Generate a single sign-on request for the domain management portal.
  419. * Generate a single sign-on request for the domain management portal.
  420. *
  421. * @throws IllegalArgumentException thrown if parameters fail the validation
  422. * @return the observable to the DomainControlCenterSsoRequestInner object
  423. */
  424. public Observable<ServiceResponse<DomainControlCenterSsoRequestInner>> getControlCenterSsoRequestWithServiceResponseAsync() {
  425. if (this.client.subscriptionId() == null) {
  426. throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
  427. }
  428. if (this.client.apiVersion() == null) {
  429. throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
  430. }
  431. return service.getControlCenterSsoRequest(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
  432. .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DomainControlCenterSsoRequestInner>>>() {
  433. @Override
  434. public Observable<ServiceResponse<DomainControlCenterSsoRequestInner>> call(Response<ResponseBody> response) {
  435. try {
  436. ServiceResponse<DomainControlCenterSsoRequestInner> clientResponse = getControlCenterSsoRequestDelegate(response);
  437. return Observable.just(clientResponse);
  438. } catch (Throwable t) {
  439. return Observable.error(t);
  440. }
  441. }
  442. });
  443. }
  444. private ServiceResponse<DomainControlCenterSsoRequestInner> getControlCenterSsoRequestDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
  445. return this.client.restClient().responseBuilderFactory().<DomainControlCenterSsoRequestInner, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
  446. .register(200, new TypeToken<DomainControlCenterSsoRequestInner>() { }.getType())
  447. .registerError(DefaultErrorResponseException.class)
  448. .build(response);
  449. }
  450. /**
  451. * Get domain name recommendations based on keywords.
  452. * Get domain name recommendations based on keywords.
  453. *
  454. * @param parameters Search parameters for domain name recommendations.
  455. * @throws IllegalArgumentException thrown if parameters fail the validation
  456. * @throws DefaultErrorResponseException thrown if the request is rejected by server
  457. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  458. * @return the PagedList&lt;NameIdentifierInner&gt; object if successful.
  459. */
  460. public PagedList<NameIdentifierInner> listRecommendations(final DomainRecommendationSearchParameters parameters) {
  461. ServiceResponse<Page<NameIdentifierInner>> response = listRecommendationsSinglePageAsync(parameters).toBlocking().single();
  462. return new PagedList<NameIdentifierInner>(response.body()) {
  463. @Override
  464. public Page<NameIdentifierInner> nextPage(String nextPageLink) {
  465. return listRecommendationsNextSinglePageAsync(nextPageLink).toBlocking().single().body();
  466. }
  467. };
  468. }
  469. /**
  470. * Get domain name recommendations based on keywords.
  471. * Get domain name recommendations based on keywords.
  472. *
  473. * @param parameters Search parameters for domain name recommendations.
  474. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  475. * @throws IllegalArgumentException thrown if parameters fail the validation
  476. * @return the {@link ServiceFuture} object
  477. */
  478. public ServiceFuture<List<NameIdentifierInner>> listRecommendationsAsync(final DomainRecommendationSearchParameters parameters, final ListOperationCallback<NameIdentifierInner> serviceCallback) {
  479. return AzureServiceFuture.fromPageResponse(
  480. listRecommendationsSinglePageAsync(parameters),
  481. new Func1<String, Observable<ServiceResponse<Page<NameIdentifierInner>>>>() {
  482. @Override
  483. public Observable<ServiceResponse<Page<NameIdentifierInner>>> call(String nextPageLink) {
  484. return listRecommendationsNextSinglePageAsync(nextPageLink);
  485. }
  486. },
  487. serviceCallback);
  488. }
  489. /**
  490. * Get domain name recommendations based on keywords.
  491. * Get domain name recommendations based on keywords.
  492. *
  493. * @param parameters Search parameters for domain name recommendations.
  494. * @throws IllegalArgumentException thrown if parameters fail the validation
  495. * @return the observable to the PagedList&lt;NameIdentifierInner&gt; object
  496. */
  497. public Observable<Page<NameIdentifierInner>> listRecommendationsAsync(final DomainRecommendationSearchParameters parameters) {
  498. return listRecommendationsWithServiceResponseAsync(parameters)
  499. .map(new Func1<ServiceResponse<Page<NameIdentifierInner>>, Page<NameIdentifierInner>>() {
  500. @Override
  501. public Page<NameIdentifierInner> call(ServiceResponse<Page<NameIdentifierInner>> response) {
  502. return response.body();
  503. }
  504. });
  505. }
  506. /**
  507. * Get domain name recommendations based on keywords.
  508. * Get domain name recommendations based on keywords.
  509. *
  510. * @param parameters Search parameters for domain name recommendations.
  511. * @throws IllegalArgumentException thrown if parameters fail the validation
  512. * @return the observable to the PagedList&lt;NameIdentifierInner&gt; object
  513. */
  514. public Observable<ServiceResponse<Page<NameIdentifierInner>>> listRecommendationsWithServiceResponseAsync(final DomainRecommendationSearchParameters parameters) {
  515. return listRecommendationsSinglePageAsync(parameters)
  516. .concatMap(new Func1<ServiceResponse<Page<NameIdentifierInner>>, Observable<ServiceResponse<Page<NameIdentifierInner>>>>() {
  517. @Override
  518. public Observable<ServiceResponse<Page<NameIdentifierInner>>> call(ServiceResponse<Page<NameIdentifierInner>> page) {
  519. String nextPageLink = page.body().nextPageLink();
  520. if (nextPageLink == null) {
  521. return Observable.just(page);
  522. }
  523. return Observable.just(page).concatWith(listRecommendationsNextWithServiceResponseAsync(nextPageLink));
  524. }
  525. });
  526. }
  527. /**
  528. * Get domain name recommendations based on keywords.
  529. * Get domain name recommendations based on keywords.
  530. *
  531. ServiceResponse<PageImpl<NameIdentifierInner>> * @param parameters Search parameters for domain name recommendations.
  532. * @throws IllegalArgumentException thrown if parameters fail the validation
  533. * @return the PagedList&lt;NameIdentifierInner&gt; object wrapped in {@link ServiceResponse} if successful.
  534. */
  535. public Observable<ServiceResponse<Page<NameIdentifierInner>>> listRecommendationsSinglePageAsync(final DomainRecommendationSearchParameters parameters) {
  536. if (this.client.subscriptionId() == null) {
  537. throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
  538. }
  539. if (parameters == null) {
  540. throw new IllegalArgumentException("Parameter parameters is required and cannot be null.");
  541. }
  542. if (this.client.apiVersion() == null) {
  543. throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
  544. }
  545. Validator.validate(parameters);
  546. return service.listRecommendations(this.client.subscriptionId(), parameters, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
  547. .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<NameIdentifierInner>>>>() {
  548. @Override
  549. public Observable<ServiceResponse<Page<NameIdentifierInner>>> call(Response<ResponseBody> response) {
  550. try {
  551. ServiceResponse<PageImpl<NameIdentifierInner>> result = listRecommendationsDelegate(response);
  552. return Observable.just(new ServiceResponse<Page<NameIdentifierInner>>(result.body(), result.response()));
  553. } catch (Throwable t) {
  554. return Observable.error(t);
  555. }
  556. }
  557. });
  558. }
  559. private ServiceResponse<PageImpl<NameIdentifierInner>> listRecommendationsDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
  560. return this.client.restClient().responseBuilderFactory().<PageImpl<NameIdentifierInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
  561. .register(200, new TypeToken<PageImpl<NameIdentifierInner>>() { }.getType())
  562. .registerError(DefaultErrorResponseException.class)
  563. .build(response);
  564. }
  565. /**
  566. * Get all domains in a resource group.
  567. * Get all domains in a resource group.
  568. *
  569. * @param resourceGroupName Name of the resource group to which the resource belongs.
  570. * @throws IllegalArgumentException thrown if parameters fail the validation
  571. * @throws DefaultErrorResponseException thrown if the request is rejected by server
  572. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  573. * @return the PagedList&lt;DomainInner&gt; object if successful.
  574. */
  575. public PagedList<DomainInner> listByResourceGroup(final String resourceGroupName) {
  576. ServiceResponse<Page<DomainInner>> response = listByResourceGroupSinglePageAsync(resourceGroupName).toBlocking().single();
  577. return new PagedList<DomainInner>(response.body()) {
  578. @Override
  579. public Page<DomainInner> nextPage(String nextPageLink) {
  580. return listByResourceGroupNextSinglePageAsync(nextPageLink).toBlocking().single().body();
  581. }
  582. };
  583. }
  584. /**
  585. * Get all domains in a resource group.
  586. * Get all domains in a resource group.
  587. *
  588. * @param resourceGroupName Name of the resource group to which the resource belongs.
  589. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  590. * @throws IllegalArgumentException thrown if parameters fail the validation
  591. * @return the {@link ServiceFuture} object
  592. */
  593. public ServiceFuture<List<DomainInner>> listByResourceGroupAsync(final String resourceGroupName, final ListOperationCallback<DomainInner> serviceCallback) {
  594. return AzureServiceFuture.fromPageResponse(
  595. listByResourceGroupSinglePageAsync(resourceGroupName),
  596. new Func1<String, Observable<ServiceResponse<Page<DomainInner>>>>() {
  597. @Override
  598. public Observable<ServiceResponse<Page<DomainInner>>> call(String nextPageLink) {
  599. return listByResourceGroupNextSinglePageAsync(nextPageLink);
  600. }
  601. },
  602. serviceCallback);
  603. }
  604. /**
  605. * Get all domains in a resource group.
  606. * Get all domains in a resource group.
  607. *
  608. * @param resourceGroupName Name of the resource group to which the resource belongs.
  609. * @throws IllegalArgumentException thrown if parameters fail the validation
  610. * @return the observable to the PagedList&lt;DomainInner&gt; object
  611. */
  612. public Observable<Page<DomainInner>> listByResourceGroupAsync(final String resourceGroupName) {
  613. return listByResourceGroupWithServiceResponseAsync(resourceGroupName)
  614. .map(new Func1<ServiceResponse<Page<DomainInner>>, Page<DomainInner>>() {
  615. @Override
  616. public Page<DomainInner> call(ServiceResponse<Page<DomainInner>> response) {
  617. return response.body();
  618. }
  619. });
  620. }
  621. /**
  622. * Get all domains in a resource group.
  623. * Get all domains in a resource group.
  624. *
  625. * @param resourceGroupName Name of the resource group to which the resource belongs.
  626. * @throws IllegalArgumentException thrown if parameters fail the validation
  627. * @return the observable to the PagedList&lt;DomainInner&gt; object
  628. */
  629. public Observable<ServiceResponse<Page<DomainInner>>> listByResourceGroupWithServiceResponseAsync(final String resourceGroupName) {
  630. return listByResourceGroupSinglePageAsync(resourceGroupName)
  631. .concatMap(new Func1<ServiceResponse<Page<DomainInner>>, Observable<ServiceResponse<Page<DomainInner>>>>() {
  632. @Override
  633. public Observable<ServiceResponse<Page<DomainInner>>> call(ServiceResponse<Page<DomainInner>> page) {
  634. String nextPageLink = page.body().nextPageLink();
  635. if (nextPageLink == null) {
  636. return Observable.just(page);
  637. }
  638. return Observable.just(page).concatWith(listByResourceGroupNextWithServiceResponseAsync(nextPageLink));
  639. }
  640. });
  641. }
  642. /**
  643. * Get all domains in a resource group.
  644. * Get all domains in a resource group.
  645. *
  646. ServiceResponse<PageImpl<DomainInner>> * @param resourceGroupName Name of the resource group to which the resource belongs.
  647. * @throws IllegalArgumentException thrown if parameters fail the validation
  648. * @return the PagedList&lt;DomainInner&gt; object wrapped in {@link ServiceResponse} if successful.
  649. */
  650. public Observable<ServiceResponse<Page<DomainInner>>> listByResourceGroupSinglePageAsync(final String resourceGroupName) {
  651. if (resourceGroupName == null) {
  652. throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.");
  653. }
  654. if (this.client.subscriptionId() == null) {
  655. throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
  656. }
  657. if (this.client.apiVersion() == null) {
  658. throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");
  659. }
  660. return service.listByResourceGroup(resourceGroupName, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent())
  661. .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Page<DomainInner>>>>() {
  662. @Override
  663. public Observable<ServiceResponse<Page<DomainInner>>> call(Response<ResponseBody> response) {
  664. try {
  665. ServiceResponse<PageImpl<DomainInner>> result = listByResourceGroupDelegate(response);
  666. return Observable.just(new ServiceResponse<Page<DomainInner>>(result.body(), result.response()));
  667. } catch (Throwable t) {
  668. return Observable.error(t);
  669. }
  670. }
  671. });
  672. }
  673. private ServiceResponse<PageImpl<DomainInner>> listByResourceGroupDelegate(Response<ResponseBody> response) throws DefaultErrorResponseException, IOException, IllegalArgumentException {
  674. return this.client.restClient().responseBuilderFactory().<PageImpl<DomainInner>, DefaultErrorResponseException>newInstance(this.client.serializerAdapter())
  675. .register(200, new TypeToken<PageImpl<DomainInner>>() { }.getType())
  676. .registerError(DefaultErrorResponseException.class)
  677. .build(response);
  678. }
  679. /**
  680. * Get a domain.
  681. * Get a domain.
  682. *
  683. * @param resourceGroupName Name of the resource group to which the resource belongs.
  684. * @param domainName Name of the domain.
  685. * @throws IllegalArgumentException thrown if parameters fail the validation
  686. * @throws DefaultErrorResponseException thrown if the request is rejected by server
  687. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
  688. * @return the DomainInner object if successful.
  689. */
  690. public DomainInner getByResourceGroup(String resourceGroupName, String domainName) {
  691. return getByResourceGroupWithServiceResponseAsync(resourceGroupName, domainName).toBlocking().single().body();
  692. }
  693. /**
  694. * Get a domain.
  695. * Get a domain.
  696. *
  697. * @param resourceGroupName Name of the resource group to which the resource belongs.
  698. * @param domainName Name of the domain.
  699. * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
  700. * @throws IllegalArgumentException thrown if parameters fail the validation
  701. * @return the {@link ServiceFuture} object
  702. */
  703. public ServiceFuture<DomainInner> getByResourceGroupAsync(String resourceGroupName, String domainName, final ServiceCallback<DomainInner> serviceCallback) {
  704. return ServiceFuture.fromResponse(getByResourceGroupWithServiceResponseAsync(resourceGroupName, domainName), serviceCallback);
  705. }
  706. /**
  707. * Get a domain.
  708. * Get a domain.
  709. *
  710. * @param resourceGroupName Name of the resource group to which the resource belongs.
  711. * @param domainName Name of the domain.
  712. * @throws IllegalArgumentException thrown if parameters fail the validation
  713. * @return the observable to the DomainInner object
  714. */
  715. public Observable<DomainInner> getByResourceGroupAsync(String resourceGroupName, String domainName) {
  716. return getByResourceGroupWithServiceResponseAsync(resourceGroupName, domainName).map(new Func1<ServiceResponse<DomainInner>, DomainInner>() {
  717. @Override
  718. public DomainInner call(ServiceResponse<DomainInner> response) {
  719. return response.body();
  720. }
  721. });
  722. }
  723. /**
  724. * Get a domain.
  725. * Get a domain.
  726. *
  727. * @param resourceGroupName Name of the resource group to which the resource belongs.
  728. * @param domainName Name of the domain.
  729. * @throws IllegalArgumentException thrown if parameters fail the validation
  730. * @return the observable to the DomainInner object
  731. */
  732. public Observable<ServiceResponse<DomainInner>> getByResourceGroupWithServiceResponseAsync(String resourceGroupName, String domainName) {
  733. if (resourceGroupName == null) {
  734. throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null.");
  735. }
  736. if (domainName == null) {
  737. throw new IllegalArgumentException("Parameter domainName is required and cannot be null.");
  738. }
  739. if (this.client.subscriptionId() == null) {
  740. throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
  741. }
  742. if (this.client.apiVersion() == null) {
  743. throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null.");