Class: Fog::Compute::AWS::Images
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::AWS::Images
- Defined in:
- lib/fog/aws/models/compute/images.rb
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(image_id) ⇒ Object
-
#initialize(attributes) ⇒ Images
constructor
Creates a new Amazon machine image.
Constructor Details
#initialize(attributes) ⇒ Images
Creates a new Amazon machine image
AWS.images.new
Returns
Returns the details of the new image
>> AWS.images.new
<Fog::AWS::Compute::Image
id=nil,
architecture=nil,
block_device_mapping=nil,
location=nil,
owner_id=nil,
state=nil,
type=nil,
is_public=nil,
kernel_id=nil,
platform=nil,
product_codes=nil,
ramdisk_id=nil,
root_device_type=nil,
root_device_name=nil,
tags=nil
>
39 40 41 42 |
# File 'lib/fog/aws/models/compute/images.rb', line 39 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters_arg = filters) ⇒ Object
44 45 46 47 48 |
# File 'lib/fog/aws/models/compute/images.rb', line 44 def all(filters_arg = filters) filters = filters_arg data = service.describe_images(filters).body load(data['imagesSet']) end |
#get(image_id) ⇒ Object
50 51 52 53 54 |
# File 'lib/fog/aws/models/compute/images.rb', line 50 def get(image_id) if image_id self.class.new(:service => service).all('image-id' => image_id).first end end |