mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
module Fog
|
|
module DNS
|
|
class Aws
|
|
class Real
|
|
require 'fog/aws/parsers/dns/health_check'
|
|
|
|
# This action gets information about a specified health check.
|
|
#http://docs.aws.amazon.com/Route53/latest/APIReference/API_GetHealthCheck.html
|
|
#
|
|
# ==== Parameters
|
|
# * id<~String> - The ID of the health check
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'HealthCheck'<~Hash>:
|
|
# * 'Id'<~String> -
|
|
# * 'CallerReference'<~String>
|
|
# * 'HealthCheckConfig'<~Hash>:
|
|
# * 'IPAddress'<~String> -
|
|
# * 'Port'<~String> -
|
|
# * 'Type'<~String> -
|
|
# * 'ResourcePath'<~String> -
|
|
# * 'FullyQualifiedDomainName'<~String> -
|
|
# * 'SearchString'<~String> -
|
|
# * 'RequestInterval'<~Integer> -
|
|
# * 'FailureThreshold'<~String> -
|
|
# * 'HealthCheckVersion'<~Integer> -
|
|
# * status<~Integer> - 200 when successful
|
|
def get_health_check(id)
|
|
request({
|
|
:expects => 200,
|
|
:parser => Fog::Parsers::DNS::AWS::HealthCheck.new,
|
|
:method => 'GET',
|
|
:path => "healthcheck/#{id}"
|
|
})
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|