class Azure::Storage::Blob::Container::Container

Attributes

metadata[RW]
name[RW]
properties[RW]
public_access_level[RW]

Public Class Methods

new() { |self| ... } click to toggle source
# File lib/azure/storage/blob/container.rb, line 32
def initialize
  @properties = {}
  @metadata = {}
  yield self if block_given?
end