# File lib/fog/aws/requests/glacier/delete_archive.rb, line 20
        def delete_archive(name,archive_id,options={})
          account_id = options['account_id'] || '-'
          path = "/#{account_id}/vaults/#{Fog::AWS.escape(name)}/archives/#{archive_id}"
          request(
            :expects  => 204,
            :idempotent => true,
            :headers => {},
            :method   => :delete,
            :path     => path
          )
        end