mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
750 B
Ruby
28 lines
750 B
Ruby
module Fog
|
|
module Compute
|
|
class RackspaceV2
|
|
class Real
|
|
def set_metadata(collection, obj_id, metadata = {})
|
|
request(
|
|
:expects => [200, 203],
|
|
:method => 'PUT',
|
|
:path => "/#{collection}/#{obj_id}/metadata",
|
|
:body => Fog::JSON.encode('metadata' => metadata)
|
|
)
|
|
end
|
|
end
|
|
|
|
|
|
class Mock
|
|
def set_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"}}
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|