class Fog::AWS::Glacier::Archives

Public Instance Methods

all() click to toggle source

you can't list a vault's archives

# File lib/fog/aws/models/glacier/archives.rb, line 10
def all
  nil
end
get(key) click to toggle source
# File lib/fog/aws/models/glacier/archives.rb, line 14
def get(key)
  new(:id => key)
end
new(attributes = {}) click to toggle source
Calls superclass method
# File lib/fog/aws/models/glacier/archives.rb, line 18
def new(attributes = {})
  requires :vault
  super({ :vault => vault }.merge!(attributes))
end