1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/compute_v2/update_metadata.rb
2013-01-30 09:05:10 -06:00

36 lines
1.3 KiB
Ruby

module Fog
module Compute
class RackspaceV2
class Real
# Updates metadata items for a specified server or image.
# @param [String<images, servers>] collection type of metadata
# @param [String] obj_id id of the object where the metadata is attached
# @param [Hash] metadata key value pairs of metadata
# @return [Excon::Response] response:
# * body [Hash]:
# * metadata [Hash]:
# @see http://docs.rackspace.com/servers/api/v2/cs-devguide/content/Update_Metadata-d1e5208.html
def update_metadata(collection, obj_id, metadata = {})
request(
:expects => [200, 203],
:method => 'POST',
:path => "/#{collection}/#{obj_id}/metadata",
:body => Fog::JSON.encode('metadata' => metadata)
)
end
end
class Mock
def update_metadata(collection, obj_id, metadata = {})
raise Fog::Compute::RackspaceV2::NotFound if obj_id == 0
response = Excon::Response.new
response.status = 202
response.body = {"metadata" => {"environment" => "dev", "tag" => "database"}}
response
end
end
end
end
end