diff --git a/lib/fog/rackspace/requests/auto_scale/update_config.rb b/lib/fog/rackspace/requests/auto_scale/update_config.rb deleted file mode 100644 index 6cdf577bd..000000000 --- a/lib/fog/rackspace/requests/auto_scale/update_config.rb +++ /dev/null @@ -1,37 +0,0 @@ -module Fog - module Rackspace - class AutoScale - - class Real - - def update_config(group_id) - - h = { - "name" => "workers", - "cooldown" => 60, - "minEntities" => 0, - "maxEntities" => 0, - "metadata" => { - "firstkey" => "this is a string", - "secondkey" => "1" - } - } - - request( - :expects => [204], - :method => 'PUT', - :path => "groups/#{group_id}/config", - :body => Fog::JSON.encode(h) - ) - end - end - - class Mock - def update_config(group_id) - Fog::Mock.not_implemented - end - end - - end - end -end \ No newline at end of file