com.amazonaws.services.cloudwatch.model.ListMetricsResult 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;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListMetricsResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The metrics that match your request.
*
*/
private com.amazonaws.internal.SdkInternalList metrics;
/**
*
* The token that marks the start of the next batch of returned results.
*
*/
private String nextToken;
/**
*
* If you are using this operation in a monitoring account, this array contains the account IDs of the source
* accounts where the metrics in the returned data are from.
*
*
* This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.
*
*/
private com.amazonaws.internal.SdkInternalList owningAccounts;
/**
*
* The metrics that match your request.
*
*
* @return The metrics that match your request.
*/
public java.util.List getMetrics() {
if (metrics == null) {
metrics = new com.amazonaws.internal.SdkInternalList();
}
return metrics;
}
/**
*
* The metrics that match your request.
*
*
* @param metrics
* The metrics that match your request.
*/
public void setMetrics(java.util.Collection metrics) {
if (metrics == null) {
this.metrics = null;
return;
}
this.metrics = new com.amazonaws.internal.SdkInternalList(metrics);
}
/**
*
* The metrics that match your request.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setMetrics(java.util.Collection)} or {@link #withMetrics(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param metrics
* The metrics that match your request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListMetricsResult withMetrics(Metric... metrics) {
if (this.metrics == null) {
setMetrics(new com.amazonaws.internal.SdkInternalList(metrics.length));
}
for (Metric ele : metrics) {
this.metrics.add(ele);
}
return this;
}
/**
*
* The metrics that match your request.
*
*
* @param metrics
* The metrics that match your request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListMetricsResult withMetrics(java.util.Collection metrics) {
setMetrics(metrics);
return this;
}
/**
*
* The token that marks the start of the next batch of returned results.
*
*
* @param nextToken
* The token that marks the start of the next batch of returned results.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* The token that marks the start of the next batch of returned results.
*
*
* @return The token that marks the start of the next batch of returned results.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* The token that marks the start of the next batch of returned results.
*
*
* @param nextToken
* The token that marks the start of the next batch of returned results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListMetricsResult withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
*
* If you are using this operation in a monitoring account, this array contains the account IDs of the source
* accounts where the metrics in the returned data are from.
*
*
* This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.
*
*
* @return If you are using this operation in a monitoring account, this array contains the account IDs of the
* source accounts where the metrics in the returned data are from.
*
* This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.
*/
public java.util.List getOwningAccounts() {
if (owningAccounts == null) {
owningAccounts = new com.amazonaws.internal.SdkInternalList();
}
return owningAccounts;
}
/**
*
* If you are using this operation in a monitoring account, this array contains the account IDs of the source
* accounts where the metrics in the returned data are from.
*
*
* This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.
*
*
* @param owningAccounts
* If you are using this operation in a monitoring account, this array contains the account IDs of the source
* accounts where the metrics in the returned data are from.
*
* This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.
*/
public void setOwningAccounts(java.util.Collection owningAccounts) {
if (owningAccounts == null) {
this.owningAccounts = null;
return;
}
this.owningAccounts = new com.amazonaws.internal.SdkInternalList(owningAccounts);
}
/**
*
* If you are using this operation in a monitoring account, this array contains the account IDs of the source
* accounts where the metrics in the returned data are from.
*
*
* This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setOwningAccounts(java.util.Collection)} or {@link #withOwningAccounts(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param owningAccounts
* If you are using this operation in a monitoring account, this array contains the account IDs of the source
* accounts where the metrics in the returned data are from.
*
* This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListMetricsResult withOwningAccounts(String... owningAccounts) {
if (this.owningAccounts == null) {
setOwningAccounts(new com.amazonaws.internal.SdkInternalList(owningAccounts.length));
}
for (String ele : owningAccounts) {
this.owningAccounts.add(ele);
}
return this;
}
/**
*
* If you are using this operation in a monitoring account, this array contains the account IDs of the source
* accounts where the metrics in the returned data are from.
*
*
* This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.
*
*
* @param owningAccounts
* If you are using this operation in a monitoring account, this array contains the account IDs of the source
* accounts where the metrics in the returned data are from.
*
* This field is a 1:1 mapping between each metric that is returned and the ID of the owning account.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListMetricsResult withOwningAccounts(java.util.Collection owningAccounts) {
setOwningAccounts(owningAccounts);
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 (getMetrics() != null)
sb.append("Metrics: ").append(getMetrics()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken()).append(",");
if (getOwningAccounts() != null)
sb.append("OwningAccounts: ").append(getOwningAccounts());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListMetricsResult == false)
return false;
ListMetricsResult other = (ListMetricsResult) obj;
if (other.getMetrics() == null ^ this.getMetrics() == null)
return false;
if (other.getMetrics() != null && other.getMetrics().equals(this.getMetrics()) == false)
return false;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
if (other.getOwningAccounts() == null ^ this.getOwningAccounts() == null)
return false;
if (other.getOwningAccounts() != null && other.getOwningAccounts().equals(this.getOwningAccounts()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMetrics() == null) ? 0 : getMetrics().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
hashCode = prime * hashCode + ((getOwningAccounts() == null) ? 0 : getOwningAccounts().hashCode());
return hashCode;
}
@Override
public ListMetricsResult clone() {
try {
return (ListMetricsResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}