1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
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
|