/sdk/apimanagement/mgmt-v2019_01_01/src/main/java/com/microsoft/azure/management/apimanagement/v2019_01_01/ApiPolicyContract.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 159 lines · 47 code · 17 blank · 95 comment · 0 complexity · 61dc60e4be4a0aa2430d7e2a16059d91 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.apimanagement.v2019_01_01;
  9. import com.microsoft.azure.arm.model.HasInner;
  10. import com.microsoft.azure.management.apimanagement.v2019_01_01.implementation.PolicyContractInner;
  11. import com.microsoft.azure.arm.model.Indexable;
  12. import com.microsoft.azure.arm.model.Refreshable;
  13. import com.microsoft.azure.arm.model.Updatable;
  14. import com.microsoft.azure.arm.model.Appliable;
  15. import com.microsoft.azure.arm.model.Creatable;
  16. import com.microsoft.azure.arm.resources.models.HasManager;
  17. import com.microsoft.azure.management.apimanagement.v2019_01_01.implementation.ApiManagementManager;
  18. /**
  19. * Type representing ApiPolicyContract.
  20. */
  21. public interface ApiPolicyContract extends HasInner<PolicyContractInner>, Indexable, Refreshable<ApiPolicyContract>, Updatable<ApiPolicyContract.Update>, HasManager<ApiManagementManager> {
  22. /**
  23. * @return the format value.
  24. */
  25. PolicyContentFormat format();
  26. /**
  27. * @return the id value.
  28. */
  29. String id();
  30. /**
  31. * @return the name value.
  32. */
  33. String name();
  34. /**
  35. * @return the type value.
  36. */
  37. String type();
  38. /**
  39. * @return the value value.
  40. */
  41. String value();
  42. /**
  43. * The entirety of the ApiPolicyContract definition.
  44. */
  45. interface Definition extends DefinitionStages.Blank, DefinitionStages.WithApi, DefinitionStages.WithIfMatch, DefinitionStages.WithValue, DefinitionStages.WithCreate {
  46. }
  47. /**
  48. * Grouping of ApiPolicyContract definition stages.
  49. */
  50. interface DefinitionStages {
  51. /**
  52. * The first stage of a ApiPolicyContract definition.
  53. */
  54. interface Blank extends WithApi {
  55. }
  56. /**
  57. * The stage of the apipolicycontract definition allowing to specify Api.
  58. */
  59. interface WithApi {
  60. /**
  61. * Specifies resourceGroupName, serviceName, apiId.
  62. * @param resourceGroupName The name of the resource group
  63. * @param serviceName The name of the API Management service
  64. * @param apiId API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number
  65. * @return the next definition stage
  66. */
  67. WithIfMatch withExistingApi(String resourceGroupName, String serviceName, String apiId);
  68. }
  69. /**
  70. * The stage of the apipolicycontract definition allowing to specify IfMatch.
  71. */
  72. interface WithIfMatch {
  73. /**
  74. * Specifies ifMatch.
  75. * @param ifMatch ETag of the Entity. Not required when creating an entity, but required when updating an entity
  76. * @return the next definition stage
  77. */
  78. WithValue withIfMatch(String ifMatch);
  79. }
  80. /**
  81. * The stage of the apipolicycontract definition allowing to specify Value.
  82. */
  83. interface WithValue {
  84. /**
  85. * Specifies value.
  86. * @param value Contents of the Policy as defined by the format
  87. * @return the next definition stage
  88. */
  89. WithCreate withValue(String value);
  90. }
  91. /**
  92. * The stage of the apipolicycontract definition allowing to specify Format.
  93. */
  94. interface WithFormat {
  95. /**
  96. * Specifies format.
  97. * @param format Format of the policyContent. Possible values include: 'xml', 'xml-link', 'rawxml', 'rawxml-link'
  98. * @return the next definition stage
  99. */
  100. WithCreate withFormat(PolicyContentFormat format);
  101. }
  102. /**
  103. * The stage of the definition which contains all the minimum required inputs for
  104. * the resource to be created (via {@link WithCreate#create()}), but also allows
  105. * for any other optional settings to be specified.
  106. */
  107. interface WithCreate extends Creatable<ApiPolicyContract>, DefinitionStages.WithFormat {
  108. }
  109. }
  110. /**
  111. * The template for a ApiPolicyContract update operation, containing all the settings that can be modified.
  112. */
  113. interface Update extends Appliable<ApiPolicyContract>, UpdateStages.WithIfMatch, UpdateStages.WithFormat {
  114. }
  115. /**
  116. * Grouping of ApiPolicyContract update stages.
  117. */
  118. interface UpdateStages {
  119. /**
  120. * The stage of the apipolicycontract update allowing to specify IfMatch.
  121. */
  122. interface WithIfMatch {
  123. /**
  124. * Specifies ifMatch.
  125. * @param ifMatch ETag of the Entity. Not required when creating an entity, but required when updating an entity
  126. * @return the next update stage
  127. */
  128. Update withIfMatch(String ifMatch);
  129. }
  130. /**
  131. * The stage of the apipolicycontract update allowing to specify Format.
  132. */
  133. interface WithFormat {
  134. /**
  135. * Specifies format.
  136. * @param format Format of the policyContent. Possible values include: 'xml', 'xml-link', 'rawxml', 'rawxml-link'
  137. * @return the next update stage
  138. */
  139. Update withFormat(PolicyContentFormat format);
  140. }
  141. }
  142. }