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