1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ecloud/requests/compute/compute_pool_edit.rb
Paul Thornthwaite 6716f37c5f Replace deprecated Hash methods
Done with `rubocop --auto-correct --only DeprecatedHashMethods`
2014-05-26 16:22:08 +01:00

35 lines
960 B
Ruby

module Fog
module Compute
class Ecloud
module Shared
def validate_edit_compute_pool_options(options)
required_opts = [:name]
unless required_opts.all? { |opt| options.key?(opt) }
raise ArgumentError.new("Required data missing: #{(required_opts - options.keys).map(&:inspect).join(", ")}")
end
end
def build_compute_pool_body_edit(options)
xml = Builder::XmlMarkup.new
xml.ComputePool(:name => options[:name]) do
end
end
end
class Real
def compute_pool_edit(options)
validate_edit_compute_pool_options(options)
body = build_compute_pool_body_edit(options)
request(
:expects => 200,
:method => 'PUT',
:headers => {},
:body => body,
:uri => options[:uri],
:parse => true
)
end
end
end
end
end