mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
27 lines
813 B
Ruby
27 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
|