/sdk/appservice/mgmt-v2018_02_01/src/main/java/com/microsoft/azure/management/appservice/v2018_02_01/AppServiceCertificateOrder.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 351 lines · 96 code · 42 blank · 213 comment · 0 complexity · 10dc2e1f5fce03c7533461531b5159fe MD5 · raw file

  1. /**
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for
  4. * license information.
  5. *
  6. * Code generated by Microsoft (R) AutoRest Code Generator.
  7. */
  8. package com.microsoft.azure.management.appservice.v2018_02_01;
  9. import com.microsoft.azure.arm.model.HasInner;
  10. import com.microsoft.azure.arm.resources.models.Resource;
  11. import com.microsoft.azure.arm.resources.models.GroupableResourceCore;
  12. import com.microsoft.azure.arm.resources.models.HasResourceGroup;
  13. import com.microsoft.azure.arm.model.Refreshable;
  14. import com.microsoft.azure.arm.model.Updatable;
  15. import com.microsoft.azure.arm.model.Appliable;
  16. import com.microsoft.azure.arm.model.Creatable;
  17. import com.microsoft.azure.arm.resources.models.HasManager;
  18. import com.microsoft.azure.management.appservice.v2018_02_01.implementation.AppServiceManager;
  19. import java.util.Map;
  20. import org.joda.time.DateTime;
  21. import java.util.List;
  22. import com.microsoft.azure.management.appservice.v2018_02_01.implementation.AppServiceCertificateOrderInner;
  23. /**
  24. * Type representing AppServiceCertificateOrder.
  25. */
  26. public interface AppServiceCertificateOrder extends HasInner<AppServiceCertificateOrderInner>, Resource, GroupableResourceCore<AppServiceManager, AppServiceCertificateOrderInner>, HasResourceGroup, Refreshable<AppServiceCertificateOrder>, Updatable<AppServiceCertificateOrder.Update>, HasManager<AppServiceManager> {
  27. /**
  28. * @return the appServiceCertificateNotRenewableReasons value.
  29. */
  30. List<String> appServiceCertificateNotRenewableReasons();
  31. /**
  32. * @return the autoRenew value.
  33. */
  34. Boolean autoRenew();
  35. /**
  36. * @return the certificates value.
  37. */
  38. Map<String, AppServiceCertificate> certificates();
  39. /**
  40. * @return the csr value.
  41. */
  42. String csr();
  43. /**
  44. * @return the distinguishedName value.
  45. */
  46. String distinguishedName();
  47. /**
  48. * @return the domainVerificationToken value.
  49. */
  50. String domainVerificationToken();
  51. /**
  52. * @return the expirationTime value.
  53. */
  54. DateTime expirationTime();
  55. /**
  56. * @return the intermediate value.
  57. */
  58. CertificateDetails intermediate();
  59. /**
  60. * @return the isPrivateKeyExternal value.
  61. */
  62. Boolean isPrivateKeyExternal();
  63. /**
  64. * @return the keySize value.
  65. */
  66. Integer keySize();
  67. /**
  68. * @return the kind value.
  69. */
  70. String kind();
  71. /**
  72. * @return the lastCertificateIssuanceTime value.
  73. */
  74. DateTime lastCertificateIssuanceTime();
  75. /**
  76. * @return the nextAutoRenewalTimeStamp value.
  77. */
  78. DateTime nextAutoRenewalTimeStamp();
  79. /**
  80. * @return the productType value.
  81. */
  82. CertificateProductType productType();
  83. /**
  84. * @return the provisioningState value.
  85. */
  86. ProvisioningState provisioningState();
  87. /**
  88. * @return the root value.
  89. */
  90. CertificateDetails root();
  91. /**
  92. * @return the serialNumber value.
  93. */
  94. String serialNumber();
  95. /**
  96. * @return the signedCertificate value.
  97. */
  98. CertificateDetails signedCertificate();
  99. /**
  100. * @return the status value.
  101. */
  102. CertificateOrderStatus status();
  103. /**
  104. * @return the validityInYears value.
  105. */
  106. Integer validityInYears();
  107. /**
  108. * The entirety of the AppServiceCertificateOrder definition.
  109. */
  110. interface Definition extends DefinitionStages.Blank, DefinitionStages.WithGroup, DefinitionStages.WithProductType, DefinitionStages.WithCreate {
  111. }
  112. /**
  113. * Grouping of AppServiceCertificateOrder definition stages.
  114. */
  115. interface DefinitionStages {
  116. /**
  117. * The first stage of a AppServiceCertificateOrder definition.
  118. */
  119. interface Blank extends GroupableResourceCore.DefinitionWithRegion<WithGroup> {
  120. }
  121. /**
  122. * The stage of the AppServiceCertificateOrder definition allowing to specify the resource group.
  123. */
  124. interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup<WithProductType> {
  125. }
  126. /**
  127. * The stage of the appservicecertificateorder definition allowing to specify ProductType.
  128. */
  129. interface WithProductType {
  130. /**
  131. * Specifies productType.
  132. * @param productType Certificate product type. Possible values include: 'StandardDomainValidatedSsl', 'StandardDomainValidatedWildCardSsl'
  133. * @return the next definition stage
  134. */
  135. WithCreate withProductType(CertificateProductType productType);
  136. }
  137. /**
  138. * The stage of the appservicecertificateorder definition allowing to specify AutoRenew.
  139. */
  140. interface WithAutoRenew {
  141. /**
  142. * Specifies autoRenew.
  143. * @param autoRenew &lt;code&gt;true&lt;/code&gt; if the certificate should be automatically renewed when it expires; otherwise, &lt;code&gt;false&lt;/code&gt;
  144. * @return the next definition stage
  145. */
  146. WithCreate withAutoRenew(Boolean autoRenew);
  147. }
  148. /**
  149. * The stage of the appservicecertificateorder definition allowing to specify Certificates.
  150. */
  151. interface WithCertificates {
  152. /**
  153. * Specifies certificates.
  154. * @param certificates State of the Key Vault secret
  155. * @return the next definition stage
  156. */
  157. WithCreate withCertificates(Map<String, AppServiceCertificate> certificates);
  158. }
  159. /**
  160. * The stage of the appservicecertificateorder definition allowing to specify Csr.
  161. */
  162. interface WithCsr {
  163. /**
  164. * Specifies csr.
  165. * @param csr Last CSR that was created for this order
  166. * @return the next definition stage
  167. */
  168. WithCreate withCsr(String csr);
  169. }
  170. /**
  171. * The stage of the appservicecertificateorder definition allowing to specify DistinguishedName.
  172. */
  173. interface WithDistinguishedName {
  174. /**
  175. * Specifies distinguishedName.
  176. * @param distinguishedName Certificate distinguished name
  177. * @return the next definition stage
  178. */
  179. WithCreate withDistinguishedName(String distinguishedName);
  180. }
  181. /**
  182. * The stage of the appservicecertificateorder definition allowing to specify KeySize.
  183. */
  184. interface WithKeySize {
  185. /**
  186. * Specifies keySize.
  187. * @param keySize Certificate key size
  188. * @return the next definition stage
  189. */
  190. WithCreate withKeySize(Integer keySize);
  191. }
  192. /**
  193. * The stage of the appservicecertificateorder definition allowing to specify Kind.
  194. */
  195. interface WithKind {
  196. /**
  197. * Specifies kind.
  198. * @param kind Kind of resource
  199. * @return the next definition stage
  200. */
  201. WithCreate withKind(String kind);
  202. }
  203. /**
  204. * The stage of the appservicecertificateorder definition allowing to specify ValidityInYears.
  205. */
  206. interface WithValidityInYears {
  207. /**
  208. * Specifies validityInYears.
  209. * @param validityInYears Duration in years (must be between 1 and 3)
  210. * @return the next definition stage
  211. */
  212. WithCreate withValidityInYears(Integer validityInYears);
  213. }
  214. /**
  215. * The stage of the definition which contains all the minimum required inputs for
  216. * the resource to be created (via {@link WithCreate#create()}), but also allows
  217. * for any other optional settings to be specified.
  218. */
  219. interface WithCreate extends Creatable<AppServiceCertificateOrder>, Resource.DefinitionWithTags<WithCreate>, DefinitionStages.WithAutoRenew, DefinitionStages.WithCertificates, DefinitionStages.WithCsr, DefinitionStages.WithDistinguishedName, DefinitionStages.WithKeySize, DefinitionStages.WithKind, DefinitionStages.WithValidityInYears {
  220. }
  221. }
  222. /**
  223. * The template for a AppServiceCertificateOrder update operation, containing all the settings that can be modified.
  224. */
  225. interface Update extends Appliable<AppServiceCertificateOrder>, Resource.UpdateWithTags<Update>, UpdateStages.WithAutoRenew, UpdateStages.WithCertificates, UpdateStages.WithCsr, UpdateStages.WithDistinguishedName, UpdateStages.WithKeySize, UpdateStages.WithKind, UpdateStages.WithValidityInYears {
  226. }
  227. /**
  228. * Grouping of AppServiceCertificateOrder update stages.
  229. */
  230. interface UpdateStages {
  231. /**
  232. * The stage of the appservicecertificateorder update allowing to specify AutoRenew.
  233. */
  234. interface WithAutoRenew {
  235. /**
  236. * Specifies autoRenew.
  237. * @param autoRenew &lt;code&gt;true&lt;/code&gt; if the certificate should be automatically renewed when it expires; otherwise, &lt;code&gt;false&lt;/code&gt;
  238. * @return the next update stage
  239. */
  240. Update withAutoRenew(Boolean autoRenew);
  241. }
  242. /**
  243. * The stage of the appservicecertificateorder update allowing to specify Certificates.
  244. */
  245. interface WithCertificates {
  246. /**
  247. * Specifies certificates.
  248. * @param certificates State of the Key Vault secret
  249. * @return the next update stage
  250. */
  251. Update withCertificates(Map<String, AppServiceCertificate> certificates);
  252. }
  253. /**
  254. * The stage of the appservicecertificateorder update allowing to specify Csr.
  255. */
  256. interface WithCsr {
  257. /**
  258. * Specifies csr.
  259. * @param csr Last CSR that was created for this order
  260. * @return the next update stage
  261. */
  262. Update withCsr(String csr);
  263. }
  264. /**
  265. * The stage of the appservicecertificateorder update allowing to specify DistinguishedName.
  266. */
  267. interface WithDistinguishedName {
  268. /**
  269. * Specifies distinguishedName.
  270. * @param distinguishedName Certificate distinguished name
  271. * @return the next update stage
  272. */
  273. Update withDistinguishedName(String distinguishedName);
  274. }
  275. /**
  276. * The stage of the appservicecertificateorder update allowing to specify KeySize.
  277. */
  278. interface WithKeySize {
  279. /**
  280. * Specifies keySize.
  281. * @param keySize Certificate key size
  282. * @return the next update stage
  283. */
  284. Update withKeySize(Integer keySize);
  285. }
  286. /**
  287. * The stage of the appservicecertificateorder update allowing to specify Kind.
  288. */
  289. interface WithKind {
  290. /**
  291. * Specifies kind.
  292. * @param kind Kind of resource
  293. * @return the next update stage
  294. */
  295. Update withKind(String kind);
  296. }
  297. /**
  298. * The stage of the appservicecertificateorder update allowing to specify ValidityInYears.
  299. */
  300. interface WithValidityInYears {
  301. /**
  302. * Specifies validityInYears.
  303. * @param validityInYears Duration in years (must be between 1 and 3)
  304. * @return the next update stage
  305. */
  306. Update withValidityInYears(Integer validityInYears);
  307. }
  308. }
  309. }