All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.fms.model.ListDiscoveredResourcesRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Firewall Management module holds the client classes that are used for communicating with Firewall Management Service

There is a newer version: 1.12.780
Show newest version
/*
 * 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;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListDiscoveredResourcesRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. The * account must be a member of your organization. *

*/ private java.util.List memberAccountIds; /** *

* The type of resources to discover. *

*/ private String resourceType; /** *

* The maximum number of objects that you want Firewall Manager to return for this request. If more objects are * available, in the response, Firewall Manager provides a NextToken value that you can use in a * subsequent call to get the next batch of objects. *

*/ private Integer maxResults; /** *

* 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; /** *

* The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. The * account must be a member of your organization. *

* * @return The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. * The account must be a member of your organization. */ public java.util.List getMemberAccountIds() { return memberAccountIds; } /** *

* The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. The * account must be a member of your organization. *

* * @param memberAccountIds * The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. * The account must be a member of your organization. */ public void setMemberAccountIds(java.util.Collection memberAccountIds) { if (memberAccountIds == null) { this.memberAccountIds = null; return; } this.memberAccountIds = new java.util.ArrayList(memberAccountIds); } /** *

* The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. The * account must be a member of your organization. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setMemberAccountIds(java.util.Collection)} or {@link #withMemberAccountIds(java.util.Collection)} if you * want to override the existing values. *

* * @param memberAccountIds * The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. * The account must be a member of your organization. * @return Returns a reference to this object so that method calls can be chained together. */ public ListDiscoveredResourcesRequest withMemberAccountIds(String... memberAccountIds) { if (this.memberAccountIds == null) { setMemberAccountIds(new java.util.ArrayList(memberAccountIds.length)); } for (String ele : memberAccountIds) { this.memberAccountIds.add(ele); } return this; } /** *

* The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. The * account must be a member of your organization. *

* * @param memberAccountIds * The Amazon Web Services account IDs to discover resources in. Only one account is supported per request. * The account must be a member of your organization. * @return Returns a reference to this object so that method calls can be chained together. */ public ListDiscoveredResourcesRequest withMemberAccountIds(java.util.Collection memberAccountIds) { setMemberAccountIds(memberAccountIds); return this; } /** *

* The type of resources to discover. *

* * @param resourceType * The type of resources to discover. */ public void setResourceType(String resourceType) { this.resourceType = resourceType; } /** *

* The type of resources to discover. *

* * @return The type of resources to discover. */ public String getResourceType() { return this.resourceType; } /** *

* The type of resources to discover. *

* * @param resourceType * The type of resources to discover. * @return Returns a reference to this object so that method calls can be chained together. */ public ListDiscoveredResourcesRequest withResourceType(String resourceType) { setResourceType(resourceType); return this; } /** *

* The maximum number of objects that you want Firewall Manager to return for this request. If more objects are * available, in the response, Firewall Manager provides a NextToken value that you can use in a * subsequent call to get the next batch of objects. *

* * @param maxResults * The maximum number of objects that you want Firewall Manager to return for this request. If more objects * are available, in the response, Firewall Manager provides a NextToken value that you can use * in a subsequent call to get the next batch of objects. */ public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } /** *

* The maximum number of objects that you want Firewall Manager to return for this request. If more objects are * available, in the response, Firewall Manager provides a NextToken value that you can use in a * subsequent call to get the next batch of objects. *

* * @return The maximum number of objects that you want Firewall Manager to return for this request. If more objects * are available, in the response, Firewall Manager provides a NextToken value that you can use * in a subsequent call to get the next batch of objects. */ public Integer getMaxResults() { return this.maxResults; } /** *

* The maximum number of objects that you want Firewall Manager to return for this request. If more objects are * available, in the response, Firewall Manager provides a NextToken value that you can use in a * subsequent call to get the next batch of objects. *

* * @param maxResults * The maximum number of objects that you want Firewall Manager to return for this request. If more objects * are available, in the response, Firewall Manager provides a NextToken value that you can use * in a subsequent call to get the next batch of objects. * @return Returns a reference to this object so that method calls can be chained together. */ public ListDiscoveredResourcesRequest withMaxResults(Integer maxResults) { setMaxResults(maxResults); 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 ListDiscoveredResourcesRequest 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 (getMemberAccountIds() != null) sb.append("MemberAccountIds: ").append(getMemberAccountIds()).append(","); if (getResourceType() != null) sb.append("ResourceType: ").append(getResourceType()).append(","); if (getMaxResults() != null) sb.append("MaxResults: ").append(getMaxResults()).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 ListDiscoveredResourcesRequest == false) return false; ListDiscoveredResourcesRequest other = (ListDiscoveredResourcesRequest) obj; if (other.getMemberAccountIds() == null ^ this.getMemberAccountIds() == null) return false; if (other.getMemberAccountIds() != null && other.getMemberAccountIds().equals(this.getMemberAccountIds()) == false) return false; if (other.getResourceType() == null ^ this.getResourceType() == null) return false; if (other.getResourceType() != null && other.getResourceType().equals(this.getResourceType()) == false) return false; if (other.getMaxResults() == null ^ this.getMaxResults() == null) return false; if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == 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 + ((getMemberAccountIds() == null) ? 0 : getMemberAccountIds().hashCode()); hashCode = prime * hashCode + ((getResourceType() == null) ? 0 : getResourceType().hashCode()); hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public ListDiscoveredResourcesRequest clone() { return (ListDiscoveredResourcesRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy