1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/parsers/emr/modify_instance_groups.rb
Bob Briski 0002ea89ef Added EMR functions for AWS
* describe_job_flows does not return Properties for the HadoopJarStepConfig
* All other methods work as advertised
2011-09-16 16:59:28 -07:00

17 lines
308 B
Ruby

module Fog
module Parsers
module AWS
module EMR
class ModifyInstanceGroups < Fog::Parsers::Base
def end_element(name)
case name
when 'RequestId'
@response[name] = value
end
end
end
end
end
end
end