Sha256: 3e411b10e74b9e3bc63fe1ce707e5f09e0d290c3871c22fbe367a719d3d35b32
Contents?: true
Size: 1.01 KB
Versions: 7
Compression:
Stored size: 1.01 KB
Contents
module Fog module DNSimple class DNS class Real # Get the details for a specific domain in your account. You # may pass either the domain numeric ID or the domain name # itself. # # ==== Parameters # * id<~String> - domain name or numeric ID # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'domain'<~Hash> # * 'name'<~String> # * 'expires_at'<~String> # * 'created_at'<~String> # * 'registration_status'<~String> # * 'updated_at'<~String> # * 'registrant_id'<~Integer> # * 'id'<~Integer> # * 'user_id'<~Integer> # * 'name_server_status'<~String> def get_domain(id) request( :expects => 200, :method => "GET", :path => "/domains/#{id}" ) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems