com.amazonaws.services.elasticmapreduce.model.AddInstanceGroupsResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk Show documentation
/*
* Copyright 2010-2014 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.elasticmapreduce.model;
import java.io.Serializable;
/**
*
* Output from an AddInstanceGroups call.
*
*/
public class AddInstanceGroupsResult implements Serializable {
/**
* The job flow ID in which the instance groups are added.
*
* Constraints:
* Length: 0 - 256
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*/
private String jobFlowId;
/**
* Instance group IDs of the newly created instance groups.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag instanceGroupIds;
/**
* The job flow ID in which the instance groups are added.
*
* Constraints:
* Length: 0 - 256
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @return The job flow ID in which the instance groups are added.
*/
public String getJobFlowId() {
return jobFlowId;
}
/**
* The job flow ID in which the instance groups are added.
*
* Constraints:
* Length: 0 - 256
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param jobFlowId The job flow ID in which the instance groups are added.
*/
public void setJobFlowId(String jobFlowId) {
this.jobFlowId = jobFlowId;
}
/**
* The job flow ID in which the instance groups are added.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 0 - 256
* Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
*
* @param jobFlowId The job flow ID in which the instance groups are added.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public AddInstanceGroupsResult withJobFlowId(String jobFlowId) {
this.jobFlowId = jobFlowId;
return this;
}
/**
* Instance group IDs of the newly created instance groups.
*
* @return Instance group IDs of the newly created instance groups.
*/
public java.util.List getInstanceGroupIds() {
if (instanceGroupIds == null) {
instanceGroupIds = new com.amazonaws.internal.ListWithAutoConstructFlag();
instanceGroupIds.setAutoConstruct(true);
}
return instanceGroupIds;
}
/**
* Instance group IDs of the newly created instance groups.
*
* @param instanceGroupIds Instance group IDs of the newly created instance groups.
*/
public void setInstanceGroupIds(java.util.Collection instanceGroupIds) {
if (instanceGroupIds == null) {
this.instanceGroupIds = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag instanceGroupIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(instanceGroupIds.size());
instanceGroupIdsCopy.addAll(instanceGroupIds);
this.instanceGroupIds = instanceGroupIdsCopy;
}
/**
* Instance group IDs of the newly created instance groups.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param instanceGroupIds Instance group IDs of the newly created instance groups.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public AddInstanceGroupsResult withInstanceGroupIds(String... instanceGroupIds) {
if (getInstanceGroupIds() == null) setInstanceGroupIds(new java.util.ArrayList(instanceGroupIds.length));
for (String value : instanceGroupIds) {
getInstanceGroupIds().add(value);
}
return this;
}
/**
* Instance group IDs of the newly created instance groups.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param instanceGroupIds Instance group IDs of the newly created instance groups.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public AddInstanceGroupsResult withInstanceGroupIds(java.util.Collection instanceGroupIds) {
if (instanceGroupIds == null) {
this.instanceGroupIds = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag instanceGroupIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(instanceGroupIds.size());
instanceGroupIdsCopy.addAll(instanceGroupIds);
this.instanceGroupIds = instanceGroupIdsCopy;
}
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 (getJobFlowId() != null) sb.append("JobFlowId: " + getJobFlowId() + ",");
if (getInstanceGroupIds() != null) sb.append("InstanceGroupIds: " + getInstanceGroupIds() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getJobFlowId() == null) ? 0 : getJobFlowId().hashCode());
hashCode = prime * hashCode + ((getInstanceGroupIds() == null) ? 0 : getInstanceGroupIds().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof AddInstanceGroupsResult == false) return false;
AddInstanceGroupsResult other = (AddInstanceGroupsResult)obj;
if (other.getJobFlowId() == null ^ this.getJobFlowId() == null) return false;
if (other.getJobFlowId() != null && other.getJobFlowId().equals(this.getJobFlowId()) == false) return false;
if (other.getInstanceGroupIds() == null ^ this.getInstanceGroupIds() == null) return false;
if (other.getInstanceGroupIds() != null && other.getInstanceGroupIds().equals(this.getInstanceGroupIds()) == false) return false;
return true;
}
}