Sha256: 7e313d971ddf7a89175819db39b8196f5f2d395b06f1abe4abc0ad03724594ca

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

module Fog
  module AWS
    class ElasticBeanstalk
      class Real

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

        # Deletes the specified configuration template.
        #
        # ==== Options
        # * application_name<~String>: The name of the application to delete the configuration template from.
        # * template_name<~String>: The name of the configuration template to delete.
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_DeleteConfigurationTemplate.html
        #
        def delete_configuration_template(application_name, template_name)
          options = {
              'ApplicationName' => application_name,
              'TemplateName' => template_name
          }

          request({
                      'Operation'    => 'DeleteConfigurationTemplate',
                      :parser     => Fog::Parsers::AWS::ElasticBeanstalk::Empty.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/delete_configuration_template.rb