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/dns/domains.rb

28 lines
536 B
Ruby

require 'fog/core/collection'
require 'fog/hp/models/dns/domain'
module Fog
module HP
class DNS
class Domains < Fog::Collection
model Fog::HP::DNS::Domain
def all
load(service.list_domains.body['domains'])
end
def get(domain_id)
### Inconsistent API - does not return a 'domain'
if domain = service.get_domain(domain_id).body
new(domain)
end
rescue Fog::HP::DNS::NotFound
nil
end
end
end
end
end