mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
360 B
Ruby
28 lines
360 B
Ruby
|
require 'fog/core/collection'
|
||
|
require 'fog/dns/models/dynect/record'
|
||
|
|
||
|
module Fog
|
||
|
module Dynect
|
||
|
class DNS
|
||
|
|
||
|
class Records < Fog::Collection
|
||
|
|
||
|
attribute :zone
|
||
|
|
||
|
model Fog::Dynect::DNS::Record
|
||
|
|
||
|
def all
|
||
|
end
|
||
|
|
||
|
def get(record_id)
|
||
|
end
|
||
|
|
||
|
def new(attributes = {})
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|