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

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 527 lines · 136 code · 56 blank · 335 comment · 0 complexity · 211d254f9d6c5621f72215142a7af02e 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.AuthorizationServerContractInner;
  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 AuthorizationServerContract.
  20. */
  21. public interface AuthorizationServerContract extends HasInner<AuthorizationServerContractInner>, Indexable, Updatable<AuthorizationServerContract.Update>, HasManager<ApiManagementManager> {
  22. /**
  23. * @return the authorizationEndpoint value.
  24. */
  25. String authorizationEndpoint();
  26. /**
  27. * @return the authorizationMethods value.
  28. */
  29. List<AuthorizationMethod> authorizationMethods();
  30. /**
  31. * @return the bearerTokenSendingMethods value.
  32. */
  33. List<BearerTokenSendingMethod> bearerTokenSendingMethods();
  34. /**
  35. * @return the clientAuthenticationMethod value.
  36. */
  37. List<ClientAuthenticationMethod> clientAuthenticationMethod();
  38. /**
  39. * @return the clientId value.
  40. */
  41. String clientId();
  42. /**
  43. * @return the clientRegistrationEndpoint value.
  44. */
  45. String clientRegistrationEndpoint();
  46. /**
  47. * @return the clientSecret value.
  48. */
  49. String clientSecret();
  50. /**
  51. * @return the defaultScope value.
  52. */
  53. String defaultScope();
  54. /**
  55. * @return the description value.
  56. */
  57. String description();
  58. /**
  59. * @return the displayName value.
  60. */
  61. String displayName();
  62. /**
  63. * @return the grantTypes value.
  64. */
  65. List<GrantType> grantTypes();
  66. /**
  67. * @return the id value.
  68. */
  69. String id();
  70. /**
  71. * @return the name value.
  72. */
  73. String name();
  74. /**
  75. * @return the resourceOwnerPassword value.
  76. */
  77. String resourceOwnerPassword();
  78. /**
  79. * @return the resourceOwnerUsername value.
  80. */
  81. String resourceOwnerUsername();
  82. /**
  83. * @return the supportState value.
  84. */
  85. Boolean supportState();
  86. /**
  87. * @return the tokenBodyParameters value.
  88. */
  89. List<TokenBodyParameterContract> tokenBodyParameters();
  90. /**
  91. * @return the tokenEndpoint value.
  92. */
  93. String tokenEndpoint();
  94. /**
  95. * @return the type value.
  96. */
  97. String type();
  98. /**
  99. * The entirety of the AuthorizationServerContract definition.
  100. */
  101. interface Definition extends DefinitionStages.Blank, DefinitionStages.WithResourceGroupName, DefinitionStages.WithServiceName, DefinitionStages.WithIfMatch, DefinitionStages.WithAuthorizationEndpoint, DefinitionStages.WithClientId, DefinitionStages.WithClientRegistrationEndpoint, DefinitionStages.WithDisplayName, DefinitionStages.WithGrantTypes, DefinitionStages.WithCreate {
  102. }
  103. /**
  104. * Grouping of AuthorizationServerContract definition stages.
  105. */
  106. interface DefinitionStages {
  107. /**
  108. * The first stage of a AuthorizationServerContract definition.
  109. */
  110. interface Blank extends WithResourceGroupName {
  111. }
  112. /**
  113. * The stage of the authorizationservercontract definition allowing to specify ResourceGroupName.
  114. */
  115. interface WithResourceGroupName {
  116. /**
  117. * Specifies resourceGroupName.
  118. * @param resourceGroupName The name of the resource group
  119. * @return the next definition stage
  120. */
  121. WithServiceName withResourceGroupName(String resourceGroupName);
  122. }
  123. /**
  124. * The stage of the authorizationservercontract definition allowing to specify ServiceName.
  125. */
  126. interface WithServiceName {
  127. /**
  128. * Specifies serviceName.
  129. * @param serviceName The name of the API Management service
  130. * @return the next definition stage
  131. */
  132. WithIfMatch withServiceName(String serviceName);
  133. }
  134. /**
  135. * The stage of the authorizationservercontract definition allowing to specify IfMatch.
  136. */
  137. interface WithIfMatch {
  138. /**
  139. * Specifies ifMatch.
  140. * @param ifMatch ETag of the Entity. Not required when creating an entity, but required when updating an entity
  141. * @return the next definition stage
  142. */
  143. WithAuthorizationEndpoint withIfMatch(String ifMatch);
  144. }
  145. /**
  146. * The stage of the authorizationservercontract definition allowing to specify AuthorizationEndpoint.
  147. */
  148. interface WithAuthorizationEndpoint {
  149. /**
  150. * Specifies authorizationEndpoint.
  151. * @param authorizationEndpoint OAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2
  152. * @return the next definition stage
  153. */
  154. WithClientId withAuthorizationEndpoint(String authorizationEndpoint);
  155. }
  156. /**
  157. * The stage of the authorizationservercontract definition allowing to specify ClientId.
  158. */
  159. interface WithClientId {
  160. /**
  161. * Specifies clientId.
  162. * @param clientId Client or app id registered with this authorization server
  163. * @return the next definition stage
  164. */
  165. WithClientRegistrationEndpoint withClientId(String clientId);
  166. }
  167. /**
  168. * The stage of the authorizationservercontract definition allowing to specify ClientRegistrationEndpoint.
  169. */
  170. interface WithClientRegistrationEndpoint {
  171. /**
  172. * Specifies clientRegistrationEndpoint.
  173. * @param clientRegistrationEndpoint Optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced
  174. * @return the next definition stage
  175. */
  176. WithDisplayName withClientRegistrationEndpoint(String clientRegistrationEndpoint);
  177. }
  178. /**
  179. * The stage of the authorizationservercontract definition allowing to specify DisplayName.
  180. */
  181. interface WithDisplayName {
  182. /**
  183. * Specifies displayName.
  184. * @param displayName User-friendly authorization server name
  185. * @return the next definition stage
  186. */
  187. WithGrantTypes withDisplayName(String displayName);
  188. }
  189. /**
  190. * The stage of the authorizationservercontract definition allowing to specify GrantTypes.
  191. */
  192. interface WithGrantTypes {
  193. /**
  194. * Specifies grantTypes.
  195. * @param grantTypes Form of an authorization grant, which the client uses to request the access token
  196. * @return the next definition stage
  197. */
  198. WithCreate withGrantTypes(List<GrantType> grantTypes);
  199. }
  200. /**
  201. * The stage of the authorizationservercontract definition allowing to specify AuthorizationMethods.
  202. */
  203. interface WithAuthorizationMethods {
  204. /**
  205. * Specifies authorizationMethods.
  206. * @param authorizationMethods HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional
  207. * @return the next definition stage
  208. */
  209. WithCreate withAuthorizationMethods(List<AuthorizationMethod> authorizationMethods);
  210. }
  211. /**
  212. * The stage of the authorizationservercontract definition allowing to specify BearerTokenSendingMethods.
  213. */
  214. interface WithBearerTokenSendingMethods {
  215. /**
  216. * Specifies bearerTokenSendingMethods.
  217. * @param bearerTokenSendingMethods Specifies the mechanism by which access token is passed to the API
  218. * @return the next definition stage
  219. */
  220. WithCreate withBearerTokenSendingMethods(List<BearerTokenSendingMethod> bearerTokenSendingMethods);
  221. }
  222. /**
  223. * The stage of the authorizationservercontract definition allowing to specify ClientAuthenticationMethod.
  224. */
  225. interface WithClientAuthenticationMethod {
  226. /**
  227. * Specifies clientAuthenticationMethod.
  228. * @param clientAuthenticationMethod Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format
  229. * @return the next definition stage
  230. */
  231. WithCreate withClientAuthenticationMethod(List<ClientAuthenticationMethod> clientAuthenticationMethod);
  232. }
  233. /**
  234. * The stage of the authorizationservercontract definition allowing to specify ClientSecret.
  235. */
  236. interface WithClientSecret {
  237. /**
  238. * Specifies clientSecret.
  239. * @param clientSecret Client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value
  240. * @return the next definition stage
  241. */
  242. WithCreate withClientSecret(String clientSecret);
  243. }
  244. /**
  245. * The stage of the authorizationservercontract definition allowing to specify DefaultScope.
  246. */
  247. interface WithDefaultScope {
  248. /**
  249. * Specifies defaultScope.
  250. * @param defaultScope Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values
  251. * @return the next definition stage
  252. */
  253. WithCreate withDefaultScope(String defaultScope);
  254. }
  255. /**
  256. * The stage of the authorizationservercontract definition allowing to specify Description.
  257. */
  258. interface WithDescription {
  259. /**
  260. * Specifies description.
  261. * @param description Description of the authorization server. Can contain HTML formatting tags
  262. * @return the next definition stage
  263. */
  264. WithCreate withDescription(String description);
  265. }
  266. /**
  267. * The stage of the authorizationservercontract definition allowing to specify ResourceOwnerPassword.
  268. */
  269. interface WithResourceOwnerPassword {
  270. /**
  271. * Specifies resourceOwnerPassword.
  272. * @param resourceOwnerPassword Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password
  273. * @return the next definition stage
  274. */
  275. WithCreate withResourceOwnerPassword(String resourceOwnerPassword);
  276. }
  277. /**
  278. * The stage of the authorizationservercontract definition allowing to specify ResourceOwnerUsername.
  279. */
  280. interface WithResourceOwnerUsername {
  281. /**
  282. * Specifies resourceOwnerUsername.
  283. * @param resourceOwnerUsername Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username
  284. * @return the next definition stage
  285. */
  286. WithCreate withResourceOwnerUsername(String resourceOwnerUsername);
  287. }
  288. /**
  289. * The stage of the authorizationservercontract definition allowing to specify SupportState.
  290. */
  291. interface WithSupportState {
  292. /**
  293. * Specifies supportState.
  294. * @param supportState If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security
  295. * @return the next definition stage
  296. */
  297. WithCreate withSupportState(Boolean supportState);
  298. }
  299. /**
  300. * The stage of the authorizationservercontract definition allowing to specify TokenBodyParameters.
  301. */
  302. interface WithTokenBodyParameters {
  303. /**
  304. * Specifies tokenBodyParameters.
  305. * @param tokenBodyParameters Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}
  306. * @return the next definition stage
  307. */
  308. WithCreate withTokenBodyParameters(List<TokenBodyParameterContract> tokenBodyParameters);
  309. }
  310. /**
  311. * The stage of the authorizationservercontract definition allowing to specify TokenEndpoint.
  312. */
  313. interface WithTokenEndpoint {
  314. /**
  315. * Specifies tokenEndpoint.
  316. * @param tokenEndpoint OAuth token endpoint. Contains absolute URI to entity being referenced
  317. * @return the next definition stage
  318. */
  319. WithCreate withTokenEndpoint(String tokenEndpoint);
  320. }
  321. /**
  322. * The stage of the definition which contains all the minimum required inputs for
  323. * the resource to be created (via {@link WithCreate#create()}), but also allows
  324. * for any other optional settings to be specified.
  325. */
  326. interface WithCreate extends Creatable<AuthorizationServerContract>, DefinitionStages.WithAuthorizationMethods, DefinitionStages.WithBearerTokenSendingMethods, DefinitionStages.WithClientAuthenticationMethod, DefinitionStages.WithClientSecret, DefinitionStages.WithDefaultScope, DefinitionStages.WithDescription, DefinitionStages.WithResourceOwnerPassword, DefinitionStages.WithResourceOwnerUsername, DefinitionStages.WithSupportState, DefinitionStages.WithTokenBodyParameters, DefinitionStages.WithTokenEndpoint {
  327. }
  328. }
  329. /**
  330. * The template for a AuthorizationServerContract update operation, containing all the settings that can be modified.
  331. */
  332. interface Update extends Appliable<AuthorizationServerContract>, UpdateStages.WithIfMatch, UpdateStages.WithAuthorizationMethods, UpdateStages.WithBearerTokenSendingMethods, UpdateStages.WithClientAuthenticationMethod, UpdateStages.WithClientSecret, UpdateStages.WithDefaultScope, UpdateStages.WithDescription, UpdateStages.WithResourceOwnerPassword, UpdateStages.WithResourceOwnerUsername, UpdateStages.WithSupportState, UpdateStages.WithTokenBodyParameters, UpdateStages.WithTokenEndpoint {
  333. }
  334. /**
  335. * Grouping of AuthorizationServerContract update stages.
  336. */
  337. interface UpdateStages {
  338. /**
  339. * The stage of the authorizationservercontract update allowing to specify IfMatch.
  340. */
  341. interface WithIfMatch {
  342. /**
  343. * Specifies ifMatch.
  344. * @param ifMatch ETag of the Entity. Not required when creating an entity, but required when updating an entity
  345. * @return the next update stage
  346. */
  347. Update withIfMatch(String ifMatch);
  348. }
  349. /**
  350. * The stage of the authorizationservercontract update allowing to specify AuthorizationMethods.
  351. */
  352. interface WithAuthorizationMethods {
  353. /**
  354. * Specifies authorizationMethods.
  355. * @param authorizationMethods HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional
  356. * @return the next update stage
  357. */
  358. Update withAuthorizationMethods(List<AuthorizationMethod> authorizationMethods);
  359. }
  360. /**
  361. * The stage of the authorizationservercontract update allowing to specify BearerTokenSendingMethods.
  362. */
  363. interface WithBearerTokenSendingMethods {
  364. /**
  365. * Specifies bearerTokenSendingMethods.
  366. * @param bearerTokenSendingMethods Specifies the mechanism by which access token is passed to the API
  367. * @return the next update stage
  368. */
  369. Update withBearerTokenSendingMethods(List<BearerTokenSendingMethod> bearerTokenSendingMethods);
  370. }
  371. /**
  372. * The stage of the authorizationservercontract update allowing to specify ClientAuthenticationMethod.
  373. */
  374. interface WithClientAuthenticationMethod {
  375. /**
  376. * Specifies clientAuthenticationMethod.
  377. * @param clientAuthenticationMethod Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format
  378. * @return the next update stage
  379. */
  380. Update withClientAuthenticationMethod(List<ClientAuthenticationMethod> clientAuthenticationMethod);
  381. }
  382. /**
  383. * The stage of the authorizationservercontract update allowing to specify ClientSecret.
  384. */
  385. interface WithClientSecret {
  386. /**
  387. * Specifies clientSecret.
  388. * @param clientSecret Client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value
  389. * @return the next update stage
  390. */
  391. Update withClientSecret(String clientSecret);
  392. }
  393. /**
  394. * The stage of the authorizationservercontract update allowing to specify DefaultScope.
  395. */
  396. interface WithDefaultScope {
  397. /**
  398. * Specifies defaultScope.
  399. * @param defaultScope Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values
  400. * @return the next update stage
  401. */
  402. Update withDefaultScope(String defaultScope);
  403. }
  404. /**
  405. * The stage of the authorizationservercontract update allowing to specify Description.
  406. */
  407. interface WithDescription {
  408. /**
  409. * Specifies description.
  410. * @param description Description of the authorization server. Can contain HTML formatting tags
  411. * @return the next update stage
  412. */
  413. Update withDescription(String description);
  414. }
  415. /**
  416. * The stage of the authorizationservercontract update allowing to specify ResourceOwnerPassword.
  417. */
  418. interface WithResourceOwnerPassword {
  419. /**
  420. * Specifies resourceOwnerPassword.
  421. * @param resourceOwnerPassword Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password
  422. * @return the next update stage
  423. */
  424. Update withResourceOwnerPassword(String resourceOwnerPassword);
  425. }
  426. /**
  427. * The stage of the authorizationservercontract update allowing to specify ResourceOwnerUsername.
  428. */
  429. interface WithResourceOwnerUsername {
  430. /**
  431. * Specifies resourceOwnerUsername.
  432. * @param resourceOwnerUsername Can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username
  433. * @return the next update stage
  434. */
  435. Update withResourceOwnerUsername(String resourceOwnerUsername);
  436. }
  437. /**
  438. * The stage of the authorizationservercontract update allowing to specify SupportState.
  439. */
  440. interface WithSupportState {
  441. /**
  442. * Specifies supportState.
  443. * @param supportState If true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security
  444. * @return the next update stage
  445. */
  446. Update withSupportState(Boolean supportState);
  447. }
  448. /**
  449. * The stage of the authorizationservercontract update allowing to specify TokenBodyParameters.
  450. */
  451. interface WithTokenBodyParameters {
  452. /**
  453. * Specifies tokenBodyParameters.
  454. * @param tokenBodyParameters Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}
  455. * @return the next update stage
  456. */
  457. Update withTokenBodyParameters(List<TokenBodyParameterContract> tokenBodyParameters);
  458. }
  459. /**
  460. * The stage of the authorizationservercontract update allowing to specify TokenEndpoint.
  461. */
  462. interface WithTokenEndpoint {
  463. /**
  464. * Specifies tokenEndpoint.
  465. * @param tokenEndpoint OAuth token endpoint. Contains absolute URI to entity being referenced
  466. * @return the next update stage
  467. */
  468. Update withTokenEndpoint(String tokenEndpoint);
  469. }
  470. }
  471. }