/* * 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.ec2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; import com.amazonaws.Request; import com.amazonaws.services.ec2.model.transform.DeleteTagsRequestMarshaller; /** * <p> * Contains the parameters for DeleteTags. * </p> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DeleteTagsRequest extends AmazonWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest<DeleteTagsRequest> { /** * <p> * The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. * </p> */ private com.amazonaws.internal.SdkInternalList<String> resources; /** * <p> * One or more tags to delete. If you omit the <code>value</code> parameter, we delete the tag regardless of its * value. If you specify this parameter with an empty string as the value, we delete the key only if its value is an * empty string. * </p> */ private com.amazonaws.internal.SdkInternalList<Tag> tags; /** * Default constructor for DeleteTagsRequest object. Callers should use the setter or fluent setter (with...) * methods to initialize the object after creating it. */ public DeleteTagsRequest() { } /** * Constructs a new DeleteTagsRequest object. Callers should use the setter or fluent setter (with...) methods to * initialize any additional object members. * * @param resources * The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. */ public DeleteTagsRequest(java.util.List<String> resources) { setResources(resources); } /** * <p> * The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. * </p> * * @return The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. */ public java.util.List<String> getResources() { if (resources == null) { resources = new com.amazonaws.internal.SdkInternalList<String>(); } return resources; } /** * <p> * The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. * </p> * * @param resources * The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. */ public void setResources(java.util.Collection<String> resources) { if (resources == null) { this.resources = null; return; } this.resources = new com.amazonaws.internal.SdkInternalList<String>(resources); } /** * <p> * The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setResources(java.util.Collection)} or {@link #withResources(java.util.Collection)} if you want to * override the existing values. * </p> * * @param resources * The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteTagsRequest withResources(String... resources) { if (this.resources == null) { setResources(new com.amazonaws.internal.SdkInternalList<String>(resources.length)); } for (String ele : resources) { this.resources.add(ele); } return this; } /** * <p> * The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. * </p> * * @param resources * The ID of the resource. For example, ami-1a2b3c4d. You can specify more than one resource ID. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteTagsRequest withResources(java.util.Collection<String> resources) { setResources(resources); return this; } /** * <p> * One or more tags to delete. If you omit the <code>value</code> parameter, we delete the tag regardless of its * value. If you specify this parameter with an empty string as the value, we delete the key only if its value is an * empty string. * </p> * * @return One or more tags to delete. If you omit the <code>value</code> parameter, we delete the tag regardless of * its value. If you specify this parameter with an empty string as the value, we delete the key only if its * value is an empty string. */ public java.util.List<Tag> getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList<Tag>(); } return tags; } /** * <p> * One or more tags to delete. If you omit the <code>value</code> parameter, we delete the tag regardless of its * value. If you specify this parameter with an empty string as the value, we delete the key only if its value is an * empty string. * </p> * * @param tags * One or more tags to delete. If you omit the <code>value</code> parameter, we delete the tag regardless of * its value. If you specify this parameter with an empty string as the value, we delete the key only if its * value is an empty string. */ public void setTags(java.util.Collection<Tag> tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList<Tag>(tags); } /** * <p> * One or more tags to delete. If you omit the <code>value</code> parameter, we delete the tag regardless of its * value. If you specify this parameter with an empty string as the value, we delete the key only if its value is an * empty string. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. * </p> * * @param tags * One or more tags to delete. If you omit the <code>value</code> parameter, we delete the tag regardless of * its value. If you specify this parameter with an empty string as the value, we delete the key only if its * value is an empty string. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteTagsRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList<Tag>(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** * <p> * One or more tags to delete. If you omit the <code>value</code> parameter, we delete the tag regardless of its * value. If you specify this parameter with an empty string as the value, we delete the key only if its value is an * empty string. * </p> * * @param tags * One or more tags to delete. If you omit the <code>value</code> parameter, we delete the tag regardless of * its value. If you specify this parameter with an empty string as the value, we delete the key only if its * value is an empty string. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteTagsRequest withTags(java.util.Collection<Tag> tags) { setTags(tags); return this; } /** * This method is intended for internal use only. Returns the marshaled request configured with additional * parameters to enable operation dry-run. */ @Override public Request<DeleteTagsRequest> getDryRunRequest() { Request<DeleteTagsRequest> request = new DeleteTagsRequestMarshaller().marshall(this); request.addParameter("DryRun", Boolean.toString(true)); return request; } /** * 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 (getResources() != null) sb.append("Resources: ").append(getResources()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DeleteTagsRequest == false) return false; DeleteTagsRequest other = (DeleteTagsRequest) obj; if (other.getResources() == null ^ this.getResources() == null) return false; if (other.getResources() != null && other.getResources().equals(this.getResources()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getResources() == null) ? 0 : getResources().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public DeleteTagsRequest clone() { return (DeleteTagsRequest) super.clone(); } }