mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
939 B
Ruby
30 lines
939 B
Ruby
|
module Fog
|
||
|
module AWS
|
||
|
class SimpleDB
|
||
|
|
||
|
# Select item data from SimpleDB
|
||
|
#
|
||
|
# ==== Parameters
|
||
|
# * select_expression<~String> - Expression to query domain with.
|
||
|
# * next_token<~String> - Offset token to start list, defaults to nil.
|
||
|
#
|
||
|
# ==== Returns
|
||
|
# * response<~Fog::AWS::Response>:
|
||
|
# * body<~Hash>:
|
||
|
# * :box_usage
|
||
|
# * :request_id
|
||
|
# * :items - list of attribute name/values for the items formatted as
|
||
|
# { 'item_name' => { 'attribute_name' => ['attribute_value'] }}
|
||
|
# * :next_token - offset to start with if there are are more domains to list
|
||
|
def select(select_expression, next_token = nil)
|
||
|
request({
|
||
|
'Action' => 'Select',
|
||
|
'NextToken' => next_token,
|
||
|
'SelectExpression' => select_expression
|
||
|
}, Fog::Parsers::AWS::SimpleDB::Select.new(@nil_string))
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|