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/models/glacier/vaults.rb

29 lines
482 B
Ruby
Raw Normal View History

2012-09-01 19:03:24 -04:00
require 'fog/core/collection'
require 'fog/aws/models/glacier/vault'
module Fog
module AWS
class Glacier
class Vaults < Fog::Collection
model Fog::AWS::Glacier::Vault
def all
data = service.list_vaults.body['VaultList']
2012-09-01 19:03:24 -04:00
load(data)
end
def get(key)
data = service.describe_vault(key).body
2012-09-01 19:03:24 -04:00
new(data)
rescue Excon::Errors::NotFound
nil
end
end
end
end
end