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

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 212 lines · 26 code · 21 blank · 165 comment · 0 complexity · 511b9e61fefc68517223315fa9e34490 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 rx.Observable;
  10. import com.microsoft.azure.management.appservice.v2018_02_01.AppServiceCertificateOrder;
  11. import rx.Completable;
  12. import com.microsoft.azure.management.appservice.v2018_02_01.implementation.AppServiceCertificateOrderInner;
  13. import com.microsoft.azure.management.appservice.v2018_02_01.AppServiceCertificateResource;
  14. /**
  15. * Type representing AppServiceCertificateOrders.
  16. */
  17. public interface AppServiceCertificateOrders {
  18. /**
  19. * Begins definition for a new CertificateOrder resource.
  20. * @param name resource name.
  21. * @return the first stage of the new CertificateOrder definition.
  22. */
  23. AppServiceCertificateOrder.DefinitionStages.Blank defineCertificateOrder(String name);
  24. /**
  25. * Begins definition for a new Certificate resource.
  26. * @param name resource name.
  27. * @return the first stage of the new Certificate definition.
  28. */
  29. AppServiceCertificateResource.DefinitionStages.Blank defineCertificate(String name);
  30. /**
  31. * Get a certificate order.
  32. * Get a certificate order.
  33. *
  34. * @param resourceGroupName resource group name
  35. * @param name resource name
  36. * @throws IllegalArgumentException thrown if parameters fail the validation
  37. * @return the observable for the request
  38. */
  39. Observable<AppServiceCertificateOrder> getByResourceGroupAsync(String resourceGroupName, String name);
  40. /**
  41. * Get certificate orders in a resource group.
  42. * Get certificate orders in a resource group.
  43. *
  44. * @param resourceGroupName resource group name
  45. * @throws IllegalArgumentException thrown if parameters fail the validation
  46. * @return the observable for the request
  47. */
  48. Observable<AppServiceCertificateOrder> listByResourceGroupAsync(String resourceGroupName);
  49. /**
  50. * List all certificate orders in a subscription.
  51. * List all certificate orders in a subscription.
  52. *
  53. * @throws IllegalArgumentException thrown if parameters fail the validation
  54. * @return the observable for the request
  55. */
  56. Observable<AppServiceCertificateOrder> listAsync();
  57. /**
  58. * Delete an existing certificate order.
  59. * Delete an existing certificate order.
  60. *
  61. * @param resourceGroupName resource group name
  62. * @param name resource name
  63. * @throws IllegalArgumentException thrown if parameters fail the validation
  64. * @return the observable for the request
  65. */
  66. Completable deleteAsync(String resourceGroupName, String name);
  67. /**
  68. * Reissue an existing certificate order.
  69. * Reissue an existing certificate order.
  70. *
  71. * @param resourceGroupName Name of the resource group to which the resource belongs.
  72. * @param certificateOrderName Name of the certificate order.
  73. * @param reissueCertificateOrderRequest Parameters for the reissue.
  74. * @throws IllegalArgumentException thrown if parameters fail the validation
  75. * @return the observable for the request
  76. */
  77. Completable reissueAsync(String resourceGroupName, String certificateOrderName, ReissueCertificateOrderRequest reissueCertificateOrderRequest);
  78. /**
  79. * Renew an existing certificate order.
  80. * Renew an existing certificate order.
  81. *
  82. * @param resourceGroupName Name of the resource group to which the resource belongs.
  83. * @param certificateOrderName Name of the certificate order.
  84. * @param renewCertificateOrderRequest Renew parameters
  85. * @throws IllegalArgumentException thrown if parameters fail the validation
  86. * @return the observable for the request
  87. */
  88. Completable renewAsync(String resourceGroupName, String certificateOrderName, RenewCertificateOrderRequest renewCertificateOrderRequest);
  89. /**
  90. * Resend certificate email.
  91. * Resend certificate email.
  92. *
  93. * @param resourceGroupName Name of the resource group to which the resource belongs.
  94. * @param certificateOrderName Name of the certificate order.
  95. * @throws IllegalArgumentException thrown if parameters fail the validation
  96. * @return the observable for the request
  97. */
  98. Completable resendEmailAsync(String resourceGroupName, String certificateOrderName);
  99. /**
  100. * Verify domain ownership for this certificate order.
  101. * Verify domain ownership for this certificate order.
  102. *
  103. * @param resourceGroupName Name of the resource group to which the resource belongs.
  104. * @param certificateOrderName Name of the certificate order.
  105. * @throws IllegalArgumentException thrown if parameters fail the validation
  106. * @return the observable for the request
  107. */
  108. Completable resendRequestEmailsAsync(String resourceGroupName, String certificateOrderName);
  109. /**
  110. * Verify domain ownership for this certificate order.
  111. * Verify domain ownership for this certificate order.
  112. *
  113. * @param resourceGroupName Name of the resource group to which the resource belongs.
  114. * @param certificateOrderName Name of the certificate order.
  115. * @param siteSealRequest Site seal request.
  116. * @throws IllegalArgumentException thrown if parameters fail the validation
  117. * @return the observable for the request
  118. */
  119. Observable<SiteSeal> retrieveSiteSealAsync(String resourceGroupName, String certificateOrderName, SiteSealRequest siteSealRequest);
  120. /**
  121. * Verify domain ownership for this certificate order.
  122. * Verify domain ownership for this certificate order.
  123. *
  124. * @param resourceGroupName Name of the resource group to which the resource belongs.
  125. * @param certificateOrderName Name of the certificate order.
  126. * @throws IllegalArgumentException thrown if parameters fail the validation
  127. * @return the observable for the request
  128. */
  129. Completable verifyDomainOwnershipAsync(String resourceGroupName, String certificateOrderName);
  130. /**
  131. * Retrieve the list of certificate actions.
  132. * Retrieve the list of certificate actions.
  133. *
  134. * @param resourceGroupName Name of the resource group to which the resource belongs.
  135. * @param name Name of the certificate order.
  136. * @throws IllegalArgumentException thrown if parameters fail the validation
  137. * @return the observable for the request
  138. */
  139. Observable<CertificateOrderAction> retrieveCertificateActionsAsync(String resourceGroupName, String name);
  140. /**
  141. * Retrieve email history.
  142. * Retrieve email history.
  143. *
  144. * @param resourceGroupName Name of the resource group to which the resource belongs.
  145. * @param name Name of the certificate order.
  146. * @throws IllegalArgumentException thrown if parameters fail the validation
  147. * @return the observable for the request
  148. */
  149. Observable<CertificateEmail> retrieveCertificateEmailHistoryAsync(String resourceGroupName, String name);
  150. /**
  151. * Validate information for a certificate order.
  152. * Validate information for a certificate order.
  153. *
  154. * @param appServiceCertificateOrder Information for a certificate order.
  155. * @throws IllegalArgumentException thrown if parameters fail the validation
  156. * @return the observable for the request
  157. */
  158. Completable validatePurchaseInformationAsync(AppServiceCertificateOrderInner appServiceCertificateOrder);
  159. /**
  160. * Get the certificate associated with a certificate order.
  161. * Get the certificate associated with a certificate order.
  162. *
  163. * @param resourceGroupName Name of the resource group to which the resource belongs.
  164. * @param certificateOrderName Name of the certificate order.
  165. * @param name Name of the certificate.
  166. * @throws IllegalArgumentException thrown if parameters fail the validation
  167. * @return the observable for the request
  168. */
  169. Observable<AppServiceCertificateResource> getCertificateAsync(String resourceGroupName, String certificateOrderName, String name);
  170. /**
  171. * List all certificates associated with a certificate order.
  172. * List all certificates associated with a certificate order.
  173. *
  174. * @param resourceGroupName Name of the resource group to which the resource belongs.
  175. * @param certificateOrderName Name of the certificate order.
  176. * @throws IllegalArgumentException thrown if parameters fail the validation
  177. * @return the observable for the request
  178. */
  179. Observable<AppServiceCertificateResource> listCertificatesAsync(final String resourceGroupName, final String certificateOrderName);
  180. /**
  181. * Delete the certificate associated with a certificate order.
  182. * Delete the certificate associated with a certificate order.
  183. *
  184. * @param resourceGroupName Name of the resource group to which the resource belongs.
  185. * @param certificateOrderName Name of the certificate order.
  186. * @param name Name of the certificate.
  187. * @throws IllegalArgumentException thrown if parameters fail the validation
  188. * @return the observable for the request
  189. */
  190. Completable deleteCertificateAsync(String resourceGroupName, String certificateOrderName, String name);
  191. }