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
26 lines
813 B
Ruby
26 lines
813 B
Ruby
module Fog
|
|
module AWS
|
|
class ElasticBeanstalk
|
|
class Real
|
|
require 'fog/aws/parsers/beanstalk/check_dns_availability'
|
|
|
|
# Checks if the specified CNAME is available.
|
|
#
|
|
# ==== Options
|
|
# * CNAMEPrefix<~String>: The prefix used when this CNAME is reserved
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
#
|
|
# ==== See Also
|
|
# http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_CheckDNSAvailability.html
|
|
#
|
|
def check_dns_availability(options)
|
|
request({
|
|
'Operation' => 'CheckDNSAvailability',
|
|
:parser => Fog::Parsers::AWS::ElasticBeanstalk::CheckDNSAvailability.new
|
|
}.merge(options))
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|