/sdk/appplatform/mgmt-v2019_05_01_preview/src/main/java/com/microsoft/azure/management/appplatform/v2019_05_01_preview/ConfigServerGitProperty.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 278 lines · 95 code · 33 blank · 150 comment · 0 complexity · 653120c67ed4beb168f1b228b8b1e2cc 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.appplatform.v2019_05_01_preview;
  9. import java.util.List;
  10. import com.fasterxml.jackson.annotation.JsonProperty;
  11. /**
  12. * Property of git.
  13. */
  14. public class ConfigServerGitProperty {
  15. /**
  16. * Repositories of git.
  17. */
  18. @JsonProperty(value = "repositories")
  19. private List<GitPatternRepository> repositories;
  20. /**
  21. * URI of the repository.
  22. */
  23. @JsonProperty(value = "uri", required = true)
  24. private String uri;
  25. /**
  26. * Label of the repository.
  27. */
  28. @JsonProperty(value = "label")
  29. private String label;
  30. /**
  31. * Searching path of the repository.
  32. */
  33. @JsonProperty(value = "searchPaths")
  34. private List<String> searchPaths;
  35. /**
  36. * Username of git repository basic auth.
  37. */
  38. @JsonProperty(value = "username")
  39. private String username;
  40. /**
  41. * Password of git repository basic auth.
  42. */
  43. @JsonProperty(value = "password")
  44. private String password;
  45. /**
  46. * Public sshKey of git repository.
  47. */
  48. @JsonProperty(value = "hostKey")
  49. private String hostKey;
  50. /**
  51. * SshKey algorithm of git repository.
  52. */
  53. @JsonProperty(value = "hostKeyAlgorithm")
  54. private String hostKeyAlgorithm;
  55. /**
  56. * Private sshKey algorithm of git repository.
  57. */
  58. @JsonProperty(value = "privateKey")
  59. private String privateKey;
  60. /**
  61. * Strict host key checking or not.
  62. */
  63. @JsonProperty(value = "strictHostKeyChecking")
  64. private Boolean strictHostKeyChecking;
  65. /**
  66. * Get repositories of git.
  67. *
  68. * @return the repositories value
  69. */
  70. public List<GitPatternRepository> repositories() {
  71. return this.repositories;
  72. }
  73. /**
  74. * Set repositories of git.
  75. *
  76. * @param repositories the repositories value to set
  77. * @return the ConfigServerGitProperty object itself.
  78. */
  79. public ConfigServerGitProperty withRepositories(List<GitPatternRepository> repositories) {
  80. this.repositories = repositories;
  81. return this;
  82. }
  83. /**
  84. * Get uRI of the repository.
  85. *
  86. * @return the uri value
  87. */
  88. public String uri() {
  89. return this.uri;
  90. }
  91. /**
  92. * Set uRI of the repository.
  93. *
  94. * @param uri the uri value to set
  95. * @return the ConfigServerGitProperty object itself.
  96. */
  97. public ConfigServerGitProperty withUri(String uri) {
  98. this.uri = uri;
  99. return this;
  100. }
  101. /**
  102. * Get label of the repository.
  103. *
  104. * @return the label value
  105. */
  106. public String label() {
  107. return this.label;
  108. }
  109. /**
  110. * Set label of the repository.
  111. *
  112. * @param label the label value to set
  113. * @return the ConfigServerGitProperty object itself.
  114. */
  115. public ConfigServerGitProperty withLabel(String label) {
  116. this.label = label;
  117. return this;
  118. }
  119. /**
  120. * Get searching path of the repository.
  121. *
  122. * @return the searchPaths value
  123. */
  124. public List<String> searchPaths() {
  125. return this.searchPaths;
  126. }
  127. /**
  128. * Set searching path of the repository.
  129. *
  130. * @param searchPaths the searchPaths value to set
  131. * @return the ConfigServerGitProperty object itself.
  132. */
  133. public ConfigServerGitProperty withSearchPaths(List<String> searchPaths) {
  134. this.searchPaths = searchPaths;
  135. return this;
  136. }
  137. /**
  138. * Get username of git repository basic auth.
  139. *
  140. * @return the username value
  141. */
  142. public String username() {
  143. return this.username;
  144. }
  145. /**
  146. * Set username of git repository basic auth.
  147. *
  148. * @param username the username value to set
  149. * @return the ConfigServerGitProperty object itself.
  150. */
  151. public ConfigServerGitProperty withUsername(String username) {
  152. this.username = username;
  153. return this;
  154. }
  155. /**
  156. * Get password of git repository basic auth.
  157. *
  158. * @return the password value
  159. */
  160. public String password() {
  161. return this.password;
  162. }
  163. /**
  164. * Set password of git repository basic auth.
  165. *
  166. * @param password the password value to set
  167. * @return the ConfigServerGitProperty object itself.
  168. */
  169. public ConfigServerGitProperty withPassword(String password) {
  170. this.password = password;
  171. return this;
  172. }
  173. /**
  174. * Get public sshKey of git repository.
  175. *
  176. * @return the hostKey value
  177. */
  178. public String hostKey() {
  179. return this.hostKey;
  180. }
  181. /**
  182. * Set public sshKey of git repository.
  183. *
  184. * @param hostKey the hostKey value to set
  185. * @return the ConfigServerGitProperty object itself.
  186. */
  187. public ConfigServerGitProperty withHostKey(String hostKey) {
  188. this.hostKey = hostKey;
  189. return this;
  190. }
  191. /**
  192. * Get sshKey algorithm of git repository.
  193. *
  194. * @return the hostKeyAlgorithm value
  195. */
  196. public String hostKeyAlgorithm() {
  197. return this.hostKeyAlgorithm;
  198. }
  199. /**
  200. * Set sshKey algorithm of git repository.
  201. *
  202. * @param hostKeyAlgorithm the hostKeyAlgorithm value to set
  203. * @return the ConfigServerGitProperty object itself.
  204. */
  205. public ConfigServerGitProperty withHostKeyAlgorithm(String hostKeyAlgorithm) {
  206. this.hostKeyAlgorithm = hostKeyAlgorithm;
  207. return this;
  208. }
  209. /**
  210. * Get private sshKey algorithm of git repository.
  211. *
  212. * @return the privateKey value
  213. */
  214. public String privateKey() {
  215. return this.privateKey;
  216. }
  217. /**
  218. * Set private sshKey algorithm of git repository.
  219. *
  220. * @param privateKey the privateKey value to set
  221. * @return the ConfigServerGitProperty object itself.
  222. */
  223. public ConfigServerGitProperty withPrivateKey(String privateKey) {
  224. this.privateKey = privateKey;
  225. return this;
  226. }
  227. /**
  228. * Get strict host key checking or not.
  229. *
  230. * @return the strictHostKeyChecking value
  231. */
  232. public Boolean strictHostKeyChecking() {
  233. return this.strictHostKeyChecking;
  234. }
  235. /**
  236. * Set strict host key checking or not.
  237. *
  238. * @param strictHostKeyChecking the strictHostKeyChecking value to set
  239. * @return the ConfigServerGitProperty object itself.
  240. */
  241. public ConfigServerGitProperty withStrictHostKeyChecking(Boolean strictHostKeyChecking) {
  242. this.strictHostKeyChecking = strictHostKeyChecking;
  243. return this;
  244. }
  245. }