/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.identitymanagement.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Contains the response to a successful GetGroup request. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetGroupResult extends com.amazonaws.AmazonWebServiceResult* A structure that contains details about the group. *
*/ private Group group; /** ** A list of users in the group. *
*/ private com.amazonaws.internal.SdkInternalList
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker
request parameter to retrieve more items. Note that
* IAM might return fewer than the MaxItems
number of results even when there are more results
* available. We recommend that you check IsTruncated
after every call to ensure that you receive all
* your results.
*
* When IsTruncated
is true
, this element is present and contains the value to use for the
* Marker
parameter in a subsequent pagination request.
*
* A structure that contains details about the group. *
* * @param group * A structure that contains details about the group. */ public void setGroup(Group group) { this.group = group; } /** ** A structure that contains details about the group. *
* * @return A structure that contains details about the group. */ public Group getGroup() { return this.group; } /** ** A structure that contains details about the group. *
* * @param group * A structure that contains details about the group. * @return Returns a reference to this object so that method calls can be chained together. */ public GetGroupResult withGroup(Group group) { setGroup(group); return this; } /** ** A list of users in the group. *
* * @return A list of users in the group. */ public java.util.List* A list of users in the group. *
* * @param users * A list of users in the group. */ public void setUsers(java.util.Collection* A list of users in the group. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setUsers(java.util.Collection)} or {@link #withUsers(java.util.Collection)} if you want to override the * existing values. *
* * @param users * A list of users in the group. * @return Returns a reference to this object so that method calls can be chained together. */ public GetGroupResult withUsers(User... users) { if (this.users == null) { setUsers(new com.amazonaws.internal.SdkInternalList* A list of users in the group. *
* * @param users * A list of users in the group. * @return Returns a reference to this object so that method calls can be chained together. */ public GetGroupResult withUsers(java.util.Collection
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker
request parameter to retrieve more items. Note that
* IAM might return fewer than the MaxItems
number of results even when there are more results
* available. We recommend that you check IsTruncated
after every call to ensure that you receive all
* your results.
*
Marker
request parameter to retrieve more items.
* Note that IAM might return fewer than the MaxItems
number of results even when there are more
* results available. We recommend that you check IsTruncated
after every call to ensure that
* you receive all your results.
*/
public void setIsTruncated(Boolean isTruncated) {
this.isTruncated = isTruncated;
}
/**
*
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker
request parameter to retrieve more items. Note that
* IAM might return fewer than the MaxItems
number of results even when there are more results
* available. We recommend that you check IsTruncated
after every call to ensure that you receive all
* your results.
*
Marker
request parameter to retrieve more
* items. Note that IAM might return fewer than the MaxItems
number of results even when there
* are more results available. We recommend that you check IsTruncated
after every call to
* ensure that you receive all your results.
*/
public Boolean getIsTruncated() {
return this.isTruncated;
}
/**
*
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker
request parameter to retrieve more items. Note that
* IAM might return fewer than the MaxItems
number of results even when there are more results
* available. We recommend that you check IsTruncated
after every call to ensure that you receive all
* your results.
*
Marker
request parameter to retrieve more items.
* Note that IAM might return fewer than the MaxItems
number of results even when there are more
* results available. We recommend that you check IsTruncated
after every call to ensure that
* you receive all your results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetGroupResult withIsTruncated(Boolean isTruncated) {
setIsTruncated(isTruncated);
return this;
}
/**
*
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker
request parameter to retrieve more items. Note that
* IAM might return fewer than the MaxItems
number of results even when there are more results
* available. We recommend that you check IsTruncated
after every call to ensure that you receive all
* your results.
*
Marker
request parameter to retrieve more
* items. Note that IAM might return fewer than the MaxItems
number of results even when there
* are more results available. We recommend that you check IsTruncated
after every call to
* ensure that you receive all your results.
*/
public Boolean isTruncated() {
return this.isTruncated;
}
/**
*
* When IsTruncated
is true
, this element is present and contains the value to use for the
* Marker
parameter in a subsequent pagination request.
*
IsTruncated
is true
, this element is present and contains the value to use
* for the Marker
parameter in a subsequent pagination request.
*/
public void setMarker(String marker) {
this.marker = marker;
}
/**
*
* When IsTruncated
is true
, this element is present and contains the value to use for the
* Marker
parameter in a subsequent pagination request.
*
IsTruncated
is true
, this element is present and contains the value to use
* for the Marker
parameter in a subsequent pagination request.
*/
public String getMarker() {
return this.marker;
}
/**
*
* When IsTruncated
is true
, this element is present and contains the value to use for the
* Marker
parameter in a subsequent pagination request.
*
IsTruncated
is true
, this element is present and contains the value to use
* for the Marker
parameter in a subsequent pagination request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetGroupResult withMarker(String marker) {
setMarker(marker);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getGroup() != null)
sb.append("Group: ").append(getGroup()).append(",");
if (getUsers() != null)
sb.append("Users: ").append(getUsers()).append(",");
if (getIsTruncated() != null)
sb.append("IsTruncated: ").append(getIsTruncated()).append(",");
if (getMarker() != null)
sb.append("Marker: ").append(getMarker());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetGroupResult == false)
return false;
GetGroupResult other = (GetGroupResult) obj;
if (other.getGroup() == null ^ this.getGroup() == null)
return false;
if (other.getGroup() != null && other.getGroup().equals(this.getGroup()) == false)
return false;
if (other.getUsers() == null ^ this.getUsers() == null)
return false;
if (other.getUsers() != null && other.getUsers().equals(this.getUsers()) == false)
return false;
if (other.getIsTruncated() == null ^ this.getIsTruncated() == null)
return false;
if (other.getIsTruncated() != null && other.getIsTruncated().equals(this.getIsTruncated()) == false)
return false;
if (other.getMarker() == null ^ this.getMarker() == null)
return false;
if (other.getMarker() != null && other.getMarker().equals(this.getMarker()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getGroup() == null) ? 0 : getGroup().hashCode());
hashCode = prime * hashCode + ((getUsers() == null) ? 0 : getUsers().hashCode());
hashCode = prime * hashCode + ((getIsTruncated() == null) ? 0 : getIsTruncated().hashCode());
hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode());
return hashCode;
}
@Override
public GetGroupResult clone() {
try {
return (GetGroupResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}