Class: Fog::AWS::Glacier::Archives
- Inherits:
-
Collection
- Object
- Collection
- Fog::AWS::Glacier::Archives
- Defined in:
- lib/fog/aws/models/glacier/archives.rb
Instance Method Summary collapse
-
#all ⇒ Object
you can’t list a vault’s archives.
- #get(key) ⇒ Object
- #new(attributes = {}) ⇒ Object
Instance Method Details
#all ⇒ Object
you can’t list a vault’s archives
11 12 13 |
# File 'lib/fog/aws/models/glacier/archives.rb', line 11 def all nil end |
#get(key) ⇒ Object
15 16 17 |
# File 'lib/fog/aws/models/glacier/archives.rb', line 15 def get(key) new(:id => key) end |
#new(attributes = {}) ⇒ Object
19 20 21 22 |
# File 'lib/fog/aws/models/glacier/archives.rb', line 19 def new(attributes = {}) requires :vault super({ :vault => vault }.merge!(attributes)) end |