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

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 326 lines · 89 code · 40 blank · 197 comment · 0 complexity · e3f291335012a21773acae487d83f5eb 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.List;
  20. import org.joda.time.DateTime;
  21. import com.microsoft.azure.management.appservice.v2018_02_01.implementation.CertificateInner;
  22. /**
  23. * Type representing Certificate.
  24. */
  25. public interface Certificate extends HasInner<CertificateInner>, Resource, GroupableResourceCore<AppServiceManager, CertificateInner>, HasResourceGroup, Refreshable<Certificate>, Updatable<Certificate.Update>, HasManager<AppServiceManager> {
  26. /**
  27. * @return the cerBlob value.
  28. */
  29. byte[] cerBlob();
  30. /**
  31. * @return the expirationDate value.
  32. */
  33. DateTime expirationDate();
  34. /**
  35. * @return the friendlyName value.
  36. */
  37. String friendlyName();
  38. /**
  39. * @return the hostingEnvironmentProfile value.
  40. */
  41. HostingEnvironmentProfile hostingEnvironmentProfile();
  42. /**
  43. * @return the hostNames value.
  44. */
  45. List<String> hostNames();
  46. /**
  47. * @return the issueDate value.
  48. */
  49. DateTime issueDate();
  50. /**
  51. * @return the issuer value.
  52. */
  53. String issuer();
  54. /**
  55. * @return the keyVaultId value.
  56. */
  57. String keyVaultId();
  58. /**
  59. * @return the keyVaultSecretName value.
  60. */
  61. String keyVaultSecretName();
  62. /**
  63. * @return the keyVaultSecretStatus value.
  64. */
  65. KeyVaultSecretStatus keyVaultSecretStatus();
  66. /**
  67. * @return the kind value.
  68. */
  69. String kind();
  70. /**
  71. * @return the password value.
  72. */
  73. String password();
  74. /**
  75. * @return the pfxBlob value.
  76. */
  77. byte[] pfxBlob();
  78. /**
  79. * @return the publicKeyHash value.
  80. */
  81. String publicKeyHash();
  82. /**
  83. * @return the selfLink value.
  84. */
  85. String selfLink();
  86. /**
  87. * @return the serverFarmId value.
  88. */
  89. String serverFarmId();
  90. /**
  91. * @return the siteName value.
  92. */
  93. String siteName();
  94. /**
  95. * @return the subjectName value.
  96. */
  97. String subjectName();
  98. /**
  99. * @return the thumbprint value.
  100. */
  101. String thumbprint();
  102. /**
  103. * @return the valid value.
  104. */
  105. Boolean valid();
  106. /**
  107. * The entirety of the Certificate definition.
  108. */
  109. interface Definition extends DefinitionStages.Blank, DefinitionStages.WithGroup, DefinitionStages.WithPassword, DefinitionStages.WithCreate {
  110. }
  111. /**
  112. * Grouping of Certificate definition stages.
  113. */
  114. interface DefinitionStages {
  115. /**
  116. * The first stage of a Certificate definition.
  117. */
  118. interface Blank extends GroupableResourceCore.DefinitionWithRegion<WithGroup> {
  119. }
  120. /**
  121. * The stage of the Certificate definition allowing to specify the resource group.
  122. */
  123. interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup<WithPassword> {
  124. }
  125. /**
  126. * The stage of the certificate definition allowing to specify Password.
  127. */
  128. interface WithPassword {
  129. /**
  130. * Specifies password.
  131. * @param password Certificate password
  132. * @return the next definition stage
  133. */
  134. WithCreate withPassword(String password);
  135. }
  136. /**
  137. * The stage of the certificate definition allowing to specify HostNames.
  138. */
  139. interface WithHostNames {
  140. /**
  141. * Specifies hostNames.
  142. * @param hostNames Host names the certificate applies to
  143. * @return the next definition stage
  144. */
  145. WithCreate withHostNames(List<String> hostNames);
  146. }
  147. /**
  148. * The stage of the certificate definition allowing to specify KeyVaultId.
  149. */
  150. interface WithKeyVaultId {
  151. /**
  152. * Specifies keyVaultId.
  153. * @param keyVaultId Key Vault Csm resource Id
  154. * @return the next definition stage
  155. */
  156. WithCreate withKeyVaultId(String keyVaultId);
  157. }
  158. /**
  159. * The stage of the certificate definition allowing to specify KeyVaultSecretName.
  160. */
  161. interface WithKeyVaultSecretName {
  162. /**
  163. * Specifies keyVaultSecretName.
  164. * @param keyVaultSecretName Key Vault secret name
  165. * @return the next definition stage
  166. */
  167. WithCreate withKeyVaultSecretName(String keyVaultSecretName);
  168. }
  169. /**
  170. * The stage of the certificate definition allowing to specify Kind.
  171. */
  172. interface WithKind {
  173. /**
  174. * Specifies kind.
  175. * @param kind Kind of resource
  176. * @return the next definition stage
  177. */
  178. WithCreate withKind(String kind);
  179. }
  180. /**
  181. * The stage of the certificate definition allowing to specify PfxBlob.
  182. */
  183. interface WithPfxBlob {
  184. /**
  185. * Specifies pfxBlob.
  186. * @param pfxBlob Pfx blob
  187. * @return the next definition stage
  188. */
  189. WithCreate withPfxBlob(byte[] pfxBlob);
  190. }
  191. /**
  192. * The stage of the certificate definition allowing to specify ServerFarmId.
  193. */
  194. interface WithServerFarmId {
  195. /**
  196. * Specifies serverFarmId.
  197. * @param serverFarmId Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}"
  198. * @return the next definition stage
  199. */
  200. WithCreate withServerFarmId(String serverFarmId);
  201. }
  202. /**
  203. * The stage of the definition which contains all the minimum required inputs for
  204. * the resource to be created (via {@link WithCreate#create()}), but also allows
  205. * for any other optional settings to be specified.
  206. */
  207. interface WithCreate extends Creatable<Certificate>, Resource.DefinitionWithTags<WithCreate>, DefinitionStages.WithHostNames, DefinitionStages.WithKeyVaultId, DefinitionStages.WithKeyVaultSecretName, DefinitionStages.WithKind, DefinitionStages.WithPfxBlob, DefinitionStages.WithServerFarmId {
  208. }
  209. }
  210. /**
  211. * The template for a Certificate update operation, containing all the settings that can be modified.
  212. */
  213. interface Update extends Appliable<Certificate>, Resource.UpdateWithTags<Update>, UpdateStages.WithHostNames, UpdateStages.WithKeyVaultId, UpdateStages.WithKeyVaultSecretName, UpdateStages.WithKind, UpdateStages.WithPfxBlob, UpdateStages.WithServerFarmId {
  214. }
  215. /**
  216. * Grouping of Certificate update stages.
  217. */
  218. interface UpdateStages {
  219. /**
  220. * The stage of the certificate update allowing to specify HostNames.
  221. */
  222. interface WithHostNames {
  223. /**
  224. * Specifies hostNames.
  225. * @param hostNames Host names the certificate applies to
  226. * @return the next update stage
  227. */
  228. Update withHostNames(List<String> hostNames);
  229. }
  230. /**
  231. * The stage of the certificate update allowing to specify KeyVaultId.
  232. */
  233. interface WithKeyVaultId {
  234. /**
  235. * Specifies keyVaultId.
  236. * @param keyVaultId Key Vault Csm resource Id
  237. * @return the next update stage
  238. */
  239. Update withKeyVaultId(String keyVaultId);
  240. }
  241. /**
  242. * The stage of the certificate update allowing to specify KeyVaultSecretName.
  243. */
  244. interface WithKeyVaultSecretName {
  245. /**
  246. * Specifies keyVaultSecretName.
  247. * @param keyVaultSecretName Key Vault secret name
  248. * @return the next update stage
  249. */
  250. Update withKeyVaultSecretName(String keyVaultSecretName);
  251. }
  252. /**
  253. * The stage of the certificate update allowing to specify Kind.
  254. */
  255. interface WithKind {
  256. /**
  257. * Specifies kind.
  258. * @param kind Kind of resource
  259. * @return the next update stage
  260. */
  261. Update withKind(String kind);
  262. }
  263. /**
  264. * The stage of the certificate update allowing to specify PfxBlob.
  265. */
  266. interface WithPfxBlob {
  267. /**
  268. * Specifies pfxBlob.
  269. * @param pfxBlob Pfx blob
  270. * @return the next update stage
  271. */
  272. Update withPfxBlob(byte[] pfxBlob);
  273. }
  274. /**
  275. * The stage of the certificate update allowing to specify ServerFarmId.
  276. */
  277. interface WithServerFarmId {
  278. /**
  279. * Specifies serverFarmId.
  280. * @param serverFarmId Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}"
  281. * @return the next update stage
  282. */
  283. Update withServerFarmId(String serverFarmId);
  284. }
  285. }
  286. }