Sha256: cd36d75ceb6e1f09395d3ffd36dac98b3fd7a097f7481f1ef920728d7e0625fd
Contents?: true
Size: 424 Bytes
Versions: 44
Compression:
Stored size: 424 Bytes
Contents
module Fog module Volume class OpenStack module Real def replace_metadata(volume_id, metadata = {}) data = { 'metadata' => metadata } request( :body => Fog::JSON.encode(data), :expects => [200], :method => 'PUT', :path => "volumes/#{volume_id}/metadata" ) end end end end end
Version data entries
44 entries across 42 versions & 3 rubygems