class Fog::AWS::Glacier::Vaults
Public Instance Methods
Source
# File lib/fog/aws/models/glacier/vaults.rb, line 9 def all data = service.list_vaults.body['VaultList'] load(data) end
Source
# File lib/fog/aws/models/glacier/vaults.rb, line 14 def get(key) data = service.describe_vault(key).body new(data) rescue Excon::Errors::NotFound nil end