/* * 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.inspector.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** * <p> * Used as the request parameter in the <a>ListAssessmentRuns</a> action. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/inspector-2016-02-16/AssessmentRunFilter" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AssessmentRunFilter implements Serializable, Cloneable, StructuredPojo { /** * <p> * For a record to match a filter, an explicit value or a string containing a wildcard that is specified for this * data type property must match the value of the <b>assessmentRunName</b> property of the <a>AssessmentRun</a> data * type. * </p> */ private String namePattern; /** * <p> * For a record to match a filter, one of the values specified for this data type property must be the exact match * of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * </p> */ private java.util.List<String> states; /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>durationInSeconds</b> property of the * <a>AssessmentRun</a> data type. * </p> */ private DurationRange durationRange; /** * <p> * For a record to match a filter, the value that is specified for this data type property must be contained in the * list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data type. * </p> */ private java.util.List<String> rulesPackageArns; /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>startTime</b> property of the * <a>AssessmentRun</a> data type. * </p> */ private TimestampRange startTimeRange; /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>completedAt</b> property of the * <a>AssessmentRun</a> data type. * </p> */ private TimestampRange completionTimeRange; /** * <p> * For a record to match a filter, the value that is specified for this data type property must match the * <b>stateChangedAt</b> property of the <a>AssessmentRun</a> data type. * </p> */ private TimestampRange stateChangeTimeRange; /** * <p> * For a record to match a filter, an explicit value or a string containing a wildcard that is specified for this * data type property must match the value of the <b>assessmentRunName</b> property of the <a>AssessmentRun</a> data * type. * </p> * * @param namePattern * For a record to match a filter, an explicit value or a string containing a wildcard that is specified for * this data type property must match the value of the <b>assessmentRunName</b> property of the * <a>AssessmentRun</a> data type. */ public void setNamePattern(String namePattern) { this.namePattern = namePattern; } /** * <p> * For a record to match a filter, an explicit value or a string containing a wildcard that is specified for this * data type property must match the value of the <b>assessmentRunName</b> property of the <a>AssessmentRun</a> data * type. * </p> * * @return For a record to match a filter, an explicit value or a string containing a wildcard that is specified for * this data type property must match the value of the <b>assessmentRunName</b> property of the * <a>AssessmentRun</a> data type. */ public String getNamePattern() { return this.namePattern; } /** * <p> * For a record to match a filter, an explicit value or a string containing a wildcard that is specified for this * data type property must match the value of the <b>assessmentRunName</b> property of the <a>AssessmentRun</a> data * type. * </p> * * @param namePattern * For a record to match a filter, an explicit value or a string containing a wildcard that is specified for * this data type property must match the value of the <b>assessmentRunName</b> property of the * <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentRunFilter withNamePattern(String namePattern) { setNamePattern(namePattern); return this; } /** * <p> * For a record to match a filter, one of the values specified for this data type property must be the exact match * of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * </p> * * @return For a record to match a filter, one of the values specified for this data type property must be the exact * match of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * @see AssessmentRunState */ public java.util.List<String> getStates() { return states; } /** * <p> * For a record to match a filter, one of the values specified for this data type property must be the exact match * of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * </p> * * @param states * For a record to match a filter, one of the values specified for this data type property must be the exact * match of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * @see AssessmentRunState */ public void setStates(java.util.Collection<String> states) { if (states == null) { this.states = null; return; } this.states = new java.util.ArrayList<String>(states); } /** * <p> * For a record to match a filter, one of the values specified for this data type property must be the exact match * of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setStates(java.util.Collection)} or {@link #withStates(java.util.Collection)} if you want to override the * existing values. * </p> * * @param states * For a record to match a filter, one of the values specified for this data type property must be the exact * match of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. * @see AssessmentRunState */ public AssessmentRunFilter withStates(String... states) { if (this.states == null) { setStates(new java.util.ArrayList<String>(states.length)); } for (String ele : states) { this.states.add(ele); } return this; } /** * <p> * For a record to match a filter, one of the values specified for this data type property must be the exact match * of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * </p> * * @param states * For a record to match a filter, one of the values specified for this data type property must be the exact * match of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. * @see AssessmentRunState */ public AssessmentRunFilter withStates(java.util.Collection<String> states) { setStates(states); return this; } /** * <p> * For a record to match a filter, one of the values specified for this data type property must be the exact match * of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * </p> * * @param states * For a record to match a filter, one of the values specified for this data type property must be the exact * match of the value of the <b>assessmentRunState</b> property of the <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. * @see AssessmentRunState */ public AssessmentRunFilter withStates(AssessmentRunState... states) { java.util.ArrayList<String> statesCopy = new java.util.ArrayList<String>(states.length); for (AssessmentRunState value : states) { statesCopy.add(value.toString()); } if (getStates() == null) { setStates(statesCopy); } else { getStates().addAll(statesCopy); } return this; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>durationInSeconds</b> property of the * <a>AssessmentRun</a> data type. * </p> * * @param durationRange * For a record to match a filter, the value that is specified for this data type property must inclusively * match any value between the specified minimum and maximum values of the <b>durationInSeconds</b> property * of the <a>AssessmentRun</a> data type. */ public void setDurationRange(DurationRange durationRange) { this.durationRange = durationRange; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>durationInSeconds</b> property of the * <a>AssessmentRun</a> data type. * </p> * * @return For a record to match a filter, the value that is specified for this data type property must inclusively * match any value between the specified minimum and maximum values of the <b>durationInSeconds</b> property * of the <a>AssessmentRun</a> data type. */ public DurationRange getDurationRange() { return this.durationRange; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>durationInSeconds</b> property of the * <a>AssessmentRun</a> data type. * </p> * * @param durationRange * For a record to match a filter, the value that is specified for this data type property must inclusively * match any value between the specified minimum and maximum values of the <b>durationInSeconds</b> property * of the <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentRunFilter withDurationRange(DurationRange durationRange) { setDurationRange(durationRange); return this; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must be contained in the * list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data type. * </p> * * @return For a record to match a filter, the value that is specified for this data type property must be contained * in the list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data type. */ public java.util.List<String> getRulesPackageArns() { return rulesPackageArns; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must be contained in the * list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data type. * </p> * * @param rulesPackageArns * For a record to match a filter, the value that is specified for this data type property must be contained * in the list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data type. */ public void setRulesPackageArns(java.util.Collection<String> rulesPackageArns) { if (rulesPackageArns == null) { this.rulesPackageArns = null; return; } this.rulesPackageArns = new java.util.ArrayList<String>(rulesPackageArns); } /** * <p> * For a record to match a filter, the value that is specified for this data type property must be contained in the * list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data type. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setRulesPackageArns(java.util.Collection)} or {@link #withRulesPackageArns(java.util.Collection)} if you * want to override the existing values. * </p> * * @param rulesPackageArns * For a record to match a filter, the value that is specified for this data type property must be contained * in the list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentRunFilter withRulesPackageArns(String... rulesPackageArns) { if (this.rulesPackageArns == null) { setRulesPackageArns(new java.util.ArrayList<String>(rulesPackageArns.length)); } for (String ele : rulesPackageArns) { this.rulesPackageArns.add(ele); } return this; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must be contained in the * list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data type. * </p> * * @param rulesPackageArns * For a record to match a filter, the value that is specified for this data type property must be contained * in the list of values of the <b>rulesPackages</b> property of the <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentRunFilter withRulesPackageArns(java.util.Collection<String> rulesPackageArns) { setRulesPackageArns(rulesPackageArns); return this; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>startTime</b> property of the * <a>AssessmentRun</a> data type. * </p> * * @param startTimeRange * For a record to match a filter, the value that is specified for this data type property must inclusively * match any value between the specified minimum and maximum values of the <b>startTime</b> property of the * <a>AssessmentRun</a> data type. */ public void setStartTimeRange(TimestampRange startTimeRange) { this.startTimeRange = startTimeRange; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>startTime</b> property of the * <a>AssessmentRun</a> data type. * </p> * * @return For a record to match a filter, the value that is specified for this data type property must inclusively * match any value between the specified minimum and maximum values of the <b>startTime</b> property of the * <a>AssessmentRun</a> data type. */ public TimestampRange getStartTimeRange() { return this.startTimeRange; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>startTime</b> property of the * <a>AssessmentRun</a> data type. * </p> * * @param startTimeRange * For a record to match a filter, the value that is specified for this data type property must inclusively * match any value between the specified minimum and maximum values of the <b>startTime</b> property of the * <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentRunFilter withStartTimeRange(TimestampRange startTimeRange) { setStartTimeRange(startTimeRange); return this; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>completedAt</b> property of the * <a>AssessmentRun</a> data type. * </p> * * @param completionTimeRange * For a record to match a filter, the value that is specified for this data type property must inclusively * match any value between the specified minimum and maximum values of the <b>completedAt</b> property of the * <a>AssessmentRun</a> data type. */ public void setCompletionTimeRange(TimestampRange completionTimeRange) { this.completionTimeRange = completionTimeRange; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>completedAt</b> property of the * <a>AssessmentRun</a> data type. * </p> * * @return For a record to match a filter, the value that is specified for this data type property must inclusively * match any value between the specified minimum and maximum values of the <b>completedAt</b> property of * the <a>AssessmentRun</a> data type. */ public TimestampRange getCompletionTimeRange() { return this.completionTimeRange; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must inclusively match * any value between the specified minimum and maximum values of the <b>completedAt</b> property of the * <a>AssessmentRun</a> data type. * </p> * * @param completionTimeRange * For a record to match a filter, the value that is specified for this data type property must inclusively * match any value between the specified minimum and maximum values of the <b>completedAt</b> property of the * <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentRunFilter withCompletionTimeRange(TimestampRange completionTimeRange) { setCompletionTimeRange(completionTimeRange); return this; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must match the * <b>stateChangedAt</b> property of the <a>AssessmentRun</a> data type. * </p> * * @param stateChangeTimeRange * For a record to match a filter, the value that is specified for this data type property must match the * <b>stateChangedAt</b> property of the <a>AssessmentRun</a> data type. */ public void setStateChangeTimeRange(TimestampRange stateChangeTimeRange) { this.stateChangeTimeRange = stateChangeTimeRange; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must match the * <b>stateChangedAt</b> property of the <a>AssessmentRun</a> data type. * </p> * * @return For a record to match a filter, the value that is specified for this data type property must match the * <b>stateChangedAt</b> property of the <a>AssessmentRun</a> data type. */ public TimestampRange getStateChangeTimeRange() { return this.stateChangeTimeRange; } /** * <p> * For a record to match a filter, the value that is specified for this data type property must match the * <b>stateChangedAt</b> property of the <a>AssessmentRun</a> data type. * </p> * * @param stateChangeTimeRange * For a record to match a filter, the value that is specified for this data type property must match the * <b>stateChangedAt</b> property of the <a>AssessmentRun</a> data type. * @return Returns a reference to this object so that method calls can be chained together. */ public AssessmentRunFilter withStateChangeTimeRange(TimestampRange stateChangeTimeRange) { setStateChangeTimeRange(stateChangeTimeRange); 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 (getNamePattern() != null) sb.append("NamePattern: ").append(getNamePattern()).append(","); if (getStates() != null) sb.append("States: ").append(getStates()).append(","); if (getDurationRange() != null) sb.append("DurationRange: ").append(getDurationRange()).append(","); if (getRulesPackageArns() != null) sb.append("RulesPackageArns: ").append(getRulesPackageArns()).append(","); if (getStartTimeRange() != null) sb.append("StartTimeRange: ").append(getStartTimeRange()).append(","); if (getCompletionTimeRange() != null) sb.append("CompletionTimeRange: ").append(getCompletionTimeRange()).append(","); if (getStateChangeTimeRange() != null) sb.append("StateChangeTimeRange: ").append(getStateChangeTimeRange()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AssessmentRunFilter == false) return false; AssessmentRunFilter other = (AssessmentRunFilter) obj; if (other.getNamePattern() == null ^ this.getNamePattern() == null) return false; if (other.getNamePattern() != null && other.getNamePattern().equals(this.getNamePattern()) == false) return false; if (other.getStates() == null ^ this.getStates() == null) return false; if (other.getStates() != null && other.getStates().equals(this.getStates()) == false) return false; if (other.getDurationRange() == null ^ this.getDurationRange() == null) return false; if (other.getDurationRange() != null && other.getDurationRange().equals(this.getDurationRange()) == false) return false; if (other.getRulesPackageArns() == null ^ this.getRulesPackageArns() == null) return false; if (other.getRulesPackageArns() != null && other.getRulesPackageArns().equals(this.getRulesPackageArns()) == false) return false; if (other.getStartTimeRange() == null ^ this.getStartTimeRange() == null) return false; if (other.getStartTimeRange() != null && other.getStartTimeRange().equals(this.getStartTimeRange()) == false) return false; if (other.getCompletionTimeRange() == null ^ this.getCompletionTimeRange() == null) return false; if (other.getCompletionTimeRange() != null && other.getCompletionTimeRange().equals(this.getCompletionTimeRange()) == false) return false; if (other.getStateChangeTimeRange() == null ^ this.getStateChangeTimeRange() == null) return false; if (other.getStateChangeTimeRange() != null && other.getStateChangeTimeRange().equals(this.getStateChangeTimeRange()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getNamePattern() == null) ? 0 : getNamePattern().hashCode()); hashCode = prime * hashCode + ((getStates() == null) ? 0 : getStates().hashCode()); hashCode = prime * hashCode + ((getDurationRange() == null) ? 0 : getDurationRange().hashCode()); hashCode = prime * hashCode + ((getRulesPackageArns() == null) ? 0 : getRulesPackageArns().hashCode()); hashCode = prime * hashCode + ((getStartTimeRange() == null) ? 0 : getStartTimeRange().hashCode()); hashCode = prime * hashCode + ((getCompletionTimeRange() == null) ? 0 : getCompletionTimeRange().hashCode()); hashCode = prime * hashCode + ((getStateChangeTimeRange() == null) ? 0 : getStateChangeTimeRange().hashCode()); return hashCode; } @Override public AssessmentRunFilter clone() { try { return (AssessmentRunFilter) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.inspector.model.transform.AssessmentRunFilterMarshaller.getInstance().marshall(this, protocolMarshaller); } }