Sha256: 838d99763cbd3431b2e8ec7f7e6c99b1074675825a37b386411a67f228d1e535
Contents?: true
Size: 676 Bytes
Versions: 29
Compression:
Stored size: 676 Bytes
Contents
module Fog module Compute class HPV2 module MetaParent def parent @parent end def parent=(new_parent) @parent = new_parent end def collection_name if @parent.class == Fog::Compute::HPV2::Image return 'images' elsif @parent.class == Fog::Compute::HPV2::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
Version data entries
29 entries across 29 versions & 4 rubygems