Sha256: 0dc8cea2ef3d20070cb5341e2bb0cd59c10473e498b6879f15ad61d345646ea7
Contents?: true
Size: 1016 Bytes
Versions: 1
Compression:
Stored size: 1016 Bytes
Contents
module Fog module AWS class ElasticBeanstalk class Real require 'rackspace-fog/aws/parsers/beanstalk/update_application' # Updates the specified application to have the specified properties. # # ==== Options # * ApplicationName<~String>: The name of the application to update. If no such application is found, # UpdateApplication returns an InvalidParameterValue error. # * Description<~String>: A new description for the application. # # ==== Returns # * response<~Excon::Response>: # # ==== See Also # http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_UpdateApplication.html # def update_application(options) request({ 'Operation' => 'UpdateApplication', :parser => Fog::Parsers::AWS::ElasticBeanstalk::UpdateApplication.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/update_application.rb |