# File lib/fog/openstack/requests/compute/update_meta.rb, line 20
        def update_meta(collection_name, parent_id, key, value)

          if collection_name == "images" then
            if not list_images_detail.body['images'].detect {|_| _['id'] == parent_id}
              raise Fog::Compute::OpenStack::NotFound
            end 
          end

          if collection_name == "servers" then
            if not list_servers_detail.body['servers'].detect {|_| _['id'] == parent_id}
              raise Fog::Compute::OpenStack::NotFound
            end 
          end

          response = Excon::Response.new
          response.body = { "meta" => { key => value } }
          response.status = 200
          response

        end