Sha256: 00fb77cb2359c2b773a8379774b3e1bbe98a4bd61bd26f653d268f3958c2b2d3
Contents?: true
Size: 1.25 KB
Versions: 36
Compression:
Stored size: 1.25 KB
Contents
module Fog module AWS class SimpleDB class Real require 'fog/aws/parsers/simpledb/select' # 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<~Excon::Response>: # * body<~Hash>: # * 'BoxUsage'<~Float> # * 'RequestId'<~String> # * 'Items'<~Hash> - list of attribute name/values for the items formatted as # { 'item_name' => { 'attribute_name' => ['attribute_value'] }} # * 'NextToken'<~String> - 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, :parser => Fog::Parsers::AWS::SimpleDB::Select.new(@nil_string) ) end end class Mock def select(select_expression, next_token = nil) Fog::Mock.not_implemented end end end end end
Version data entries
36 entries across 36 versions & 2 rubygems