Sha256: 27ee0cb05d7ba03052ec25631566b774cc4253ef2b3255c5568f252a17a45660
Contents?: true
Size: 843 Bytes
Versions: 38
Compression:
Stored size: 843 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
38 entries across 38 versions & 2 rubygems