Class: Azure::Blob::Container
- Inherits:
-
Object
- Object
- Azure::Blob::Container
- Defined in:
- lib/azure/blob/container.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.
-
#public_access_level ⇒ Object
Returns the value of attribute public_access_level.
Instance Method Summary collapse
-
#initialize {|_self| ... } ⇒ Container
constructor
A new instance of Container.
Constructor Details
#initialize {|_self| ... } ⇒ Container
Returns a new instance of Container.
20 21 22 23 24 |
# File 'lib/azure/blob/container.rb', line 20 def initialize @properties = {} @metadata = {} yield self if block_given? end |
Instance Attribute Details
#metadata ⇒ Object
Returns the value of attribute metadata.
28 29 30 |
# File 'lib/azure/blob/container.rb', line 28 def @metadata end |
#name ⇒ Object
Returns the value of attribute name.
26 27 28 |
# File 'lib/azure/blob/container.rb', line 26 def name @name end |
#properties ⇒ Object
Returns the value of attribute properties.
27 28 29 |
# File 'lib/azure/blob/container.rb', line 27 def properties @properties end |
#public_access_level ⇒ Object
Returns the value of attribute public_access_level.
29 30 31 |
# File 'lib/azure/blob/container.rb', line 29 def public_access_level @public_access_level end |