/aws-java-sdk-iam/src/main/java/com/amazonaws/services/identitymanagement/model/ListUserTagsRequest.java

https://github.com/aws/aws-sdk-java · Java · 329 lines · 89 code · 29 blank · 211 comment · 36 complexity · a0299d6df0eeb785f1513df7afb9023d MD5 · raw file

  1. /*
  2. * Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
  5. * the License. A copy of the License is located at
  6. *
  7. * http://aws.amazon.com/apache2.0
  8. *
  9. * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  10. * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
  11. * and limitations under the License.
  12. */
  13. package com.amazonaws.services.identitymanagement.model;
  14. import java.io.Serializable;
  15. import javax.annotation.Generated;
  16. import com.amazonaws.AmazonWebServiceRequest;
  17. /**
  18. *
  19. * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListUserTags" target="_top">AWS API
  20. * Documentation</a>
  21. */
  22. @Generated("com.amazonaws:aws-java-sdk-code-generator")
  23. public class ListUserTagsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
  24. /**
  25. * <p>
  26. * The name of the IAM user whose tags you want to see.
  27. * </p>
  28. * <p>
  29. * This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of
  30. * characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of
  31. * the following characters: _+=,.@-
  32. * </p>
  33. */
  34. private String userName;
  35. /**
  36. * <p>
  37. * Use this parameter only when paginating results and only after you receive a response indicating that the results
  38. * are truncated. Set it to the value of the <code>Marker</code> element in the response that you received to
  39. * indicate where the next call should start.
  40. * </p>
  41. */
  42. private String marker;
  43. /**
  44. * <p>
  45. * Use this only when paginating results to indicate the maximum number of items you want in the response. If
  46. * additional items exist beyond the maximum you specify, the <code>IsTruncated</code> response element is
  47. * <code>true</code>.
  48. * </p>
  49. * <p>
  50. * If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer
  51. * results, even when there are more results available. In that case, the <code>IsTruncated</code> response element
  52. * returns <code>true</code>, and <code>Marker</code> contains a value to include in the subsequent call that tells
  53. * the service where to continue from.
  54. * </p>
  55. */
  56. private Integer maxItems;
  57. /**
  58. * <p>
  59. * The name of the IAM user whose tags you want to see.
  60. * </p>
  61. * <p>
  62. * This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of
  63. * characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of
  64. * the following characters: _+=,.@-
  65. * </p>
  66. *
  67. * @param userName
  68. * The name of the IAM user whose tags you want to see.</p>
  69. * <p>
  70. * This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string
  71. * of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also
  72. * include any of the following characters: _+=,.@-
  73. */
  74. public void setUserName(String userName) {
  75. this.userName = userName;
  76. }
  77. /**
  78. * <p>
  79. * The name of the IAM user whose tags you want to see.
  80. * </p>
  81. * <p>
  82. * This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of
  83. * characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of
  84. * the following characters: _+=,.@-
  85. * </p>
  86. *
  87. * @return The name of the IAM user whose tags you want to see.</p>
  88. * <p>
  89. * This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string
  90. * of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also
  91. * include any of the following characters: _+=,.@-
  92. */
  93. public String getUserName() {
  94. return this.userName;
  95. }
  96. /**
  97. * <p>
  98. * The name of the IAM user whose tags you want to see.
  99. * </p>
  100. * <p>
  101. * This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of
  102. * characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of
  103. * the following characters: _+=,.@-
  104. * </p>
  105. *
  106. * @param userName
  107. * The name of the IAM user whose tags you want to see.</p>
  108. * <p>
  109. * This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string
  110. * of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also
  111. * include any of the following characters: _+=,.@-
  112. * @return Returns a reference to this object so that method calls can be chained together.
  113. */
  114. public ListUserTagsRequest withUserName(String userName) {
  115. setUserName(userName);
  116. return this;
  117. }
  118. /**
  119. * <p>
  120. * Use this parameter only when paginating results and only after you receive a response indicating that the results
  121. * are truncated. Set it to the value of the <code>Marker</code> element in the response that you received to
  122. * indicate where the next call should start.
  123. * </p>
  124. *
  125. * @param marker
  126. * Use this parameter only when paginating results and only after you receive a response indicating that the
  127. * results are truncated. Set it to the value of the <code>Marker</code> element in the response that you
  128. * received to indicate where the next call should start.
  129. */
  130. public void setMarker(String marker) {
  131. this.marker = marker;
  132. }
  133. /**
  134. * <p>
  135. * Use this parameter only when paginating results and only after you receive a response indicating that the results
  136. * are truncated. Set it to the value of the <code>Marker</code> element in the response that you received to
  137. * indicate where the next call should start.
  138. * </p>
  139. *
  140. * @return Use this parameter only when paginating results and only after you receive a response indicating that the
  141. * results are truncated. Set it to the value of the <code>Marker</code> element in the response that you
  142. * received to indicate where the next call should start.
  143. */
  144. public String getMarker() {
  145. return this.marker;
  146. }
  147. /**
  148. * <p>
  149. * Use this parameter only when paginating results and only after you receive a response indicating that the results
  150. * are truncated. Set it to the value of the <code>Marker</code> element in the response that you received to
  151. * indicate where the next call should start.
  152. * </p>
  153. *
  154. * @param marker
  155. * Use this parameter only when paginating results and only after you receive a response indicating that the
  156. * results are truncated. Set it to the value of the <code>Marker</code> element in the response that you
  157. * received to indicate where the next call should start.
  158. * @return Returns a reference to this object so that method calls can be chained together.
  159. */
  160. public ListUserTagsRequest withMarker(String marker) {
  161. setMarker(marker);
  162. return this;
  163. }
  164. /**
  165. * <p>
  166. * Use this only when paginating results to indicate the maximum number of items you want in the response. If
  167. * additional items exist beyond the maximum you specify, the <code>IsTruncated</code> response element is
  168. * <code>true</code>.
  169. * </p>
  170. * <p>
  171. * If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer
  172. * results, even when there are more results available. In that case, the <code>IsTruncated</code> response element
  173. * returns <code>true</code>, and <code>Marker</code> contains a value to include in the subsequent call that tells
  174. * the service where to continue from.
  175. * </p>
  176. *
  177. * @param maxItems
  178. * Use this only when paginating results to indicate the maximum number of items you want in the response. If
  179. * additional items exist beyond the maximum you specify, the <code>IsTruncated</code> response element is
  180. * <code>true</code>.</p>
  181. * <p>
  182. * If you do not include this parameter, the number of items defaults to 100. Note that IAM might return
  183. * fewer results, even when there are more results available. In that case, the <code>IsTruncated</code>
  184. * response element returns <code>true</code>, and <code>Marker</code> contains a value to include in the
  185. * subsequent call that tells the service where to continue from.
  186. */
  187. public void setMaxItems(Integer maxItems) {
  188. this.maxItems = maxItems;
  189. }
  190. /**
  191. * <p>
  192. * Use this only when paginating results to indicate the maximum number of items you want in the response. If
  193. * additional items exist beyond the maximum you specify, the <code>IsTruncated</code> response element is
  194. * <code>true</code>.
  195. * </p>
  196. * <p>
  197. * If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer
  198. * results, even when there are more results available. In that case, the <code>IsTruncated</code> response element
  199. * returns <code>true</code>, and <code>Marker</code> contains a value to include in the subsequent call that tells
  200. * the service where to continue from.
  201. * </p>
  202. *
  203. * @return Use this only when paginating results to indicate the maximum number of items you want in the response.
  204. * If additional items exist beyond the maximum you specify, the <code>IsTruncated</code> response element
  205. * is <code>true</code>.</p>
  206. * <p>
  207. * If you do not include this parameter, the number of items defaults to 100. Note that IAM might return
  208. * fewer results, even when there are more results available. In that case, the <code>IsTruncated</code>
  209. * response element returns <code>true</code>, and <code>Marker</code> contains a value to include in the
  210. * subsequent call that tells the service where to continue from.
  211. */
  212. public Integer getMaxItems() {
  213. return this.maxItems;
  214. }
  215. /**
  216. * <p>
  217. * Use this only when paginating results to indicate the maximum number of items you want in the response. If
  218. * additional items exist beyond the maximum you specify, the <code>IsTruncated</code> response element is
  219. * <code>true</code>.
  220. * </p>
  221. * <p>
  222. * If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer
  223. * results, even when there are more results available. In that case, the <code>IsTruncated</code> response element
  224. * returns <code>true</code>, and <code>Marker</code> contains a value to include in the subsequent call that tells
  225. * the service where to continue from.
  226. * </p>
  227. *
  228. * @param maxItems
  229. * Use this only when paginating results to indicate the maximum number of items you want in the response. If
  230. * additional items exist beyond the maximum you specify, the <code>IsTruncated</code> response element is
  231. * <code>true</code>.</p>
  232. * <p>
  233. * If you do not include this parameter, the number of items defaults to 100. Note that IAM might return
  234. * fewer results, even when there are more results available. In that case, the <code>IsTruncated</code>
  235. * response element returns <code>true</code>, and <code>Marker</code> contains a value to include in the
  236. * subsequent call that tells the service where to continue from.
  237. * @return Returns a reference to this object so that method calls can be chained together.
  238. */
  239. public ListUserTagsRequest withMaxItems(Integer maxItems) {
  240. setMaxItems(maxItems);
  241. return this;
  242. }
  243. /**
  244. * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
  245. * redacted from this string using a placeholder value.
  246. *
  247. * @return A string representation of this object.
  248. *
  249. * @see java.lang.Object#toString()
  250. */
  251. @Override
  252. public String toString() {
  253. StringBuilder sb = new StringBuilder();
  254. sb.append("{");
  255. if (getUserName() != null)
  256. sb.append("UserName: ").append(getUserName()).append(",");
  257. if (getMarker() != null)
  258. sb.append("Marker: ").append(getMarker()).append(",");
  259. if (getMaxItems() != null)
  260. sb.append("MaxItems: ").append(getMaxItems());
  261. sb.append("}");
  262. return sb.toString();
  263. }
  264. @Override
  265. public boolean equals(Object obj) {
  266. if (this == obj)
  267. return true;
  268. if (obj == null)
  269. return false;
  270. if (obj instanceof ListUserTagsRequest == false)
  271. return false;
  272. ListUserTagsRequest other = (ListUserTagsRequest) obj;
  273. if (other.getUserName() == null ^ this.getUserName() == null)
  274. return false;
  275. if (other.getUserName() != null && other.getUserName().equals(this.getUserName()) == false)
  276. return false;
  277. if (other.getMarker() == null ^ this.getMarker() == null)
  278. return false;
  279. if (other.getMarker() != null && other.getMarker().equals(this.getMarker()) == false)
  280. return false;
  281. if (other.getMaxItems() == null ^ this.getMaxItems() == null)
  282. return false;
  283. if (other.getMaxItems() != null && other.getMaxItems().equals(this.getMaxItems()) == false)
  284. return false;
  285. return true;
  286. }
  287. @Override
  288. public int hashCode() {
  289. final int prime = 31;
  290. int hashCode = 1;
  291. hashCode = prime * hashCode + ((getUserName() == null) ? 0 : getUserName().hashCode());
  292. hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode());
  293. hashCode = prime * hashCode + ((getMaxItems() == null) ? 0 : getMaxItems().hashCode());
  294. return hashCode;
  295. }
  296. @Override
  297. public ListUserTagsRequest clone() {
  298. return (ListUserTagsRequest) super.clone();
  299. }
  300. }