com.amazonaws.services.honeycode.model.BatchCreateTableRowsRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-honeycode Show documentation
/*
* Copyright 2017-2022 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.honeycode.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 BatchCreateTableRowsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The ID of the workbook where the new rows are being added.
*
*
* If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException.
*
*/
private String workbookId;
/**
*
* The ID of the table where the new rows are being added.
*
*
* If a table with the specified ID could not be found, this API throws ResourceNotFoundException.
*
*/
private String tableId;
/**
*
* The list of rows to create at the end of the table. Each item in this list needs to have a batch item id to
* uniquely identify the element in the request and the cells to create for that row. You need to specify at least
* one item in this list.
*
*
* Note that if one of the column ids in any of the rows in the request does not exist in the table, then the
* request fails and no updates are made to the table.
*
*/
private java.util.List rowsToCreate;
/**
*
* The request token for performing the batch create operation. Request tokens help to identify duplicate requests.
* If a call times out or fails due to a transient error like a failed network connection, you can retry the call
* with the same request token. The service ensures that if the first call using that request token is successfully
* performed, the second call will not perform the operation again.
*
*
* Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests
* spanning hours or days.
*
*/
private String clientRequestToken;
/**
*
* The ID of the workbook where the new rows are being added.
*
*
* If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException.
*
*
* @param workbookId
* The ID of the workbook where the new rows are being added.
*
* If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException.
*/
public void setWorkbookId(String workbookId) {
this.workbookId = workbookId;
}
/**
*
* The ID of the workbook where the new rows are being added.
*
*
* If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException.
*
*
* @return The ID of the workbook where the new rows are being added.
*
* If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException.
*/
public String getWorkbookId() {
return this.workbookId;
}
/**
*
* The ID of the workbook where the new rows are being added.
*
*
* If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException.
*
*
* @param workbookId
* The ID of the workbook where the new rows are being added.
*
* If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchCreateTableRowsRequest withWorkbookId(String workbookId) {
setWorkbookId(workbookId);
return this;
}
/**
*
* The ID of the table where the new rows are being added.
*
*
* If a table with the specified ID could not be found, this API throws ResourceNotFoundException.
*
*
* @param tableId
* The ID of the table where the new rows are being added.
*
* If a table with the specified ID could not be found, this API throws ResourceNotFoundException.
*/
public void setTableId(String tableId) {
this.tableId = tableId;
}
/**
*
* The ID of the table where the new rows are being added.
*
*
* If a table with the specified ID could not be found, this API throws ResourceNotFoundException.
*
*
* @return The ID of the table where the new rows are being added.
*
* If a table with the specified ID could not be found, this API throws ResourceNotFoundException.
*/
public String getTableId() {
return this.tableId;
}
/**
*
* The ID of the table where the new rows are being added.
*
*
* If a table with the specified ID could not be found, this API throws ResourceNotFoundException.
*
*
* @param tableId
* The ID of the table where the new rows are being added.
*
* If a table with the specified ID could not be found, this API throws ResourceNotFoundException.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchCreateTableRowsRequest withTableId(String tableId) {
setTableId(tableId);
return this;
}
/**
*
* The list of rows to create at the end of the table. Each item in this list needs to have a batch item id to
* uniquely identify the element in the request and the cells to create for that row. You need to specify at least
* one item in this list.
*
*
* Note that if one of the column ids in any of the rows in the request does not exist in the table, then the
* request fails and no updates are made to the table.
*
*
* @return The list of rows to create at the end of the table. Each item in this list needs to have a batch item id
* to uniquely identify the element in the request and the cells to create for that row. You need to specify
* at least one item in this list.
*
* Note that if one of the column ids in any of the rows in the request does not exist in the table, then
* the request fails and no updates are made to the table.
*/
public java.util.List getRowsToCreate() {
return rowsToCreate;
}
/**
*
* The list of rows to create at the end of the table. Each item in this list needs to have a batch item id to
* uniquely identify the element in the request and the cells to create for that row. You need to specify at least
* one item in this list.
*
*
* Note that if one of the column ids in any of the rows in the request does not exist in the table, then the
* request fails and no updates are made to the table.
*
*
* @param rowsToCreate
* The list of rows to create at the end of the table. Each item in this list needs to have a batch item id
* to uniquely identify the element in the request and the cells to create for that row. You need to specify
* at least one item in this list.
*
* Note that if one of the column ids in any of the rows in the request does not exist in the table, then the
* request fails and no updates are made to the table.
*/
public void setRowsToCreate(java.util.Collection rowsToCreate) {
if (rowsToCreate == null) {
this.rowsToCreate = null;
return;
}
this.rowsToCreate = new java.util.ArrayList(rowsToCreate);
}
/**
*
* The list of rows to create at the end of the table. Each item in this list needs to have a batch item id to
* uniquely identify the element in the request and the cells to create for that row. You need to specify at least
* one item in this list.
*
*
* Note that if one of the column ids in any of the rows in the request does not exist in the table, then the
* request fails and no updates are made to the table.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setRowsToCreate(java.util.Collection)} or {@link #withRowsToCreate(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param rowsToCreate
* The list of rows to create at the end of the table. Each item in this list needs to have a batch item id
* to uniquely identify the element in the request and the cells to create for that row. You need to specify
* at least one item in this list.
*
* Note that if one of the column ids in any of the rows in the request does not exist in the table, then the
* request fails and no updates are made to the table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchCreateTableRowsRequest withRowsToCreate(CreateRowData... rowsToCreate) {
if (this.rowsToCreate == null) {
setRowsToCreate(new java.util.ArrayList(rowsToCreate.length));
}
for (CreateRowData ele : rowsToCreate) {
this.rowsToCreate.add(ele);
}
return this;
}
/**
*
* The list of rows to create at the end of the table. Each item in this list needs to have a batch item id to
* uniquely identify the element in the request and the cells to create for that row. You need to specify at least
* one item in this list.
*
*
* Note that if one of the column ids in any of the rows in the request does not exist in the table, then the
* request fails and no updates are made to the table.
*
*
* @param rowsToCreate
* The list of rows to create at the end of the table. Each item in this list needs to have a batch item id
* to uniquely identify the element in the request and the cells to create for that row. You need to specify
* at least one item in this list.
*
* Note that if one of the column ids in any of the rows in the request does not exist in the table, then the
* request fails and no updates are made to the table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchCreateTableRowsRequest withRowsToCreate(java.util.Collection rowsToCreate) {
setRowsToCreate(rowsToCreate);
return this;
}
/**
*
* The request token for performing the batch create operation. Request tokens help to identify duplicate requests.
* If a call times out or fails due to a transient error like a failed network connection, you can retry the call
* with the same request token. The service ensures that if the first call using that request token is successfully
* performed, the second call will not perform the operation again.
*
*
* Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests
* spanning hours or days.
*
*
* @param clientRequestToken
* The request token for performing the batch create operation. Request tokens help to identify duplicate
* requests. If a call times out or fails due to a transient error like a failed network connection, you can
* retry the call with the same request token. The service ensures that if the first call using that request
* token is successfully performed, the second call will not perform the operation again.
*
* Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe
* requests spanning hours or days.
*/
public void setClientRequestToken(String clientRequestToken) {
this.clientRequestToken = clientRequestToken;
}
/**
*
* The request token for performing the batch create operation. Request tokens help to identify duplicate requests.
* If a call times out or fails due to a transient error like a failed network connection, you can retry the call
* with the same request token. The service ensures that if the first call using that request token is successfully
* performed, the second call will not perform the operation again.
*
*
* Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests
* spanning hours or days.
*
*
* @return The request token for performing the batch create operation. Request tokens help to identify duplicate
* requests. If a call times out or fails due to a transient error like a failed network connection, you can
* retry the call with the same request token. The service ensures that if the first call using that request
* token is successfully performed, the second call will not perform the operation again.
*
* Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe
* requests spanning hours or days.
*/
public String getClientRequestToken() {
return this.clientRequestToken;
}
/**
*
* The request token for performing the batch create operation. Request tokens help to identify duplicate requests.
* If a call times out or fails due to a transient error like a failed network connection, you can retry the call
* with the same request token. The service ensures that if the first call using that request token is successfully
* performed, the second call will not perform the operation again.
*
*
* Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests
* spanning hours or days.
*
*
* @param clientRequestToken
* The request token for performing the batch create operation. Request tokens help to identify duplicate
* requests. If a call times out or fails due to a transient error like a failed network connection, you can
* retry the call with the same request token. The service ensures that if the first call using that request
* token is successfully performed, the second call will not perform the operation again.
*
* Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe
* requests spanning hours or days.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchCreateTableRowsRequest withClientRequestToken(String clientRequestToken) {
setClientRequestToken(clientRequestToken);
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 (getWorkbookId() != null)
sb.append("WorkbookId: ").append(getWorkbookId()).append(",");
if (getTableId() != null)
sb.append("TableId: ").append(getTableId()).append(",");
if (getRowsToCreate() != null)
sb.append("RowsToCreate: ").append(getRowsToCreate()).append(",");
if (getClientRequestToken() != null)
sb.append("ClientRequestToken: ").append(getClientRequestToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof BatchCreateTableRowsRequest == false)
return false;
BatchCreateTableRowsRequest other = (BatchCreateTableRowsRequest) obj;
if (other.getWorkbookId() == null ^ this.getWorkbookId() == null)
return false;
if (other.getWorkbookId() != null && other.getWorkbookId().equals(this.getWorkbookId()) == false)
return false;
if (other.getTableId() == null ^ this.getTableId() == null)
return false;
if (other.getTableId() != null && other.getTableId().equals(this.getTableId()) == false)
return false;
if (other.getRowsToCreate() == null ^ this.getRowsToCreate() == null)
return false;
if (other.getRowsToCreate() != null && other.getRowsToCreate().equals(this.getRowsToCreate()) == false)
return false;
if (other.getClientRequestToken() == null ^ this.getClientRequestToken() == null)
return false;
if (other.getClientRequestToken() != null && other.getClientRequestToken().equals(this.getClientRequestToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getWorkbookId() == null) ? 0 : getWorkbookId().hashCode());
hashCode = prime * hashCode + ((getTableId() == null) ? 0 : getTableId().hashCode());
hashCode = prime * hashCode + ((getRowsToCreate() == null) ? 0 : getRowsToCreate().hashCode());
hashCode = prime * hashCode + ((getClientRequestToken() == null) ? 0 : getClientRequestToken().hashCode());
return hashCode;
}
@Override
public BatchCreateTableRowsRequest clone() {
return (BatchCreateTableRowsRequest) super.clone();
}
}