/sdk/appservice/mgmt/src/main/java/com/azure/management/appservice/models/WebSiteManagementClientImpl.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 1712 lines · 910 code · 125 blank · 677 comment · 27 complexity · a74511ac51dc43bf48cb315d78b45d0b MD5 · raw file

Large files are truncated click here to view the full 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.appservice.models;
  5. import com.azure.core.annotation.BodyParam;
  6. import com.azure.core.annotation.ExpectedResponses;
  7. import com.azure.core.annotation.Get;
  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.Post;
  13. import com.azure.core.annotation.Put;
  14. import com.azure.core.annotation.QueryParam;
  15. import com.azure.core.annotation.ReturnType;
  16. import com.azure.core.annotation.ServiceInterface;
  17. import com.azure.core.annotation.ServiceMethod;
  18. import com.azure.core.annotation.UnexpectedResponseExceptionType;
  19. import com.azure.core.http.HttpPipeline;
  20. import com.azure.core.http.HttpPipelineBuilder;
  21. import com.azure.core.http.policy.CookiePolicy;
  22. import com.azure.core.http.policy.RetryPolicy;
  23. import com.azure.core.http.policy.UserAgentPolicy;
  24. import com.azure.core.http.rest.PagedFlux;
  25. import com.azure.core.http.rest.PagedIterable;
  26. import com.azure.core.http.rest.PagedResponse;
  27. import com.azure.core.http.rest.PagedResponseBase;
  28. import com.azure.core.http.rest.Response;
  29. import com.azure.core.http.rest.RestProxy;
  30. import com.azure.core.http.rest.SimpleResponse;
  31. import com.azure.core.management.AzureEnvironment;
  32. import com.azure.core.util.Context;
  33. import com.azure.core.util.FluxUtil;
  34. import com.azure.management.AzureServiceClient;
  35. import com.azure.management.appservice.CheckNameResourceTypes;
  36. import com.azure.management.appservice.CsmMoveResourceEnvelope;
  37. import com.azure.management.appservice.DefaultErrorResponseException;
  38. import com.azure.management.appservice.ResourceNameAvailabilityRequest;
  39. import com.azure.management.appservice.SkuName;
  40. import com.azure.management.appservice.ValidateRequest;
  41. import com.azure.management.appservice.VnetParameters;
  42. import reactor.core.publisher.Mono;
  43. /** Initializes a new instance of the WebSiteManagementClientImpl type. */
  44. public final class WebSiteManagementClientImpl extends AzureServiceClient {
  45. /** The proxy service used to perform REST calls. */
  46. private final WebSiteManagementClientService service;
  47. /** Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). */
  48. private String subscriptionId;
  49. /**
  50. * Gets Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).
  51. *
  52. * @return the subscriptionId value.
  53. */
  54. public String getSubscriptionId() {
  55. return this.subscriptionId;
  56. }
  57. /**
  58. * Sets Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).
  59. *
  60. * @param subscriptionId the subscriptionId value.
  61. * @return the service client itself.
  62. */
  63. public WebSiteManagementClientImpl setSubscriptionId(String subscriptionId) {
  64. this.subscriptionId = subscriptionId;
  65. return this;
  66. }
  67. /** server parameter. */
  68. private String host;
  69. /**
  70. * Gets server parameter.
  71. *
  72. * @return the host value.
  73. */
  74. public String getHost() {
  75. return this.host;
  76. }
  77. /**
  78. * Sets server parameter.
  79. *
  80. * @param host the host value.
  81. * @return the service client itself.
  82. */
  83. public WebSiteManagementClientImpl setHost(String host) {
  84. this.host = host;
  85. return this;
  86. }
  87. /** Api Version. */
  88. private String apiVersion;
  89. /**
  90. * Gets Api Version.
  91. *
  92. * @return the apiVersion value.
  93. */
  94. public String getApiVersion() {
  95. return this.apiVersion;
  96. }
  97. /**
  98. * Sets Api Version.
  99. *
  100. * @param apiVersion the apiVersion value.
  101. * @return the service client itself.
  102. */
  103. public WebSiteManagementClientImpl setApiVersion(String apiVersion) {
  104. this.apiVersion = apiVersion;
  105. return this;
  106. }
  107. /** The HTTP pipeline to send requests through. */
  108. private final HttpPipeline httpPipeline;
  109. /**
  110. * Gets The HTTP pipeline to send requests through.
  111. *
  112. * @return the httpPipeline value.
  113. */
  114. public HttpPipeline getHttpPipeline() {
  115. return this.httpPipeline;
  116. }
  117. /** The AppServiceCertificateOrdersInner object to access its operations. */
  118. private final AppServiceCertificateOrdersInner appServiceCertificateOrders;
  119. /**
  120. * Gets the AppServiceCertificateOrdersInner object to access its operations.
  121. *
  122. * @return the AppServiceCertificateOrdersInner object.
  123. */
  124. public AppServiceCertificateOrdersInner appServiceCertificateOrders() {
  125. return this.appServiceCertificateOrders;
  126. }
  127. /** The CertificateRegistrationProvidersInner object to access its operations. */
  128. private final CertificateRegistrationProvidersInner certificateRegistrationProviders;
  129. /**
  130. * Gets the CertificateRegistrationProvidersInner object to access its operations.
  131. *
  132. * @return the CertificateRegistrationProvidersInner object.
  133. */
  134. public CertificateRegistrationProvidersInner certificateRegistrationProviders() {
  135. return this.certificateRegistrationProviders;
  136. }
  137. /** The DomainsInner object to access its operations. */
  138. private final DomainsInner domains;
  139. /**
  140. * Gets the DomainsInner object to access its operations.
  141. *
  142. * @return the DomainsInner object.
  143. */
  144. public DomainsInner domains() {
  145. return this.domains;
  146. }
  147. /** The TopLevelDomainsInner object to access its operations. */
  148. private final TopLevelDomainsInner topLevelDomains;
  149. /**
  150. * Gets the TopLevelDomainsInner object to access its operations.
  151. *
  152. * @return the TopLevelDomainsInner object.
  153. */
  154. public TopLevelDomainsInner topLevelDomains() {
  155. return this.topLevelDomains;
  156. }
  157. /** The DomainRegistrationProvidersInner object to access its operations. */
  158. private final DomainRegistrationProvidersInner domainRegistrationProviders;
  159. /**
  160. * Gets the DomainRegistrationProvidersInner object to access its operations.
  161. *
  162. * @return the DomainRegistrationProvidersInner object.
  163. */
  164. public DomainRegistrationProvidersInner domainRegistrationProviders() {
  165. return this.domainRegistrationProviders;
  166. }
  167. /** The CertificatesInner object to access its operations. */
  168. private final CertificatesInner certificates;
  169. /**
  170. * Gets the CertificatesInner object to access its operations.
  171. *
  172. * @return the CertificatesInner object.
  173. */
  174. public CertificatesInner certificates() {
  175. return this.certificates;
  176. }
  177. /** The DeletedWebAppsInner object to access its operations. */
  178. private final DeletedWebAppsInner deletedWebApps;
  179. /**
  180. * Gets the DeletedWebAppsInner object to access its operations.
  181. *
  182. * @return the DeletedWebAppsInner object.
  183. */
  184. public DeletedWebAppsInner deletedWebApps() {
  185. return this.deletedWebApps;
  186. }
  187. /** The DiagnosticsInner object to access its operations. */
  188. private final DiagnosticsInner diagnostics;
  189. /**
  190. * Gets the DiagnosticsInner object to access its operations.
  191. *
  192. * @return the DiagnosticsInner object.
  193. */
  194. public DiagnosticsInner diagnostics() {
  195. return this.diagnostics;
  196. }
  197. /** The ProvidersInner object to access its operations. */
  198. private final ProvidersInner providers;
  199. /**
  200. * Gets the ProvidersInner object to access its operations.
  201. *
  202. * @return the ProvidersInner object.
  203. */
  204. public ProvidersInner providers() {
  205. return this.providers;
  206. }
  207. /** The RecommendationsInner object to access its operations. */
  208. private final RecommendationsInner recommendations;
  209. /**
  210. * Gets the RecommendationsInner object to access its operations.
  211. *
  212. * @return the RecommendationsInner object.
  213. */
  214. public RecommendationsInner recommendations() {
  215. return this.recommendations;
  216. }
  217. /** The WebAppsInner object to access its operations. */
  218. private final WebAppsInner webApps;
  219. /**
  220. * Gets the WebAppsInner object to access its operations.
  221. *
  222. * @return the WebAppsInner object.
  223. */
  224. public WebAppsInner webApps() {
  225. return this.webApps;
  226. }
  227. /** The StaticSitesInner object to access its operations. */
  228. private final StaticSitesInner staticSites;
  229. /**
  230. * Gets the StaticSitesInner object to access its operations.
  231. *
  232. * @return the StaticSitesInner object.
  233. */
  234. public StaticSitesInner staticSites() {
  235. return this.staticSites;
  236. }
  237. /** The AppServiceEnvironmentsInner object to access its operations. */
  238. private final AppServiceEnvironmentsInner appServiceEnvironments;
  239. /**
  240. * Gets the AppServiceEnvironmentsInner object to access its operations.
  241. *
  242. * @return the AppServiceEnvironmentsInner object.
  243. */
  244. public AppServiceEnvironmentsInner appServiceEnvironments() {
  245. return this.appServiceEnvironments;
  246. }
  247. /** The AppServicePlansInner object to access its operations. */
  248. private final AppServicePlansInner appServicePlans;
  249. /**
  250. * Gets the AppServicePlansInner object to access its operations.
  251. *
  252. * @return the AppServicePlansInner object.
  253. */
  254. public AppServicePlansInner appServicePlans() {
  255. return this.appServicePlans;
  256. }
  257. /** The ResourceHealthMetadatasInner object to access its operations. */
  258. private final ResourceHealthMetadatasInner resourceHealthMetadatas;
  259. /**
  260. * Gets the ResourceHealthMetadatasInner object to access its operations.
  261. *
  262. * @return the ResourceHealthMetadatasInner object.
  263. */
  264. public ResourceHealthMetadatasInner resourceHealthMetadatas() {
  265. return this.resourceHealthMetadatas;
  266. }
  267. /** Initializes an instance of WebSiteManagementClient client. */
  268. public WebSiteManagementClientImpl() {
  269. this(
  270. new HttpPipelineBuilder().policies(new UserAgentPolicy(), new RetryPolicy(), new CookiePolicy()).build(),
  271. AzureEnvironment.AZURE);
  272. }
  273. /**
  274. * Initializes an instance of WebSiteManagementClient client.
  275. *
  276. * @param httpPipeline The HTTP pipeline to send requests through.
  277. */
  278. public WebSiteManagementClientImpl(HttpPipeline httpPipeline) {
  279. this(httpPipeline, AzureEnvironment.AZURE);
  280. }
  281. /**
  282. * Initializes an instance of WebSiteManagementClient client.
  283. *
  284. * @param httpPipeline The HTTP pipeline to send requests through.
  285. * @param environment The Azure environment.
  286. */
  287. public WebSiteManagementClientImpl(HttpPipeline httpPipeline, AzureEnvironment environment) {
  288. super(httpPipeline, environment);
  289. this.httpPipeline = httpPipeline;
  290. this.appServiceCertificateOrders = new AppServiceCertificateOrdersInner(this);
  291. this.certificateRegistrationProviders = new CertificateRegistrationProvidersInner(this);
  292. this.domains = new DomainsInner(this);
  293. this.topLevelDomains = new TopLevelDomainsInner(this);
  294. this.domainRegistrationProviders = new DomainRegistrationProvidersInner(this);
  295. this.certificates = new CertificatesInner(this);
  296. this.deletedWebApps = new DeletedWebAppsInner(this);
  297. this.diagnostics = new DiagnosticsInner(this);
  298. this.providers = new ProvidersInner(this);
  299. this.recommendations = new RecommendationsInner(this);
  300. this.webApps = new WebAppsInner(this);
  301. this.staticSites = new StaticSitesInner(this);
  302. this.appServiceEnvironments = new AppServiceEnvironmentsInner(this);
  303. this.appServicePlans = new AppServicePlansInner(this);
  304. this.resourceHealthMetadatas = new ResourceHealthMetadatasInner(this);
  305. this.service =
  306. RestProxy.create(WebSiteManagementClientService.class, this.httpPipeline, this.getSerializerAdapter());
  307. }
  308. /**
  309. * The interface defining all the services for WebSiteManagementClient to be used by the proxy service to perform
  310. * REST calls.
  311. */
  312. @Host("{$host}")
  313. @ServiceInterface(name = "WebSiteManagementCli")
  314. private interface WebSiteManagementClientService {
  315. @Headers({"Accept: application/json", "Content-Type: application/json"})
  316. @Get("/providers/Microsoft.Web/publishingUsers/web")
  317. @ExpectedResponses({200})
  318. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  319. Mono<SimpleResponse<UserInner>> getPublishingUser(
  320. @HostParam("$host") String host, @QueryParam("api-version") String apiVersion, Context context);
  321. @Headers({"Accept: application/json", "Content-Type: application/json"})
  322. @Put("/providers/Microsoft.Web/publishingUsers/web")
  323. @ExpectedResponses({200})
  324. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  325. Mono<SimpleResponse<UserInner>> updatePublishingUser(
  326. @HostParam("$host") String host,
  327. @QueryParam("api-version") String apiVersion,
  328. @BodyParam("application/json") UserInner userDetails,
  329. Context context);
  330. @Headers({"Accept: application/json", "Content-Type: application/json"})
  331. @Get("/providers/Microsoft.Web/sourcecontrols")
  332. @ExpectedResponses({200})
  333. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  334. Mono<SimpleResponse<SourceControlCollectionInner>> listSourceControls(
  335. @HostParam("$host") String host, @QueryParam("api-version") String apiVersion, Context context);
  336. @Headers({"Accept: application/json", "Content-Type: application/json"})
  337. @Get("/providers/Microsoft.Web/sourcecontrols/{sourceControlType}")
  338. @ExpectedResponses({200})
  339. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  340. Mono<SimpleResponse<SourceControlInner>> getSourceControl(
  341. @HostParam("$host") String host,
  342. @PathParam("sourceControlType") String sourceControlType,
  343. @QueryParam("api-version") String apiVersion,
  344. Context context);
  345. @Headers({"Accept: application/json", "Content-Type: application/json"})
  346. @Put("/providers/Microsoft.Web/sourcecontrols/{sourceControlType}")
  347. @ExpectedResponses({200})
  348. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  349. Mono<SimpleResponse<SourceControlInner>> updateSourceControl(
  350. @HostParam("$host") String host,
  351. @PathParam("sourceControlType") String sourceControlType,
  352. @QueryParam("api-version") String apiVersion,
  353. @BodyParam("application/json") SourceControlInner requestMessage,
  354. Context context);
  355. @Headers({"Accept: application/json", "Content-Type: application/json"})
  356. @Get("/subscriptions/{subscriptionId}/providers/Microsoft.Web/billingMeters")
  357. @ExpectedResponses({200})
  358. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  359. Mono<SimpleResponse<BillingMeterCollectionInner>> list(
  360. @HostParam("$host") String host,
  361. @QueryParam("billingLocation") String billingLocation,
  362. @QueryParam("osType") String osType,
  363. @PathParam("subscriptionId") String subscriptionId,
  364. @QueryParam("api-version") String apiVersion,
  365. Context context);
  366. @Headers({"Accept: application/json", "Content-Type: application/json"})
  367. @Post("/subscriptions/{subscriptionId}/providers/Microsoft.Web/checknameavailability")
  368. @ExpectedResponses({200})
  369. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  370. Mono<SimpleResponse<ResourceNameAvailabilityInner>> checkNameAvailability(
  371. @HostParam("$host") String host,
  372. @PathParam("subscriptionId") String subscriptionId,
  373. @QueryParam("api-version") String apiVersion,
  374. @BodyParam("application/json") ResourceNameAvailabilityRequest request,
  375. Context context);
  376. @Headers({"Accept: application/json", "Content-Type: application/json"})
  377. @Get("/subscriptions/{subscriptionId}/providers/Microsoft.Web/deploymentLocations")
  378. @ExpectedResponses({200})
  379. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  380. Mono<SimpleResponse<DeploymentLocationsInner>> getSubscriptionDeploymentLocations(
  381. @HostParam("$host") String host,
  382. @PathParam("subscriptionId") String subscriptionId,
  383. @QueryParam("api-version") String apiVersion,
  384. Context context);
  385. @Headers({"Accept: application/json", "Content-Type: application/json"})
  386. @Get("/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions")
  387. @ExpectedResponses({200})
  388. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  389. Mono<SimpleResponse<GeoRegionCollectionInner>> listGeoRegions(
  390. @HostParam("$host") String host,
  391. @QueryParam("sku") SkuName sku,
  392. @QueryParam("linuxWorkersEnabled") Boolean linuxWorkersEnabled,
  393. @QueryParam("xenonWorkersEnabled") Boolean xenonWorkersEnabled,
  394. @QueryParam("linuxDynamicWorkersEnabled") Boolean linuxDynamicWorkersEnabled,
  395. @PathParam("subscriptionId") String subscriptionId,
  396. @QueryParam("api-version") String apiVersion,
  397. Context context);
  398. @Headers({"Accept: application/json", "Content-Type: application/json"})
  399. @Post("/subscriptions/{subscriptionId}/providers/Microsoft.Web/listSitesAssignedToHostName")
  400. @ExpectedResponses({200})
  401. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  402. Mono<SimpleResponse<IdentifierCollectionInner>> listSiteIdentifiersAssignedToHostName(
  403. @HostParam("$host") String host,
  404. @PathParam("subscriptionId") String subscriptionId,
  405. @QueryParam("api-version") String apiVersion,
  406. @BodyParam("application/json") NameIdentifierInner nameIdentifier,
  407. Context context);
  408. @Headers({"Accept: application/json", "Content-Type: application/json"})
  409. @Get("/subscriptions/{subscriptionId}/providers/Microsoft.Web/premieraddonoffers")
  410. @ExpectedResponses({200})
  411. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  412. Mono<SimpleResponse<PremierAddOnOfferCollectionInner>> listPremierAddOnOffers(
  413. @HostParam("$host") String host,
  414. @PathParam("subscriptionId") String subscriptionId,
  415. @QueryParam("api-version") String apiVersion,
  416. Context context);
  417. @Headers({"Accept: application/json", "Content-Type: application/json"})
  418. @Get("/subscriptions/{subscriptionId}/providers/Microsoft.Web/skus")
  419. @ExpectedResponses({200})
  420. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  421. Mono<SimpleResponse<SkuInfosInner>> listSkus(
  422. @HostParam("$host") String host,
  423. @PathParam("subscriptionId") String subscriptionId,
  424. @QueryParam("api-version") String apiVersion,
  425. Context context);
  426. @Headers({"Accept: application/json", "Content-Type: application/json"})
  427. @Post("/subscriptions/{subscriptionId}/providers/Microsoft.Web/verifyHostingEnvironmentVnet")
  428. @ExpectedResponses({200})
  429. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  430. Mono<SimpleResponse<VnetValidationFailureDetailsInner>> verifyHostingEnvironmentVnet(
  431. @HostParam("$host") String host,
  432. @PathParam("subscriptionId") String subscriptionId,
  433. @QueryParam("api-version") String apiVersion,
  434. @BodyParam("application/json") VnetParameters parameters,
  435. Context context);
  436. @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"})
  437. @Post("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/moveResources")
  438. @ExpectedResponses({204})
  439. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  440. Mono<Response<Void>> move(
  441. @HostParam("$host") String host,
  442. @PathParam("resourceGroupName") String resourceGroupName,
  443. @PathParam("subscriptionId") String subscriptionId,
  444. @QueryParam("api-version") String apiVersion,
  445. @BodyParam("application/json") CsmMoveResourceEnvelope moveResourceEnvelope,
  446. Context context);
  447. @Headers({"Accept: application/json", "Content-Type: application/json"})
  448. @Post(
  449. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web" + "/validate")
  450. @ExpectedResponses({200})
  451. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  452. Mono<SimpleResponse<ValidateResponseInner>> validate(
  453. @HostParam("$host") String host,
  454. @PathParam("resourceGroupName") String resourceGroupName,
  455. @PathParam("subscriptionId") String subscriptionId,
  456. @QueryParam("api-version") String apiVersion,
  457. @BodyParam("application/json") ValidateRequest validateRequest,
  458. Context context);
  459. @Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"})
  460. @Post("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/validateMoveResources")
  461. @ExpectedResponses({204})
  462. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  463. Mono<Response<Void>> validateMove(
  464. @HostParam("$host") String host,
  465. @PathParam("resourceGroupName") String resourceGroupName,
  466. @PathParam("subscriptionId") String subscriptionId,
  467. @QueryParam("api-version") String apiVersion,
  468. @BodyParam("application/json") CsmMoveResourceEnvelope moveResourceEnvelope,
  469. Context context);
  470. @Headers({"Accept: application/json", "Content-Type: application/json"})
  471. @Get("{nextLink}")
  472. @ExpectedResponses({200})
  473. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  474. Mono<SimpleResponse<SourceControlCollectionInner>> listSourceControlsNext(
  475. @PathParam(value = "nextLink", encoded = true) String nextLink, Context context);
  476. @Headers({"Accept: application/json", "Content-Type: application/json"})
  477. @Get("{nextLink}")
  478. @ExpectedResponses({200})
  479. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  480. Mono<SimpleResponse<BillingMeterCollectionInner>> listBillingMetersNext(
  481. @PathParam(value = "nextLink", encoded = true) String nextLink, Context context);
  482. @Headers({"Accept: application/json", "Content-Type: application/json"})
  483. @Get("{nextLink}")
  484. @ExpectedResponses({200})
  485. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  486. Mono<SimpleResponse<GeoRegionCollectionInner>> listGeoRegionsNext(
  487. @PathParam(value = "nextLink", encoded = true) String nextLink, Context context);
  488. @Headers({"Accept: application/json", "Content-Type: application/json"})
  489. @Get("{nextLink}")
  490. @ExpectedResponses({200})
  491. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  492. Mono<SimpleResponse<IdentifierCollectionInner>> listSiteIdentifiersAssignedToHostNameNext(
  493. @PathParam(value = "nextLink", encoded = true) String nextLink, Context context);
  494. @Headers({"Accept: application/json", "Content-Type: application/json"})
  495. @Get("{nextLink}")
  496. @ExpectedResponses({200})
  497. @UnexpectedResponseExceptionType(DefaultErrorResponseException.class)
  498. Mono<SimpleResponse<PremierAddOnOfferCollectionInner>> listPremierAddOnOffersNext(
  499. @PathParam(value = "nextLink", encoded = true) String nextLink, Context context);
  500. }
  501. /**
  502. * Description for Gets publishing user.
  503. *
  504. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  505. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  506. * @return user credentials used for publishing activity.
  507. */
  508. @ServiceMethod(returns = ReturnType.SINGLE)
  509. public Mono<SimpleResponse<UserInner>> getPublishingUserWithResponseAsync() {
  510. return FluxUtil
  511. .withContext(context -> service.getPublishingUser(this.getHost(), this.getApiVersion(), context))
  512. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.getContext())));
  513. }
  514. /**
  515. * Description for Gets publishing user.
  516. *
  517. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  518. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  519. * @return user credentials used for publishing activity.
  520. */
  521. @ServiceMethod(returns = ReturnType.SINGLE)
  522. public Mono<UserInner> getPublishingUserAsync() {
  523. return getPublishingUserWithResponseAsync()
  524. .flatMap(
  525. (SimpleResponse<UserInner> res) -> {
  526. if (res.getValue() != null) {
  527. return Mono.just(res.getValue());
  528. } else {
  529. return Mono.empty();
  530. }
  531. });
  532. }
  533. /**
  534. * Description for Gets publishing user.
  535. *
  536. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  537. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  538. * @return user credentials used for publishing activity.
  539. */
  540. @ServiceMethod(returns = ReturnType.SINGLE)
  541. public UserInner getPublishingUser() {
  542. return getPublishingUserAsync().block();
  543. }
  544. /**
  545. * Description for Updates publishing user.
  546. *
  547. * @param userDetails User credentials used for publishing activity.
  548. * @throws IllegalArgumentException thrown if parameters fail the validation.
  549. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  550. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  551. * @return user credentials used for publishing activity.
  552. */
  553. @ServiceMethod(returns = ReturnType.SINGLE)
  554. public Mono<SimpleResponse<UserInner>> updatePublishingUserWithResponseAsync(UserInner userDetails) {
  555. return FluxUtil
  556. .withContext(
  557. context -> service.updatePublishingUser(this.getHost(), this.getApiVersion(), userDetails, context))
  558. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.getContext())));
  559. }
  560. /**
  561. * Description for Updates publishing user.
  562. *
  563. * @param userDetails User credentials used for publishing activity.
  564. * @throws IllegalArgumentException thrown if parameters fail the validation.
  565. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  566. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  567. * @return user credentials used for publishing activity.
  568. */
  569. @ServiceMethod(returns = ReturnType.SINGLE)
  570. public Mono<UserInner> updatePublishingUserAsync(UserInner userDetails) {
  571. return updatePublishingUserWithResponseAsync(userDetails)
  572. .flatMap(
  573. (SimpleResponse<UserInner> res) -> {
  574. if (res.getValue() != null) {
  575. return Mono.just(res.getValue());
  576. } else {
  577. return Mono.empty();
  578. }
  579. });
  580. }
  581. /**
  582. * Description for Updates publishing user.
  583. *
  584. * @param userDetails User credentials used for publishing activity.
  585. * @throws IllegalArgumentException thrown if parameters fail the validation.
  586. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  587. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  588. * @return user credentials used for publishing activity.
  589. */
  590. @ServiceMethod(returns = ReturnType.SINGLE)
  591. public UserInner updatePublishingUser(UserInner userDetails) {
  592. return updatePublishingUserAsync(userDetails).block();
  593. }
  594. /**
  595. * Description for Gets the source controls available for Azure websites.
  596. *
  597. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  598. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  599. * @return collection of source controls.
  600. */
  601. @ServiceMethod(returns = ReturnType.SINGLE)
  602. public Mono<PagedResponse<SourceControlInner>> listSourceControlsSinglePageAsync() {
  603. return FluxUtil
  604. .withContext(context -> service.listSourceControls(this.getHost(), this.getApiVersion(), context))
  605. .<PagedResponse<SourceControlInner>>map(
  606. res ->
  607. new PagedResponseBase<>(
  608. res.getRequest(),
  609. res.getStatusCode(),
  610. res.getHeaders(),
  611. res.getValue().value(),
  612. res.getValue().nextLink(),
  613. null))
  614. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.getContext())));
  615. }
  616. /**
  617. * Description for Gets the source controls available for Azure websites.
  618. *
  619. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  620. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  621. * @return collection of source controls.
  622. */
  623. @ServiceMethod(returns = ReturnType.COLLECTION)
  624. public PagedFlux<SourceControlInner> listSourceControlsAsync() {
  625. return new PagedFlux<>(
  626. () -> listSourceControlsSinglePageAsync(), nextLink -> listSourceControlsNextSinglePageAsync(nextLink));
  627. }
  628. /**
  629. * Description for Gets the source controls available for Azure websites.
  630. *
  631. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  632. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  633. * @return collection of source controls.
  634. */
  635. @ServiceMethod(returns = ReturnType.COLLECTION)
  636. public PagedIterable<SourceControlInner> listSourceControls() {
  637. return new PagedIterable<>(listSourceControlsAsync());
  638. }
  639. /**
  640. * Description for Gets source control token.
  641. *
  642. * @param sourceControlType Type of source control.
  643. * @throws IllegalArgumentException thrown if parameters fail the validation.
  644. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  645. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  646. * @return the source control OAuth token.
  647. */
  648. @ServiceMethod(returns = ReturnType.SINGLE)
  649. public Mono<SimpleResponse<SourceControlInner>> getSourceControlWithResponseAsync(String sourceControlType) {
  650. return FluxUtil
  651. .withContext(
  652. context -> service.getSourceControl(this.getHost(), sourceControlType, this.getApiVersion(), context))
  653. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.getContext())));
  654. }
  655. /**
  656. * Description for Gets source control token.
  657. *
  658. * @param sourceControlType Type of source control.
  659. * @throws IllegalArgumentException thrown if parameters fail the validation.
  660. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  661. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  662. * @return the source control OAuth token.
  663. */
  664. @ServiceMethod(returns = ReturnType.SINGLE)
  665. public Mono<SourceControlInner> getSourceControlAsync(String sourceControlType) {
  666. return getSourceControlWithResponseAsync(sourceControlType)
  667. .flatMap(
  668. (SimpleResponse<SourceControlInner> res) -> {
  669. if (res.getValue() != null) {
  670. return Mono.just(res.getValue());
  671. } else {
  672. return Mono.empty();
  673. }
  674. });
  675. }
  676. /**
  677. * Description for Gets source control token.
  678. *
  679. * @param sourceControlType Type of source control.
  680. * @throws IllegalArgumentException thrown if parameters fail the validation.
  681. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  682. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  683. * @return the source control OAuth token.
  684. */
  685. @ServiceMethod(returns = ReturnType.SINGLE)
  686. public SourceControlInner getSourceControl(String sourceControlType) {
  687. return getSourceControlAsync(sourceControlType).block();
  688. }
  689. /**
  690. * Description for Updates source control token.
  691. *
  692. * @param sourceControlType Type of source control.
  693. * @param requestMessage The source control OAuth token.
  694. * @throws IllegalArgumentException thrown if parameters fail the validation.
  695. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  696. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  697. * @return the source control OAuth token.
  698. */
  699. @ServiceMethod(returns = ReturnType.SINGLE)
  700. public Mono<SimpleResponse<SourceControlInner>> updateSourceControlWithResponseAsync(
  701. String sourceControlType, SourceControlInner requestMessage) {
  702. return FluxUtil
  703. .withContext(
  704. context ->
  705. service
  706. .updateSourceControl(
  707. this.getHost(), sourceControlType, this.getApiVersion(), requestMessage, context))
  708. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.getContext())));
  709. }
  710. /**
  711. * Description for Updates source control token.
  712. *
  713. * @param sourceControlType Type of source control.
  714. * @param requestMessage The source control OAuth token.
  715. * @throws IllegalArgumentException thrown if parameters fail the validation.
  716. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  717. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  718. * @return the source control OAuth token.
  719. */
  720. @ServiceMethod(returns = ReturnType.SINGLE)
  721. public Mono<SourceControlInner> updateSourceControlAsync(
  722. String sourceControlType, SourceControlInner requestMessage) {
  723. return updateSourceControlWithResponseAsync(sourceControlType, requestMessage)
  724. .flatMap(
  725. (SimpleResponse<SourceControlInner> res) -> {
  726. if (res.getValue() != null) {
  727. return Mono.just(res.getValue());
  728. } else {
  729. return Mono.empty();
  730. }
  731. });
  732. }
  733. /**
  734. * Description for Updates source control token.
  735. *
  736. * @param sourceControlType Type of source control.
  737. * @param requestMessage The source control OAuth token.
  738. * @throws IllegalArgumentException thrown if parameters fail the validation.
  739. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  740. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  741. * @return the source control OAuth token.
  742. */
  743. @ServiceMethod(returns = ReturnType.SINGLE)
  744. public SourceControlInner updateSourceControl(String sourceControlType, SourceControlInner requestMessage) {
  745. return updateSourceControlAsync(sourceControlType, requestMessage).block();
  746. }
  747. /**
  748. * Description for Gets a list of meters for a given location.
  749. *
  750. * @param billingLocation Azure Location of billable resource.
  751. * @param osType App Service OS type meters used for.
  752. * @throws IllegalArgumentException thrown if parameters fail the validation.
  753. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  754. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  755. * @return collection of Billing Meters.
  756. */
  757. @ServiceMethod(returns = ReturnType.SINGLE)
  758. public Mono<PagedResponse<BillingMeterInner>> listSinglePageAsync(String billingLocation, String osType) {
  759. return FluxUtil
  760. .withContext(
  761. context ->
  762. service
  763. .list(
  764. this.getHost(),
  765. billingLocation,
  766. osType,
  767. this.getSubscriptionId(),
  768. this.getApiVersion(),
  769. context))
  770. .<PagedResponse<BillingMeterInner>>map(
  771. res ->
  772. new PagedResponseBase<>(
  773. res.getRequest(),
  774. res.getStatusCode(),
  775. res.getHeaders(),
  776. res.getValue().value(),
  777. res.getValue().nextLink(),
  778. null))
  779. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.getContext())));
  780. }
  781. /**
  782. * Description for Gets a list of meters for a given location.
  783. *
  784. * @param billingLocation Azure Location of billable resource.
  785. * @param osType App Service OS type meters used for.
  786. * @throws IllegalArgumentException thrown if parameters fail the validation.
  787. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  788. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  789. * @return collection of Billing Meters.
  790. */
  791. @ServiceMethod(returns = ReturnType.COLLECTION)
  792. public PagedFlux<BillingMeterInner> listAsync(String billingLocation, String osType) {
  793. return new PagedFlux<>(
  794. () -> listSinglePageAsync(billingLocation, osType),
  795. nextLink -> listBillingMetersNextSinglePageAsync(nextLink));
  796. }
  797. /**
  798. * Description for Gets a list of meters for a given location.
  799. *
  800. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  801. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  802. * @return collection of Billing Meters.
  803. */
  804. @ServiceMethod(returns = ReturnType.COLLECTION)
  805. public PagedFlux<BillingMeterInner> listAsync() {
  806. final String billingLocation = null;
  807. final String osType = null;
  808. final Context context = null;
  809. return new PagedFlux<>(
  810. () -> listSinglePageAsync(billingLocation, osType),
  811. nextLink -> listBillingMetersNextSinglePageAsync(nextLink));
  812. }
  813. /**
  814. * Description for Gets a list of meters for a given location.
  815. *
  816. * @param billingLocation Azure Location of billable resource.
  817. * @param osType App Service OS type meters used for.
  818. * @throws IllegalArgumentException thrown if parameters fail the validation.
  819. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  820. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  821. * @return collection of Billing Meters.
  822. */
  823. @ServiceMethod(returns = ReturnType.COLLECTION)
  824. public PagedIterable<BillingMeterInner> list(String billingLocation, String osType) {
  825. return new PagedIterable<>(listAsync(billingLocation, osType));
  826. }
  827. /**
  828. * Description for Gets a list of meters for a given location.
  829. *
  830. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  831. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  832. * @return collection of Billing Meters.
  833. */
  834. @ServiceMethod(returns = ReturnType.COLLECTION)
  835. public PagedIterable<BillingMeterInner> list() {
  836. final String billingLocation = null;
  837. final String osType = null;
  838. final Context context = null;
  839. return new PagedIterable<>(listAsync(billingLocation, osType));
  840. }
  841. /**
  842. * Description for Check if a resource name is available.
  843. *
  844. * @param name Resource name to verify.
  845. * @param type Resource type used for verification.
  846. * @param isFqdn Is fully qualified domain name.
  847. * @throws IllegalArgumentException thrown if parameters fail the validation.
  848. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  849. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  850. * @return information regarding availability of a resource name.
  851. */
  852. @ServiceMethod(returns = ReturnType.SINGLE)
  853. public Mono<SimpleResponse<ResourceNameAvailabilityInner>> checkNameAvailabilityWithResponseAsync(
  854. String name, CheckNameResourceTypes type, Boolean isFqdn) {
  855. ResourceNameAvailabilityRequest request = new ResourceNameAvailabilityRequest();
  856. request.withName(name);
  857. request.withType(type);
  858. request.withIsFqdn(isFqdn);
  859. return FluxUtil
  860. .withContext(
  861. context ->
  862. service
  863. .checkNameAvailability(
  864. this.getHost(), this.getSubscriptionId(), this.getApiVersion(), request, context))
  865. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.getContext())));
  866. }
  867. /**
  868. * Description for Check if a resource name is available.
  869. *
  870. * @param name Resource name to verify.
  871. * @param type Resource type used for verification.
  872. * @param isFqdn Is fully qualified domain name.
  873. * @throws IllegalArgumentException thrown if parameters fail the validation.
  874. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  875. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  876. * @return information regarding availability of a resource name.
  877. */
  878. @ServiceMethod(returns = ReturnType.SINGLE)
  879. public Mono<ResourceNameAvailabilityInner> checkNameAvailabilityAsync(
  880. String name, CheckNameResourceTypes type, Boolean isFqdn) {
  881. return checkNameAvailabilityWithResponseAsync(name, type, isFqdn)
  882. .flatMap(
  883. (SimpleResponse<ResourceNameAvailabilityInner> res) -> {
  884. if (res.getValue() != null) {
  885. return Mono.just(res.getValue());
  886. } else {
  887. return Mono.empty();
  888. }
  889. });
  890. }
  891. /**
  892. * Description for Check if a resource name is available.
  893. *
  894. * @param name Resource name to verify.
  895. * @param type Resource type used for verification.
  896. * @param isFqdn Is fully qualified domain name.
  897. * @throws IllegalArgumentException thrown if parameters fail the validation.
  898. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  899. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  900. * @return information regarding availability of a resource name.
  901. */
  902. @ServiceMethod(returns = ReturnType.SINGLE)
  903. public ResourceNameAvailabilityInner checkNameAvailability(
  904. String name, CheckNameResourceTypes type, Boolean isFqdn) {
  905. return checkNameAvailabilityAsync(name, type, isFqdn).block();
  906. }
  907. /**
  908. * Description for Gets list of available geo regions plus ministamps.
  909. *
  910. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  911. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  912. * @return list of available locations (regions or App Service Environments) for deployment of App Service
  913. * resources.
  914. */
  915. @ServiceMethod(returns = ReturnType.SINGLE)
  916. public Mono<SimpleResponse<DeploymentLocationsInner>> getSubscriptionDeploymentLocationsWithResponseAsync() {
  917. return FluxUtil
  918. .withContext(
  919. context ->
  920. service
  921. .getSubscriptionDeploymentLocations(
  922. this.getHost(), this.getSubscriptionId(), this.getApiVersion(), context))
  923. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.getContext())));
  924. }
  925. /**
  926. * Description for Gets list of available geo regions plus ministamps.
  927. *
  928. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  929. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  930. * @return list of available locations (regions or App Service Environments) for deployment of App Service
  931. * resources.
  932. */
  933. @ServiceMethod(returns = ReturnType.SINGLE)
  934. public Mono<DeploymentLocationsInner> getSubscriptionDeploymentLocationsAsync() {
  935. return getSubscriptionDeploymentLocationsWithResponseAsync()
  936. .flatMap(
  937. (SimpleResponse<DeploymentLocationsInner> res) -> {
  938. if (res.getValue() != null) {
  939. return Mono.just(res.getValue());
  940. } else {
  941. return Mono.empty();
  942. }
  943. });
  944. }
  945. /**
  946. * Description for Gets list of available geo regions plus ministamps.
  947. *
  948. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  949. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  950. * @return list of available locations (regions or App Service Environments) for deployment of App Service
  951. * resources.
  952. */
  953. @ServiceMethod(returns = ReturnType.SINGLE)
  954. public DeploymentLocationsInner getSubscriptionDeploymentLocations() {
  955. return getSubscriptionDeploymentLocationsAsync().block();
  956. }
  957. /**
  958. * Description for Get a list of available geographical regions.
  959. *
  960. * @param sku Name of SKU used to filter the regions.
  961. * @param linuxWorkersEnabled Specify &lt;code&gt;true&lt;/code&gt; if you want to filter to only regions that
  962. * support Linux workers.
  963. * @param xenonWorkersEnabled Specify &lt;code&gt;true&lt;/code&gt; if you want to filter to only regions that
  964. * support Xenon workers.
  965. * @param linuxDynamicWorkersEnabled Specify &lt;code&gt;true&lt;/code&gt; if you want to filter to only regions
  966. * that support Linux Consumption Workers.
  967. * @throws IllegalArgumentException thrown if parameters fail the validation.
  968. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  969. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  970. * @return collection of geographical regions.
  971. */
  972. @ServiceMethod(returns = ReturnType.SINGLE)
  973. public Mono<PagedResponse<GeoRegionInner>> listGeoRegionsSinglePageAsync(
  974. SkuName sku, Boolean linuxWorkersEnabled, Boolean xenonWorkersEnabled, Boolean linuxDynamicWorkersEnabled) {
  975. return FluxUtil
  976. .withContext(
  977. context ->
  978. service
  979. .listGeoRegions(
  980. this.getHost(),
  981. sku,
  982. linuxWorkersEnabled,
  983. xenonWorkersEnabled,
  984. linuxDynamicWorkersEnabled,
  985. this.getSubscriptionId(),
  986. this.getApiVersion(),
  987. context))
  988. .<PagedResponse<GeoRegionInner>>map(
  989. res ->
  990. new PagedResponseBase<>(
  991. res.getRequest(),
  992. res.getStatusCode(),
  993. res.getHeaders(),
  994. res.getValue().value(),
  995. res.getValue().nextLink(),
  996. null))
  997. .subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.getContext())));
  998. }
  999. /**
  1000. * Description for Get a list of available geographical regions.
  1001. *
  1002. * @param sku Name of SKU used to filter the regions.
  1003. * @param linuxWorkersEnabled Specify &lt;code&gt;true&lt;/code&gt; if you want to filter to only regions that
  1004. * support Linux workers.
  1005. * @param xenonWorkersEnabled Specify &lt;code&gt;true&lt;/code&gt; if you want to filter to only regions that
  1006. * support Xenon workers.
  1007. * @param linuxDynamicWorkersEnabled Specify &lt;code&gt;true&lt;/code&gt; if you want to filter to only regions
  1008. * that support Linux Consumption Workers.
  1009. * @throws IllegalArgumentException thrown if parameters fail the validation.
  1010. * @throws DefaultErrorResponseException thrown if the request is rejected by server.
  1011. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
  1012. * @return collection of geographical regions.
  1013. */
  1014. @ServiceMethod(ret