Sha256: 6879cd5d64cbdeb4c5c766b9e8e5d0811f6fb32191d67eb4cb904fc8aa2ce38f
Contents?: true
Size: 1.03 KB
Versions: 98
Compression:
Stored size: 1.03 KB
Contents
module Fog module AWS class ElasticBeanstalk class Real require 'fog/aws/parsers/beanstalk/terminate_environment' # Terminates the specified environment. # # ==== Options # * EnvironmentId<~String>: The ID of the environment to terminate. # * EnvironmentName<~String>: The name of the environment to terminate. # * TerminateResources<~Boolean>: Indicates whether the associated AWS resources should shut down when the # environment is terminated # # ==== Returns # * response<~Excon::Response>: # # ==== See Also # http://docs.amazonwebservices.com/elasticbeanstalk/latest/api/API_TerminateEnvironment.html # def terminate_environment(options={}) request({ 'Operation' => 'TerminateEnvironment', :parser => Fog::Parsers::AWS::ElasticBeanstalk::TerminateEnvironment.new }.merge(options)) end end end end end
Version data entries
98 entries across 96 versions & 6 rubygems