Sha256: e9c8a0d0c5b5da41c646260fe0ada06609bdd8f6575bfe49ae677e04e975705b
Contents?: true
Size: 818 Bytes
Versions: 19
Compression:
Stored size: 818 Bytes
Contents
module Fog module Compute class OpenStack class Real def update_aggregate_metadata(uuid, metadata = {}) data = {'set_metadata' => {'metadata' => metadata}} request( :body => Fog::JSON.encode(data), :expects => [200], :method => 'POST', :path => "os-aggregates/#{uuid}/action" ) end end class Mock def update_aggregate_metadata(uuid, metadata = {}) response = Excon::Response.new response.status = 200 response.headers = { "Content-Type" => "text/html; charset=UTF-8", "Content-Length" => "0", "Date" => Date.new } response end end # mock end # openstack end # compute end # fog
Version data entries
19 entries across 19 versions & 3 rubygems