Class: Azure::Storage::File::Directory::Directory
- Inherits:
-
Object
- Object
- Azure::Storage::File::Directory::Directory
- Defined in:
- file/lib/azure/storage/file/directory.rb
Instance Attribute Summary collapse
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#name ⇒ Object
Returns the value of attribute name.
-
#properties ⇒ Object
Returns the value of attribute properties.
Instance Method Summary collapse
-
#initialize {|_self| ... } ⇒ Directory
constructor
A new instance of Directory.
Constructor Details
#initialize {|_self| ... } ⇒ Directory
Returns a new instance of Directory.
34 35 36 37 38 |
# File 'file/lib/azure/storage/file/directory.rb', line 34 def initialize @properties = {} @metadata = {} yield self if block_given? end |
Instance Attribute Details
#metadata ⇒ Object
Returns the value of attribute metadata.
42 43 44 |
# File 'file/lib/azure/storage/file/directory.rb', line 42 def @metadata end |
#name ⇒ Object
Returns the value of attribute name.
40 41 42 |
# File 'file/lib/azure/storage/file/directory.rb', line 40 def name @name end |
#properties ⇒ Object
Returns the value of attribute properties.
41 42 43 |
# File 'file/lib/azure/storage/file/directory.rb', line 41 def properties @properties end |