# File lib/fog/hp/models/storage/shared_files.rb, line 14 def all requires :shared_directory parent = shared_directory.collection.get(shared_directory.url) if parent load(parent.files.map {|file| file.attributes}) else nil end # throws exception Fog::HP::Errors::Forbidden if insufficient access rescue Fog::Storage::HP::NotFound nil end
# File lib/fog/hp/models/storage/shared_files.rb, line 27 def get(key, &block) requires :shared_directory shared_object_url = "#{shared_directory.url}/#{key}" data = service.get_shared_object(shared_object_url, &block) file_data = data.headers.merge({ :body => data.body, :key => key }) new(file_data) # throws exception Fog::HP::Errors::Forbidden if insufficient access rescue Fog::Storage::HP::NotFound nil end
# File lib/fog/hp/models/storage/shared_files.rb, line 41 def head(key) requires :shared_directory shared_object_url = "#{shared_directory.url}/#{key}" data = service.head_shared_object(shared_object_url) file_data = data.headers.merge({ :body => '', :key => key }) new(file_data) # throws exception Fog::HP::Errors::Forbidden if insufficient access rescue Fog::Storage::HP::NotFound nil end
Generated with the Darkfish Rdoc Generator 2.