/* * 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.lightsail.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetInstanceMetricData" target="_top">AWS * API Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetInstanceMetricDataRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** * <p> * The name of the instance for which you want to get metrics data. * </p> */ private String instanceName; /** * <p> * The metric name to get data about. * </p> */ private String metricName; /** * <p> * The time period for which you are requesting data. * </p> */ private Integer period; /** * <p> * The start time of the time period. * </p> */ private java.util.Date startTime; /** * <p> * The end time of the time period. * </p> */ private java.util.Date endTime; /** * <p> * The unit. The list of valid values is below. * </p> */ private String unit; /** * <p> * The instance statistics. * </p> */ private java.util.List<String> statistics; /** * <p> * The name of the instance for which you want to get metrics data. * </p> * * @param instanceName * The name of the instance for which you want to get metrics data. */ public void setInstanceName(String instanceName) { this.instanceName = instanceName; } /** * <p> * The name of the instance for which you want to get metrics data. * </p> * * @return The name of the instance for which you want to get metrics data. */ public String getInstanceName() { return this.instanceName; } /** * <p> * The name of the instance for which you want to get metrics data. * </p> * * @param instanceName * The name of the instance for which you want to get metrics data. * @return Returns a reference to this object so that method calls can be chained together. */ public GetInstanceMetricDataRequest withInstanceName(String instanceName) { setInstanceName(instanceName); return this; } /** * <p> * The metric name to get data about. * </p> * * @param metricName * The metric name to get data about. * @see InstanceMetricName */ public void setMetricName(String metricName) { this.metricName = metricName; } /** * <p> * The metric name to get data about. * </p> * * @return The metric name to get data about. * @see InstanceMetricName */ public String getMetricName() { return this.metricName; } /** * <p> * The metric name to get data about. * </p> * * @param metricName * The metric name to get data about. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceMetricName */ public GetInstanceMetricDataRequest withMetricName(String metricName) { setMetricName(metricName); return this; } /** * <p> * The metric name to get data about. * </p> * * @param metricName * The metric name to get data about. * @see InstanceMetricName */ public void setMetricName(InstanceMetricName metricName) { this.metricName = metricName.toString(); } /** * <p> * The metric name to get data about. * </p> * * @param metricName * The metric name to get data about. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceMetricName */ public GetInstanceMetricDataRequest withMetricName(InstanceMetricName metricName) { setMetricName(metricName); return this; } /** * <p> * The time period for which you are requesting data. * </p> * * @param period * The time period for which you are requesting data. */ public void setPeriod(Integer period) { this.period = period; } /** * <p> * The time period for which you are requesting data. * </p> * * @return The time period for which you are requesting data. */ public Integer getPeriod() { return this.period; } /** * <p> * The time period for which you are requesting data. * </p> * * @param period * The time period for which you are requesting data. * @return Returns a reference to this object so that method calls can be chained together. */ public GetInstanceMetricDataRequest withPeriod(Integer period) { setPeriod(period); return this; } /** * <p> * The start time of the time period. * </p> * * @param startTime * The start time of the time period. */ public void setStartTime(java.util.Date startTime) { this.startTime = startTime; } /** * <p> * The start time of the time period. * </p> * * @return The start time of the time period. */ public java.util.Date getStartTime() { return this.startTime; } /** * <p> * The start time of the time period. * </p> * * @param startTime * The start time of the time period. * @return Returns a reference to this object so that method calls can be chained together. */ public GetInstanceMetricDataRequest withStartTime(java.util.Date startTime) { setStartTime(startTime); return this; } /** * <p> * The end time of the time period. * </p> * * @param endTime * The end time of the time period. */ public void setEndTime(java.util.Date endTime) { this.endTime = endTime; } /** * <p> * The end time of the time period. * </p> * * @return The end time of the time period. */ public java.util.Date getEndTime() { return this.endTime; } /** * <p> * The end time of the time period. * </p> * * @param endTime * The end time of the time period. * @return Returns a reference to this object so that method calls can be chained together. */ public GetInstanceMetricDataRequest withEndTime(java.util.Date endTime) { setEndTime(endTime); return this; } /** * <p> * The unit. The list of valid values is below. * </p> * * @param unit * The unit. The list of valid values is below. * @see MetricUnit */ public void setUnit(String unit) { this.unit = unit; } /** * <p> * The unit. The list of valid values is below. * </p> * * @return The unit. The list of valid values is below. * @see MetricUnit */ public String getUnit() { return this.unit; } /** * <p> * The unit. The list of valid values is below. * </p> * * @param unit * The unit. The list of valid values is below. * @return Returns a reference to this object so that method calls can be chained together. * @see MetricUnit */ public GetInstanceMetricDataRequest withUnit(String unit) { setUnit(unit); return this; } /** * <p> * The unit. The list of valid values is below. * </p> * * @param unit * The unit. The list of valid values is below. * @see MetricUnit */ public void setUnit(MetricUnit unit) { this.unit = unit.toString(); } /** * <p> * The unit. The list of valid values is below. * </p> * * @param unit * The unit. The list of valid values is below. * @return Returns a reference to this object so that method calls can be chained together. * @see MetricUnit */ public GetInstanceMetricDataRequest withUnit(MetricUnit unit) { setUnit(unit); return this; } /** * <p> * The instance statistics. * </p> * * @return The instance statistics. * @see MetricStatistic */ public java.util.List<String> getStatistics() { return statistics; } /** * <p> * The instance statistics. * </p> * * @param statistics * The instance statistics. * @see MetricStatistic */ public void setStatistics(java.util.Collection<String> statistics) { if (statistics == null) { this.statistics = null; return; } this.statistics = new java.util.ArrayList<String>(statistics); } /** * <p> * The instance statistics. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setStatistics(java.util.Collection)} or {@link #withStatistics(java.util.Collection)} if you want to * override the existing values. * </p> * * @param statistics * The instance statistics. * @return Returns a reference to this object so that method calls can be chained together. * @see MetricStatistic */ public GetInstanceMetricDataRequest withStatistics(String... statistics) { if (this.statistics == null) { setStatistics(new java.util.ArrayList<String>(statistics.length)); } for (String ele : statistics) { this.statistics.add(ele); } return this; } /** * <p> * The instance statistics. * </p> * * @param statistics * The instance statistics. * @return Returns a reference to this object so that method calls can be chained together. * @see MetricStatistic */ public GetInstanceMetricDataRequest withStatistics(java.util.Collection<String> statistics) { setStatistics(statistics); return this; } /** * <p> * The instance statistics. * </p> * * @param statistics * The instance statistics. * @return Returns a reference to this object so that method calls can be chained together. * @see MetricStatistic */ public GetInstanceMetricDataRequest withStatistics(MetricStatistic... statistics) { java.util.ArrayList<String> statisticsCopy = new java.util.ArrayList<String>(statistics.length); for (MetricStatistic value : statistics) { statisticsCopy.add(value.toString()); } if (getStatistics() == null) { setStatistics(statisticsCopy); } else { getStatistics().addAll(statisticsCopy); } 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 (getInstanceName() != null) sb.append("InstanceName: ").append(getInstanceName()).append(","); if (getMetricName() != null) sb.append("MetricName: ").append(getMetricName()).append(","); if (getPeriod() != null) sb.append("Period: ").append(getPeriod()).append(","); if (getStartTime() != null) sb.append("StartTime: ").append(getStartTime()).append(","); if (getEndTime() != null) sb.append("EndTime: ").append(getEndTime()).append(","); if (getUnit() != null) sb.append("Unit: ").append(getUnit()).append(","); if (getStatistics() != null) sb.append("Statistics: ").append(getStatistics()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetInstanceMetricDataRequest == false) return false; GetInstanceMetricDataRequest other = (GetInstanceMetricDataRequest) obj; if (other.getInstanceName() == null ^ this.getInstanceName() == null) return false; if (other.getInstanceName() != null && other.getInstanceName().equals(this.getInstanceName()) == false) return false; if (other.getMetricName() == null ^ this.getMetricName() == null) return false; if (other.getMetricName() != null && other.getMetricName().equals(this.getMetricName()) == false) return false; if (other.getPeriod() == null ^ this.getPeriod() == null) return false; if (other.getPeriod() != null && other.getPeriod().equals(this.getPeriod()) == false) return false; if (other.getStartTime() == null ^ this.getStartTime() == null) return false; if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false) return false; if (other.getEndTime() == null ^ this.getEndTime() == null) return false; if (other.getEndTime() != null && other.getEndTime().equals(this.getEndTime()) == false) return false; if (other.getUnit() == null ^ this.getUnit() == null) return false; if (other.getUnit() != null && other.getUnit().equals(this.getUnit()) == false) return false; if (other.getStatistics() == null ^ this.getStatistics() == null) return false; if (other.getStatistics() != null && other.getStatistics().equals(this.getStatistics()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getInstanceName() == null) ? 0 : getInstanceName().hashCode()); hashCode = prime * hashCode + ((getMetricName() == null) ? 0 : getMetricName().hashCode()); hashCode = prime * hashCode + ((getPeriod() == null) ? 0 : getPeriod().hashCode()); hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode()); hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode()); hashCode = prime * hashCode + ((getUnit() == null) ? 0 : getUnit().hashCode()); hashCode = prime * hashCode + ((getStatistics() == null) ? 0 : getStatistics().hashCode()); return hashCode; } @Override public GetInstanceMetricDataRequest clone() { return (GetInstanceMetricDataRequest) super.clone(); } }