Methods

Class/Module Index [+]

Quicksearch

Fog::Storage::HP::Directories

Public Instance Methods

all() click to toggle source
# File lib/fog/hp/models/storage/directories.rb, line 12
def all
  data = service.get_containers.body
  load(data)
end
get(key, options = {}) click to toggle source
# 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
head(key, options = {}) click to toggle source
# 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

[Validate]

Generated with the Darkfish Rdoc Generator 2.