class Fog::Compute::HPV2::VolumeAttachments

Attributes

server[RW]

Public Instance Methods

all() click to toggle source
# File lib/fog/hp/models/compute_v2/volume_attachments.rb, line 12
def all
  requires :server
  data = service.list_server_volumes(server.id).body['volumeAttachments']
  load(data)
end
get(volume_id) click to toggle source
# File lib/fog/hp/models/compute_v2/volume_attachments.rb, line 18
def get(volume_id)
  requires :server
  if data = service.get_server_volume_details(server.id, volume_id).body['volumeAttachment']
    new(data)
  end
rescue Fog::Compute::HPV2::NotFound
  nil
end