2011-02-24 20:14:50 -05:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/dns/models/dnsimple/record'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module DNSimple
|
|
|
|
class DNS
|
|
|
|
|
|
|
|
class Records < Fog::Collection
|
|
|
|
|
|
|
|
attribute :zone
|
|
|
|
|
|
|
|
model Fog::DNSimple::DNS::Record
|
|
|
|
|
|
|
|
def all
|
|
|
|
requires :zone
|
|
|
|
data = connection.list_records(zone.id).body
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(record_id)
|
2011-03-09 18:26:21 -05:00
|
|
|
requires :zone
|
|
|
|
data = connection.get_record(zone.id, record_id).body["record"]
|
|
|
|
new(data)
|
|
|
|
rescue Excon::Errors::NotFound
|
2011-02-24 20:14:50 -05:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def new(attributes = {})
|
|
|
|
requires :zone
|
|
|
|
super({ :zone => zone }.merge!(attributes))
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|