Sha256: dc5ad9736d3e087e15af456c6acc845a362dc10ad176dca1515d23e9ac7eb42a
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 KB
Contents
module Fog module Compute class HuaweiCloud class Real 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" unless list_images_detail.body['images'].find { |image| image['id'] == parent_id } raise Fog::Compute::HuaweiCloud::NotFound end end if collection_name == "servers" unless list_servers_detail.body['servers'].find { |server| server['id'] == parent_id } raise Fog::Compute::HuaweiCloud::NotFound end end # FIXME: join w/ existing metadata here response = Excon::Response.new response.body = {"metadata" => {key => value}} response.status = 200 response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems