Method: Fog::DNS::Rage4::Real#get_domain
- Defined in:
- lib/fog/rage4/requests/dns/get_domain.rb
#get_domain(id) ⇒ Object
Get the details for a specific domain in your account.
Parameters
-
id<~Integer> - numeric ID
Returns
-
response<~Excon::Response>:
-
body<~Hash>:
* 'id'<~Integer> * 'name'<~String> * 'owner_email'<~String> * 'type'<~Integer> * 'subnet_mask'<~Integer>
-
17 18 19 20 21 22 |
# File 'lib/fog/rage4/requests/dns/get_domain.rb', line 17 def get_domain(id) request( :expects => 200, :method => 'GET', :path => "/rapi/getdomain/#{id}" ) end |