Sha256: d2ce03cec184ef95edbbed3b932b73f94b1531757ce52fe898c5abb3ddb718bf
Contents?: true
Size: 898 Bytes
Versions: 83
Compression:
Stored size: 898 Bytes
Contents
module Fog module AWS class ElasticBeanstalk class Real require 'fog/aws/parsers/beanstalk/empty' # Deletes the specified application along with all associated versions and configurations. # # ==== Options # * application_name<~String>: The name of the application to delete. # # ==== Returns # * response<~Excon::Response>: # # ==== See Also # http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_DeleteApplication.html # def delete_application(application_name) options = { 'ApplicationName' => application_name } request({ 'Operation' => 'DeleteApplication', :parser => Fog::Parsers::AWS::ElasticBeanstalk::Empty.new }.merge(options)) end end end end end
Version data entries
83 entries across 83 versions & 13 rubygems