1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/auto_scaling/resume_processes.rb
Josh Lane d48d376e9c initial import
* take the liberty of correcting Aws naming
2014-12-31 09:17:51 -08:00

53 lines
1.9 KiB
Ruby

module Fog
module AWS
class AutoScaling
class Real
require 'fog/aws/parsers/auto_scaling/basic'
# Resumes Auto Scaling processes for an Auto Scaling group.
#
# ==== Parameters
# * auto_scaling_group_name'<~String> - The name or Amazon Resource
# Name (ARN) of the Auto Scaling group.
# * options<~Hash>:
# * 'ScalingProcesses'<~Array> - The processes that you want to
# resume. To resume all process types, omit this parameter.
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'ResponseMetadata'<~Hash>:
# * 'RequestId'<~String> - Id of request
#
# ==== See Also
# http://docs.amazonwebservices.com/AutoScaling/latest/APIReference/API_ResumeProcesses.html
#
def resume_processes(auto_scaling_group_name, options = {})
if scaling_processes = options.delete('ScalingProcesses')
options.merge!(Aws.indexed_param('ScalingProcesses.member.%d', [*scaling_processes]))
end
request({
'Action' => 'ResumeProcesses',
'AutoScalingGroupName' => auto_scaling_group_name,
:parser => Fog::Parsers::AWS::AutoScaling::Basic.new
}.merge!(options))
end
end
class Mock
def resume_processes(auto_scaling_group_name, options = {})
unless self.data[:auto_scaling_groups].key?(auto_scaling_group_name)
raise Fog::AWS::AutoScaling::ValidationError.new("AutoScalingGroup name not found - no such group: #{auto_scaling_group_name}")
end
response = Excon::Response.new
response.status = 200
response.body = {
'ResponseMetadata' => { 'RequestId' => Fog::AWS::Mock.request_id }
}
response
end
end
end
end
end