com.amazonaws.services.cloudwatch.model.PutMetricDataRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-cloudwatch Show documentation
/*
* Copyright 2019-2024 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.cloudwatch.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class PutMetricDataRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The namespace for the metric data. You can use ASCII characters for the namespace, except for control characters
* which are not supported.
*
*
* To avoid conflicts with Amazon Web Services service namespaces, you should not specify a namespace that begins
* with AWS/
*
*/
private String namespace;
/**
*
* The data for the metric. The array can include no more than 1000 metrics per call.
*
*/
private com.amazonaws.internal.SdkInternalList metricData;
/**
*
* The namespace for the metric data. You can use ASCII characters for the namespace, except for control characters
* which are not supported.
*
*
* To avoid conflicts with Amazon Web Services service namespaces, you should not specify a namespace that begins
* with AWS/
*
*
* @param namespace
* The namespace for the metric data. You can use ASCII characters for the namespace, except for control
* characters which are not supported.
*
* To avoid conflicts with Amazon Web Services service namespaces, you should not specify a namespace that
* begins with AWS/
*/
public void setNamespace(String namespace) {
this.namespace = namespace;
}
/**
*
* The namespace for the metric data. You can use ASCII characters for the namespace, except for control characters
* which are not supported.
*
*
* To avoid conflicts with Amazon Web Services service namespaces, you should not specify a namespace that begins
* with AWS/
*
*
* @return The namespace for the metric data. You can use ASCII characters for the namespace, except for control
* characters which are not supported.
*
* To avoid conflicts with Amazon Web Services service namespaces, you should not specify a namespace that
* begins with AWS/
*/
public String getNamespace() {
return this.namespace;
}
/**
*
* The namespace for the metric data. You can use ASCII characters for the namespace, except for control characters
* which are not supported.
*
*
* To avoid conflicts with Amazon Web Services service namespaces, you should not specify a namespace that begins
* with AWS/
*
*
* @param namespace
* The namespace for the metric data. You can use ASCII characters for the namespace, except for control
* characters which are not supported.
*
* To avoid conflicts with Amazon Web Services service namespaces, you should not specify a namespace that
* begins with AWS/
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutMetricDataRequest withNamespace(String namespace) {
setNamespace(namespace);
return this;
}
/**
*
* The data for the metric. The array can include no more than 1000 metrics per call.
*
*
* @return The data for the metric. The array can include no more than 1000 metrics per call.
*/
public java.util.List getMetricData() {
if (metricData == null) {
metricData = new com.amazonaws.internal.SdkInternalList();
}
return metricData;
}
/**
*
* The data for the metric. The array can include no more than 1000 metrics per call.
*
*
* @param metricData
* The data for the metric. The array can include no more than 1000 metrics per call.
*/
public void setMetricData(java.util.Collection metricData) {
if (metricData == null) {
this.metricData = null;
return;
}
this.metricData = new com.amazonaws.internal.SdkInternalList(metricData);
}
/**
*
* The data for the metric. The array can include no more than 1000 metrics per call.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setMetricData(java.util.Collection)} or {@link #withMetricData(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param metricData
* The data for the metric. The array can include no more than 1000 metrics per call.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutMetricDataRequest withMetricData(MetricDatum... metricData) {
if (this.metricData == null) {
setMetricData(new com.amazonaws.internal.SdkInternalList(metricData.length));
}
for (MetricDatum ele : metricData) {
this.metricData.add(ele);
}
return this;
}
/**
*
* The data for the metric. The array can include no more than 1000 metrics per call.
*
*
* @param metricData
* The data for the metric. The array can include no more than 1000 metrics per call.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutMetricDataRequest withMetricData(java.util.Collection metricData) {
setMetricData(metricData);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getNamespace() != null)
sb.append("Namespace: ").append(getNamespace()).append(",");
if (getMetricData() != null)
sb.append("MetricData: ").append(getMetricData());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof PutMetricDataRequest == false)
return false;
PutMetricDataRequest other = (PutMetricDataRequest) obj;
if (other.getNamespace() == null ^ this.getNamespace() == null)
return false;
if (other.getNamespace() != null && other.getNamespace().equals(this.getNamespace()) == false)
return false;
if (other.getMetricData() == null ^ this.getMetricData() == null)
return false;
if (other.getMetricData() != null && other.getMetricData().equals(this.getMetricData()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNamespace() == null) ? 0 : getNamespace().hashCode());
hashCode = prime * hashCode + ((getMetricData() == null) ? 0 : getMetricData().hashCode());
return hashCode;
}
@Override
public PutMetricDataRequest clone() {
return (PutMetricDataRequest) super.clone();
}
}