mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
693 B
Ruby
34 lines
693 B
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class OpenStack
|
||
|
module MetaParent
|
||
|
|
||
|
def parent
|
||
|
@parent
|
||
|
end
|
||
|
|
||
|
def parent=(new_parent)
|
||
|
@parent = new_parent
|
||
|
end
|
||
|
|
||
|
def collection_name
|
||
|
if @parent.class == Fog::Compute::OpenStack::Image
|
||
|
return "images"
|
||
|
elsif @parent.class == Fog::Compute::OpenStack::Server
|
||
|
return "servers"
|
||
|
else
|
||
|
raise "Metadata is not supported for this model type."
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def metas_to_hash(metas)
|
||
|
hash = {}
|
||
|
metas.each { |meta| hash.store(meta.key, meta.value) }
|
||
|
hash
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|