com.amazonaws.services.fms.model.ListResourceSetsResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-fms Show documentation
/*
* Copyright 2019-2024 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.fms.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListResourceSetsResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* An array of ResourceSetSummary
objects.
*
*/
private java.util.List resourceSets;
/**
*
* When you request a list of objects with a MaxResults
setting, if the number of objects that are
* still available for retrieval exceeds the maximum you requested, Firewall Manager returns a
* NextToken
value in the response. To retrieve the next batch of objects, use the token returned from
* the prior request in your next request.
*
*/
private String nextToken;
/**
*
* An array of ResourceSetSummary
objects.
*
*
* @return An array of ResourceSetSummary
objects.
*/
public java.util.List getResourceSets() {
return resourceSets;
}
/**
*
* An array of ResourceSetSummary
objects.
*
*
* @param resourceSets
* An array of ResourceSetSummary
objects.
*/
public void setResourceSets(java.util.Collection resourceSets) {
if (resourceSets == null) {
this.resourceSets = null;
return;
}
this.resourceSets = new java.util.ArrayList(resourceSets);
}
/**
*
* An array of ResourceSetSummary
objects.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setResourceSets(java.util.Collection)} or {@link #withResourceSets(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param resourceSets
* An array of ResourceSetSummary
objects.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListResourceSetsResult withResourceSets(ResourceSetSummary... resourceSets) {
if (this.resourceSets == null) {
setResourceSets(new java.util.ArrayList(resourceSets.length));
}
for (ResourceSetSummary ele : resourceSets) {
this.resourceSets.add(ele);
}
return this;
}
/**
*
* An array of ResourceSetSummary
objects.
*
*
* @param resourceSets
* An array of ResourceSetSummary
objects.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListResourceSetsResult withResourceSets(java.util.Collection resourceSets) {
setResourceSets(resourceSets);
return this;
}
/**
*
* When you request a list of objects with a MaxResults
setting, if the number of objects that are
* still available for retrieval exceeds the maximum you requested, Firewall Manager returns a
* NextToken
value in the response. To retrieve the next batch of objects, use the token returned from
* the prior request in your next request.
*
*
* @param nextToken
* When you request a list of objects with a MaxResults
setting, if the number of objects that
* are still available for retrieval exceeds the maximum you requested, Firewall Manager returns a
* NextToken
value in the response. To retrieve the next batch of objects, use the token
* returned from the prior request in your next request.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* When you request a list of objects with a MaxResults
setting, if the number of objects that are
* still available for retrieval exceeds the maximum you requested, Firewall Manager returns a
* NextToken
value in the response. To retrieve the next batch of objects, use the token returned from
* the prior request in your next request.
*
*
* @return When you request a list of objects with a MaxResults
setting, if the number of objects that
* are still available for retrieval exceeds the maximum you requested, Firewall Manager returns a
* NextToken
value in the response. To retrieve the next batch of objects, use the token
* returned from the prior request in your next request.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* When you request a list of objects with a MaxResults
setting, if the number of objects that are
* still available for retrieval exceeds the maximum you requested, Firewall Manager returns a
* NextToken
value in the response. To retrieve the next batch of objects, use the token returned from
* the prior request in your next request.
*
*
* @param nextToken
* When you request a list of objects with a MaxResults
setting, if the number of objects that
* are still available for retrieval exceeds the maximum you requested, Firewall Manager returns a
* NextToken
value in the response. To retrieve the next batch of objects, use the token
* returned from the prior request in your next request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListResourceSetsResult withNextToken(String nextToken) {
setNextToken(nextToken);
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 (getResourceSets() != null)
sb.append("ResourceSets: ").append(getResourceSets()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListResourceSetsResult == false)
return false;
ListResourceSetsResult other = (ListResourceSetsResult) obj;
if (other.getResourceSets() == null ^ this.getResourceSets() == null)
return false;
if (other.getResourceSets() != null && other.getResourceSets().equals(this.getResourceSets()) == false)
return false;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getResourceSets() == null) ? 0 : getResourceSets().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
return hashCode;
}
@Override
public ListResourceSetsResult clone() {
try {
return (ListResourceSetsResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}