lib/fog/aws/requests/dynamodb/delete_table.rb in fog-aws-0.7.6 vs lib/fog/aws/requests/dynamodb/delete_table.rb in fog-aws-0.8.0
- old
+ new
@@ -9,29 +9,25 @@
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'TableDescription'<~Hash>
- # * 'KeySchema'<~Hash> - schema for table
- # * 'HashKeyElement'<~Hash>: info for primary key
- # * 'AttributeName'<~String> - name of attribute
- # * 'AttributeType'<~String> - type of attribute, in %w{N NS S SS} for number, number set, string, string set
- # * 'RangeKeyElement'<~Hash>: optional, info for range key
- # * 'AttributeName'<~String> - name of attribute
- # * 'AttributeType'<~String> - type of attribute, in %w{N NS S SS} for number, number set, string, string set
# * 'ProvisionedThroughput'<~Hash>:
# * 'ReadCapacityUnits'<~Integer> - read capacity for table, in 5..10000
# * 'WriteCapacityUnits'<~Integer> - write capacity for table, in 5..10000
# * 'TableName'<~String> - name of table
# * 'TableStatus'<~String> - status of table
+ #
+ # See DynamoDB Documentation: http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DeleteTable.html
+ #
def delete_table(table_name)
body = {
'TableName' => table_name
}
request(
:body => Fog::JSON.encode(body),
- :headers => {'x-amz-target' => 'DynamoDB_20111205.DeleteTable'},
+ :headers => {'x-amz-target' => 'DynamoDB_20120810.DeleteTable'},
:idempotent => true
)
end
end
end