File: get_job_output.rb

package info (click to toggle)
ruby-fog-aws 3.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,140 kB
  • sloc: ruby: 73,328; javascript: 14; makefile: 9; sh: 4
file content (39 lines) | stat: -rw-r--r-- 1,318 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module Fog
  module AWS
    class Glacier
      class Real
        # Get the output from a job
        #
        # ==== Parameters
        # * name<~String> Name of the vault
        # * job_id<~String> The id of the job
        # * options<~Hash>
        #   * Range<~Range> The range to retrieve
        #   * account_id<~String> - The AWS account id. Defaults to the account owning the credentials making the request
        #   * response_block<~Proc> Proc to use for streaming the response
        # ==== Returns
        # * response<~Excon::Response>:
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/amazonglacier/latest/dev/api-job-output-get.html
        #
        def get_job_output(vault_name, job_id, options={})
          account_id = options.delete('account_id') || '-'
          path = "/#{account_id}/vaults/#{Fog::AWS.escape(vault_name)}/jobs/#{job_id}/output"
          headers = {}
          if range = options.delete('Range')
            headers['Range'] = "bytes=#{range.begin}-#{range.end}"
          end
          request(
            options.merge(
            :expects  => [200,206],
            :idempotent => true,
            :headers => headers,
            :method   => :get,
            :path     => path
          ))
        end
      end
    end
  end
end