Sha256: 2b866c2993fe5620ea26d46d897766a478031340e18d51d3fbfbaf309112b439
Contents?: true
Size: 1.38 KB
Versions: 37
Compression:
Stored size: 1.38 KB
Contents
module Fog module Compute class HPV2 class Real # List all volumes attached to a server # # ==== Parameters # * 'server_id'<~String> - UUId of server to list attached volumes for # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'volumeAttachments'<~Array>: # * <~Hash> # * 'device':<~String> - The name of the device # * 'serverId':<~String> - UUId of the server to which this volume is attached to # * 'id':<~String> - UUId of the volume # * 'volumeId':<~String> - UUId of the volume def list_server_volumes(server_id) response = request( :expects => 200, :method => 'GET', :path => "servers/#{server_id}/os-volume_attachments" ) response end end class Mock # :nodoc:all def list_server_volumes(server_id) response = Excon::Response.new volumes = [] if server = self.data[:servers][server_id] volumes = server['volumeAttachments'] response.status = 200 response.body = { 'volumeAttachments' => volumes } response else raise Fog::Compute::HPV2::NotFound end end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems