/* * Copyright 2012-2017 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.applicationdiscovery.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; @Generated("com.amazonaws:aws-java-sdk-code-generator") public class StartDataCollectionByAgentIdsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** * <p> * The IDs of the agents or connectors from which to start collecting data. If you send a request to an * agent/connector ID that you do not have permission to contact, according to your AWS account, the service does * not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a request to * multiple agents/connectors and you do not have permission to contact some of those agents/connectors, the system * does not throw an exception. Instead, the system shows <code>Failed</code> in the <i>Description</i> field. * </p> */ private java.util.List<String> agentIds; /** * <p> * The IDs of the agents or connectors from which to start collecting data. If you send a request to an * agent/connector ID that you do not have permission to contact, according to your AWS account, the service does * not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a request to * multiple agents/connectors and you do not have permission to contact some of those agents/connectors, the system * does not throw an exception. Instead, the system shows <code>Failed</code> in the <i>Description</i> field. * </p> * * @return The IDs of the agents or connectors from which to start collecting data. If you send a request to an * agent/connector ID that you do not have permission to contact, according to your AWS account, the service * does not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a * request to multiple agents/connectors and you do not have permission to contact some of those * agents/connectors, the system does not throw an exception. Instead, the system shows <code>Failed</code> * in the <i>Description</i> field. */ public java.util.List<String> getAgentIds() { return agentIds; } /** * <p> * The IDs of the agents or connectors from which to start collecting data. If you send a request to an * agent/connector ID that you do not have permission to contact, according to your AWS account, the service does * not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a request to * multiple agents/connectors and you do not have permission to contact some of those agents/connectors, the system * does not throw an exception. Instead, the system shows <code>Failed</code> in the <i>Description</i> field. * </p> * * @param agentIds * The IDs of the agents or connectors from which to start collecting data. If you send a request to an * agent/connector ID that you do not have permission to contact, according to your AWS account, the service * does not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a * request to multiple agents/connectors and you do not have permission to contact some of those * agents/connectors, the system does not throw an exception. Instead, the system shows <code>Failed</code> * in the <i>Description</i> field. */ public void setAgentIds(java.util.Collection<String> agentIds) { if (agentIds == null) { this.agentIds = null; return; } this.agentIds = new java.util.ArrayList<String>(agentIds); } /** * <p> * The IDs of the agents or connectors from which to start collecting data. If you send a request to an * agent/connector ID that you do not have permission to contact, according to your AWS account, the service does * not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a request to * multiple agents/connectors and you do not have permission to contact some of those agents/connectors, the system * does not throw an exception. Instead, the system shows <code>Failed</code> in the <i>Description</i> field. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setAgentIds(java.util.Collection)} or {@link #withAgentIds(java.util.Collection)} if you want to override * the existing values. * </p> * * @param agentIds * The IDs of the agents or connectors from which to start collecting data. If you send a request to an * agent/connector ID that you do not have permission to contact, according to your AWS account, the service * does not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a * request to multiple agents/connectors and you do not have permission to contact some of those * agents/connectors, the system does not throw an exception. Instead, the system shows <code>Failed</code> * in the <i>Description</i> field. * @return Returns a reference to this object so that method calls can be chained together. */ public StartDataCollectionByAgentIdsRequest withAgentIds(String... agentIds) { if (this.agentIds == null) { setAgentIds(new java.util.ArrayList<String>(agentIds.length)); } for (String ele : agentIds) { this.agentIds.add(ele); } return this; } /** * <p> * The IDs of the agents or connectors from which to start collecting data. If you send a request to an * agent/connector ID that you do not have permission to contact, according to your AWS account, the service does * not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a request to * multiple agents/connectors and you do not have permission to contact some of those agents/connectors, the system * does not throw an exception. Instead, the system shows <code>Failed</code> in the <i>Description</i> field. * </p> * * @param agentIds * The IDs of the agents or connectors from which to start collecting data. If you send a request to an * agent/connector ID that you do not have permission to contact, according to your AWS account, the service * does not throw an exception. Instead, it returns the error in the <i>Description</i> field. If you send a * request to multiple agents/connectors and you do not have permission to contact some of those * agents/connectors, the system does not throw an exception. Instead, the system shows <code>Failed</code> * in the <i>Description</i> field. * @return Returns a reference to this object so that method calls can be chained together. */ public StartDataCollectionByAgentIdsRequest withAgentIds(java.util.Collection<String> agentIds) { setAgentIds(agentIds); return this; } /** * Returns a string representation of this object; useful for testing and debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAgentIds() != null) sb.append("AgentIds: ").append(getAgentIds()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof StartDataCollectionByAgentIdsRequest == false) return false; StartDataCollectionByAgentIdsRequest other = (StartDataCollectionByAgentIdsRequest) obj; if (other.getAgentIds() == null ^ this.getAgentIds() == null) return false; if (other.getAgentIds() != null && other.getAgentIds().equals(this.getAgentIds()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAgentIds() == null) ? 0 : getAgentIds().hashCode()); return hashCode; } @Override public StartDataCollectionByAgentIdsRequest clone() { return (StartDataCollectionByAgentIdsRequest) super.clone(); } }