Sha256: 527c50fd7974c1ee7ab1077529674762611986290755ec7e6586298f03824f5e

Contents?: true

Size: 1.75 KB

Versions: 61

Compression:

Stored size: 1.75 KB

Contents

module Fog
  module Compute
    class HP
      class Real

        # Set or update metadata item 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
        # * 'key'<~String> - key for the metadata item
        # * 'value'<~String> - value for the metadata item
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * meta<~Hash>: hash of key/value pair for the metadata item updated
        #
        def update_meta(collection_name, parent_id, key, value)
          request(
            :body     => Fog::JSON.encode({ 'meta' => { key => value }}),
            :expects  => 200,
            :method   => 'PUT',
            :path     => "#{collection_name}/#{parent_id}/metadata/#{key}"
          )
        end

      end

      class Mock

        def update_meta(collection_name, parent_id, key, value)

          if collection_name == "images" then
            if get_image_details(parent_id)
              self.data[:images][parent_id]['metadata'][key] = value
            else
              raise Fog::Compute::HP::NotFound
            end
          end

          if collection_name == "servers" then
            if get_server_details(parent_id)
              self.data[:servers][parent_id]['metadata'][key] = value
            else
              raise Fog::Compute::HP::NotFound
            end
          end

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

        end

      end

    end
  end
end

Version data entries

61 entries across 61 versions & 6 rubygems

Version Path
fog-1.22.0 lib/fog/hp/requests/compute/update_meta.rb
fog-1.21.0 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/hp/requests/compute/update_meta.rb
fog-1.20.0 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/hp/requests/compute/update_meta.rb
fog-1.19.0 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/hp/requests/compute/update_meta.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/hp/requests/compute/update_meta.rb