/sdk/apimanagement/mgmt-v2019_12_01/src/main/java/com/microsoft/azure/management/apimanagement/v2019_12_01/IdentityProviderContract.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 389 lines · 103 code · 41 blank · 245 comment · 0 complexity · 50ffffc86a966fc0e3715d854aa06466 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_12_01;
  9. import com.microsoft.azure.arm.model.HasInner;
  10. import com.microsoft.azure.management.apimanagement.v2019_12_01.implementation.IdentityProviderContractInner;
  11. import com.microsoft.azure.arm.model.Indexable;
  12. import com.microsoft.azure.arm.model.Creatable;
  13. import com.microsoft.azure.arm.model.Updatable;
  14. import com.microsoft.azure.arm.model.Appliable;
  15. import com.microsoft.azure.arm.resources.models.HasManager;
  16. import com.microsoft.azure.management.apimanagement.v2019_12_01.implementation.ApiManagementManager;
  17. import java.util.List;
  18. /**
  19. * Type representing IdentityProviderContract.
  20. */
  21. public interface IdentityProviderContract extends HasInner<IdentityProviderContractInner>, Indexable, Updatable<IdentityProviderContract.Update>, HasManager<ApiManagementManager> {
  22. /**
  23. * @return the allowedTenants value.
  24. */
  25. List<String> allowedTenants();
  26. /**
  27. * @return the authority value.
  28. */
  29. String authority();
  30. /**
  31. * @return the clientId value.
  32. */
  33. String clientId();
  34. /**
  35. * @return the clientSecret value.
  36. */
  37. String clientSecret();
  38. /**
  39. * @return the id value.
  40. */
  41. String id();
  42. /**
  43. * @return the identityProviderContractType value.
  44. */
  45. IdentityProviderType identityProviderContractType();
  46. /**
  47. * @return the name value.
  48. */
  49. String name();
  50. /**
  51. * @return the passwordResetPolicyName value.
  52. */
  53. String passwordResetPolicyName();
  54. /**
  55. * @return the profileEditingPolicyName value.
  56. */
  57. String profileEditingPolicyName();
  58. /**
  59. * @return the signinPolicyName value.
  60. */
  61. String signinPolicyName();
  62. /**
  63. * @return the signinTenant value.
  64. */
  65. String signinTenant();
  66. /**
  67. * @return the signupPolicyName value.
  68. */
  69. String signupPolicyName();
  70. /**
  71. * @return the type value.
  72. */
  73. String type();
  74. /**
  75. * The entirety of the IdentityProviderContract definition.
  76. */
  77. interface Definition extends DefinitionStages.Blank, DefinitionStages.WithResourceGroupName, DefinitionStages.WithServiceName, DefinitionStages.WithIfMatch, DefinitionStages.WithClientId, DefinitionStages.WithClientSecret, DefinitionStages.WithCreate {
  78. }
  79. /**
  80. * Grouping of IdentityProviderContract definition stages.
  81. */
  82. interface DefinitionStages {
  83. /**
  84. * The first stage of a IdentityProviderContract definition.
  85. */
  86. interface Blank extends WithResourceGroupName {
  87. }
  88. /**
  89. * The stage of the identityprovidercontract definition allowing to specify ResourceGroupName.
  90. */
  91. interface WithResourceGroupName {
  92. /**
  93. * Specifies resourceGroupName.
  94. * @param resourceGroupName The name of the resource group
  95. * @return the next definition stage
  96. */
  97. WithServiceName withResourceGroupName(String resourceGroupName);
  98. }
  99. /**
  100. * The stage of the identityprovidercontract definition allowing to specify ServiceName.
  101. */
  102. interface WithServiceName {
  103. /**
  104. * Specifies serviceName.
  105. * @param serviceName The name of the API Management service
  106. * @return the next definition stage
  107. */
  108. WithIfMatch withServiceName(String serviceName);
  109. }
  110. /**
  111. * The stage of the identityprovidercontract definition allowing to specify IfMatch.
  112. */
  113. interface WithIfMatch {
  114. /**
  115. * Specifies ifMatch.
  116. * @param ifMatch ETag of the Entity. Not required when creating an entity, but required when updating an entity
  117. * @return the next definition stage
  118. */
  119. WithClientId withIfMatch(String ifMatch);
  120. }
  121. /**
  122. * The stage of the identityprovidercontract definition allowing to specify ClientId.
  123. */
  124. interface WithClientId {
  125. /**
  126. * Specifies clientId.
  127. * @param clientId Client Id of the Application in the external Identity Provider. It is App ID for Facebook login, Client ID for Google login, App ID for Microsoft
  128. * @return the next definition stage
  129. */
  130. WithClientSecret withClientId(String clientId);
  131. }
  132. /**
  133. * The stage of the identityprovidercontract definition allowing to specify ClientSecret.
  134. */
  135. interface WithClientSecret {
  136. /**
  137. * Specifies clientSecret.
  138. * @param clientSecret Client secret of the Application in external Identity Provider, used to authenticate login request. For example, it is App Secret for Facebook login, API Key for Google login, Public Key for Microsoft. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value
  139. * @return the next definition stage
  140. */
  141. WithCreate withClientSecret(String clientSecret);
  142. }
  143. /**
  144. * The stage of the identityprovidercontract definition allowing to specify AllowedTenants.
  145. */
  146. interface WithAllowedTenants {
  147. /**
  148. * Specifies allowedTenants.
  149. * @param allowedTenants List of Allowed Tenants when configuring Azure Active Directory login
  150. * @return the next definition stage
  151. */
  152. WithCreate withAllowedTenants(List<String> allowedTenants);
  153. }
  154. /**
  155. * The stage of the identityprovidercontract definition allowing to specify Authority.
  156. */
  157. interface WithAuthority {
  158. /**
  159. * Specifies authority.
  160. * @param authority OpenID Connect discovery endpoint hostname for AAD or AAD B2C
  161. * @return the next definition stage
  162. */
  163. WithCreate withAuthority(String authority);
  164. }
  165. /**
  166. * The stage of the identityprovidercontract definition allowing to specify IdentityProviderCreateContractType.
  167. */
  168. interface WithIdentityProviderCreateContractType {
  169. /**
  170. * Specifies identityProviderCreateContractType.
  171. * @param identityProviderCreateContractType Identity Provider Type identifier. Possible values include: 'facebook', 'google', 'microsoft', 'twitter', 'aad', 'aadB2C'
  172. * @return the next definition stage
  173. */
  174. WithCreate withIdentityProviderCreateContractType(IdentityProviderType identityProviderCreateContractType);
  175. }
  176. /**
  177. * The stage of the identityprovidercontract definition allowing to specify PasswordResetPolicyName.
  178. */
  179. interface WithPasswordResetPolicyName {
  180. /**
  181. * Specifies passwordResetPolicyName.
  182. * @param passwordResetPolicyName Password Reset Policy Name. Only applies to AAD B2C Identity Provider
  183. * @return the next definition stage
  184. */
  185. WithCreate withPasswordResetPolicyName(String passwordResetPolicyName);
  186. }
  187. /**
  188. * The stage of the identityprovidercontract definition allowing to specify ProfileEditingPolicyName.
  189. */
  190. interface WithProfileEditingPolicyName {
  191. /**
  192. * Specifies profileEditingPolicyName.
  193. * @param profileEditingPolicyName Profile Editing Policy Name. Only applies to AAD B2C Identity Provider
  194. * @return the next definition stage
  195. */
  196. WithCreate withProfileEditingPolicyName(String profileEditingPolicyName);
  197. }
  198. /**
  199. * The stage of the identityprovidercontract definition allowing to specify SigninPolicyName.
  200. */
  201. interface WithSigninPolicyName {
  202. /**
  203. * Specifies signinPolicyName.
  204. * @param signinPolicyName Signin Policy Name. Only applies to AAD B2C Identity Provider
  205. * @return the next definition stage
  206. */
  207. WithCreate withSigninPolicyName(String signinPolicyName);
  208. }
  209. /**
  210. * The stage of the identityprovidercontract definition allowing to specify SigninTenant.
  211. */
  212. interface WithSigninTenant {
  213. /**
  214. * Specifies signinTenant.
  215. * @param signinTenant The TenantId to use instead of Common when logging into Active Directory
  216. * @return the next definition stage
  217. */
  218. WithCreate withSigninTenant(String signinTenant);
  219. }
  220. /**
  221. * The stage of the identityprovidercontract definition allowing to specify SignupPolicyName.
  222. */
  223. interface WithSignupPolicyName {
  224. /**
  225. * Specifies signupPolicyName.
  226. * @param signupPolicyName Signup Policy Name. Only applies to AAD B2C Identity Provider
  227. * @return the next definition stage
  228. */
  229. WithCreate withSignupPolicyName(String signupPolicyName);
  230. }
  231. /**
  232. * The stage of the definition which contains all the minimum required inputs for
  233. * the resource to be created (via {@link WithCreate#create()}), but also allows
  234. * for any other optional settings to be specified.
  235. */
  236. interface WithCreate extends Creatable<IdentityProviderContract>, DefinitionStages.WithAllowedTenants, DefinitionStages.WithAuthority, DefinitionStages.WithIdentityProviderCreateContractType, DefinitionStages.WithPasswordResetPolicyName, DefinitionStages.WithProfileEditingPolicyName, DefinitionStages.WithSigninPolicyName, DefinitionStages.WithSigninTenant, DefinitionStages.WithSignupPolicyName {
  237. }
  238. }
  239. /**
  240. * The template for a IdentityProviderContract update operation, containing all the settings that can be modified.
  241. */
  242. interface Update extends Appliable<IdentityProviderContract>, UpdateStages.WithIfMatch, UpdateStages.WithAllowedTenants, UpdateStages.WithAuthority, UpdateStages.WithIdentityProviderCreateContractType, UpdateStages.WithPasswordResetPolicyName, UpdateStages.WithProfileEditingPolicyName, UpdateStages.WithSigninPolicyName, UpdateStages.WithSigninTenant, UpdateStages.WithSignupPolicyName {
  243. }
  244. /**
  245. * Grouping of IdentityProviderContract update stages.
  246. */
  247. interface UpdateStages {
  248. /**
  249. * The stage of the identityprovidercontract update allowing to specify IfMatch.
  250. */
  251. interface WithIfMatch {
  252. /**
  253. * Specifies ifMatch.
  254. * @param ifMatch ETag of the Entity. Not required when creating an entity, but required when updating an entity
  255. * @return the next update stage
  256. */
  257. Update withIfMatch(String ifMatch);
  258. }
  259. /**
  260. * The stage of the identityprovidercontract update allowing to specify AllowedTenants.
  261. */
  262. interface WithAllowedTenants {
  263. /**
  264. * Specifies allowedTenants.
  265. * @param allowedTenants List of Allowed Tenants when configuring Azure Active Directory login
  266. * @return the next update stage
  267. */
  268. Update withAllowedTenants(List<String> allowedTenants);
  269. }
  270. /**
  271. * The stage of the identityprovidercontract update allowing to specify Authority.
  272. */
  273. interface WithAuthority {
  274. /**
  275. * Specifies authority.
  276. * @param authority OpenID Connect discovery endpoint hostname for AAD or AAD B2C
  277. * @return the next update stage
  278. */
  279. Update withAuthority(String authority);
  280. }
  281. /**
  282. * The stage of the identityprovidercontract update allowing to specify IdentityProviderCreateContractType.
  283. */
  284. interface WithIdentityProviderCreateContractType {
  285. /**
  286. * Specifies identityProviderCreateContractType.
  287. * @param identityProviderCreateContractType Identity Provider Type identifier. Possible values include: 'facebook', 'google', 'microsoft', 'twitter', 'aad', 'aadB2C'
  288. * @return the next update stage
  289. */
  290. Update withIdentityProviderCreateContractType(IdentityProviderType identityProviderCreateContractType);
  291. }
  292. /**
  293. * The stage of the identityprovidercontract update allowing to specify PasswordResetPolicyName.
  294. */
  295. interface WithPasswordResetPolicyName {
  296. /**
  297. * Specifies passwordResetPolicyName.
  298. * @param passwordResetPolicyName Password Reset Policy Name. Only applies to AAD B2C Identity Provider
  299. * @return the next update stage
  300. */
  301. Update withPasswordResetPolicyName(String passwordResetPolicyName);
  302. }
  303. /**
  304. * The stage of the identityprovidercontract update allowing to specify ProfileEditingPolicyName.
  305. */
  306. interface WithProfileEditingPolicyName {
  307. /**
  308. * Specifies profileEditingPolicyName.
  309. * @param profileEditingPolicyName Profile Editing Policy Name. Only applies to AAD B2C Identity Provider
  310. * @return the next update stage
  311. */
  312. Update withProfileEditingPolicyName(String profileEditingPolicyName);
  313. }
  314. /**
  315. * The stage of the identityprovidercontract update allowing to specify SigninPolicyName.
  316. */
  317. interface WithSigninPolicyName {
  318. /**
  319. * Specifies signinPolicyName.
  320. * @param signinPolicyName Signin Policy Name. Only applies to AAD B2C Identity Provider
  321. * @return the next update stage
  322. */
  323. Update withSigninPolicyName(String signinPolicyName);
  324. }
  325. /**
  326. * The stage of the identityprovidercontract update allowing to specify SigninTenant.
  327. */
  328. interface WithSigninTenant {
  329. /**
  330. * Specifies signinTenant.
  331. * @param signinTenant The TenantId to use instead of Common when logging into Active Directory
  332. * @return the next update stage
  333. */
  334. Update withSigninTenant(String signinTenant);
  335. }
  336. /**
  337. * The stage of the identityprovidercontract update allowing to specify SignupPolicyName.
  338. */
  339. interface WithSignupPolicyName {
  340. /**
  341. * Specifies signupPolicyName.
  342. * @param signupPolicyName Signup Policy Name. Only applies to AAD B2C Identity Provider
  343. * @return the next update stage
  344. */
  345. Update withSignupPolicyName(String signupPolicyName);
  346. }
  347. }
  348. }