Class: Azure::Storage::Blob::Container::Container

Inherits:
Object
  • Object
show all
Defined in:
lib/azure/storage/blob/container.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize {|_self| ... } ⇒ Container

Returns a new instance of Container.

Yields:

  • (_self)

Yield Parameters:



32
33
34
35
36
# File 'lib/azure/storage/blob/container.rb', line 32

def initialize
  @properties = {}
  @metadata = {}
  yield self if block_given?
end

Instance Attribute Details

#metadataObject

Returns the value of attribute metadata.



40
41
42
# File 'lib/azure/storage/blob/container.rb', line 40

def 
  @metadata
end

#nameObject

Returns the value of attribute name.



38
39
40
# File 'lib/azure/storage/blob/container.rb', line 38

def name
  @name
end

#propertiesObject

Returns the value of attribute properties.



39
40
41
# File 'lib/azure/storage/blob/container.rb', line 39

def properties
  @properties
end

#public_access_levelObject

Returns the value of attribute public_access_level.



41
42
43
# File 'lib/azure/storage/blob/container.rb', line 41

def public_access_level
  @public_access_level
end