2012-01-21 21:31:36 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class DynamoDB
|
|
|
|
class Real
|
|
|
|
|
|
|
|
# List DynamoDB tables
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * 'options'<~Hash> - options, defaults to {}
|
|
|
|
# * 'ExclusiveStartTableName'<~String> - name of table to begin listing with
|
|
|
|
# * 'Limit'<~Integer> - limit number of tables to return
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'LastEvaluatedTableName'<~String> - last table name, for pagination
|
|
|
|
# * 'TableNames'<~Array> - table names
|
|
|
|
def list_tables(options = {})
|
|
|
|
request(
|
2012-04-20 07:54:34 -04:00
|
|
|
:body => MultiJson.dump(options),
|
2012-01-21 21:31:36 -05:00
|
|
|
:headers => {'x-amz-target' => 'DynamoDB_20111205.ListTables'},
|
|
|
|
:idempotent => true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|