Sha256: e50b08008384e7b1ec892bc2c37f4bf299cc271c1101bce91b350efe900070e7
Contents?: true
Size: 822 Bytes
Versions: 39
Compression:
Stored size: 822 Bytes
Contents
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) 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) end end end end end
Version data entries
39 entries across 37 versions & 6 rubygems