1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/zerigo/requests/dns/get_host.rb

47 lines
1.2 KiB
Ruby

module Fog
module Zerigo
class DNS
class Real
require 'fog/zerigo/parsers/dns/get_host'
# get details about a given host record
#
# ==== Parameters
# * host_id<~Integer> - ID of the host record to retrieve
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'created-at'<~String>
# * 'data'<~String>
# * 'fqdn'<~String>
# * 'host-type'<~String>
# * 'hostname'<~String>
# * 'id'<~Integer>
# * 'notes'<~String>
# * 'priority'<~Integer>
# * 'ttl'<~Integer>
# * 'updated-at'<~String>
# * 'zone-id'<~String>
# * 'status'<~Integer> - 200 indicates success
def get_host( host_id)
request(
:expects => 200,
:method => 'GET',
:parser => Fog::Parsers::Zerigo::DNS::GetHost.new,
:path => "/api/1.1/hosts/#{host_id}.xml"
)
end
end
class Mock
def get_host( host_id)
Fog::Mock.not_implemented
end
end
end
end
end