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

com.amazonaws.services.dynamodbv2.model.ConsumedCapacity Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2010-2015 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.dynamodbv2.model;

import java.io.Serializable;

/**
 * 

* Represents the capacity units consumed by an operation. The data * returned includes the total provisioned throughput consumed, along * with statistics for the table and any indexes involved in the * operation. ConsumedCapacity is only returned if it was asked * for in the request. For more information, see * Provisioned Throughput * in the Amazon DynamoDB Developer Guide. *

*/ public class ConsumedCapacity implements Serializable { /** * The name of the table that was affected by the operation. *

* Constraints:
* Length: 3 - 255
* Pattern: [a-zA-Z0-9_.-]+
*/ private String tableName; /** * The total number of capacity units consumed by the operation. */ private Double capacityUnits; /** * The amount of throughput consumed on the table affected by the * operation. */ private Capacity table; /** * The amount of throughput consumed on each local index affected by the * operation. */ private java.util.Map localSecondaryIndexes; /** * The amount of throughput consumed on each global index affected by the * operation. */ private java.util.Map globalSecondaryIndexes; /** * The name of the table that was affected by the operation. *

* Constraints:
* Length: 3 - 255
* Pattern: [a-zA-Z0-9_.-]+
* * @return The name of the table that was affected by the operation. */ public String getTableName() { return tableName; } /** * The name of the table that was affected by the operation. *

* Constraints:
* Length: 3 - 255
* Pattern: [a-zA-Z0-9_.-]+
* * @param tableName The name of the table that was affected by the operation. */ public void setTableName(String tableName) { this.tableName = tableName; } /** * The name of the table that was affected by the operation. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 3 - 255
* Pattern: [a-zA-Z0-9_.-]+
* * @param tableName The name of the table that was affected by the operation. * * @return A reference to this updated object so that method calls can be chained * together. */ public ConsumedCapacity withTableName(String tableName) { this.tableName = tableName; return this; } /** * The total number of capacity units consumed by the operation. * * @return The total number of capacity units consumed by the operation. */ public Double getCapacityUnits() { return capacityUnits; } /** * The total number of capacity units consumed by the operation. * * @param capacityUnits The total number of capacity units consumed by the operation. */ public void setCapacityUnits(Double capacityUnits) { this.capacityUnits = capacityUnits; } /** * The total number of capacity units consumed by the operation. *

* Returns a reference to this object so that method calls can be chained together. * * @param capacityUnits The total number of capacity units consumed by the operation. * * @return A reference to this updated object so that method calls can be chained * together. */ public ConsumedCapacity withCapacityUnits(Double capacityUnits) { this.capacityUnits = capacityUnits; return this; } /** * The amount of throughput consumed on the table affected by the * operation. * * @return The amount of throughput consumed on the table affected by the * operation. */ public Capacity getTable() { return table; } /** * The amount of throughput consumed on the table affected by the * operation. * * @param table The amount of throughput consumed on the table affected by the * operation. */ public void setTable(Capacity table) { this.table = table; } /** * The amount of throughput consumed on the table affected by the * operation. *

* Returns a reference to this object so that method calls can be chained together. * * @param table The amount of throughput consumed on the table affected by the * operation. * * @return A reference to this updated object so that method calls can be chained * together. */ public ConsumedCapacity withTable(Capacity table) { this.table = table; return this; } /** * The amount of throughput consumed on each local index affected by the * operation. * * @return The amount of throughput consumed on each local index affected by the * operation. */ public java.util.Map getLocalSecondaryIndexes() { return localSecondaryIndexes; } /** * The amount of throughput consumed on each local index affected by the * operation. * * @param localSecondaryIndexes The amount of throughput consumed on each local index affected by the * operation. */ public void setLocalSecondaryIndexes(java.util.Map localSecondaryIndexes) { this.localSecondaryIndexes = localSecondaryIndexes; } /** * The amount of throughput consumed on each local index affected by the * operation. *

* Returns a reference to this object so that method calls can be chained together. * * @param localSecondaryIndexes The amount of throughput consumed on each local index affected by the * operation. * * @return A reference to this updated object so that method calls can be chained * together. */ public ConsumedCapacity withLocalSecondaryIndexes(java.util.Map localSecondaryIndexes) { setLocalSecondaryIndexes(localSecondaryIndexes); return this; } /** * The amount of throughput consumed on each local index affected by the * operation. *

* The method adds a new key-value pair into LocalSecondaryIndexes * parameter, and returns a reference to this object so that method calls * can be chained together. * * @param key The key of the entry to be added into LocalSecondaryIndexes. * @param value The corresponding value of the entry to be added into LocalSecondaryIndexes. */ public ConsumedCapacity addLocalSecondaryIndexesEntry(String key, Capacity value) { if (null == this.localSecondaryIndexes) { this.localSecondaryIndexes = new java.util.HashMap(); } if (this.localSecondaryIndexes.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.localSecondaryIndexes.put(key, value); return this; } /** * Removes all the entries added into LocalSecondaryIndexes. *

* Returns a reference to this object so that method calls can be chained together. */ public ConsumedCapacity clearLocalSecondaryIndexesEntries() { this.localSecondaryIndexes = null; return this; } /** * The amount of throughput consumed on each global index affected by the * operation. * * @return The amount of throughput consumed on each global index affected by the * operation. */ public java.util.Map getGlobalSecondaryIndexes() { return globalSecondaryIndexes; } /** * The amount of throughput consumed on each global index affected by the * operation. * * @param globalSecondaryIndexes The amount of throughput consumed on each global index affected by the * operation. */ public void setGlobalSecondaryIndexes(java.util.Map globalSecondaryIndexes) { this.globalSecondaryIndexes = globalSecondaryIndexes; } /** * The amount of throughput consumed on each global index affected by the * operation. *

* Returns a reference to this object so that method calls can be chained together. * * @param globalSecondaryIndexes The amount of throughput consumed on each global index affected by the * operation. * * @return A reference to this updated object so that method calls can be chained * together. */ public ConsumedCapacity withGlobalSecondaryIndexes(java.util.Map globalSecondaryIndexes) { setGlobalSecondaryIndexes(globalSecondaryIndexes); return this; } /** * The amount of throughput consumed on each global index affected by the * operation. *

* The method adds a new key-value pair into GlobalSecondaryIndexes * parameter, and returns a reference to this object so that method calls * can be chained together. * * @param key The key of the entry to be added into GlobalSecondaryIndexes. * @param value The corresponding value of the entry to be added into GlobalSecondaryIndexes. */ public ConsumedCapacity addGlobalSecondaryIndexesEntry(String key, Capacity value) { if (null == this.globalSecondaryIndexes) { this.globalSecondaryIndexes = new java.util.HashMap(); } if (this.globalSecondaryIndexes.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.globalSecondaryIndexes.put(key, value); return this; } /** * Removes all the entries added into GlobalSecondaryIndexes. *

* Returns a reference to this object so that method calls can be chained together. */ public ConsumedCapacity clearGlobalSecondaryIndexesEntries() { this.globalSecondaryIndexes = null; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getTableName() != null) sb.append("TableName: " + getTableName() + ","); if (getCapacityUnits() != null) sb.append("CapacityUnits: " + getCapacityUnits() + ","); if (getTable() != null) sb.append("Table: " + getTable() + ","); if (getLocalSecondaryIndexes() != null) sb.append("LocalSecondaryIndexes: " + getLocalSecondaryIndexes() + ","); if (getGlobalSecondaryIndexes() != null) sb.append("GlobalSecondaryIndexes: " + getGlobalSecondaryIndexes() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTableName() == null) ? 0 : getTableName().hashCode()); hashCode = prime * hashCode + ((getCapacityUnits() == null) ? 0 : getCapacityUnits().hashCode()); hashCode = prime * hashCode + ((getTable() == null) ? 0 : getTable().hashCode()); hashCode = prime * hashCode + ((getLocalSecondaryIndexes() == null) ? 0 : getLocalSecondaryIndexes().hashCode()); hashCode = prime * hashCode + ((getGlobalSecondaryIndexes() == null) ? 0 : getGlobalSecondaryIndexes().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ConsumedCapacity == false) return false; ConsumedCapacity other = (ConsumedCapacity)obj; if (other.getTableName() == null ^ this.getTableName() == null) return false; if (other.getTableName() != null && other.getTableName().equals(this.getTableName()) == false) return false; if (other.getCapacityUnits() == null ^ this.getCapacityUnits() == null) return false; if (other.getCapacityUnits() != null && other.getCapacityUnits().equals(this.getCapacityUnits()) == false) return false; if (other.getTable() == null ^ this.getTable() == null) return false; if (other.getTable() != null && other.getTable().equals(this.getTable()) == false) return false; if (other.getLocalSecondaryIndexes() == null ^ this.getLocalSecondaryIndexes() == null) return false; if (other.getLocalSecondaryIndexes() != null && other.getLocalSecondaryIndexes().equals(this.getLocalSecondaryIndexes()) == false) return false; if (other.getGlobalSecondaryIndexes() == null ^ this.getGlobalSecondaryIndexes() == null) return false; if (other.getGlobalSecondaryIndexes() != null && other.getGlobalSecondaryIndexes().equals(this.getGlobalSecondaryIndexes()) == false) return false; return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy