Fog::Collection
# File lib/fog/linode/models/dns/records.rb, line 14 def all requires :zone data = service.domain_resource_list(zone.id).body['DATA'] load(data) end
# File lib/fog/linode/models/dns/records.rb, line 20 def get(record_id) if data = service.domain_resource_list(zone.id, record_id).body['DATA'].first new(data) else nil end end
# File lib/fog/linode/models/dns/records.rb, line 28 def new(attributes = {}) requires :zone super({ :zone => zone }.merge!(attributes)) end
[Validate]
Generated with the Darkfish Rdoc Generator 2.