All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.quicksight.model.TemplateVersion Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon QuickSight module holds the client classes that are used for communicating with Amazon QuickSight Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2014-2019 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.quicksight.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* A version of a template. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class TemplateVersion implements Serializable, Cloneable, StructuredPojo { /** *

* The time this was created. *

*/ private java.util.Date createdTime; /** *

* Errors associated with the template. *

*/ private java.util.List errors; /** *

* The version number of the template. *

*/ private Long versionNumber; /** *

* The HTTP status of the request. *

*/ private String status; /** *

* Schema of the dataset identified by the placeholder. The idea is that any dashboard created from the template * should be bound to new datasets matching the same schema described through this API. . *

*/ private java.util.List dataSetConfigurations; /** *

* The description of the template. *

*/ private String description; /** *

* The Amazon Resource Name (ARN) of the analysis or template which was used to create this template. *

*/ private String sourceEntityArn; /** *

* The time this was created. *

* * @param createdTime * The time this was created. */ public void setCreatedTime(java.util.Date createdTime) { this.createdTime = createdTime; } /** *

* The time this was created. *

* * @return The time this was created. */ public java.util.Date getCreatedTime() { return this.createdTime; } /** *

* The time this was created. *

* * @param createdTime * The time this was created. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateVersion withCreatedTime(java.util.Date createdTime) { setCreatedTime(createdTime); return this; } /** *

* Errors associated with the template. *

* * @return Errors associated with the template. */ public java.util.List getErrors() { return errors; } /** *

* Errors associated with the template. *

* * @param errors * Errors associated with the template. */ public void setErrors(java.util.Collection errors) { if (errors == null) { this.errors = null; return; } this.errors = new java.util.ArrayList(errors); } /** *

* Errors associated with the template. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setErrors(java.util.Collection)} or {@link #withErrors(java.util.Collection)} if you want to override the * existing values. *

* * @param errors * Errors associated with the template. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateVersion withErrors(TemplateError... errors) { if (this.errors == null) { setErrors(new java.util.ArrayList(errors.length)); } for (TemplateError ele : errors) { this.errors.add(ele); } return this; } /** *

* Errors associated with the template. *

* * @param errors * Errors associated with the template. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateVersion withErrors(java.util.Collection errors) { setErrors(errors); return this; } /** *

* The version number of the template. *

* * @param versionNumber * The version number of the template. */ public void setVersionNumber(Long versionNumber) { this.versionNumber = versionNumber; } /** *

* The version number of the template. *

* * @return The version number of the template. */ public Long getVersionNumber() { return this.versionNumber; } /** *

* The version number of the template. *

* * @param versionNumber * The version number of the template. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateVersion withVersionNumber(Long versionNumber) { setVersionNumber(versionNumber); return this; } /** *

* The HTTP status of the request. *

* * @param status * The HTTP status of the request. * @see ResourceStatus */ public void setStatus(String status) { this.status = status; } /** *

* The HTTP status of the request. *

* * @return The HTTP status of the request. * @see ResourceStatus */ public String getStatus() { return this.status; } /** *

* The HTTP status of the request. *

* * @param status * The HTTP status of the request. * @return Returns a reference to this object so that method calls can be chained together. * @see ResourceStatus */ public TemplateVersion withStatus(String status) { setStatus(status); return this; } /** *

* The HTTP status of the request. *

* * @param status * The HTTP status of the request. * @return Returns a reference to this object so that method calls can be chained together. * @see ResourceStatus */ public TemplateVersion withStatus(ResourceStatus status) { this.status = status.toString(); return this; } /** *

* Schema of the dataset identified by the placeholder. The idea is that any dashboard created from the template * should be bound to new datasets matching the same schema described through this API. . *

* * @return Schema of the dataset identified by the placeholder. The idea is that any dashboard created from the * template should be bound to new datasets matching the same schema described through this API. . */ public java.util.List getDataSetConfigurations() { return dataSetConfigurations; } /** *

* Schema of the dataset identified by the placeholder. The idea is that any dashboard created from the template * should be bound to new datasets matching the same schema described through this API. . *

* * @param dataSetConfigurations * Schema of the dataset identified by the placeholder. The idea is that any dashboard created from the * template should be bound to new datasets matching the same schema described through this API. . */ public void setDataSetConfigurations(java.util.Collection dataSetConfigurations) { if (dataSetConfigurations == null) { this.dataSetConfigurations = null; return; } this.dataSetConfigurations = new java.util.ArrayList(dataSetConfigurations); } /** *

* Schema of the dataset identified by the placeholder. The idea is that any dashboard created from the template * should be bound to new datasets matching the same schema described through this API. . *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setDataSetConfigurations(java.util.Collection)} or * {@link #withDataSetConfigurations(java.util.Collection)} if you want to override the existing values. *

* * @param dataSetConfigurations * Schema of the dataset identified by the placeholder. The idea is that any dashboard created from the * template should be bound to new datasets matching the same schema described through this API. . * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateVersion withDataSetConfigurations(DataSetConfiguration... dataSetConfigurations) { if (this.dataSetConfigurations == null) { setDataSetConfigurations(new java.util.ArrayList(dataSetConfigurations.length)); } for (DataSetConfiguration ele : dataSetConfigurations) { this.dataSetConfigurations.add(ele); } return this; } /** *

* Schema of the dataset identified by the placeholder. The idea is that any dashboard created from the template * should be bound to new datasets matching the same schema described through this API. . *

* * @param dataSetConfigurations * Schema of the dataset identified by the placeholder. The idea is that any dashboard created from the * template should be bound to new datasets matching the same schema described through this API. . * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateVersion withDataSetConfigurations(java.util.Collection dataSetConfigurations) { setDataSetConfigurations(dataSetConfigurations); return this; } /** *

* The description of the template. *

* * @param description * The description of the template. */ public void setDescription(String description) { this.description = description; } /** *

* The description of the template. *

* * @return The description of the template. */ public String getDescription() { return this.description; } /** *

* The description of the template. *

* * @param description * The description of the template. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateVersion withDescription(String description) { setDescription(description); return this; } /** *

* The Amazon Resource Name (ARN) of the analysis or template which was used to create this template. *

* * @param sourceEntityArn * The Amazon Resource Name (ARN) of the analysis or template which was used to create this template. */ public void setSourceEntityArn(String sourceEntityArn) { this.sourceEntityArn = sourceEntityArn; } /** *

* The Amazon Resource Name (ARN) of the analysis or template which was used to create this template. *

* * @return The Amazon Resource Name (ARN) of the analysis or template which was used to create this template. */ public String getSourceEntityArn() { return this.sourceEntityArn; } /** *

* The Amazon Resource Name (ARN) of the analysis or template which was used to create this template. *

* * @param sourceEntityArn * The Amazon Resource Name (ARN) of the analysis or template which was used to create this template. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateVersion withSourceEntityArn(String sourceEntityArn) { setSourceEntityArn(sourceEntityArn); 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 (getCreatedTime() != null) sb.append("CreatedTime: ").append(getCreatedTime()).append(","); if (getErrors() != null) sb.append("Errors: ").append(getErrors()).append(","); if (getVersionNumber() != null) sb.append("VersionNumber: ").append(getVersionNumber()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getDataSetConfigurations() != null) sb.append("DataSetConfigurations: ").append(getDataSetConfigurations()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getSourceEntityArn() != null) sb.append("SourceEntityArn: ").append(getSourceEntityArn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TemplateVersion == false) return false; TemplateVersion other = (TemplateVersion) obj; if (other.getCreatedTime() == null ^ this.getCreatedTime() == null) return false; if (other.getCreatedTime() != null && other.getCreatedTime().equals(this.getCreatedTime()) == false) return false; if (other.getErrors() == null ^ this.getErrors() == null) return false; if (other.getErrors() != null && other.getErrors().equals(this.getErrors()) == false) return false; if (other.getVersionNumber() == null ^ this.getVersionNumber() == null) return false; if (other.getVersionNumber() != null && other.getVersionNumber().equals(this.getVersionNumber()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getDataSetConfigurations() == null ^ this.getDataSetConfigurations() == null) return false; if (other.getDataSetConfigurations() != null && other.getDataSetConfigurations().equals(this.getDataSetConfigurations()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getSourceEntityArn() == null ^ this.getSourceEntityArn() == null) return false; if (other.getSourceEntityArn() != null && other.getSourceEntityArn().equals(this.getSourceEntityArn()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCreatedTime() == null) ? 0 : getCreatedTime().hashCode()); hashCode = prime * hashCode + ((getErrors() == null) ? 0 : getErrors().hashCode()); hashCode = prime * hashCode + ((getVersionNumber() == null) ? 0 : getVersionNumber().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getDataSetConfigurations() == null) ? 0 : getDataSetConfigurations().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getSourceEntityArn() == null) ? 0 : getSourceEntityArn().hashCode()); return hashCode; } @Override public TemplateVersion clone() { try { return (TemplateVersion) 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.quicksight.model.transform.TemplateVersionMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy