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/hp/requests/compute/delete_meta.rb
2012-05-08 15:08:51 -04:00

28 lines
520 B
Ruby

module Fog
module Compute
class HP
class Real
def delete_meta(collection_name, parent_id, key)
request(
:expects => 204,
:method => 'DELETE',
:path => "#{collection_name}/#{parent_id}/metadata/#{key}"
)
end
end
class Mock
def delete_meta(collection_name, parent_id, key)
response = Excon::Response.new
response.status = 204
response
end
end
end
end
end