Sha256: 5107373651b84daca6af68885d5a3a05e06c6964e7f82c4b78a47daf537bbc56
Contents?: true
Size: 604 Bytes
Versions: 39
Compression:
Stored size: 604 Bytes
Contents
module Fog module Rackspace class AutoScale class Real def get_launch_config(group_id) request( :expects => [200], :method => 'GET', :path => "groups/#{group_id}/launch" ) end end class Mock def get_launch_config(group_id) group = self.data[:autoscale_groups][group_id] if group.nil? raise Fog::Rackspace::AutoScale::NotFound end response(:body => {"launchConfiguration" => group['launchConfiguration']}) end end end end end
Version data entries
39 entries across 37 versions & 6 rubygems