# File lib/fog/hp/models/storage/directories.rb, line 12 def all data = service.get_containers.body load(data) end
# File lib/fog/hp/models/storage/directories.rb, line 28 def get(key, options = {}) data = service.get_container(key, options) directory = create_directory(key, data) # set the files for the directory directory.files.merge_attributes(options) directory.files.instance_variable_set(:@loaded, true) data.body.each do |file| directory.files << directory.files.new(file) end # set the cdn state for the directory directory.cdn_enabled? directory rescue Fog::Storage::HP::NotFound nil end
# File lib/fog/hp/models/storage/directories.rb, line 17 def head(key, options = {}) data = service.head_container(key) directory = create_directory(key, data) # set the cdn state for the directory directory.cdn_enabled? directory rescue Fog::Storage::HP::NotFound nil end
Generated with the Darkfish Rdoc Generator 2.