1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/hp/models/compute_v2/availability_zones.rb

29 lines
581 B
Ruby

require 'fog/core/collection'
require 'fog/hp/models/compute_v2/availability_zone'
module Fog
module Compute
class HPV2
class AvailabilityZones < Fog::Collection
model Fog::Compute::HPV2::AvailabilityZone
def all
data = service.list_availability_zones.body['availabilityZoneInfo']
load(data)
end
def get(zone_name)
if zone_name
self.all.select {|z| z.name == zone_name}.first
end
rescue Fog::Compute::HPV2::NotFound
nil
end
end
end
end
end