mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
47 lines
1.5 KiB
Ruby
47 lines
1.5 KiB
Ruby
module Fog
|
|
module AWS
|
|
module SimpleDB
|
|
class Real
|
|
|
|
# Put item attributes into a SimpleDB domain
|
|
#
|
|
# ==== Parameters
|
|
# * domain_name<~String> - Name of domain. Must be between 3 and 255 of the
|
|
# following characters: a-z, A-Z, 0-9, '_', '-' and '.'.
|
|
# * item_name<~String> - Name of the item. May use any UTF-8 characters valid
|
|
# in xml. Control characters and sequences not allowed in xml are not
|
|
# valid. Can be up to 1024 bytes long.
|
|
# * attributes<~Hash> - Name/value pairs to add to the item. Attribute names
|
|
# and values may use any UTF-8 characters valid in xml. Control characters
|
|
# and sequences not allowed in xml are not valid. Each name and value can
|
|
# be up to 1024 bytes long.
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'BoxUsage'
|
|
# * 'RequestId'
|
|
def put_attributes(domain_name, item_name, attributes, replace_attributes = [])
|
|
batch_put_attributes(
|
|
domain_name,
|
|
{ item_name => attributes },
|
|
{ item_name => replace_attributes }
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def put_attributes(domain_name, item_name, attributes, replace_attributes = [])
|
|
batch_put_attributes(
|
|
domain_name,
|
|
{ item_name => attributes },
|
|
{ item_name => replace_attributes }
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|