com.amazonaws.services.elasticmapreduce.model.DescribeJobFlowsRequest 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;
import com.amazonaws.AmazonWebServiceRequest;
/**
* Container for the parameters to the {@link com.amazonaws.services.elasticmapreduce.AmazonElasticMapReduce#describeJobFlows(DescribeJobFlowsRequest) DescribeJobFlows operation}.
*
* DescribeJobFlows returns a list of job flows that match all of the
* supplied parameters. The parameters can include a list of job flow
* IDs, job flow states, and restrictions on job flow creation date and
* time.
*
*
* Regardless of supplied parameters, only job flows created within the
* last two months are returned.
*
*
* If no parameters are supplied, then job flows matching either of the
* following criteria are returned:
*
*
*
* - Job flows created and completed in the last two weeks
* - Job flows created within the last two months that are in one of
* the following states:
RUNNING
,
* WAITING
,
* SHUTTING_DOWN
,
*
* STARTING
*
*
*
* Amazon Elastic MapReduce can return a maximum of 512 job flow
* descriptions.
*
*
* @see com.amazonaws.services.elasticmapreduce.AmazonElasticMapReduce#describeJobFlows(DescribeJobFlowsRequest)
*/
public class DescribeJobFlowsRequest extends AmazonWebServiceRequest implements Serializable {
/**
* Return only job flows created after this date and time.
*/
private java.util.Date createdAfter;
/**
* Return only job flows created before this date and time.
*/
private java.util.Date createdBefore;
/**
* Return only job flows whose job flow ID is contained in this list.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag jobFlowIds;
/**
* Return only job flows whose state is contained in this list.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag jobFlowStates;
/**
* Default constructor for a new DescribeJobFlowsRequest object. Callers should use the
* setter or fluent setter (with...) methods to initialize this object after creating it.
*/
public DescribeJobFlowsRequest() {}
/**
* Constructs a new DescribeJobFlowsRequest object.
* Callers should use the setter or fluent setter (with...) methods to
* initialize any additional object members.
*
* @param jobFlowIds Return only job flows whose job flow ID is contained
* in this list.
*/
public DescribeJobFlowsRequest(java.util.List jobFlowIds) {
setJobFlowIds(jobFlowIds);
}
/**
* Return only job flows created after this date and time.
*
* @return Return only job flows created after this date and time.
*/
public java.util.Date getCreatedAfter() {
return createdAfter;
}
/**
* Return only job flows created after this date and time.
*
* @param createdAfter Return only job flows created after this date and time.
*/
public void setCreatedAfter(java.util.Date createdAfter) {
this.createdAfter = createdAfter;
}
/**
* Return only job flows created after this date and time.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param createdAfter Return only job flows created after this date and time.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeJobFlowsRequest withCreatedAfter(java.util.Date createdAfter) {
this.createdAfter = createdAfter;
return this;
}
/**
* Return only job flows created before this date and time.
*
* @return Return only job flows created before this date and time.
*/
public java.util.Date getCreatedBefore() {
return createdBefore;
}
/**
* Return only job flows created before this date and time.
*
* @param createdBefore Return only job flows created before this date and time.
*/
public void setCreatedBefore(java.util.Date createdBefore) {
this.createdBefore = createdBefore;
}
/**
* Return only job flows created before this date and time.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param createdBefore Return only job flows created before this date and time.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeJobFlowsRequest withCreatedBefore(java.util.Date createdBefore) {
this.createdBefore = createdBefore;
return this;
}
/**
* Return only job flows whose job flow ID is contained in this list.
*
* @return Return only job flows whose job flow ID is contained in this list.
*/
public java.util.List getJobFlowIds() {
if (jobFlowIds == null) {
jobFlowIds = new com.amazonaws.internal.ListWithAutoConstructFlag();
jobFlowIds.setAutoConstruct(true);
}
return jobFlowIds;
}
/**
* Return only job flows whose job flow ID is contained in this list.
*
* @param jobFlowIds Return only job flows whose job flow ID is contained in this list.
*/
public void setJobFlowIds(java.util.Collection jobFlowIds) {
if (jobFlowIds == null) {
this.jobFlowIds = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag jobFlowIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(jobFlowIds.size());
jobFlowIdsCopy.addAll(jobFlowIds);
this.jobFlowIds = jobFlowIdsCopy;
}
/**
* Return only job flows whose job flow ID is contained in this list.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param jobFlowIds Return only job flows whose job flow ID is contained in this list.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeJobFlowsRequest withJobFlowIds(String... jobFlowIds) {
if (getJobFlowIds() == null) setJobFlowIds(new java.util.ArrayList(jobFlowIds.length));
for (String value : jobFlowIds) {
getJobFlowIds().add(value);
}
return this;
}
/**
* Return only job flows whose job flow ID is contained in this list.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param jobFlowIds Return only job flows whose job flow ID is contained in this list.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeJobFlowsRequest withJobFlowIds(java.util.Collection jobFlowIds) {
if (jobFlowIds == null) {
this.jobFlowIds = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag jobFlowIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(jobFlowIds.size());
jobFlowIdsCopy.addAll(jobFlowIds);
this.jobFlowIds = jobFlowIdsCopy;
}
return this;
}
/**
* Return only job flows whose state is contained in this list.
*
* @return Return only job flows whose state is contained in this list.
*/
public java.util.List getJobFlowStates() {
if (jobFlowStates == null) {
jobFlowStates = new com.amazonaws.internal.ListWithAutoConstructFlag();
jobFlowStates.setAutoConstruct(true);
}
return jobFlowStates;
}
/**
* Return only job flows whose state is contained in this list.
*
* @param jobFlowStates Return only job flows whose state is contained in this list.
*/
public void setJobFlowStates(java.util.Collection jobFlowStates) {
if (jobFlowStates == null) {
this.jobFlowStates = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag jobFlowStatesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(jobFlowStates.size());
jobFlowStatesCopy.addAll(jobFlowStates);
this.jobFlowStates = jobFlowStatesCopy;
}
/**
* Return only job flows whose state is contained in this list.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param jobFlowStates Return only job flows whose state is contained in this list.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeJobFlowsRequest withJobFlowStates(String... jobFlowStates) {
if (getJobFlowStates() == null) setJobFlowStates(new java.util.ArrayList(jobFlowStates.length));
for (String value : jobFlowStates) {
getJobFlowStates().add(value);
}
return this;
}
/**
* Return only job flows whose state is contained in this list.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param jobFlowStates Return only job flows whose state is contained in this list.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeJobFlowsRequest withJobFlowStates(java.util.Collection jobFlowStates) {
if (jobFlowStates == null) {
this.jobFlowStates = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag jobFlowStatesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(jobFlowStates.size());
jobFlowStatesCopy.addAll(jobFlowStates);
this.jobFlowStates = jobFlowStatesCopy;
}
return this;
}
/**
* Return only job flows whose state is contained in this list.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param jobFlowStates Return only job flows whose state is contained in this list.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeJobFlowsRequest withJobFlowStates(JobFlowExecutionState... jobFlowStates) {
java.util.ArrayList jobFlowStatesCopy = new java.util.ArrayList(jobFlowStates.length);
for (JobFlowExecutionState member : jobFlowStates) {
jobFlowStatesCopy.add(member.toString());
}
if (getJobFlowStates() == null) {
setJobFlowStates(jobFlowStatesCopy);
} else {
getJobFlowStates().addAll(jobFlowStatesCopy);
}
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 (getCreatedAfter() != null) sb.append("CreatedAfter: " + getCreatedAfter() + ",");
if (getCreatedBefore() != null) sb.append("CreatedBefore: " + getCreatedBefore() + ",");
if (getJobFlowIds() != null) sb.append("JobFlowIds: " + getJobFlowIds() + ",");
if (getJobFlowStates() != null) sb.append("JobFlowStates: " + getJobFlowStates() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCreatedAfter() == null) ? 0 : getCreatedAfter().hashCode());
hashCode = prime * hashCode + ((getCreatedBefore() == null) ? 0 : getCreatedBefore().hashCode());
hashCode = prime * hashCode + ((getJobFlowIds() == null) ? 0 : getJobFlowIds().hashCode());
hashCode = prime * hashCode + ((getJobFlowStates() == null) ? 0 : getJobFlowStates().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof DescribeJobFlowsRequest == false) return false;
DescribeJobFlowsRequest other = (DescribeJobFlowsRequest)obj;
if (other.getCreatedAfter() == null ^ this.getCreatedAfter() == null) return false;
if (other.getCreatedAfter() != null && other.getCreatedAfter().equals(this.getCreatedAfter()) == false) return false;
if (other.getCreatedBefore() == null ^ this.getCreatedBefore() == null) return false;
if (other.getCreatedBefore() != null && other.getCreatedBefore().equals(this.getCreatedBefore()) == false) return false;
if (other.getJobFlowIds() == null ^ this.getJobFlowIds() == null) return false;
if (other.getJobFlowIds() != null && other.getJobFlowIds().equals(this.getJobFlowIds()) == false) return false;
if (other.getJobFlowStates() == null ^ this.getJobFlowStates() == null) return false;
if (other.getJobFlowStates() != null && other.getJobFlowStates().equals(this.getJobFlowStates()) == false) return false;
return true;
}
}