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

com.amazonaws.services.ec2.model.ModifyReservedInstancesRequest Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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 com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.ModifyReservedInstancesRequestMarshaller;

/**
 * 

* Contains the parameters for ModifyReservedInstances. *

*/ public class ModifyReservedInstancesRequest extends AmazonWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest { /** *

* A unique, case-sensitive token you provide to ensure idempotency of your * modification request. For more information, see Ensuring Idempotency. *

*/ private String clientToken; /** *

* The IDs of the Reserved Instances to modify. *

*/ private com.amazonaws.internal.SdkInternalList reservedInstancesIds; /** *

* The configuration settings for the Reserved Instances to modify. *

*/ private com.amazonaws.internal.SdkInternalList targetConfigurations; /** *

* A unique, case-sensitive token you provide to ensure idempotency of your * modification request. For more information, see Ensuring Idempotency. *

* * @param clientToken * A unique, case-sensitive token you provide to ensure idempotency * of your modification request. For more information, see Ensuring Idempotency. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* A unique, case-sensitive token you provide to ensure idempotency of your * modification request. For more information, see Ensuring Idempotency. *

* * @return A unique, case-sensitive token you provide to ensure idempotency * of your modification request. For more information, see Ensuring Idempotency. */ public String getClientToken() { return this.clientToken; } /** *

* A unique, case-sensitive token you provide to ensure idempotency of your * modification request. For more information, see Ensuring Idempotency. *

* * @param clientToken * A unique, case-sensitive token you provide to ensure idempotency * of your modification request. For more information, see Ensuring Idempotency. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyReservedInstancesRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* The IDs of the Reserved Instances to modify. *

* * @return The IDs of the Reserved Instances to modify. */ public java.util.List getReservedInstancesIds() { if (reservedInstancesIds == null) { reservedInstancesIds = new com.amazonaws.internal.SdkInternalList(); } return reservedInstancesIds; } /** *

* The IDs of the Reserved Instances to modify. *

* * @param reservedInstancesIds * The IDs of the Reserved Instances to modify. */ public void setReservedInstancesIds( java.util.Collection reservedInstancesIds) { if (reservedInstancesIds == null) { this.reservedInstancesIds = null; return; } this.reservedInstancesIds = new com.amazonaws.internal.SdkInternalList( reservedInstancesIds); } /** *

* The IDs of the Reserved Instances to modify. *

*

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

* * @param reservedInstancesIds * The IDs of the Reserved Instances to modify. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyReservedInstancesRequest withReservedInstancesIds( String... reservedInstancesIds) { if (this.reservedInstancesIds == null) { setReservedInstancesIds(new com.amazonaws.internal.SdkInternalList( reservedInstancesIds.length)); } for (String ele : reservedInstancesIds) { this.reservedInstancesIds.add(ele); } return this; } /** *

* The IDs of the Reserved Instances to modify. *

* * @param reservedInstancesIds * The IDs of the Reserved Instances to modify. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyReservedInstancesRequest withReservedInstancesIds( java.util.Collection reservedInstancesIds) { setReservedInstancesIds(reservedInstancesIds); return this; } /** *

* The configuration settings for the Reserved Instances to modify. *

* * @return The configuration settings for the Reserved Instances to modify. */ public java.util.List getTargetConfigurations() { if (targetConfigurations == null) { targetConfigurations = new com.amazonaws.internal.SdkInternalList(); } return targetConfigurations; } /** *

* The configuration settings for the Reserved Instances to modify. *

* * @param targetConfigurations * The configuration settings for the Reserved Instances to modify. */ public void setTargetConfigurations( java.util.Collection targetConfigurations) { if (targetConfigurations == null) { this.targetConfigurations = null; return; } this.targetConfigurations = new com.amazonaws.internal.SdkInternalList( targetConfigurations); } /** *

* The configuration settings for the Reserved Instances to modify. *

*

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

* * @param targetConfigurations * The configuration settings for the Reserved Instances to modify. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyReservedInstancesRequest withTargetConfigurations( ReservedInstancesConfiguration... targetConfigurations) { if (this.targetConfigurations == null) { setTargetConfigurations(new com.amazonaws.internal.SdkInternalList( targetConfigurations.length)); } for (ReservedInstancesConfiguration ele : targetConfigurations) { this.targetConfigurations.add(ele); } return this; } /** *

* The configuration settings for the Reserved Instances to modify. *

* * @param targetConfigurations * The configuration settings for the Reserved Instances to modify. * @return Returns a reference to this object so that method calls can be * chained together. */ public ModifyReservedInstancesRequest withTargetConfigurations( java.util.Collection targetConfigurations) { setTargetConfigurations(targetConfigurations); 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 getDryRunRequest() { Request request = new ModifyReservedInstancesRequestMarshaller() .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 (getClientToken() != null) sb.append("ClientToken: " + getClientToken() + ","); if (getReservedInstancesIds() != null) sb.append("ReservedInstancesIds: " + getReservedInstancesIds() + ","); if (getTargetConfigurations() != null) sb.append("TargetConfigurations: " + getTargetConfigurations()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ModifyReservedInstancesRequest == false) return false; ModifyReservedInstancesRequest other = (ModifyReservedInstancesRequest) obj; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getReservedInstancesIds() == null ^ this.getReservedInstancesIds() == null) return false; if (other.getReservedInstancesIds() != null && other.getReservedInstancesIds().equals( this.getReservedInstancesIds()) == false) return false; if (other.getTargetConfigurations() == null ^ this.getTargetConfigurations() == null) return false; if (other.getTargetConfigurations() != null && other.getTargetConfigurations().equals( this.getTargetConfigurations()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getReservedInstancesIds() == null) ? 0 : getReservedInstancesIds().hashCode()); hashCode = prime * hashCode + ((getTargetConfigurations() == null) ? 0 : getTargetConfigurations().hashCode()); return hashCode; } @Override public ModifyReservedInstancesRequest clone() { return (ModifyReservedInstancesRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy