Sha256: 6d59f4b1cce1249298bd97e16b3608c4af73a7ed4104a539ea1fbf292c2fb7bc

Contents?: true

Size: 824 Bytes

Versions: 1

Compression:

Stored size: 824 Bytes

Contents

module Fog
  module AWS
    class ElasticBeanstalk
      class Real

        require 'rackspace-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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/requests/beanstalk/check_dns_availability.rb