# File lib/deltacloud/drivers/azure/azure_driver.rb, line 97
  def create_blob(credentials, bucket_id, blob_id, blob_data, opts=nil)
    azure_connect(credentials)
    #get a handle to the bucket in order to put there
    the_bucket = WAZ::Blobs::Container.find(bucket_id)
    the_bucket.store(blob_id, blob_data[:tempfile], blob_data[:type])
    Blob.new( { :id => blob_id,
                :bucket => bucket_id,
                :content_lengh => blob_data[:tempfile].length,
                :content_type => blob_data[:type],
                :last_modified => ''
            } )
  end