# File lib/fog/volume/openstack/requests/get_backup_details.rb, line 15 def get_backup_details(_backup_id) response = Excon::Response.new response.status = 200 response.body = { "backup" => { "id" => "1", "volume_id" => "2", "name" => "backup 1", "status" => "available", "size" => 1, "object_count" => 16, "container" => "testcontainer", } } response end