/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/models/CloningInfo.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 361 lines · 119 code · 37 blank · 205 comment · 2 complexity · 07603426409bd178d1392f062c8f7895 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.appservice.models;
  5. import com.azure.core.annotation.Fluent;
  6. import com.azure.core.util.logging.ClientLogger;
  7. import com.fasterxml.jackson.annotation.JsonIgnore;
  8. import com.fasterxml.jackson.annotation.JsonInclude;
  9. import com.fasterxml.jackson.annotation.JsonProperty;
  10. import java.util.Map;
  11. import java.util.UUID;
  12. /** Information needed for cloning operation. */
  13. @Fluent
  14. public final class CloningInfo {
  15. @JsonIgnore private final ClientLogger logger = new ClientLogger(CloningInfo.class);
  16. /*
  17. * Correlation ID of cloning operation. This ID ties multiple cloning
  18. * operations
  19. * together to use the same snapshot.
  20. */
  21. @JsonProperty(value = "correlationId")
  22. private UUID correlationId;
  23. /*
  24. * <code>true</code> to overwrite destination app; otherwise,
  25. * <code>false</code>.
  26. */
  27. @JsonProperty(value = "overwrite")
  28. private Boolean overwrite;
  29. /*
  30. * <code>true</code> to clone custom hostnames from source app; otherwise,
  31. * <code>false</code>.
  32. */
  33. @JsonProperty(value = "cloneCustomHostNames")
  34. private Boolean cloneCustomHostNames;
  35. /*
  36. * <code>true</code> to clone source control from source app; otherwise,
  37. * <code>false</code>.
  38. */
  39. @JsonProperty(value = "cloneSourceControl")
  40. private Boolean cloneSourceControl;
  41. /*
  42. * ARM resource ID of the source app. App resource ID is of the form
  43. * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}
  44. * for production slots and
  45. * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName}
  46. * for other slots.
  47. */
  48. @JsonProperty(value = "sourceWebAppId", required = true)
  49. private String sourceWebAppId;
  50. /*
  51. * Location of source app ex: West US or North Europe
  52. */
  53. @JsonProperty(value = "sourceWebAppLocation")
  54. private String sourceWebAppLocation;
  55. /*
  56. * App Service Environment.
  57. */
  58. @JsonProperty(value = "hostingEnvironment")
  59. private String hostingEnvironment;
  60. /*
  61. * Application setting overrides for cloned app. If specified, these
  62. * settings override the settings cloned
  63. * from source app. Otherwise, application settings from source app are
  64. * retained.
  65. */
  66. @JsonProperty(value = "appSettingsOverrides")
  67. @JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
  68. private Map<String, String> appSettingsOverrides;
  69. /*
  70. * <code>true</code> to configure load balancing for source and destination
  71. * app.
  72. */
  73. @JsonProperty(value = "configureLoadBalancing")
  74. private Boolean configureLoadBalancing;
  75. /*
  76. * ARM resource ID of the Traffic Manager profile to use, if it exists.
  77. * Traffic Manager resource ID is of the form
  78. * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{profileName}.
  79. */
  80. @JsonProperty(value = "trafficManagerProfileId")
  81. private String trafficManagerProfileId;
  82. /*
  83. * Name of Traffic Manager profile to create. This is only needed if
  84. * Traffic Manager profile does not already exist.
  85. */
  86. @JsonProperty(value = "trafficManagerProfileName")
  87. private String trafficManagerProfileName;
  88. /**
  89. * Get the correlationId property: Correlation ID of cloning operation. This ID ties multiple cloning operations
  90. * together to use the same snapshot.
  91. *
  92. * @return the correlationId value.
  93. */
  94. public UUID correlationId() {
  95. return this.correlationId;
  96. }
  97. /**
  98. * Set the correlationId property: Correlation ID of cloning operation. This ID ties multiple cloning operations
  99. * together to use the same snapshot.
  100. *
  101. * @param correlationId the correlationId value to set.
  102. * @return the CloningInfo object itself.
  103. */
  104. public CloningInfo withCorrelationId(UUID correlationId) {
  105. this.correlationId = correlationId;
  106. return this;
  107. }
  108. /**
  109. * Get the overwrite property: &lt;code&gt;true&lt;/code&gt; to overwrite destination app; otherwise,
  110. * &lt;code&gt;false&lt;/code&gt;.
  111. *
  112. * @return the overwrite value.
  113. */
  114. public Boolean overwrite() {
  115. return this.overwrite;
  116. }
  117. /**
  118. * Set the overwrite property: &lt;code&gt;true&lt;/code&gt; to overwrite destination app; otherwise,
  119. * &lt;code&gt;false&lt;/code&gt;.
  120. *
  121. * @param overwrite the overwrite value to set.
  122. * @return the CloningInfo object itself.
  123. */
  124. public CloningInfo withOverwrite(Boolean overwrite) {
  125. this.overwrite = overwrite;
  126. return this;
  127. }
  128. /**
  129. * Get the cloneCustomHostNames property: &lt;code&gt;true&lt;/code&gt; to clone custom hostnames from source app;
  130. * otherwise, &lt;code&gt;false&lt;/code&gt;.
  131. *
  132. * @return the cloneCustomHostNames value.
  133. */
  134. public Boolean cloneCustomHostNames() {
  135. return this.cloneCustomHostNames;
  136. }
  137. /**
  138. * Set the cloneCustomHostNames property: &lt;code&gt;true&lt;/code&gt; to clone custom hostnames from source app;
  139. * otherwise, &lt;code&gt;false&lt;/code&gt;.
  140. *
  141. * @param cloneCustomHostNames the cloneCustomHostNames value to set.
  142. * @return the CloningInfo object itself.
  143. */
  144. public CloningInfo withCloneCustomHostNames(Boolean cloneCustomHostNames) {
  145. this.cloneCustomHostNames = cloneCustomHostNames;
  146. return this;
  147. }
  148. /**
  149. * Get the cloneSourceControl property: &lt;code&gt;true&lt;/code&gt; to clone source control from source app;
  150. * otherwise, &lt;code&gt;false&lt;/code&gt;.
  151. *
  152. * @return the cloneSourceControl value.
  153. */
  154. public Boolean cloneSourceControl() {
  155. return this.cloneSourceControl;
  156. }
  157. /**
  158. * Set the cloneSourceControl property: &lt;code&gt;true&lt;/code&gt; to clone source control from source app;
  159. * otherwise, &lt;code&gt;false&lt;/code&gt;.
  160. *
  161. * @param cloneSourceControl the cloneSourceControl value to set.
  162. * @return the CloningInfo object itself.
  163. */
  164. public CloningInfo withCloneSourceControl(Boolean cloneSourceControl) {
  165. this.cloneSourceControl = cloneSourceControl;
  166. return this;
  167. }
  168. /**
  169. * Get the sourceWebAppId property: ARM resource ID of the source app. App resource ID is of the form
  170. * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production
  171. * slots and
  172. * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName}
  173. * for other slots.
  174. *
  175. * @return the sourceWebAppId value.
  176. */
  177. public String sourceWebAppId() {
  178. return this.sourceWebAppId;
  179. }
  180. /**
  181. * Set the sourceWebAppId property: ARM resource ID of the source app. App resource ID is of the form
  182. * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production
  183. * slots and
  184. * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName}
  185. * for other slots.
  186. *
  187. * @param sourceWebAppId the sourceWebAppId value to set.
  188. * @return the CloningInfo object itself.
  189. */
  190. public CloningInfo withSourceWebAppId(String sourceWebAppId) {
  191. this.sourceWebAppId = sourceWebAppId;
  192. return this;
  193. }
  194. /**
  195. * Get the sourceWebAppLocation property: Location of source app ex: West US or North Europe.
  196. *
  197. * @return the sourceWebAppLocation value.
  198. */
  199. public String sourceWebAppLocation() {
  200. return this.sourceWebAppLocation;
  201. }
  202. /**
  203. * Set the sourceWebAppLocation property: Location of source app ex: West US or North Europe.
  204. *
  205. * @param sourceWebAppLocation the sourceWebAppLocation value to set.
  206. * @return the CloningInfo object itself.
  207. */
  208. public CloningInfo withSourceWebAppLocation(String sourceWebAppLocation) {
  209. this.sourceWebAppLocation = sourceWebAppLocation;
  210. return this;
  211. }
  212. /**
  213. * Get the hostingEnvironment property: App Service Environment.
  214. *
  215. * @return the hostingEnvironment value.
  216. */
  217. public String hostingEnvironment() {
  218. return this.hostingEnvironment;
  219. }
  220. /**
  221. * Set the hostingEnvironment property: App Service Environment.
  222. *
  223. * @param hostingEnvironment the hostingEnvironment value to set.
  224. * @return the CloningInfo object itself.
  225. */
  226. public CloningInfo withHostingEnvironment(String hostingEnvironment) {
  227. this.hostingEnvironment = hostingEnvironment;
  228. return this;
  229. }
  230. /**
  231. * Get the appSettingsOverrides property: Application setting overrides for cloned app. If specified, these settings
  232. * override the settings cloned from source app. Otherwise, application settings from source app are retained.
  233. *
  234. * @return the appSettingsOverrides value.
  235. */
  236. public Map<String, String> appSettingsOverrides() {
  237. return this.appSettingsOverrides;
  238. }
  239. /**
  240. * Set the appSettingsOverrides property: Application setting overrides for cloned app. If specified, these settings
  241. * override the settings cloned from source app. Otherwise, application settings from source app are retained.
  242. *
  243. * @param appSettingsOverrides the appSettingsOverrides value to set.
  244. * @return the CloningInfo object itself.
  245. */
  246. public CloningInfo withAppSettingsOverrides(Map<String, String> appSettingsOverrides) {
  247. this.appSettingsOverrides = appSettingsOverrides;
  248. return this;
  249. }
  250. /**
  251. * Get the configureLoadBalancing property: &lt;code&gt;true&lt;/code&gt; to configure load balancing for source and
  252. * destination app.
  253. *
  254. * @return the configureLoadBalancing value.
  255. */
  256. public Boolean configureLoadBalancing() {
  257. return this.configureLoadBalancing;
  258. }
  259. /**
  260. * Set the configureLoadBalancing property: &lt;code&gt;true&lt;/code&gt; to configure load balancing for source and
  261. * destination app.
  262. *
  263. * @param configureLoadBalancing the configureLoadBalancing value to set.
  264. * @return the CloningInfo object itself.
  265. */
  266. public CloningInfo withConfigureLoadBalancing(Boolean configureLoadBalancing) {
  267. this.configureLoadBalancing = configureLoadBalancing;
  268. return this;
  269. }
  270. /**
  271. * Get the trafficManagerProfileId property: ARM resource ID of the Traffic Manager profile to use, if it exists.
  272. * Traffic Manager resource ID is of the form
  273. * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{profileName}.
  274. *
  275. * @return the trafficManagerProfileId value.
  276. */
  277. public String trafficManagerProfileId() {
  278. return this.trafficManagerProfileId;
  279. }
  280. /**
  281. * Set the trafficManagerProfileId property: ARM resource ID of the Traffic Manager profile to use, if it exists.
  282. * Traffic Manager resource ID is of the form
  283. * /subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{profileName}.
  284. *
  285. * @param trafficManagerProfileId the trafficManagerProfileId value to set.
  286. * @return the CloningInfo object itself.
  287. */
  288. public CloningInfo withTrafficManagerProfileId(String trafficManagerProfileId) {
  289. this.trafficManagerProfileId = trafficManagerProfileId;
  290. return this;
  291. }
  292. /**
  293. * Get the trafficManagerProfileName property: Name of Traffic Manager profile to create. This is only needed if
  294. * Traffic Manager profile does not already exist.
  295. *
  296. * @return the trafficManagerProfileName value.
  297. */
  298. public String trafficManagerProfileName() {
  299. return this.trafficManagerProfileName;
  300. }
  301. /**
  302. * Set the trafficManagerProfileName property: Name of Traffic Manager profile to create. This is only needed if
  303. * Traffic Manager profile does not already exist.
  304. *
  305. * @param trafficManagerProfileName the trafficManagerProfileName value to set.
  306. * @return the CloningInfo object itself.
  307. */
  308. public CloningInfo withTrafficManagerProfileName(String trafficManagerProfileName) {
  309. this.trafficManagerProfileName = trafficManagerProfileName;
  310. return this;
  311. }
  312. /**
  313. * Validates the instance.
  314. *
  315. * @throws IllegalArgumentException thrown if the instance is not valid.
  316. */
  317. public void validate() {
  318. if (sourceWebAppId() == null) {
  319. throw logger
  320. .logExceptionAsError(
  321. new IllegalArgumentException("Missing required property sourceWebAppId in model CloningInfo"));
  322. }
  323. }
  324. }