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

com.amazonaws.services.lakeformation.model.UpdateTableObjectsRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.778
Show newest version
/*
 * 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.lakeformation.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 UpdateTableObjectsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The catalog containing the governed table to update. Defaults to the caller’s account ID. *

*/ private String catalogId; /** *

* The database containing the governed table to update. *

*/ private String databaseName; /** *

* The governed table to update. *

*/ private String tableName; /** *

* The transaction at which to do the write. *

*/ private String transactionId; /** *

* A list of WriteOperation objects that define an object to add to or delete from the manifest for a * governed table. *

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

* The catalog containing the governed table to update. Defaults to the caller’s account ID. *

* * @param catalogId * The catalog containing the governed table to update. Defaults to the caller’s account ID. */ public void setCatalogId(String catalogId) { this.catalogId = catalogId; } /** *

* The catalog containing the governed table to update. Defaults to the caller’s account ID. *

* * @return The catalog containing the governed table to update. Defaults to the caller’s account ID. */ public String getCatalogId() { return this.catalogId; } /** *

* The catalog containing the governed table to update. Defaults to the caller’s account ID. *

* * @param catalogId * The catalog containing the governed table to update. Defaults to the caller’s account ID. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTableObjectsRequest withCatalogId(String catalogId) { setCatalogId(catalogId); return this; } /** *

* The database containing the governed table to update. *

* * @param databaseName * The database containing the governed table to update. */ public void setDatabaseName(String databaseName) { this.databaseName = databaseName; } /** *

* The database containing the governed table to update. *

* * @return The database containing the governed table to update. */ public String getDatabaseName() { return this.databaseName; } /** *

* The database containing the governed table to update. *

* * @param databaseName * The database containing the governed table to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTableObjectsRequest withDatabaseName(String databaseName) { setDatabaseName(databaseName); return this; } /** *

* The governed table to update. *

* * @param tableName * The governed table to update. */ public void setTableName(String tableName) { this.tableName = tableName; } /** *

* The governed table to update. *

* * @return The governed table to update. */ public String getTableName() { return this.tableName; } /** *

* The governed table to update. *

* * @param tableName * The governed table to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTableObjectsRequest withTableName(String tableName) { setTableName(tableName); return this; } /** *

* The transaction at which to do the write. *

* * @param transactionId * The transaction at which to do the write. */ public void setTransactionId(String transactionId) { this.transactionId = transactionId; } /** *

* The transaction at which to do the write. *

* * @return The transaction at which to do the write. */ public String getTransactionId() { return this.transactionId; } /** *

* The transaction at which to do the write. *

* * @param transactionId * The transaction at which to do the write. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTableObjectsRequest withTransactionId(String transactionId) { setTransactionId(transactionId); return this; } /** *

* A list of WriteOperation objects that define an object to add to or delete from the manifest for a * governed table. *

* * @return A list of WriteOperation objects that define an object to add to or delete from the manifest * for a governed table. */ public java.util.List getWriteOperations() { return writeOperations; } /** *

* A list of WriteOperation objects that define an object to add to or delete from the manifest for a * governed table. *

* * @param writeOperations * A list of WriteOperation objects that define an object to add to or delete from the manifest * for a governed table. */ public void setWriteOperations(java.util.Collection writeOperations) { if (writeOperations == null) { this.writeOperations = null; return; } this.writeOperations = new java.util.ArrayList(writeOperations); } /** *

* A list of WriteOperation objects that define an object to add to or delete from the manifest for a * governed table. *

*

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

* * @param writeOperations * A list of WriteOperation objects that define an object to add to or delete from the manifest * for a governed table. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTableObjectsRequest withWriteOperations(WriteOperation... writeOperations) { if (this.writeOperations == null) { setWriteOperations(new java.util.ArrayList(writeOperations.length)); } for (WriteOperation ele : writeOperations) { this.writeOperations.add(ele); } return this; } /** *

* A list of WriteOperation objects that define an object to add to or delete from the manifest for a * governed table. *

* * @param writeOperations * A list of WriteOperation objects that define an object to add to or delete from the manifest * for a governed table. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateTableObjectsRequest withWriteOperations(java.util.Collection writeOperations) { setWriteOperations(writeOperations); 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 (getCatalogId() != null) sb.append("CatalogId: ").append(getCatalogId()).append(","); if (getDatabaseName() != null) sb.append("DatabaseName: ").append(getDatabaseName()).append(","); if (getTableName() != null) sb.append("TableName: ").append(getTableName()).append(","); if (getTransactionId() != null) sb.append("TransactionId: ").append(getTransactionId()).append(","); if (getWriteOperations() != null) sb.append("WriteOperations: ").append(getWriteOperations()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateTableObjectsRequest == false) return false; UpdateTableObjectsRequest other = (UpdateTableObjectsRequest) obj; if (other.getCatalogId() == null ^ this.getCatalogId() == null) return false; if (other.getCatalogId() != null && other.getCatalogId().equals(this.getCatalogId()) == false) return false; if (other.getDatabaseName() == null ^ this.getDatabaseName() == null) return false; if (other.getDatabaseName() != null && other.getDatabaseName().equals(this.getDatabaseName()) == false) return false; if (other.getTableName() == null ^ this.getTableName() == null) return false; if (other.getTableName() != null && other.getTableName().equals(this.getTableName()) == false) return false; if (other.getTransactionId() == null ^ this.getTransactionId() == null) return false; if (other.getTransactionId() != null && other.getTransactionId().equals(this.getTransactionId()) == false) return false; if (other.getWriteOperations() == null ^ this.getWriteOperations() == null) return false; if (other.getWriteOperations() != null && other.getWriteOperations().equals(this.getWriteOperations()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCatalogId() == null) ? 0 : getCatalogId().hashCode()); hashCode = prime * hashCode + ((getDatabaseName() == null) ? 0 : getDatabaseName().hashCode()); hashCode = prime * hashCode + ((getTableName() == null) ? 0 : getTableName().hashCode()); hashCode = prime * hashCode + ((getTransactionId() == null) ? 0 : getTransactionId().hashCode()); hashCode = prime * hashCode + ((getWriteOperations() == null) ? 0 : getWriteOperations().hashCode()); return hashCode; } @Override public UpdateTableObjectsRequest clone() { return (UpdateTableObjectsRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy