mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
38 lines
815 B
Ruby
38 lines
815 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/rage4/models/dns/record'
|
|
|
|
module Fog
|
|
module DNS
|
|
class Rage4
|
|
class Records < Fog::Collection
|
|
attribute :zone
|
|
|
|
model Fog::DNS::Rage4::Record
|
|
|
|
def all
|
|
requires :zone
|
|
clear
|
|
data = service.list_records(zone.id).body
|
|
load(data)
|
|
end
|
|
|
|
def get(record_id)
|
|
requires :zone
|
|
data = service.list_records(zone.id).select {|record| record['id'] == record_id }
|
|
if !data.empty?
|
|
new(data.first)
|
|
else
|
|
nil
|
|
end
|
|
rescue Excon::Errors::NotFound
|
|
nil
|
|
end
|
|
|
|
def new(attributes = {})
|
|
requires :zone
|
|
super({ :zone => zone }.merge!(attributes))
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|