class Azure::Blob::Blob

Attributes

metadata[RW]
name[RW]
properties[RW]
snapshot[RW]

Public Class Methods

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