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/linode/models/dns/records.rb

38 lines
714 B
Ruby
Raw Normal View History

2010-12-23 19:47:47 -05:00
require 'fog/core/collection'
require 'fog/linode/models/dns/record'
2010-12-23 19:47:47 -05:00
module Fog
module DNS
class Linode
2010-12-23 19:47:47 -05:00
class Records < Fog::Collection
attribute :zone
model Fog::DNS::Linode::Record
2010-12-23 19:47:47 -05:00
def all
requires :zone
data = connection.domain_resource_list(zone.id).body['DATA']
load(data)
end
def get(record_id)
if data = connection.domain_resource_list(zone.id, record_id).body['DATA'].first
new(data)
else
nil
end
2010-12-23 19:47:47 -05:00
end
def new(attributes = {})
requires :zone
super({ :zone => zone }.merge!(attributes))
end
end
end
end
end