Class: Fog::Compute::Azure::Images
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Azure::Images
- Defined in:
- lib/fog/azure/models/compute/images.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/fog/azure/models/compute/images.rb', line 31 def all() images = [] service.list_images.each do |image| hash = {} image.instance_variables.each do |var| hash[var.to_s.delete("@")] = image.instance_variable_get(var) end images << hash end load(images) end |
#get(identity) ⇒ Object
43 44 45 46 47 |
# File 'lib/fog/azure/models/compute/images.rb', line 43 def get(identity) all.find { |f| f.name == identity } rescue Fog::Errors::NotFound nil end |