mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
488 B
Ruby
29 lines
488 B
Ruby
![]() |
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 = connection.list_vaults.body['VaultList']
|
||
|
load(data)
|
||
|
end
|
||
|
|
||
|
def get(key)
|
||
|
data = connection.describe_vault(key).body
|
||
|
new(data)
|
||
|
rescue Excon::Errors::NotFound
|
||
|
nil
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|