Class: Fog::Storage::Softlayer::Directory
- Inherits:
-
Model
- Object
- Model
- Fog::Storage::Softlayer::Directory
- Defined in:
- lib/fog/softlayer/models/storage/directory.rb
Instance Method Summary collapse
- #destroy ⇒ Object
- #files ⇒ Object
- #public ⇒ Object (also: #public?)
- #public=(new_public) ⇒ Object
- #public_url ⇒ Object
- #save ⇒ Object
Instance Method Details
permalink #destroy ⇒ Object
[View source]
22 23 24 25 26 27 28 |
# File 'lib/fog/softlayer/models/storage/directory.rb', line 22 def destroy requires :key service.delete_container(key) true rescue Excon::Errors::NotFound false end |
permalink #files ⇒ Object
[View source]
30 31 32 33 34 35 36 37 |
# File 'lib/fog/softlayer/models/storage/directory.rb', line 30 def files @files ||= begin Fog::Storage::Softlayer::Files.new( :directory => self, :service => service ) end end |
permalink #public ⇒ Object Also known as: public?
[View source]
43 44 45 |
# File 'lib/fog/softlayer/models/storage/directory.rb', line 43 def public !!attributes[:public] end |
permalink #public=(new_public) ⇒ Object
[View source]
39 40 41 |
# File 'lib/fog/softlayer/models/storage/directory.rb', line 39 def public=(new_public) attributes[:public] = new_public end |
permalink #public_url ⇒ Object
48 49 50 |
# File 'lib/fog/softlayer/models/storage/directory.rb', line 48 def public_url raise NotImplementedError end |
permalink #save ⇒ Object
[View source]
52 53 54 55 56 |
# File 'lib/fog/softlayer/models/storage/directory.rb', line 52 def save requires :key service.put_container(key, public) true end |