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