Parent

Methods

Class/Module Index [+]

Quicksearch

Fog::HP::BlockStorageV2::Volumes

Public Class Methods

new(attributes) click to toggle source
# File lib/fog/hp/models/block_storage_v2/volumes.rb, line 12
def initialize(attributes)
  self.filters ||= {}
  super
end

Public Instance Methods

all(filters = filters) click to toggle source
# File lib/fog/hp/models/block_storage_v2/volumes.rb, line 17
def all(filters = filters)
  details = filters.delete(:details)
  self.filters = filters
  non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters)
  if details
    data = service.list_volumes_detail(non_aliased_filters).body['volumes']
  else
    data = service.list_volumes(non_aliased_filters).body['volumes']
  end
  load(data)
end
get(volume_id) click to toggle source
# File lib/fog/hp/models/block_storage_v2/volumes.rb, line 29
def get(volume_id)
  volume = service.get_volume_details(volume_id).body['volume']
  new(volume)
rescue Fog::HP::BlockStorageV2::NotFound
  nil
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.