Class: Fog::AWS::EC2::Volumes
- Inherits:
-
Collection
- Object
- Collection
- Fog::AWS::EC2::Volumes
- Defined in:
- lib/fog/aws/models/ec2/volumes.rb
Instance Method Summary collapse
Methods inherited from Collection
#initialize, #inspect, #update_attributes
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all(volume_ids = []) ⇒ Object
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/fog/aws/models/ec2/volumes.rb', line 11 def all(volume_ids = []) data = connection.describe_volumes(volume_ids) volumes = [] data['volumeSet'].each do |volume| volumes << Fog::AWS::EC2::Volume.new({ :connection => connection }.merge!(volume)) end volumes end |
#create(attributes = {}) ⇒ Object
22 23 24 25 26 |
# File 'lib/fog/aws/models/ec2/volumes.rb', line 22 def create(attributes = {}) volume = new(attributes) volume.save volume end |