2012-09-01 20:06:44 -04:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/aws/models/glacier/job'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class Glacier
|
|
|
|
|
|
|
|
class Jobs < Fog::Collection
|
|
|
|
|
|
|
|
model Fog::AWS::Glacier::Job
|
|
|
|
attribute :vault
|
2012-09-07 12:15:08 -04:00
|
|
|
attribute :filters
|
|
|
|
|
|
|
|
def initialize(attributes)
|
|
|
|
self.filters = {}
|
|
|
|
super
|
|
|
|
end
|
2012-09-01 20:06:44 -04:00
|
|
|
|
2012-09-07 12:15:08 -04:00
|
|
|
# acceptable filters are:
|
|
|
|
# statuscode InProgress/Failed/Succeeded
|
|
|
|
# completed (true/false)
|
|
|
|
def all(filters = self.filters)
|
|
|
|
self.filters = filters
|
|
|
|
data = connection.list_jobs(vault.id, self.filters).body['JobList']
|
2012-09-01 20:06:44 -04:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(key)
|
|
|
|
data = connection.describe_job(vault.id, key).body
|
|
|
|
new(data)
|
|
|
|
rescue Excon::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def new(attributes = {})
|
|
|
|
requires :vault
|
|
|
|
super({ :vault => vault }.merge!(attributes))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|