/sdk/authorization/mgmt/src/main/java/com/azure/management/graphrbac/models/ProviderOperationsMetadatasInner.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 290 lines · 158 code · 19 blank · 113 comment · 6 complexity · 5362a9b7956ebf963ef71b22004d64a0 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.management.graphrbac.models;
  5. import com.azure.core.annotation.ExpectedResponses;
  6. import com.azure.core.annotation.Get;
  7. import com.azure.core.annotation.Headers;
  8. import com.azure.core.annotation.Host;
  9. import com.azure.core.annotation.HostParam;
  10. import com.azure.core.annotation.PathParam;
  11. import com.azure.core.annotation.QueryParam;
  12. import com.azure.core.annotation.ReturnType;
  13. import com.azure.core.annotation.ServiceInterface;
  14. import com.azure.core.annotation.ServiceMethod;
  15. import com.azure.core.annotation.UnexpectedResponseExceptionType;
  16. import com.azure.core.http.rest.PagedFlux;
  17. import com.azure.core.http.rest.PagedIterable;
  18. import com.azure.core.http.rest.PagedResponse;
  19. import com.azure.core.http.rest.PagedResponseBase;
  20. import com.azure.core.http.rest.RestProxy;
  21. import com.azure.core.http.rest.SimpleResponse;
  22. import com.azure.core.management.CloudException;
  23. import com.azure.core.util.Context;
  24. import com.azure.core.util.FluxUtil;
  25. import reactor.core.publisher.Mono;
  26. /** An instance of this class provides access to all the operations defined in ProviderOperationsMetadatas. */
  27. public final class ProviderOperationsMetadatasInner {
  28. /** The proxy service used to perform REST calls. */
  29. private final ProviderOperationsMetadatasService service;
  30. /** The service client containing this operation class. */
  31. private final AuthorizationManagementClientImpl client;
  32. /**
  33. * Initializes an instance of ProviderOperationsMetadatasInner.
  34. *
  35. * @param client the instance of the service client containing this operation class.
  36. */
  37. ProviderOperationsMetadatasInner(AuthorizationManagementClientImpl client) {
  38. this.service =
  39. RestProxy
  40. .create(
  41. ProviderOperationsMetadatasService.class, client.getHttpPipeline(), client.getSerializerAdapter());
  42. this.client = client;
  43. }
  44. /**
  45. * The interface defining all the services for AuthorizationManagementClientProviderOperationsMetadatas to be used
  46. * by the proxy service to perform REST calls.
  47. */
  48. @Host("{$host}")
  49. @ServiceInterface(name = "AuthorizationManagem")
  50. private interface ProviderOperationsMetadatasService {
  51. @Headers({"Accept: application/json", "Content-Type: application/json"})
  52. @Get("/providers/Microsoft.Authorization/providerOperations/{resourceProviderNamespace}")
  53. @ExpectedResponses({200})
  54. @UnexpectedResponseExceptionType(CloudException.class)
  55. Mono<SimpleResponse<ProviderOperationsMetadataInner>> get(
  56. @HostParam("$host") String host,
  57. @PathParam("resourceProviderNamespace") String resourceProviderNamespace,
  58. @QueryParam("api-version") String apiVersion,
  59. @QueryParam("$expand") String expand,
  60. Context context);
  61. @Headers({"Accept: application/json", "Content-Type: application/json"})
  62. @Get("/providers/Microsoft.Authorization/providerOperations")
  63. @ExpectedResponses({200})
  64. @UnexpectedResponseExceptionType(CloudException.class)
  65. Mono<SimpleResponse<ProviderOperationsMetadataListResultInner>> list(
  66. @HostParam("$host") String host,
  67. @QueryParam("api-version") String apiVersion,
  68. @QueryParam("$expand") String expand,
  69. Context context);
  70. @Headers({"Accept: application/json", "Content-Type: application/json"})
  71. @Get("{nextLink}")
  72. @ExpectedResponses({200})
  73. @UnexpectedResponseExceptionType(CloudException.class)
  74. Mono<SimpleResponse<ProviderOperationsMetadataListResultInner>> listNext(
  75. @PathParam(value = "nextLink", encoded = true) String nextLink, Context context);
  76. }
  77. /**
  78. * Gets provider operations metadata for the specified resource provider.
  79. *
  80. * @param resourceProviderNamespace The namespace of the resource provider.
  81. * @param expand Specifies whether to expand the values.
  82. * @throws IllegalArgumentException thrown if parameters fail the validation.
  83. * @throws CloudException thrown if the request is rejected by server.
  84. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  85. * @return provider operations metadata for the specified resource provider.
  86. */
  87. @ServiceMethod(returns = ReturnType.SINGLE)
  88. public Mono<SimpleResponse<ProviderOperationsMetadataInner>> getWithResponseAsync(
  89. String resourceProviderNamespace, String expand) {
  90. final String apiVersion = "2018-01-01-preview";
  91. return FluxUtil
  92. .withContext(
  93. context -> service.get(this.client.getHost(), resourceProviderNamespace, apiVersion, expand, context))
  94. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
  95. }
  96. /**
  97. * Gets provider operations metadata for the specified resource provider.
  98. *
  99. * @param resourceProviderNamespace The namespace of the resource provider.
  100. * @param expand Specifies whether to expand the values.
  101. * @throws IllegalArgumentException thrown if parameters fail the validation.
  102. * @throws CloudException thrown if the request is rejected by server.
  103. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  104. * @return provider operations metadata for the specified resource provider.
  105. */
  106. @ServiceMethod(returns = ReturnType.SINGLE)
  107. public Mono<ProviderOperationsMetadataInner> getAsync(String resourceProviderNamespace, String expand) {
  108. return getWithResponseAsync(resourceProviderNamespace, expand)
  109. .flatMap(
  110. (SimpleResponse<ProviderOperationsMetadataInner> res) -> {
  111. if (res.getValue() != null) {
  112. return Mono.just(res.getValue());
  113. } else {
  114. return Mono.empty();
  115. }
  116. });
  117. }
  118. /**
  119. * Gets provider operations metadata for the specified resource provider.
  120. *
  121. * @param resourceProviderNamespace The namespace of the resource provider.
  122. * @throws IllegalArgumentException thrown if parameters fail the validation.
  123. * @throws CloudException thrown if the request is rejected by server.
  124. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  125. * @return provider operations metadata for the specified resource provider.
  126. */
  127. @ServiceMethod(returns = ReturnType.SINGLE)
  128. public Mono<ProviderOperationsMetadataInner> getAsync(String resourceProviderNamespace) {
  129. final String expand = null;
  130. final Context context = null;
  131. return getWithResponseAsync(resourceProviderNamespace, expand)
  132. .flatMap(
  133. (SimpleResponse<ProviderOperationsMetadataInner> res) -> {
  134. if (res.getValue() != null) {
  135. return Mono.just(res.getValue());
  136. } else {
  137. return Mono.empty();
  138. }
  139. });
  140. }
  141. /**
  142. * Gets provider operations metadata for the specified resource provider.
  143. *
  144. * @param resourceProviderNamespace The namespace of the resource provider.
  145. * @param expand Specifies whether to expand the values.
  146. * @throws IllegalArgumentException thrown if parameters fail the validation.
  147. * @throws CloudException thrown if the request is rejected by server.
  148. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  149. * @return provider operations metadata for the specified resource provider.
  150. */
  151. @ServiceMethod(returns = ReturnType.SINGLE)
  152. public ProviderOperationsMetadataInner get(String resourceProviderNamespace, String expand) {
  153. return getAsync(resourceProviderNamespace, expand).block();
  154. }
  155. /**
  156. * Gets provider operations metadata for the specified resource provider.
  157. *
  158. * @param resourceProviderNamespace The namespace of the resource provider.
  159. * @throws IllegalArgumentException thrown if parameters fail the validation.
  160. * @throws CloudException thrown if the request is rejected by server.
  161. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  162. * @return provider operations metadata for the specified resource provider.
  163. */
  164. @ServiceMethod(returns = ReturnType.SINGLE)
  165. public ProviderOperationsMetadataInner get(String resourceProviderNamespace) {
  166. final String expand = null;
  167. final Context context = null;
  168. return getAsync(resourceProviderNamespace, expand).block();
  169. }
  170. /**
  171. * Gets provider operations metadata for all resource providers.
  172. *
  173. * @param expand Specifies whether to expand the values.
  174. * @throws IllegalArgumentException thrown if parameters fail the validation.
  175. * @throws CloudException thrown if the request is rejected by server.
  176. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  177. * @return provider operations metadata for all resource providers.
  178. */
  179. @ServiceMethod(returns = ReturnType.SINGLE)
  180. public Mono<PagedResponse<ProviderOperationsMetadataInner>> listSinglePageAsync(String expand) {
  181. final String apiVersion = "2018-01-01-preview";
  182. return FluxUtil
  183. .withContext(context -> service.list(this.client.getHost(), apiVersion, expand, context))
  184. .<PagedResponse<ProviderOperationsMetadataInner>>map(
  185. res ->
  186. new PagedResponseBase<>(
  187. res.getRequest(),
  188. res.getStatusCode(),
  189. res.getHeaders(),
  190. res.getValue().value(),
  191. res.getValue().nextLink(),
  192. null))
  193. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
  194. }
  195. /**
  196. * Gets provider operations metadata for all resource providers.
  197. *
  198. * @param expand Specifies whether to expand the values.
  199. * @throws IllegalArgumentException thrown if parameters fail the validation.
  200. * @throws CloudException thrown if the request is rejected by server.
  201. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  202. * @return provider operations metadata for all resource providers.
  203. */
  204. @ServiceMethod(returns = ReturnType.COLLECTION)
  205. public PagedFlux<ProviderOperationsMetadataInner> listAsync(String expand) {
  206. return new PagedFlux<>(() -> listSinglePageAsync(expand), nextLink -> listNextSinglePageAsync(nextLink));
  207. }
  208. /**
  209. * Gets provider operations metadata for all resource providers.
  210. *
  211. * @throws CloudException thrown if the request is rejected by server.
  212. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  213. * @return provider operations metadata for all resource providers.
  214. */
  215. @ServiceMethod(returns = ReturnType.COLLECTION)
  216. public PagedFlux<ProviderOperationsMetadataInner> listAsync() {
  217. final String expand = null;
  218. final Context context = null;
  219. return new PagedFlux<>(() -> listSinglePageAsync(expand), nextLink -> listNextSinglePageAsync(nextLink));
  220. }
  221. /**
  222. * Gets provider operations metadata for all resource providers.
  223. *
  224. * @param expand Specifies whether to expand the values.
  225. * @throws IllegalArgumentException thrown if parameters fail the validation.
  226. * @throws CloudException thrown if the request is rejected by server.
  227. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  228. * @return provider operations metadata for all resource providers.
  229. */
  230. @ServiceMethod(returns = ReturnType.COLLECTION)
  231. public PagedIterable<ProviderOperationsMetadataInner> list(String expand) {
  232. return new PagedIterable<>(listAsync(expand));
  233. }
  234. /**
  235. * Gets provider operations metadata for all resource providers.
  236. *
  237. * @throws CloudException thrown if the request is rejected by server.
  238. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  239. * @return provider operations metadata for all resource providers.
  240. */
  241. @ServiceMethod(returns = ReturnType.COLLECTION)
  242. public PagedIterable<ProviderOperationsMetadataInner> list() {
  243. final String expand = null;
  244. final Context context = null;
  245. return new PagedIterable<>(listAsync(expand));
  246. }
  247. /**
  248. * Get the next page of items.
  249. *
  250. * @param nextLink The nextLink parameter.
  251. * @throws IllegalArgumentException thrown if parameters fail the validation.
  252. * @throws CloudException thrown if the request is rejected by server.
  253. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  254. * @return provider operations metadata list.
  255. */
  256. @ServiceMethod(returns = ReturnType.SINGLE)
  257. public Mono<PagedResponse<ProviderOperationsMetadataInner>> listNextSinglePageAsync(String nextLink) {
  258. return FluxUtil
  259. .withContext(context -> service.listNext(nextLink, context))
  260. .<PagedResponse<ProviderOperationsMetadataInner>>map(
  261. res ->
  262. new PagedResponseBase<>(
  263. res.getRequest(),
  264. res.getStatusCode(),
  265. res.getHeaders(),
  266. res.getValue().value(),
  267. res.getValue().nextLink(),
  268. null))
  269. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
  270. }
  271. }