1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/glacier/list_jobs.rb
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

36 lines
1.3 KiB
Ruby

module Fog
module AWS
class Glacier
class Real
# lists in-progress and recently jobs for the specified vault
#
# ==== Parameters
# * name<~String> Name of the vault
# * options<~Hash>
# * completed<~Boolean>Specifies the state of the jobs to return. You can specify true or false
# * statuscode<~String> Filter returned jobs by status (InProgress, Succeeded, or Failed)
# * limit<~Integer> - The maximum number of items returned in the response. (default 1000)
# * marker<~String> - marker used for pagination
# * account_id<~String> - The AWS account id. Defaults to the account owning the credentials making the request
# ==== Returns
# * response<~Excon::Response>:
# ==== See Also
#http://docs.amazonwebservices.com/amazonglacier/latest/dev/api-jobs-get.html
#
def list_jobs(vault_name, options={})
account_id = options.delete('account_id') || '-'
path = "/#{account_id}/vaults/#{Fog::AWS.escape(vault_name)}/jobs"
request(
:expects => 200,
:idempotent => true,
:headers => {},
:method => :get,
:path => path,
:query => options
)
end
end
end
end
end