com.amazonaws.services.quicksight.model.UpdateDataSetRequest Maven / Gradle / Ivy
/*
* 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.quicksight.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 UpdateDataSetRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The Amazon Web Services account ID.
*
*/
private String awsAccountId;
/**
*
* The ID for the dataset that you want to update. This ID is unique per Amazon Web Services Region for each Amazon
* Web Services account.
*
*/
private String dataSetId;
/**
*
* The display name for the dataset.
*
*/
private String name;
/**
*
* Declares the physical tables that are available in the underlying data sources.
*
*/
private java.util.Map physicalTableMap;
/**
*
* Configures the combination and transformation of the data from the physical tables.
*
*/
private java.util.Map logicalTableMap;
/**
*
* Indicates whether you want to import the data into SPICE.
*
*/
private String importMode;
/**
*
* Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial
* hierarchy is supported.
*
*/
private java.util.List columnGroups;
/**
*
* The folder that contains fields and nested subfolders for your dataset.
*
*/
private java.util.Map fieldFolders;
/**
*
* The row-level security configuration for the data you want to create.
*
*/
private RowLevelPermissionDataSet rowLevelPermissionDataSet;
/**
*
* The configuration of tags on a dataset to set row-level security. Row-level security tags are currently supported
* for anonymous embedding only.
*
*/
private RowLevelPermissionTagConfiguration rowLevelPermissionTagConfiguration;
/**
*
* A set of one or more definitions of a
* ColumnLevelPermissionRule
* .
*
*/
private java.util.List columnLevelPermissionRules;
private DataSetUsageConfiguration dataSetUsageConfiguration;
/**
*
* The parameter declarations of the dataset.
*
*/
private java.util.List datasetParameters;
/**
*
* The Amazon Web Services account ID.
*
*
* @param awsAccountId
* The Amazon Web Services account ID.
*/
public void setAwsAccountId(String awsAccountId) {
this.awsAccountId = awsAccountId;
}
/**
*
* The Amazon Web Services account ID.
*
*
* @return The Amazon Web Services account ID.
*/
public String getAwsAccountId() {
return this.awsAccountId;
}
/**
*
* The Amazon Web Services account ID.
*
*
* @param awsAccountId
* The Amazon Web Services account ID.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withAwsAccountId(String awsAccountId) {
setAwsAccountId(awsAccountId);
return this;
}
/**
*
* The ID for the dataset that you want to update. This ID is unique per Amazon Web Services Region for each Amazon
* Web Services account.
*
*
* @param dataSetId
* The ID for the dataset that you want to update. This ID is unique per Amazon Web Services Region for each
* Amazon Web Services account.
*/
public void setDataSetId(String dataSetId) {
this.dataSetId = dataSetId;
}
/**
*
* The ID for the dataset that you want to update. This ID is unique per Amazon Web Services Region for each Amazon
* Web Services account.
*
*
* @return The ID for the dataset that you want to update. This ID is unique per Amazon Web Services Region for each
* Amazon Web Services account.
*/
public String getDataSetId() {
return this.dataSetId;
}
/**
*
* The ID for the dataset that you want to update. This ID is unique per Amazon Web Services Region for each Amazon
* Web Services account.
*
*
* @param dataSetId
* The ID for the dataset that you want to update. This ID is unique per Amazon Web Services Region for each
* Amazon Web Services account.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withDataSetId(String dataSetId) {
setDataSetId(dataSetId);
return this;
}
/**
*
* The display name for the dataset.
*
*
* @param name
* The display name for the dataset.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The display name for the dataset.
*
*
* @return The display name for the dataset.
*/
public String getName() {
return this.name;
}
/**
*
* The display name for the dataset.
*
*
* @param name
* The display name for the dataset.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withName(String name) {
setName(name);
return this;
}
/**
*
* Declares the physical tables that are available in the underlying data sources.
*
*
* @return Declares the physical tables that are available in the underlying data sources.
*/
public java.util.Map getPhysicalTableMap() {
return physicalTableMap;
}
/**
*
* Declares the physical tables that are available in the underlying data sources.
*
*
* @param physicalTableMap
* Declares the physical tables that are available in the underlying data sources.
*/
public void setPhysicalTableMap(java.util.Map physicalTableMap) {
this.physicalTableMap = physicalTableMap;
}
/**
*
* Declares the physical tables that are available in the underlying data sources.
*
*
* @param physicalTableMap
* Declares the physical tables that are available in the underlying data sources.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withPhysicalTableMap(java.util.Map physicalTableMap) {
setPhysicalTableMap(physicalTableMap);
return this;
}
/**
* Add a single PhysicalTableMap entry
*
* @see UpdateDataSetRequest#withPhysicalTableMap
* @returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest addPhysicalTableMapEntry(String key, PhysicalTable value) {
if (null == this.physicalTableMap) {
this.physicalTableMap = new java.util.HashMap();
}
if (this.physicalTableMap.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.physicalTableMap.put(key, value);
return this;
}
/**
* Removes all the entries added into PhysicalTableMap.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest clearPhysicalTableMapEntries() {
this.physicalTableMap = null;
return this;
}
/**
*
* Configures the combination and transformation of the data from the physical tables.
*
*
* @return Configures the combination and transformation of the data from the physical tables.
*/
public java.util.Map getLogicalTableMap() {
return logicalTableMap;
}
/**
*
* Configures the combination and transformation of the data from the physical tables.
*
*
* @param logicalTableMap
* Configures the combination and transformation of the data from the physical tables.
*/
public void setLogicalTableMap(java.util.Map logicalTableMap) {
this.logicalTableMap = logicalTableMap;
}
/**
*
* Configures the combination and transformation of the data from the physical tables.
*
*
* @param logicalTableMap
* Configures the combination and transformation of the data from the physical tables.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withLogicalTableMap(java.util.Map logicalTableMap) {
setLogicalTableMap(logicalTableMap);
return this;
}
/**
* Add a single LogicalTableMap entry
*
* @see UpdateDataSetRequest#withLogicalTableMap
* @returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest addLogicalTableMapEntry(String key, LogicalTable value) {
if (null == this.logicalTableMap) {
this.logicalTableMap = new java.util.HashMap();
}
if (this.logicalTableMap.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.logicalTableMap.put(key, value);
return this;
}
/**
* Removes all the entries added into LogicalTableMap.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest clearLogicalTableMapEntries() {
this.logicalTableMap = null;
return this;
}
/**
*
* Indicates whether you want to import the data into SPICE.
*
*
* @param importMode
* Indicates whether you want to import the data into SPICE.
* @see DataSetImportMode
*/
public void setImportMode(String importMode) {
this.importMode = importMode;
}
/**
*
* Indicates whether you want to import the data into SPICE.
*
*
* @return Indicates whether you want to import the data into SPICE.
* @see DataSetImportMode
*/
public String getImportMode() {
return this.importMode;
}
/**
*
* Indicates whether you want to import the data into SPICE.
*
*
* @param importMode
* Indicates whether you want to import the data into SPICE.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DataSetImportMode
*/
public UpdateDataSetRequest withImportMode(String importMode) {
setImportMode(importMode);
return this;
}
/**
*
* Indicates whether you want to import the data into SPICE.
*
*
* @param importMode
* Indicates whether you want to import the data into SPICE.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DataSetImportMode
*/
public UpdateDataSetRequest withImportMode(DataSetImportMode importMode) {
this.importMode = importMode.toString();
return this;
}
/**
*
* Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial
* hierarchy is supported.
*
*
* @return Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial
* hierarchy is supported.
*/
public java.util.List getColumnGroups() {
return columnGroups;
}
/**
*
* Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial
* hierarchy is supported.
*
*
* @param columnGroups
* Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial
* hierarchy is supported.
*/
public void setColumnGroups(java.util.Collection columnGroups) {
if (columnGroups == null) {
this.columnGroups = null;
return;
}
this.columnGroups = new java.util.ArrayList(columnGroups);
}
/**
*
* Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial
* hierarchy is supported.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setColumnGroups(java.util.Collection)} or {@link #withColumnGroups(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param columnGroups
* Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial
* hierarchy is supported.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withColumnGroups(ColumnGroup... columnGroups) {
if (this.columnGroups == null) {
setColumnGroups(new java.util.ArrayList(columnGroups.length));
}
for (ColumnGroup ele : columnGroups) {
this.columnGroups.add(ele);
}
return this;
}
/**
*
* Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial
* hierarchy is supported.
*
*
* @param columnGroups
* Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial
* hierarchy is supported.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withColumnGroups(java.util.Collection columnGroups) {
setColumnGroups(columnGroups);
return this;
}
/**
*
* The folder that contains fields and nested subfolders for your dataset.
*
*
* @return The folder that contains fields and nested subfolders for your dataset.
*/
public java.util.Map getFieldFolders() {
return fieldFolders;
}
/**
*
* The folder that contains fields and nested subfolders for your dataset.
*
*
* @param fieldFolders
* The folder that contains fields and nested subfolders for your dataset.
*/
public void setFieldFolders(java.util.Map fieldFolders) {
this.fieldFolders = fieldFolders;
}
/**
*
* The folder that contains fields and nested subfolders for your dataset.
*
*
* @param fieldFolders
* The folder that contains fields and nested subfolders for your dataset.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withFieldFolders(java.util.Map fieldFolders) {
setFieldFolders(fieldFolders);
return this;
}
/**
* Add a single FieldFolders entry
*
* @see UpdateDataSetRequest#withFieldFolders
* @returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest addFieldFoldersEntry(String key, FieldFolder value) {
if (null == this.fieldFolders) {
this.fieldFolders = new java.util.HashMap();
}
if (this.fieldFolders.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.fieldFolders.put(key, value);
return this;
}
/**
* Removes all the entries added into FieldFolders.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest clearFieldFoldersEntries() {
this.fieldFolders = null;
return this;
}
/**
*
* The row-level security configuration for the data you want to create.
*
*
* @param rowLevelPermissionDataSet
* The row-level security configuration for the data you want to create.
*/
public void setRowLevelPermissionDataSet(RowLevelPermissionDataSet rowLevelPermissionDataSet) {
this.rowLevelPermissionDataSet = rowLevelPermissionDataSet;
}
/**
*
* The row-level security configuration for the data you want to create.
*
*
* @return The row-level security configuration for the data you want to create.
*/
public RowLevelPermissionDataSet getRowLevelPermissionDataSet() {
return this.rowLevelPermissionDataSet;
}
/**
*
* The row-level security configuration for the data you want to create.
*
*
* @param rowLevelPermissionDataSet
* The row-level security configuration for the data you want to create.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withRowLevelPermissionDataSet(RowLevelPermissionDataSet rowLevelPermissionDataSet) {
setRowLevelPermissionDataSet(rowLevelPermissionDataSet);
return this;
}
/**
*
* The configuration of tags on a dataset to set row-level security. Row-level security tags are currently supported
* for anonymous embedding only.
*
*
* @param rowLevelPermissionTagConfiguration
* The configuration of tags on a dataset to set row-level security. Row-level security tags are currently
* supported for anonymous embedding only.
*/
public void setRowLevelPermissionTagConfiguration(RowLevelPermissionTagConfiguration rowLevelPermissionTagConfiguration) {
this.rowLevelPermissionTagConfiguration = rowLevelPermissionTagConfiguration;
}
/**
*
* The configuration of tags on a dataset to set row-level security. Row-level security tags are currently supported
* for anonymous embedding only.
*
*
* @return The configuration of tags on a dataset to set row-level security. Row-level security tags are currently
* supported for anonymous embedding only.
*/
public RowLevelPermissionTagConfiguration getRowLevelPermissionTagConfiguration() {
return this.rowLevelPermissionTagConfiguration;
}
/**
*
* The configuration of tags on a dataset to set row-level security. Row-level security tags are currently supported
* for anonymous embedding only.
*
*
* @param rowLevelPermissionTagConfiguration
* The configuration of tags on a dataset to set row-level security. Row-level security tags are currently
* supported for anonymous embedding only.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withRowLevelPermissionTagConfiguration(RowLevelPermissionTagConfiguration rowLevelPermissionTagConfiguration) {
setRowLevelPermissionTagConfiguration(rowLevelPermissionTagConfiguration);
return this;
}
/**
*
* A set of one or more definitions of a
* ColumnLevelPermissionRule
* .
*
*
* @return A set of one or more definitions of a
* ColumnLevelPermissionRule
* .
*/
public java.util.List getColumnLevelPermissionRules() {
return columnLevelPermissionRules;
}
/**
*
* A set of one or more definitions of a
* ColumnLevelPermissionRule
* .
*
*
* @param columnLevelPermissionRules
* A set of one or more definitions of a
* ColumnLevelPermissionRule
* .
*/
public void setColumnLevelPermissionRules(java.util.Collection columnLevelPermissionRules) {
if (columnLevelPermissionRules == null) {
this.columnLevelPermissionRules = null;
return;
}
this.columnLevelPermissionRules = new java.util.ArrayList(columnLevelPermissionRules);
}
/**
*
* A set of one or more definitions of a
* ColumnLevelPermissionRule
* .
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setColumnLevelPermissionRules(java.util.Collection)} or
* {@link #withColumnLevelPermissionRules(java.util.Collection)} if you want to override the existing values.
*
*
* @param columnLevelPermissionRules
* A set of one or more definitions of a
* ColumnLevelPermissionRule
* .
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withColumnLevelPermissionRules(ColumnLevelPermissionRule... columnLevelPermissionRules) {
if (this.columnLevelPermissionRules == null) {
setColumnLevelPermissionRules(new java.util.ArrayList(columnLevelPermissionRules.length));
}
for (ColumnLevelPermissionRule ele : columnLevelPermissionRules) {
this.columnLevelPermissionRules.add(ele);
}
return this;
}
/**
*
* A set of one or more definitions of a
* ColumnLevelPermissionRule
* .
*
*
* @param columnLevelPermissionRules
* A set of one or more definitions of a
* ColumnLevelPermissionRule
* .
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withColumnLevelPermissionRules(java.util.Collection columnLevelPermissionRules) {
setColumnLevelPermissionRules(columnLevelPermissionRules);
return this;
}
/**
* @param dataSetUsageConfiguration
*/
public void setDataSetUsageConfiguration(DataSetUsageConfiguration dataSetUsageConfiguration) {
this.dataSetUsageConfiguration = dataSetUsageConfiguration;
}
/**
* @return
*/
public DataSetUsageConfiguration getDataSetUsageConfiguration() {
return this.dataSetUsageConfiguration;
}
/**
* @param dataSetUsageConfiguration
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withDataSetUsageConfiguration(DataSetUsageConfiguration dataSetUsageConfiguration) {
setDataSetUsageConfiguration(dataSetUsageConfiguration);
return this;
}
/**
*
* The parameter declarations of the dataset.
*
*
* @return The parameter declarations of the dataset.
*/
public java.util.List getDatasetParameters() {
return datasetParameters;
}
/**
*
* The parameter declarations of the dataset.
*
*
* @param datasetParameters
* The parameter declarations of the dataset.
*/
public void setDatasetParameters(java.util.Collection datasetParameters) {
if (datasetParameters == null) {
this.datasetParameters = null;
return;
}
this.datasetParameters = new java.util.ArrayList(datasetParameters);
}
/**
*
* The parameter declarations of the dataset.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setDatasetParameters(java.util.Collection)} or {@link #withDatasetParameters(java.util.Collection)} if
* you want to override the existing values.
*
*
* @param datasetParameters
* The parameter declarations of the dataset.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withDatasetParameters(DatasetParameter... datasetParameters) {
if (this.datasetParameters == null) {
setDatasetParameters(new java.util.ArrayList(datasetParameters.length));
}
for (DatasetParameter ele : datasetParameters) {
this.datasetParameters.add(ele);
}
return this;
}
/**
*
* The parameter declarations of the dataset.
*
*
* @param datasetParameters
* The parameter declarations of the dataset.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateDataSetRequest withDatasetParameters(java.util.Collection datasetParameters) {
setDatasetParameters(datasetParameters);
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 (getAwsAccountId() != null)
sb.append("AwsAccountId: ").append(getAwsAccountId()).append(",");
if (getDataSetId() != null)
sb.append("DataSetId: ").append(getDataSetId()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getPhysicalTableMap() != null)
sb.append("PhysicalTableMap: ").append(getPhysicalTableMap()).append(",");
if (getLogicalTableMap() != null)
sb.append("LogicalTableMap: ").append(getLogicalTableMap()).append(",");
if (getImportMode() != null)
sb.append("ImportMode: ").append(getImportMode()).append(",");
if (getColumnGroups() != null)
sb.append("ColumnGroups: ").append(getColumnGroups()).append(",");
if (getFieldFolders() != null)
sb.append("FieldFolders: ").append(getFieldFolders()).append(",");
if (getRowLevelPermissionDataSet() != null)
sb.append("RowLevelPermissionDataSet: ").append(getRowLevelPermissionDataSet()).append(",");
if (getRowLevelPermissionTagConfiguration() != null)
sb.append("RowLevelPermissionTagConfiguration: ").append(getRowLevelPermissionTagConfiguration()).append(",");
if (getColumnLevelPermissionRules() != null)
sb.append("ColumnLevelPermissionRules: ").append(getColumnLevelPermissionRules()).append(",");
if (getDataSetUsageConfiguration() != null)
sb.append("DataSetUsageConfiguration: ").append(getDataSetUsageConfiguration()).append(",");
if (getDatasetParameters() != null)
sb.append("DatasetParameters: ").append(getDatasetParameters());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof UpdateDataSetRequest == false)
return false;
UpdateDataSetRequest other = (UpdateDataSetRequest) obj;
if (other.getAwsAccountId() == null ^ this.getAwsAccountId() == null)
return false;
if (other.getAwsAccountId() != null && other.getAwsAccountId().equals(this.getAwsAccountId()) == false)
return false;
if (other.getDataSetId() == null ^ this.getDataSetId() == null)
return false;
if (other.getDataSetId() != null && other.getDataSetId().equals(this.getDataSetId()) == 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.getPhysicalTableMap() == null ^ this.getPhysicalTableMap() == null)
return false;
if (other.getPhysicalTableMap() != null && other.getPhysicalTableMap().equals(this.getPhysicalTableMap()) == false)
return false;
if (other.getLogicalTableMap() == null ^ this.getLogicalTableMap() == null)
return false;
if (other.getLogicalTableMap() != null && other.getLogicalTableMap().equals(this.getLogicalTableMap()) == false)
return false;
if (other.getImportMode() == null ^ this.getImportMode() == null)
return false;
if (other.getImportMode() != null && other.getImportMode().equals(this.getImportMode()) == false)
return false;
if (other.getColumnGroups() == null ^ this.getColumnGroups() == null)
return false;
if (other.getColumnGroups() != null && other.getColumnGroups().equals(this.getColumnGroups()) == false)
return false;
if (other.getFieldFolders() == null ^ this.getFieldFolders() == null)
return false;
if (other.getFieldFolders() != null && other.getFieldFolders().equals(this.getFieldFolders()) == false)
return false;
if (other.getRowLevelPermissionDataSet() == null ^ this.getRowLevelPermissionDataSet() == null)
return false;
if (other.getRowLevelPermissionDataSet() != null && other.getRowLevelPermissionDataSet().equals(this.getRowLevelPermissionDataSet()) == false)
return false;
if (other.getRowLevelPermissionTagConfiguration() == null ^ this.getRowLevelPermissionTagConfiguration() == null)
return false;
if (other.getRowLevelPermissionTagConfiguration() != null
&& other.getRowLevelPermissionTagConfiguration().equals(this.getRowLevelPermissionTagConfiguration()) == false)
return false;
if (other.getColumnLevelPermissionRules() == null ^ this.getColumnLevelPermissionRules() == null)
return false;
if (other.getColumnLevelPermissionRules() != null && other.getColumnLevelPermissionRules().equals(this.getColumnLevelPermissionRules()) == false)
return false;
if (other.getDataSetUsageConfiguration() == null ^ this.getDataSetUsageConfiguration() == null)
return false;
if (other.getDataSetUsageConfiguration() != null && other.getDataSetUsageConfiguration().equals(this.getDataSetUsageConfiguration()) == false)
return false;
if (other.getDatasetParameters() == null ^ this.getDatasetParameters() == null)
return false;
if (other.getDatasetParameters() != null && other.getDatasetParameters().equals(this.getDatasetParameters()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getAwsAccountId() == null) ? 0 : getAwsAccountId().hashCode());
hashCode = prime * hashCode + ((getDataSetId() == null) ? 0 : getDataSetId().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getPhysicalTableMap() == null) ? 0 : getPhysicalTableMap().hashCode());
hashCode = prime * hashCode + ((getLogicalTableMap() == null) ? 0 : getLogicalTableMap().hashCode());
hashCode = prime * hashCode + ((getImportMode() == null) ? 0 : getImportMode().hashCode());
hashCode = prime * hashCode + ((getColumnGroups() == null) ? 0 : getColumnGroups().hashCode());
hashCode = prime * hashCode + ((getFieldFolders() == null) ? 0 : getFieldFolders().hashCode());
hashCode = prime * hashCode + ((getRowLevelPermissionDataSet() == null) ? 0 : getRowLevelPermissionDataSet().hashCode());
hashCode = prime * hashCode + ((getRowLevelPermissionTagConfiguration() == null) ? 0 : getRowLevelPermissionTagConfiguration().hashCode());
hashCode = prime * hashCode + ((getColumnLevelPermissionRules() == null) ? 0 : getColumnLevelPermissionRules().hashCode());
hashCode = prime * hashCode + ((getDataSetUsageConfiguration() == null) ? 0 : getDataSetUsageConfiguration().hashCode());
hashCode = prime * hashCode + ((getDatasetParameters() == null) ? 0 : getDatasetParameters().hashCode());
return hashCode;
}
@Override
public UpdateDataSetRequest clone() {
return (UpdateDataSetRequest) super.clone();
}
}