2013-08-28 13:49:03 +02:00
|
|
|
module Fog
|
|
|
|
module Rackspace
|
|
|
|
class AutoScale
|
|
|
|
class Real
|
|
|
|
|
|
|
|
def update_launch_config(group_id, options)
|
|
|
|
|
|
|
|
body = options
|
|
|
|
|
|
|
|
request(
|
|
|
|
:expects => [204],
|
|
|
|
:method => 'PUT',
|
|
|
|
:path => "groups/#{group_id}/launch",
|
|
|
|
:body => Fog::JSON.encode(body)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
def update_launch_config(group_id, options)
|
2013-09-05 14:10:13 +02:00
|
|
|
group = self.data[:autoscale_groups][group_id]
|
|
|
|
if group.nil?
|
|
|
|
raise Fog::Rackspace::AutoScale::NotFound
|
|
|
|
end
|
|
|
|
|
|
|
|
config = group['launchConfiguration']
|
|
|
|
|
|
|
|
config['args'] = options['args'] if options['args']
|
|
|
|
config['type'] = options['type'] if options['type']
|
|
|
|
|
|
|
|
request(:body => config)
|
2013-08-28 13:49:03 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|