/* * Copyright 2018-2023 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; /** * <p> * A physical table type built from the results of the custom SQL query. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomSql" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CustomSql implements Serializable, Cloneable, StructuredPojo { /** * <p> * The Amazon Resource Name (ARN) of the data source. * </p> */ private String dataSourceArn; /** * <p> * A display name for the SQL query result. * </p> */ private String name; /** * <p> * The SQL query. * </p> */ private String sqlQuery; /** * <p> * The column schema from the SQL query result set. * </p> */ private java.util.List<InputColumn> columns; /** * <p> * The Amazon Resource Name (ARN) of the data source. * </p> * * @param dataSourceArn * The Amazon Resource Name (ARN) of the data source. */ public void setDataSourceArn(String dataSourceArn) { this.dataSourceArn = dataSourceArn; } /** * <p> * The Amazon Resource Name (ARN) of the data source. * </p> * * @return The Amazon Resource Name (ARN) of the data source. */ public String getDataSourceArn() { return this.dataSourceArn; } /** * <p> * The Amazon Resource Name (ARN) of the data source. * </p> * * @param dataSourceArn * The Amazon Resource Name (ARN) of the data source. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withDataSourceArn(String dataSourceArn) { setDataSourceArn(dataSourceArn); return this; } /** * <p> * A display name for the SQL query result. * </p> * * @param name * A display name for the SQL query result. */ public void setName(String name) { this.name = name; } /** * <p> * A display name for the SQL query result. * </p> * * @return A display name for the SQL query result. */ public String getName() { return this.name; } /** * <p> * A display name for the SQL query result. * </p> * * @param name * A display name for the SQL query result. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withName(String name) { setName(name); return this; } /** * <p> * The SQL query. * </p> * * @param sqlQuery * The SQL query. */ public void setSqlQuery(String sqlQuery) { this.sqlQuery = sqlQuery; } /** * <p> * The SQL query. * </p> * * @return The SQL query. */ public String getSqlQuery() { return this.sqlQuery; } /** * <p> * The SQL query. * </p> * * @param sqlQuery * The SQL query. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withSqlQuery(String sqlQuery) { setSqlQuery(sqlQuery); return this; } /** * <p> * The column schema from the SQL query result set. * </p> * * @return The column schema from the SQL query result set. */ public java.util.List<InputColumn> getColumns() { return columns; } /** * <p> * The column schema from the SQL query result set. * </p> * * @param columns * The column schema from the SQL query result set. */ public void setColumns(java.util.Collection<InputColumn> columns) { if (columns == null) { this.columns = null; return; } this.columns = new java.util.ArrayList<InputColumn>(columns); } /** * <p> * The column schema from the SQL query result set. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setColumns(java.util.Collection)} or {@link #withColumns(java.util.Collection)} if you want to override * the existing values. * </p> * * @param columns * The column schema from the SQL query result set. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withColumns(InputColumn... columns) { if (this.columns == null) { setColumns(new java.util.ArrayList<InputColumn>(columns.length)); } for (InputColumn ele : columns) { this.columns.add(ele); } return this; } /** * <p> * The column schema from the SQL query result set. * </p> * * @param columns * The column schema from the SQL query result set. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomSql withColumns(java.util.Collection<InputColumn> columns) { setColumns(columns); 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 (getDataSourceArn() != null) sb.append("DataSourceArn: ").append(getDataSourceArn()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getSqlQuery() != null) sb.append("SqlQuery: ").append(getSqlQuery()).append(","); if (getColumns() != null) sb.append("Columns: ").append(getColumns()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CustomSql == false) return false; CustomSql other = (CustomSql) obj; if (other.getDataSourceArn() == null ^ this.getDataSourceArn() == null) return false; if (other.getDataSourceArn() != null && other.getDataSourceArn().equals(this.getDataSourceArn()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getSqlQuery() == null ^ this.getSqlQuery() == null) return false; if (other.getSqlQuery() != null && other.getSqlQuery().equals(this.getSqlQuery()) == false) return false; if (other.getColumns() == null ^ this.getColumns() == null) return false; if (other.getColumns() != null && other.getColumns().equals(this.getColumns()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDataSourceArn() == null) ? 0 : getDataSourceArn().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getSqlQuery() == null) ? 0 : getSqlQuery().hashCode()); hashCode = prime * hashCode + ((getColumns() == null) ? 0 : getColumns().hashCode()); return hashCode; } @Override public CustomSql clone() { try { return (CustomSql) 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.CustomSqlMarshaller.getInstance().marshall(this, protocolMarshaller); } }