# File lib/deltacloud/drivers/azure/azure_driver.rb, line 126
  def delete_blob(credentials, bucket_id, blob_id, opts={})
    azure_connect(credentials)
    #get a handle to bucket and blob, and destroy!
    the_bucket = WAZ::Blobs::Container.find(bucket_id)
    the_blob = the_bucket[blob_id]
    the_blob.destroy!
  end