Sha256: 4a2e85dd18e6fdc056b32462697278c6407b6fef9c655b24706d3ba7bc70ed36
Contents?: true
Size: 896 Bytes
Versions: 1
Compression:
Stored size: 896 Bytes
Contents
module Fog module AWS class ElasticBeanstalk class Real require 'rackspace-fog/aws/parsers/beanstalk/empty' # Deletes and recreates all of the AWS resources (for example: the Auto Scaling group, load balancer, etc.) # for a specified environment and forces a restart. # # ==== Options # * EnvironmentId # * EnvironmentName # # ==== Returns # * response<~Excon::Response>: # # ==== See Also # http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_RebuildEnvironment.html # def rebuild_environment(options={}) request({ 'Operation' => 'RebuildEnvironment', :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/rebuild_environment.rb |