Module: Fog::AWS::EC2::Collections
- Defined in:
- lib/fog/aws/models/ec2/images.rb,
lib/fog/aws/models/ec2/flavors.rb,
lib/fog/aws/models/ec2/servers.rb,
lib/fog/aws/models/ec2/volumes.rb,
lib/fog/aws/models/ec2/addresses.rb,
lib/fog/aws/models/ec2/key_pairs.rb,
lib/fog/aws/models/ec2/snapshots.rb,
lib/fog/aws/models/ec2/security_groups.rb
Instance Method Summary collapse
- #addresses(attributes = {}) ⇒ Object
- #flavors ⇒ Object
- #images ⇒ Object
- #key_pairs ⇒ Object
- #security_groups ⇒ Object
- #servers ⇒ Object
- #snapshots(attributes = {}) ⇒ Object
- #volumes(attributes = {}) ⇒ Object
Instance Method Details
#addresses(attributes = {}) ⇒ Object
9 10 11 12 13 |
# File 'lib/fog/aws/models/ec2/addresses.rb', line 9 def addresses(attributes = {}) Fog::AWS::EC2::Addresses.new({ :connection => self }.merge!(attributes)) end |
#flavors ⇒ Object
9 10 11 |
# File 'lib/fog/aws/models/ec2/flavors.rb', line 9 def flavors Fog::AWS::EC2::Flavors.new(:connection => self) end |
#images ⇒ Object
9 10 11 |
# File 'lib/fog/aws/models/ec2/images.rb', line 9 def images Fog::AWS::EC2::Images.new(:connection => self) end |
#key_pairs ⇒ Object
9 10 11 |
# File 'lib/fog/aws/models/ec2/key_pairs.rb', line 9 def key_pairs Fog::AWS::EC2::KeyPairs.new(:connection => self) end |
#security_groups ⇒ Object
9 10 11 |
# File 'lib/fog/aws/models/ec2/security_groups.rb', line 9 def security_groups Fog::AWS::EC2::SecurityGroups.new(:connection => self) end |
#servers ⇒ Object
9 10 11 |
# File 'lib/fog/aws/models/ec2/servers.rb', line 9 def servers Fog::AWS::EC2::Servers.new(:connection => self) end |