Sha256: 43800419b992f983ff233815a61bbe82223a0a326f473779f8316c10f84d914f
Contents?: true
Size: 826 Bytes
Versions: 67
Compression:
Stored size: 826 Bytes
Contents
module Fog module DNS class DNSimple class Real # Get the list of records for the specific domain. # # ==== Parameters # * domain<~String> # ==== Returns # * response<~Excon::Response>: # * records<Array~> # * name<~String> # * ttl<~Integer> # * created_at<~String> # * special_type<~String> # * updated_at<~String> # * domain_id<~Integer> # * id<~Integer> # * content<~String> # * record_type<~String> # * prio<~Integer> def list_records(domain) request( :expects => 200, :method => "GET", :path => "/domains/#{domain}/records" ) end end end end end
Version data entries
67 entries across 67 versions & 19 rubygems