Sha256: 5dfe29c6c7b56c1a6f1e1bde69d4b00ba6c8561dbcd241f2ca1adc62d2248056
Contents?: true
Size: 1.32 KB
Versions: 20
Compression:
Stored size: 1.32 KB
Contents
module Fog module OpenStack class Volume module Real def update_snapshot(snapshot_id, data = {}) request( :body => Fog::JSON.encode('snapshot' => data), :expects => 200, :method => 'PUT', :path => "snapshots/#{snapshot_id}" ) end end module Mock def update_snapshot(snapshot_id, options = {}) unless snapshot_id raise ArgumentError, 'snapshot_id is required' end response = Excon::Response.new if snapshot = data[:snapshots][snapshot_id] response.status = 200 snapshot['display_name'] = options['display_name'] if options['display_name'] snapshot['display_description'] = options['display_description'] if options['display_description'] snapshot['name'] = options['name'] if options['name'] snapshot['description'] = options['description'] if options['description'] snapshot['metadata'] = options['metadata'] if options['metadata'] response.body = {'snapshot' => snapshot} response else raise Fog::HP::BlockStorageV2::NotFound end end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems