
com.amazonaws.services.iotsitewise.model.ListTimeSeriesRequest Maven / Gradle / Ivy
/*
* Copyright 2016-2021 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.iotsitewise.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 ListTimeSeriesRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The token to be used for the next set of paginated results.
*
*/
private String nextToken;
/**
*
* The maximum number of results to return for each paginated request.
*
*/
private Integer maxResults;
/**
*
* The ID of the asset in which the asset property was created.
*
*/
private String assetId;
/**
*
* The alias prefix of the time series.
*
*/
private String aliasPrefix;
/**
*
* The type of the time series. The time series type can be one of the following values:
*
*
* -
*
* ASSOCIATED
– The time series is associated with an asset property.
*
*
* -
*
* DISASSOCIATED
– The time series isn't associated with any asset property.
*
*
*
*/
private String timeSeriesType;
/**
*
* The token to be used for the next set of paginated results.
*
*
* @param nextToken
* The token to be used for the next set of paginated results.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* The token to be used for the next set of paginated results.
*
*
* @return The token to be used for the next set of paginated results.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* The token to be used for the next set of paginated results.
*
*
* @param nextToken
* The token to be used for the next set of paginated results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListTimeSeriesRequest withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
*
* The maximum number of results to return for each paginated request.
*
*
* @param maxResults
* The maximum number of results to return for each paginated request.
*/
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
/**
*
* The maximum number of results to return for each paginated request.
*
*
* @return The maximum number of results to return for each paginated request.
*/
public Integer getMaxResults() {
return this.maxResults;
}
/**
*
* The maximum number of results to return for each paginated request.
*
*
* @param maxResults
* The maximum number of results to return for each paginated request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListTimeSeriesRequest withMaxResults(Integer maxResults) {
setMaxResults(maxResults);
return this;
}
/**
*
* The ID of the asset in which the asset property was created.
*
*
* @param assetId
* The ID of the asset in which the asset property was created.
*/
public void setAssetId(String assetId) {
this.assetId = assetId;
}
/**
*
* The ID of the asset in which the asset property was created.
*
*
* @return The ID of the asset in which the asset property was created.
*/
public String getAssetId() {
return this.assetId;
}
/**
*
* The ID of the asset in which the asset property was created.
*
*
* @param assetId
* The ID of the asset in which the asset property was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListTimeSeriesRequest withAssetId(String assetId) {
setAssetId(assetId);
return this;
}
/**
*
* The alias prefix of the time series.
*
*
* @param aliasPrefix
* The alias prefix of the time series.
*/
public void setAliasPrefix(String aliasPrefix) {
this.aliasPrefix = aliasPrefix;
}
/**
*
* The alias prefix of the time series.
*
*
* @return The alias prefix of the time series.
*/
public String getAliasPrefix() {
return this.aliasPrefix;
}
/**
*
* The alias prefix of the time series.
*
*
* @param aliasPrefix
* The alias prefix of the time series.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListTimeSeriesRequest withAliasPrefix(String aliasPrefix) {
setAliasPrefix(aliasPrefix);
return this;
}
/**
*
* The type of the time series. The time series type can be one of the following values:
*
*
* -
*
* ASSOCIATED
– The time series is associated with an asset property.
*
*
* -
*
* DISASSOCIATED
– The time series isn't associated with any asset property.
*
*
*
*
* @param timeSeriesType
* The type of the time series. The time series type can be one of the following values:
*
* -
*
* ASSOCIATED
– The time series is associated with an asset property.
*
*
* -
*
* DISASSOCIATED
– The time series isn't associated with any asset property.
*
*
* @see ListTimeSeriesType
*/
public void setTimeSeriesType(String timeSeriesType) {
this.timeSeriesType = timeSeriesType;
}
/**
*
* The type of the time series. The time series type can be one of the following values:
*
*
* -
*
* ASSOCIATED
– The time series is associated with an asset property.
*
*
* -
*
* DISASSOCIATED
– The time series isn't associated with any asset property.
*
*
*
*
* @return The type of the time series. The time series type can be one of the following values:
*
* -
*
* ASSOCIATED
– The time series is associated with an asset property.
*
*
* -
*
* DISASSOCIATED
– The time series isn't associated with any asset property.
*
*
* @see ListTimeSeriesType
*/
public String getTimeSeriesType() {
return this.timeSeriesType;
}
/**
*
* The type of the time series. The time series type can be one of the following values:
*
*
* -
*
* ASSOCIATED
– The time series is associated with an asset property.
*
*
* -
*
* DISASSOCIATED
– The time series isn't associated with any asset property.
*
*
*
*
* @param timeSeriesType
* The type of the time series. The time series type can be one of the following values:
*
* -
*
* ASSOCIATED
– The time series is associated with an asset property.
*
*
* -
*
* DISASSOCIATED
– The time series isn't associated with any asset property.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see ListTimeSeriesType
*/
public ListTimeSeriesRequest withTimeSeriesType(String timeSeriesType) {
setTimeSeriesType(timeSeriesType);
return this;
}
/**
*
* The type of the time series. The time series type can be one of the following values:
*
*
* -
*
* ASSOCIATED
– The time series is associated with an asset property.
*
*
* -
*
* DISASSOCIATED
– The time series isn't associated with any asset property.
*
*
*
*
* @param timeSeriesType
* The type of the time series. The time series type can be one of the following values:
*
* -
*
* ASSOCIATED
– The time series is associated with an asset property.
*
*
* -
*
* DISASSOCIATED
– The time series isn't associated with any asset property.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see ListTimeSeriesType
*/
public ListTimeSeriesRequest withTimeSeriesType(ListTimeSeriesType timeSeriesType) {
this.timeSeriesType = timeSeriesType.toString();
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 (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken()).append(",");
if (getMaxResults() != null)
sb.append("MaxResults: ").append(getMaxResults()).append(",");
if (getAssetId() != null)
sb.append("AssetId: ").append(getAssetId()).append(",");
if (getAliasPrefix() != null)
sb.append("AliasPrefix: ").append(getAliasPrefix()).append(",");
if (getTimeSeriesType() != null)
sb.append("TimeSeriesType: ").append(getTimeSeriesType());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListTimeSeriesRequest == false)
return false;
ListTimeSeriesRequest other = (ListTimeSeriesRequest) obj;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
if (other.getMaxResults() == null ^ this.getMaxResults() == null)
return false;
if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == false)
return false;
if (other.getAssetId() == null ^ this.getAssetId() == null)
return false;
if (other.getAssetId() != null && other.getAssetId().equals(this.getAssetId()) == false)
return false;
if (other.getAliasPrefix() == null ^ this.getAliasPrefix() == null)
return false;
if (other.getAliasPrefix() != null && other.getAliasPrefix().equals(this.getAliasPrefix()) == false)
return false;
if (other.getTimeSeriesType() == null ^ this.getTimeSeriesType() == null)
return false;
if (other.getTimeSeriesType() != null && other.getTimeSeriesType().equals(this.getTimeSeriesType()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode());
hashCode = prime * hashCode + ((getAssetId() == null) ? 0 : getAssetId().hashCode());
hashCode = prime * hashCode + ((getAliasPrefix() == null) ? 0 : getAliasPrefix().hashCode());
hashCode = prime * hashCode + ((getTimeSeriesType() == null) ? 0 : getTimeSeriesType().hashCode());
return hashCode;
}
@Override
public ListTimeSeriesRequest clone() {
return (ListTimeSeriesRequest) super.clone();
}
}