class Azure::Storage::Blob::Blob

Attributes

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

Public Class Methods

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