Sha256: ab26e8722a543f4e5268cded3f7318bb7320650c3a03f07342fb227cc7d76375

Contents?: true

Size: 1.51 KB

Versions: 7

Compression:

Stored size: 1.51 KB

Contents

module Fog
  module AWS
    class Glacier
      class Real
        # This operation initiates a multipart upload of an archive to a vault
        #
        # ==== Parameters
        # * name<~String> The vault name
        # * job_specification<~Hash> A specification of the job
        #    * Type<~String> The job type. Mandatory. Values: archive-retrieval, inventory-retrieval
        #    * Description<~String> The job description
        #    * ArchiveId<~String> The id of the archive to retrieve (only for Type==archive-retrieval)
        #    * Format<~String> The format to return (only for inventory retrieval). Values: CSV, JSON
        #    * SNSTopic<String> ARN of a topic to publish to when the job is complete
        # * options<~Hash>
        #   * account_id<~String> - The AWS account id. Defaults to the account owning the credentials making the request
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/amazonglacier/latest/dev/api-initiate-job-post.html
        #
        def initiate_job(name, job_specification, options={})
          account_id = options['account_id'] || '-'
          path = "/#{account_id}/vaults/#{Fog::AWS.escape(name)}/jobs"

          request({
            :expects  => 202,
            :headers => {},
            :method   => 'POST',
            :path     => path,
            :body     => Fog::JSON.encode(job_specification)
          })
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fog-aws-3.29.0 lib/fog/aws/requests/glacier/initiate_job.rb
fog-aws-3.28.0 lib/fog/aws/requests/glacier/initiate_job.rb
fog-aws-3.27.0 lib/fog/aws/requests/glacier/initiate_job.rb
fog-aws-3.26.0 lib/fog/aws/requests/glacier/initiate_job.rb
fog-aws-3.25.0 lib/fog/aws/requests/glacier/initiate_job.rb
fog-aws-3.24.0 lib/fog/aws/requests/glacier/initiate_job.rb
fog-aws-3.23.0 lib/fog/aws/requests/glacier/initiate_job.rb