Sha256: 0f5ff10699c4280f2b1a5b295a5a3b219ac540a65a46afbe1deb0f46a9c58739
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 KB
Contents
module Fog module AWS class AutoScaling class Real require 'rackspace-fog/aws/parsers/auto_scaling/basic' # Deletes the specified launch configuration. # # The specified launch configuration must not be attached to an Auto # Scaling group. Once this call completes, the launch configuration is # no longer available for use. # # ==== Parameters # * launch_configuration_name<~String> - The name of the launch # configuration. # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'ResponseMetadata'<~Hash>: # * 'RequestId'<~String> - Id of request # # ==== See Also # http://docs.amazonwebservices.com/AutoScaling/latest/APIReference/API_DeleteLaunchConfiguration.html # def delete_launch_configuration(launch_configuration_name) request({ 'Action' => 'DeleteLaunchConfiguration', 'LaunchConfigurationName' => launch_configuration_name, :parser => Fog::Parsers::AWS::AutoScaling::Basic.new }) end end class Mock def delete_launch_configuration(launch_configuration_name) unless self.data[:launch_configurations].delete(launch_configuration_name) raise Fog::AWS::AutoScaling::ValidationError, "Launch configuration name not found - Launch configuration #{launch_configuration_name} not found" end response = Excon::Response.new response.status = 200 response.body = { 'ResponseMetadata' => { 'RequestId' => Fog::AWS::Mock.request_id } } response 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/auto_scaling/delete_launch_configuration.rb |