/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/BgpServiceCommunitiesClientImpl.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 287 lines · 189 code · 16 blank · 82 comment · 16 complexity · 2bf8abefd05dc87a89ac3a7c74f18e31 MD5 · raw file

  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License.
  3. // Code generated by Microsoft (R) AutoRest Code Generator.
  4. package com.azure.resourcemanager.network.implementation;
  5. import com.azure.core.annotation.ExpectedResponses;
  6. import com.azure.core.annotation.Get;
  7. import com.azure.core.annotation.HeaderParam;
  8. import com.azure.core.annotation.Headers;
  9. import com.azure.core.annotation.Host;
  10. import com.azure.core.annotation.HostParam;
  11. import com.azure.core.annotation.PathParam;
  12. import com.azure.core.annotation.QueryParam;
  13. import com.azure.core.annotation.ReturnType;
  14. import com.azure.core.annotation.ServiceInterface;
  15. import com.azure.core.annotation.ServiceMethod;
  16. import com.azure.core.annotation.UnexpectedResponseExceptionType;
  17. import com.azure.core.http.rest.PagedFlux;
  18. import com.azure.core.http.rest.PagedIterable;
  19. import com.azure.core.http.rest.PagedResponse;
  20. import com.azure.core.http.rest.PagedResponseBase;
  21. import com.azure.core.http.rest.Response;
  22. import com.azure.core.http.rest.RestProxy;
  23. import com.azure.core.management.exception.ManagementException;
  24. import com.azure.core.util.Context;
  25. import com.azure.core.util.FluxUtil;
  26. import com.azure.core.util.logging.ClientLogger;
  27. import com.azure.resourcemanager.network.fluent.BgpServiceCommunitiesClient;
  28. import com.azure.resourcemanager.network.fluent.models.BgpServiceCommunityInner;
  29. import com.azure.resourcemanager.network.models.BgpServiceCommunityListResult;
  30. import reactor.core.publisher.Mono;
  31. /** An instance of this class provides access to all the operations defined in BgpServiceCommunitiesClient. */
  32. public final class BgpServiceCommunitiesClientImpl implements BgpServiceCommunitiesClient {
  33. private final ClientLogger logger = new ClientLogger(BgpServiceCommunitiesClientImpl.class);
  34. /** The proxy service used to perform REST calls. */
  35. private final BgpServiceCommunitiesService service;
  36. /** The service client containing this operation class. */
  37. private final NetworkManagementClientImpl client;
  38. /**
  39. * Initializes an instance of BgpServiceCommunitiesClientImpl.
  40. *
  41. * @param client the instance of the service client containing this operation class.
  42. */
  43. BgpServiceCommunitiesClientImpl(NetworkManagementClientImpl client) {
  44. this.service =
  45. RestProxy
  46. .create(BgpServiceCommunitiesService.class, client.getHttpPipeline(), client.getSerializerAdapter());
  47. this.client = client;
  48. }
  49. /**
  50. * The interface defining all the services for NetworkManagementClientBgpServiceCommunities to be used by the proxy
  51. * service to perform REST calls.
  52. */
  53. @Host("{$host}")
  54. @ServiceInterface(name = "NetworkManagementCli")
  55. private interface BgpServiceCommunitiesService {
  56. @Headers({"Content-Type: application/json"})
  57. @Get("/subscriptions/{subscriptionId}/providers/Microsoft.Network/bgpServiceCommunities")
  58. @ExpectedResponses({200})
  59. @UnexpectedResponseExceptionType(ManagementException.class)
  60. Mono<Response<BgpServiceCommunityListResult>> list(
  61. @HostParam("$host") String endpoint,
  62. @QueryParam("api-version") String apiVersion,
  63. @PathParam("subscriptionId") String subscriptionId,
  64. @HeaderParam("Accept") String accept,
  65. Context context);
  66. @Headers({"Content-Type: application/json"})
  67. @Get("{nextLink}")
  68. @ExpectedResponses({200})
  69. @UnexpectedResponseExceptionType(ManagementException.class)
  70. Mono<Response<BgpServiceCommunityListResult>> listNext(
  71. @PathParam(value = "nextLink", encoded = true) String nextLink,
  72. @HostParam("$host") String endpoint,
  73. @HeaderParam("Accept") String accept,
  74. Context context);
  75. }
  76. /**
  77. * Gets all the available bgp service communities.
  78. *
  79. * @throws ManagementException thrown if the request is rejected by server.
  80. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  81. * @return all the available bgp service communities.
  82. */
  83. @ServiceMethod(returns = ReturnType.SINGLE)
  84. private Mono<PagedResponse<BgpServiceCommunityInner>> listSinglePageAsync() {
  85. if (this.client.getEndpoint() == null) {
  86. return Mono
  87. .error(
  88. new IllegalArgumentException(
  89. "Parameter this.client.getEndpoint() is required and cannot be null."));
  90. }
  91. if (this.client.getSubscriptionId() == null) {
  92. return Mono
  93. .error(
  94. new IllegalArgumentException(
  95. "Parameter this.client.getSubscriptionId() is required and cannot be null."));
  96. }
  97. final String apiVersion = "2021-03-01";
  98. final String accept = "application/json";
  99. return FluxUtil
  100. .withContext(
  101. context ->
  102. service
  103. .list(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(), accept, context))
  104. .<PagedResponse<BgpServiceCommunityInner>>map(
  105. res ->
  106. new PagedResponseBase<>(
  107. res.getRequest(),
  108. res.getStatusCode(),
  109. res.getHeaders(),
  110. res.getValue().value(),
  111. res.getValue().nextLink(),
  112. null))
  113. .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
  114. }
  115. /**
  116. * Gets all the available bgp service communities.
  117. *
  118. * @param context The context to associate with this operation.
  119. * @throws IllegalArgumentException thrown if parameters fail the validation.
  120. * @throws ManagementException thrown if the request is rejected by server.
  121. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  122. * @return all the available bgp service communities.
  123. */
  124. @ServiceMethod(returns = ReturnType.SINGLE)
  125. private Mono<PagedResponse<BgpServiceCommunityInner>> listSinglePageAsync(Context context) {
  126. if (this.client.getEndpoint() == null) {
  127. return Mono
  128. .error(
  129. new IllegalArgumentException(
  130. "Parameter this.client.getEndpoint() is required and cannot be null."));
  131. }
  132. if (this.client.getSubscriptionId() == null) {
  133. return Mono
  134. .error(
  135. new IllegalArgumentException(
  136. "Parameter this.client.getSubscriptionId() is required and cannot be null."));
  137. }
  138. final String apiVersion = "2021-03-01";
  139. final String accept = "application/json";
  140. context = this.client.mergeContext(context);
  141. return service
  142. .list(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(), accept, context)
  143. .map(
  144. res ->
  145. new PagedResponseBase<>(
  146. res.getRequest(),
  147. res.getStatusCode(),
  148. res.getHeaders(),
  149. res.getValue().value(),
  150. res.getValue().nextLink(),
  151. null));
  152. }
  153. /**
  154. * Gets all the available bgp service communities.
  155. *
  156. * @throws ManagementException thrown if the request is rejected by server.
  157. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  158. * @return all the available bgp service communities.
  159. */
  160. @ServiceMethod(returns = ReturnType.COLLECTION)
  161. public PagedFlux<BgpServiceCommunityInner> listAsync() {
  162. return new PagedFlux<>(() -> listSinglePageAsync(), nextLink -> listNextSinglePageAsync(nextLink));
  163. }
  164. /**
  165. * Gets all the available bgp service communities.
  166. *
  167. * @param context The context to associate with this operation.
  168. * @throws IllegalArgumentException thrown if parameters fail the validation.
  169. * @throws ManagementException thrown if the request is rejected by server.
  170. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  171. * @return all the available bgp service communities.
  172. */
  173. @ServiceMethod(returns = ReturnType.COLLECTION)
  174. private PagedFlux<BgpServiceCommunityInner> listAsync(Context context) {
  175. return new PagedFlux<>(
  176. () -> listSinglePageAsync(context), nextLink -> listNextSinglePageAsync(nextLink, context));
  177. }
  178. /**
  179. * Gets all the available bgp service communities.
  180. *
  181. * @throws ManagementException thrown if the request is rejected by server.
  182. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  183. * @return all the available bgp service communities.
  184. */
  185. @ServiceMethod(returns = ReturnType.COLLECTION)
  186. public PagedIterable<BgpServiceCommunityInner> list() {
  187. return new PagedIterable<>(listAsync());
  188. }
  189. /**
  190. * Gets all the available bgp service communities.
  191. *
  192. * @param context The context to associate with this operation.
  193. * @throws IllegalArgumentException thrown if parameters fail the validation.
  194. * @throws ManagementException thrown if the request is rejected by server.
  195. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  196. * @return all the available bgp service communities.
  197. */
  198. @ServiceMethod(returns = ReturnType.COLLECTION)
  199. public PagedIterable<BgpServiceCommunityInner> list(Context context) {
  200. return new PagedIterable<>(listAsync(context));
  201. }
  202. /**
  203. * Get the next page of items.
  204. *
  205. * @param nextLink The nextLink parameter.
  206. * @throws IllegalArgumentException thrown if parameters fail the validation.
  207. * @throws ManagementException thrown if the request is rejected by server.
  208. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  209. * @return response for the ListServiceCommunity API service call.
  210. */
  211. @ServiceMethod(returns = ReturnType.SINGLE)
  212. private Mono<PagedResponse<BgpServiceCommunityInner>> listNextSinglePageAsync(String nextLink) {
  213. if (nextLink == null) {
  214. return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
  215. }
  216. if (this.client.getEndpoint() == null) {
  217. return Mono
  218. .error(
  219. new IllegalArgumentException(
  220. "Parameter this.client.getEndpoint() is required and cannot be null."));
  221. }
  222. final String accept = "application/json";
  223. return FluxUtil
  224. .withContext(context -> service.listNext(nextLink, this.client.getEndpoint(), accept, context))
  225. .<PagedResponse<BgpServiceCommunityInner>>map(
  226. res ->
  227. new PagedResponseBase<>(
  228. res.getRequest(),
  229. res.getStatusCode(),
  230. res.getHeaders(),
  231. res.getValue().value(),
  232. res.getValue().nextLink(),
  233. null))
  234. .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
  235. }
  236. /**
  237. * Get the next page of items.
  238. *
  239. * @param nextLink The nextLink parameter.
  240. * @param context The context to associate with this operation.
  241. * @throws IllegalArgumentException thrown if parameters fail the validation.
  242. * @throws ManagementException thrown if the request is rejected by server.
  243. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  244. * @return response for the ListServiceCommunity API service call.
  245. */
  246. @ServiceMethod(returns = ReturnType.SINGLE)
  247. private Mono<PagedResponse<BgpServiceCommunityInner>> listNextSinglePageAsync(String nextLink, Context context) {
  248. if (nextLink == null) {
  249. return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
  250. }
  251. if (this.client.getEndpoint() == null) {
  252. return Mono
  253. .error(
  254. new IllegalArgumentException(
  255. "Parameter this.client.getEndpoint() is required and cannot be null."));
  256. }
  257. final String accept = "application/json";
  258. context = this.client.mergeContext(context);
  259. return service
  260. .listNext(nextLink, this.client.getEndpoint(), accept, context)
  261. .map(
  262. res ->
  263. new PagedResponseBase<>(
  264. res.getRequest(),
  265. res.getStatusCode(),
  266. res.getHeaders(),
  267. res.getValue().value(),
  268. res.getValue().nextLink(),
  269. null));
  270. }
  271. }