Sha256: fe3dd88e3f41e9565383b30ad4c134e9d1e2b4c1a3579f42dc76f2cad79b7e17
Contents?: true
Size: 1.08 KB
Versions: 49
Compression:
Stored size: 1.08 KB
Contents
module Fog module DNS class AWS class Real require 'fog/aws/parsers/dns/list_health_checks' # This action gets a list of the health checks that are associated with the current AWS account. # http://docs.aws.amazon.com/Route53/latest/APIReference/API_ListHealthChecks.html # # === Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'HealthChecks'<~Array>: # * 'HealthCheck'<~Hash>: # * 'Id'<~String> - # * 'CallerReference'<~String> # * 'HealthCheckVersion'<~Integer> - # * 'Marker'<~String> - # * 'MaxItems'<~Integer> - # * 'IsTruncated'<~String> - # * 'NextMarker'<~String> # * status<~Integer> - 200 when successful def list_health_checks request({ :expects => 200, :method => 'GET', :path => "healthcheck", :parser => Fog::Parsers::DNS::AWS::ListHealthChecks.new }) end end end end end
Version data entries
49 entries across 47 versions & 5 rubygems