Sha256: 094581b9a20819b5c1a77f5f1ce34d9d5339c387b52af9e2d9a21b336f36b9b9

Contents?: true

Size: 928 Bytes

Versions: 1

Compression:

Stored size: 928 Bytes

Contents

module Fog
  module AWS
    class ElasticBeanstalk
      class Real

        require 'rackspace-fog/aws/parsers/beanstalk/create_application'

        # Creates an application that has one configuration template named default and no application versions.
        #
        # ==== Options
        # * ApplicationName<~String>: The name of the application.
        # * Description<~String>: Describes the application.
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_CreateApplication.html
        #
        def create_application(options={})
          request({
                      'Operation'    => 'CreateApplication',
                      :parser     => Fog::Parsers::AWS::ElasticBeanstalk::CreateApplication.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/create_application.rb