Sha256: 32103f600ed16c16394d23fba3d2f143682393b4450853190ec9b124429d8000
Contents?: true
Size: 1.68 KB
Versions: 37
Compression:
Stored size: 1.68 KB
Contents
module Fog module Compute class HPV2 class Real # Set metadata for specific collections # # ==== Parameters # * 'collection_name'<~String> - name of the collection i.e. images, servers for which the metadata is intented. # * 'parent_id'<~Integer> - id of the collection i.e. image_id or the server_id # * 'metadata'<~Hash> - A hash of key/value pairs containing the metadata # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'metadata'<~Hash> - key/value pairs of metadata items # def set_metadata(collection_name, parent_id, metadata = {}) request( :body => Fog::JSON.encode({ 'metadata' => metadata }), :expects => 200, :method => 'PUT', :path => "#{collection_name}/#{parent_id}/metadata" ) end end class Mock def set_metadata(collection_name, parent_id, metadata = {}) if collection_name == "images" then if get_image_details(parent_id) self.data[:images][parent_id]['metadata'] = metadata else raise Fog::Compute::HPV2::NotFound end end if collection_name == "servers" then if get_server_details(parent_id) self.data[:servers][parent_id]['metadata'] = metadata else raise Fog::Compute::HPV2::NotFound end end response = Excon::Response.new response.body = { "metadata" => metadata } response.status = 200 response end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems