mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
4d33ccb7a7
- Focus on adding additional vm actions support - New request types are not fully tested
29 lines
576 B
Ruby
29 lines
576 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def get_metadata(collection_name, parent_id, key)
|
|
request(
|
|
:expects => [200, 203],
|
|
:method => 'GET',
|
|
:path => "#{collection_name}/#{parent_id}/metadata/#{key}"
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def get_metadata(collection_name, parent_id, key)
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
response.body = { 'meta' => {} }
|
|
response
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|