/sdk/appservice/mgmt/src/main/java/com/azure/management/appservice/WebApp.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 510 lines · 114 code · 56 blank · 340 comment · 0 complexity · 01b347f5d02e5e619bb51be155a81d45 MD5 · raw file

  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License.
  3. package com.azure.management.appservice;
  4. import com.azure.core.annotation.Fluent;
  5. import com.azure.management.resources.ResourceGroup;
  6. import com.azure.management.resources.fluentcore.arm.models.GroupableResource;
  7. import com.azure.management.resources.fluentcore.model.Appliable;
  8. import com.azure.management.resources.fluentcore.model.Creatable;
  9. import com.azure.management.resources.fluentcore.model.Refreshable;
  10. import com.azure.management.resources.fluentcore.model.Updatable;
  11. import java.io.File;
  12. import java.io.InputStream;
  13. import reactor.core.publisher.Mono;
  14. /** An immutable client-side representation of an Azure Web App. */
  15. @Fluent
  16. public interface WebApp extends WebAppBase, Refreshable<WebApp>, Updatable<WebApp.Update> {
  17. /** @return the entry point to deployment slot management API under the web app */
  18. DeploymentSlots deploymentSlots();
  19. /**
  20. * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
  21. *
  22. * @param warFile the WAR file to upload
  23. */
  24. void warDeploy(File warFile);
  25. /**
  26. * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
  27. *
  28. * @param warFile the WAR file to upload
  29. * @return a completable of the operation
  30. */
  31. Mono<Void> warDeployAsync(File warFile);
  32. /**
  33. * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
  34. *
  35. * @param warFile the WAR file to upload
  36. */
  37. void warDeploy(InputStream warFile);
  38. /**
  39. * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
  40. *
  41. * @param warFile the WAR file to upload
  42. * @return a completable of the operation
  43. */
  44. Mono<Void> warDeployAsync(InputStream warFile);
  45. /**
  46. * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
  47. *
  48. * @param warFile the WAR file to upload
  49. * @param appName the name of the app, default to "ROOT" when not provided
  50. */
  51. void warDeploy(File warFile, String appName);
  52. /**
  53. * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
  54. *
  55. * @param warFile the WAR file to upload
  56. * @param appName the name of the app, default to "ROOT" when not provided
  57. * @return a completable of the operation
  58. */
  59. Mono<Void> warDeployAsync(File warFile, String appName);
  60. /**
  61. * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
  62. *
  63. * @param warFile the WAR file to upload
  64. * @param appName the name of the app, default to "ROOT" when not provided
  65. */
  66. void warDeploy(InputStream warFile, String appName);
  67. /**
  68. * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
  69. *
  70. * @param warFile the WAR file to upload
  71. * @param appName the name of the app, default to "ROOT" when not provided
  72. * @return a completable of the operation
  73. */
  74. Mono<Void> warDeployAsync(InputStream warFile, String appName);
  75. /**************************************************************
  76. * Fluent interfaces to provision a Web App
  77. **************************************************************/
  78. /** Container interface for all the definitions that need to be implemented. */
  79. interface Definition
  80. extends DefinitionStages.Blank,
  81. DefinitionStages.NewAppServicePlanWithGroup,
  82. DefinitionStages.WithNewAppServicePlan,
  83. DefinitionStages.WithDockerContainerImage,
  84. DefinitionStages.WithCredentials,
  85. DefinitionStages.WithStartUpCommand,
  86. DefinitionStages.WithCreate {
  87. }
  88. /** Grouping of all the web app definition stages. */
  89. interface DefinitionStages {
  90. /** The first stage of the web app definition. */
  91. interface Blank extends DefinitionWithRegion<NewAppServicePlanWithGroup> {
  92. /**
  93. * Uses an existing app service plan for the web app.
  94. *
  95. * @param appServicePlan the existing app service plan
  96. * @return the next stage of the definition
  97. */
  98. ExistingWindowsPlanWithGroup withExistingWindowsPlan(AppServicePlan appServicePlan);
  99. /**
  100. * Uses an existing app service plan for the web app.
  101. *
  102. * @param appServicePlan the existing app service plan
  103. * @return the next stage of the definition
  104. */
  105. ExistingLinuxPlanWithGroup withExistingLinuxPlan(AppServicePlan appServicePlan);
  106. }
  107. /** A web app definition allowing resource group to be specified when an existing app service plan is used. */
  108. interface NewAppServicePlanWithGroup
  109. extends GroupableResource.DefinitionStages.WithGroup<WithNewAppServicePlan> {
  110. }
  111. /**
  112. * A web app definition allowing resource group to be specified when a new app service plan is to be created.
  113. */
  114. interface ExistingWindowsPlanWithGroup {
  115. /**
  116. * Associates the resource with an existing resource group.
  117. *
  118. * @param groupName the name of an existing resource group to put this resource in.
  119. * @return the next stage of the definition
  120. */
  121. WithWindowsRuntimeStack withExistingResourceGroup(String groupName);
  122. /**
  123. * Associates the resource with an existing resource group.
  124. *
  125. * @param group an existing resource group to put the resource in
  126. * @return the next stage of the definition
  127. */
  128. WithWindowsRuntimeStack withExistingResourceGroup(ResourceGroup group);
  129. /**
  130. * Creates a new resource group to put the resource in.
  131. *
  132. * <p>The group will be created in the same location as the resource.
  133. *
  134. * @param name the name of the new group
  135. * @return the next stage of the definition
  136. */
  137. WithWindowsRuntimeStack withNewResourceGroup(String name);
  138. /**
  139. * Creates a new resource group to put the resource in.
  140. *
  141. * <p>The group will be created in the same location as the resource. The group's name is automatically
  142. * derived from the resource's name.
  143. *
  144. * @return the next stage of the definition
  145. */
  146. WithWindowsRuntimeStack withNewResourceGroup();
  147. /**
  148. * Creates a new resource group to put the resource in, based on the definition specified.
  149. *
  150. * @param groupDefinition a creatable definition for a new resource group
  151. * @return the next stage of the definition
  152. */
  153. WithWindowsRuntimeStack withNewResourceGroup(Creatable<ResourceGroup> groupDefinition);
  154. }
  155. /**
  156. * A web app definition allowing resource group to be specified when a new app service plan is to be created.
  157. */
  158. interface ExistingLinuxPlanWithGroup {
  159. /**
  160. * Associates the resource with an existing resource group.
  161. *
  162. * @param groupName the name of an existing resource group to put this resource in.
  163. * @return the next stage of the definition
  164. */
  165. WithDockerContainerImage withExistingResourceGroup(String groupName);
  166. /**
  167. * Associates the resource with an existing resource group.
  168. *
  169. * @param group an existing resource group to put the resource in
  170. * @return the next stage of the definition
  171. */
  172. WithDockerContainerImage withExistingResourceGroup(ResourceGroup group);
  173. /**
  174. * Creates a new resource group to put the resource in.
  175. *
  176. * <p>The group will be created in the same location as the resource.
  177. *
  178. * @param name the name of the new group
  179. * @return the next stage of the definition
  180. */
  181. WithDockerContainerImage withNewResourceGroup(String name);
  182. /**
  183. * Creates a new resource group to put the resource in.
  184. *
  185. * <p>The group will be created in the same location as the resource. The group's name is automatically
  186. * derived from the resource's name.
  187. *
  188. * @return the next stage of the definition
  189. */
  190. WithDockerContainerImage withNewResourceGroup();
  191. /**
  192. * Creates a new resource group to put the resource in, based on the definition specified.
  193. *
  194. * @param groupDefinition a creatable definition for a new resource group
  195. * @return the next stage of the definition
  196. */
  197. WithDockerContainerImage withNewResourceGroup(Creatable<ResourceGroup> groupDefinition);
  198. }
  199. /** A web app definition allowing app service plan to be set. */
  200. interface WithNewAppServicePlan {
  201. /**
  202. * Creates a new free app service plan. This will fail if there are 10 or more free plans in the current
  203. * subscription.
  204. *
  205. * @return the next stage of the definition
  206. */
  207. WithWindowsRuntimeStack withNewFreeAppServicePlan();
  208. /**
  209. * Creates a new shared app service plan.
  210. *
  211. * @return the next stage of the definition
  212. */
  213. WithWindowsRuntimeStack withNewSharedAppServicePlan();
  214. /**
  215. * Creates a new app service plan to use.
  216. *
  217. * @param pricingTier the sku of the app service plan
  218. * @return the next stage of the definition
  219. */
  220. WithWindowsRuntimeStack withNewWindowsPlan(PricingTier pricingTier);
  221. /**
  222. * Creates a new app service plan to use.
  223. *
  224. * @param appServicePlanName the name of the new app service plan
  225. * @param pricingTier the sku of the app service plan
  226. * @return the next stage of the definition
  227. */
  228. WithWindowsRuntimeStack withNewWindowsPlan(String appServicePlanName, PricingTier pricingTier);
  229. /**
  230. * Creates a new app service plan to use.
  231. *
  232. * @param appServicePlanCreatable the new app service plan creatable
  233. * @return the next stage of the definition
  234. */
  235. WithWindowsRuntimeStack withNewWindowsPlan(Creatable<AppServicePlan> appServicePlanCreatable);
  236. /**
  237. * Creates a new app service plan to use.
  238. *
  239. * @param pricingTier the sku of the app service plan
  240. * @return the next stage of the definition
  241. */
  242. WithDockerContainerImage withNewLinuxPlan(PricingTier pricingTier);
  243. /**
  244. * Creates a new app service plan to use.
  245. *
  246. * @param appServicePlanName the name of the new app service plan
  247. * @param pricingTier the sku of the app service plan
  248. * @return the next stage of the definition
  249. */
  250. WithDockerContainerImage withNewLinuxPlan(String appServicePlanName, PricingTier pricingTier);
  251. /**
  252. * Creates a new app service plan to use.
  253. *
  254. * @param appServicePlanCreatable the new app service plan creatable
  255. * @return the next stage of the definition
  256. */
  257. WithDockerContainerImage withNewLinuxPlan(Creatable<AppServicePlan> appServicePlanCreatable);
  258. }
  259. /** A web app definition allowing docker image source to be specified. */
  260. interface WithDockerContainerImage {
  261. /**
  262. * Specifies the docker container image to be a built in one.
  263. *
  264. * @param runtimeStack the runtime stack installed on the image
  265. * @return the next stage of the definition
  266. */
  267. WithCreate withBuiltInImage(RuntimeStack runtimeStack);
  268. /**
  269. * Specifies the docker container image to be one from Docker Hub.
  270. *
  271. * @param imageAndTag image and optional tag (eg 'image:tag')
  272. * @return the next stage of the definition
  273. */
  274. WithStartUpCommand withPublicDockerHubImage(String imageAndTag);
  275. /**
  276. * Specifies the docker container image to be one from Docker Hub.
  277. *
  278. * @param imageAndTag image and optional tag (eg 'image:tag')
  279. * @return the next stage of the definition
  280. */
  281. WithCredentials withPrivateDockerHubImage(String imageAndTag);
  282. /**
  283. * Specifies the docker container image to be one from a private registry.
  284. *
  285. * @param imageAndTag image and optional tag (eg 'image:tag')
  286. * @param serverUrl the URL to the private registry server
  287. * @return the next stage of the definition
  288. */
  289. WithCredentials withPrivateRegistryImage(String imageAndTag, String serverUrl);
  290. }
  291. /** A web app definition allowing docker registry credentials to be set. */
  292. interface WithCredentials {
  293. /**
  294. * Specifies the username and password for Docker Hub or the docker registry.
  295. *
  296. * @param username the username for Docker Hub or the docker registry
  297. * @param password the password for Docker Hub or the docker registry
  298. * @return the next stage of the definition
  299. */
  300. WithStartUpCommand withCredentials(String username, String password);
  301. }
  302. /**
  303. * A web app definition allowing docker startup command to be specified. This will replace the "CMD" section in
  304. * the Dockerfile.
  305. */
  306. interface WithStartUpCommand extends WithCreate {
  307. /**
  308. * Specifies the startup command.
  309. *
  310. * @param startUpCommand startup command to replace "CMD" in Dockerfile
  311. * @return the next stage of the definition
  312. */
  313. WithCreate withStartUpCommand(String startUpCommand);
  314. }
  315. /** A web app definition allowing runtime stack on Windows operating system to be specified. */
  316. interface WithWindowsRuntimeStack extends WithCreate {
  317. /**
  318. * Specifies the runtime stack for the web app on Windows operating system.
  319. *
  320. * @param runtimeStack the runtime stack for web app
  321. * @return the next stage of the definition
  322. */
  323. WithCreate withRuntimeStack(WebAppRuntimeStack runtimeStack);
  324. }
  325. /**
  326. * A site definition with sufficient inputs to create a new web app / deployments slot in the cloud, but
  327. * exposing additional optional inputs to specify.
  328. */
  329. interface WithCreate extends Creatable<WebApp>, WebAppBase.DefinitionStages.WithCreate<WebApp> {
  330. }
  331. }
  332. /** Grouping of all the web app update stages. */
  333. interface UpdateStages {
  334. /** A web app update allowing app service plan to be set. */
  335. interface WithAppServicePlan {
  336. /**
  337. * Creates a new free app service plan. This will fail if there are 10 or more free plans in the current
  338. * subscription.
  339. *
  340. * @return the next stage of the web app update
  341. */
  342. Update withNewFreeAppServicePlan();
  343. /**
  344. * Creates a new shared app service plan.
  345. *
  346. * @return the next stage of the web app update
  347. */
  348. Update withNewSharedAppServicePlan();
  349. /**
  350. * Creates a new app service plan to use.
  351. *
  352. * @param pricingTier the sku of the app service plan
  353. * @return the next stage of the web app update
  354. */
  355. Update withNewAppServicePlan(PricingTier pricingTier);
  356. /**
  357. * Creates a new app service plan to use.
  358. *
  359. * @param appServicePlanName the name of the new app service plan
  360. * @param pricingTier the sku of the app service plan
  361. * @return the next stage of the web app update
  362. */
  363. Update withNewAppServicePlan(String appServicePlanName, PricingTier pricingTier);
  364. /**
  365. * Creates a new app service plan to use.
  366. *
  367. * @param appServicePlanCreatable the new app service plan creatable
  368. * @return the next stage of the web app update
  369. */
  370. Update withNewAppServicePlan(Creatable<AppServicePlan> appServicePlanCreatable);
  371. /**
  372. * Uses an existing app service plan for the web app.
  373. *
  374. * @param appServicePlan the existing app service plan
  375. * @return the next stage of the web app update
  376. */
  377. Update withExistingAppServicePlan(AppServicePlan appServicePlan);
  378. }
  379. /** A web app update allowing docker image source to be specified. */
  380. interface WithDockerContainerImage {
  381. /**
  382. * Specifies the docker container image to be a built in one.
  383. *
  384. * @param runtimeStack the runtime stack installed on the image
  385. * @return the next stage of the web app update
  386. */
  387. Update withBuiltInImage(RuntimeStack runtimeStack);
  388. /**
  389. * Specifies the docker container image to be one from Docker Hub.
  390. *
  391. * @param imageAndTag image and optional tag (eg 'image:tag')
  392. * @return the next stage of the web app update
  393. */
  394. WithStartUpCommand withPublicDockerHubImage(String imageAndTag);
  395. /**
  396. * Specifies the docker container image to be one from Docker Hub.
  397. *
  398. * @param imageAndTag image and optional tag (eg 'image:tag')
  399. * @return the next stage of the web app update
  400. */
  401. WithCredentials withPrivateDockerHubImage(String imageAndTag);
  402. /**
  403. * Specifies the docker container image to be one from a private registry.
  404. *
  405. * @param imageAndTag image and optional tag (eg 'image:tag')
  406. * @param serverUrl the URL to the private registry server
  407. * @return the next stage of the web app update
  408. */
  409. WithCredentials withPrivateRegistryImage(String imageAndTag, String serverUrl);
  410. }
  411. /** A web app update allowing docker hub credentials to be set. */
  412. interface WithCredentials {
  413. /**
  414. * Specifies the username and password for Docker Hub.
  415. *
  416. * @param username the username for Docker Hub
  417. * @param password the password for Docker Hub
  418. * @return the next stage of the web app update
  419. */
  420. WithStartUpCommand withCredentials(String username, String password);
  421. }
  422. /**
  423. * A web app update allowing docker startup command to be specified. This will replace the "CMD" section in the
  424. * Dockerfile.
  425. */
  426. interface WithStartUpCommand extends Update {
  427. /**
  428. * Specifies the startup command.
  429. *
  430. * @param startUpCommand startup command to replace "CMD" in Dockerfile
  431. * @return the next stage of the web app update
  432. */
  433. Update withStartUpCommand(String startUpCommand);
  434. }
  435. /** A web app update allowing runtime stack on Windows operating system to be specified. */
  436. interface WithWindowsRuntimeStack {
  437. /**
  438. * Specifies the runtime stack for the web app on Windows operating system.
  439. *
  440. * @param runtimeStack the runtime stack for web app
  441. * @return the next stage of the web app update
  442. */
  443. Update withRuntimeStack(WebAppRuntimeStack runtimeStack);
  444. }
  445. }
  446. /** The template for a web app update operation, containing all the settings that can be modified. */
  447. interface Update
  448. extends Appliable<WebApp>,
  449. UpdateStages.WithAppServicePlan,
  450. UpdateStages.WithWindowsRuntimeStack,
  451. WebAppBase.Update<WebApp>,
  452. UpdateStages.WithDockerContainerImage {
  453. }
  454. }