Class: Fog::Rackspace::Files::Directory

Inherits:
Model
  • Object
show all
Extended by:
Deprecation
Defined in:
lib/fog/rackspace/models/files/directory.rb

Instance Attribute Summary

Attributes inherited from Model

#connection

Instance Method Summary collapse

Methods included from Deprecation

deprecate

Methods inherited from Model

#collection, #initialize, #inspect, #reload, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



18
19
20
21
22
23
24
# File 'lib/fog/rackspace/models/files/directory.rb', line 18

def destroy
  requires :key
  connection.delete_container(key)
  true
rescue Excon::Errors::NotFound
  false
end

#filesObject



26
27
28
29
30
31
32
33
# File 'lib/fog/rackspace/models/files/directory.rb', line 26

def files
  @files ||= begin
    Fog::Rackspace::Files::Files.new(
      :directory    => self,
      :connection   => connection
    )
  end
end

#saveObject



35
36
37
38
39
# File 'lib/fog/rackspace/models/files/directory.rb', line 35

def save
  requires :key
  connection.put_container(key)
  true
end