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

36 lines
701 B
Ruby

require 'fog/core/collection'
require 'fog/bluebox/models/dns/record'
module Fog
module DNS
class Bluebox
class Records < Fog::Collection
attribute :zone
model Fog::DNS::Bluebox::Record
def all
requires :zone
data = connection.get_records(zone.identity).body['records']
load(data)
end
def get(record_id)
data = connection.get_record(zone.identity, record_id).body
new(data)
rescue Fog::Service::NotFound
nil
end
def new(attributes = {})
requires :zone
super({ :zone => zone }.merge!(attributes))
end
end
end
end
end