# File lib/deltacloud/drivers/azure/azure_driver.rb, line 75
  def blobs(credentials, opts)
    blob_list = []
    azure_connect(credentials)
    safely do
      the_bucket = WAZ::Blobs::Container.find(opts['bucket'])
      the_bucket.blobs.each do |waz_blob|
        blob_list << convert_blob(waz_blob)
      end
    end
    blob_list = filter_on(blob_list, :id, opts)
    blob_list
  end